@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300&family=Libre+Baskerville:wght@400;700&family=Noto+Sans+JP:wght@400&display=swap');
body{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Lexend", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	background: #fff;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	font-size: 15px!important;
	line-height: 30px!important;
	color: #4e454a;
}
.libre {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}
.libre_bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}
.lexend {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.txt_s{
	font-size: 11px!important;
	line-height: 16px!important;
}
.txt_xs{
	vertical-align: top;
	font-size: 10px!important;
	line-height: 16px!important;
}
@media only screen and (min-width: 640px) {
body{
	font-size: 15px!important;
	line-height: 32px!important;
}
.txt_s{
	font-size: 13px!important;
	line-height: 18px!important;
}
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}}
.img100 {
	width:100%;
	height:auto;}
*{
	box-sizing: border-box;
}
h1,h2,h3,h4{
	margin: 0;
	padding: 0;
}
*:focus {
  outline: none;
}
img{
	width: 100%;
	height: auto;
	display: block;}
a,
a:link,
a:visited,
a:hover,
a:active{
	color:#4e454a;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.pc{
	display: none;}
.sp{
	display: block;}
@media only screen and (min-width: 640px) {
.pc{
	display: block;}
.sp{
	display: none;}
}
div{
	transition: .3s;
}
/* 点滅 */
.blinking{
	-webkit-animation:blink 1.2s infinite;
    -moz-animation:blink 1.2s infinite;
    animation:blink 1.2s infinite;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
/*-----------basic-----------*/
.contents{
	position: relative;
	z-index: 1;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}
.relative{
	position: relative;
	z-index: 1;
}
/************************************
****** drawer
************************************/
#drawer{
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
	z-index: 9004;
	top: 16px;
	right: 8px;
	width: 80px;
	height: 48px;
	border-radius: 48px;
	transition: background .2s, transform .2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 0.12em solid #5F656B;
	transition: transform .2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-5px);
}
.open::after {
	transform: translateY(5px);
}
.close {
	z-index: 9001;
	inset: 0;
	pointer-events: none;
	transition: background .2s;
}
#drawer:checked + .open{
	left: auto;
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background:rgba(255,255,255,0.8);
}
@media screen and (min-width: 640px) {
#drawer:checked ~ .close {
	background:none;
}
.open {
	display: none;
}
}
/************************************
****** drawer menu
************************************/
a.drawer_logo{
	display: block;
	position: absolute;
	z-index: 2;
	max-width: 100px;
	left: 24px;
	top: 28px;
}
.menu {
	position: fixed;
	z-index: 9003;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 50px 10px 80px;
	box-sizing: border-box;
	background:#FFFCF8;
	transform: translateX(-100%);
	backdrop-filter: blur(8px);
	transition: .3s;
	overflow-y: scroll;
}
#drawer:checked ~ .menu{
	transform: translateX(0);
}
.menu ul{
	width: 76%;
	margin: 0 auto;
	padding: 40px 0 0;
}
.menu ul li{
	width: 100%;
	position: relative;
	z-index: 1;
	list-style: none;
	text-align: center;
	padding: 20px 0;
}
.menu ul li a{
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0.15em;
}
.menu ul li:first-child{
	border-bottom: 1px solid #4E454A;
}
.menu ul li:nth-child(3){
	border-top: 1px solid #4E454A;
	padding-bottom: 10px;
}
.menu ul li:nth-child(4){
	padding-top: 10px;
}
ul.drawer_bt{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0;
}
ul.drawer_bt li{
	width: 50%;
	padding: 0;
}
ul.drawer_bt li:first-child,
ul.drawer_bt li:nth-child(3){
	border: none;
}
ul.drawer_bt li a{
	display: block;
	width: 100%;
	position: static;
}
.drawer_bt_text{
	text-align: center;
	font-size: 2vw;
}
@media screen and (min-width: 640px) {
.menu{
	display: none;
}
}
/*-----------header-----------*/
header{
	margin: 0!important;
}
.header_wrap{
	background: #FFFCF8;
	width: 100%;
	height: 80px;
}
.header_logo{
	position: absolute;
	z-index: 2;
	max-width: 100px;
	left: 24px;
	top: 28px;
}
@media only screen and (min-width: 640px) {
.header_logo{
	max-width: 145px;
	left: 64px;
	top: 20px;
}
}
/*-----------gnavi-----------*/
.gnavi__wrap {
	display: none;
	position: relative;
	z-index: 100;
	padding: 2px 0 0;
}
.gnavi__lists {
    text-align: right;
	margin-right: 24px;
}
.gnavi__list {
	display: inline-block;
    height: 63px;
    transition: all .3s;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
	font-size: 12px;
    letter-spacing: 0.05em;
    transition: all .3s;
	padding: 0 6px;
	position: relative;
}
.gnavi__list a::before {
	content: "";
	position: absolute;
	width: 40px;
	height: 0.15em;
	left: 0;
	right: 0;
	bottom: 15px;
	margin: auto;
	background: #4e454a;
	transition: .3s;
	opacity: 0;
}
.gnavi__list a:hover::before {
	opacity: 1;
}
.dropdown__list {;
    position: relative;
}
.dropdown__lists {
	list-style: none;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
	background: #fff;
	padding: 12px 40px;
}
.dropdown__lists:hover {
    visibility: visible;
    opacity: 1;
}
.dropdown__lists::after {
	content: "※1 うるおいを与えて毛穴を目立たなくさせること　※2 年齢に応じたケア";
	font-size: 10px;
	line-height: 16px;
	color: #666;
	text-align: right;
	display: block;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.dropdown__lists a{
	padding: 0;
	transition: .3s;
}
.dropdown__lists a:hover{
	opacity: 0.7;
}
.dropdown__lists a::before {
	content: none;
}
.gnavi__list:hover .dropdown__lists {
    visibility: visible;
    opacity: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.dropdown__list {;
    max-width: 284px;
	width: 26.743%;
}
.dropdown__list:first-child {;
    max-width: 210px;
	width: 19.77%;
}
@media only screen and (min-width: 640px) {
.gnavi__wrap {
	display: block;
}
}
/*-----------fv-----------*/
.fv_slide_wrap{
	position: relative;
	z-index: 1;
}
.fv_slide .swiper-slide{
	position: relative;
	z-index: 1;
}
.fv_slide .swiper-slide a{
	position: absolute;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.swiper-pagination {
	text-align: center;
	left: 0;
	right: 0;
  bottom: -140px !important;
}
/*-----------top_about-----------*/
.top_about_wrap{
	max-width: none;
	width: 87.5%;
	margin: 0 auto;
	display: block;
	padding: 18% 0 16%;
}
.top_about_pic{
	width: 100%;
	height: 0;
	padding: 77.2477% 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-top-right-radius: 20vw;
}
.top_about_text{
	width: 100%;
	text-align: center;
	padding: 10% 0 0;
	font-size: 15px!important;
	line-height: 30px!important;
}
.top_about_text h2{
	font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
	width: 100%;
	position: relative;
	font-size: 22px;
	line-height: 32px;
	margin: 0 0 20px;
}
.top_about_text h2::after{
	content: none;
}
a.bt_normal{
	display: block;
	width: 204px;
	text-align: center;
	margin: 24px auto 0;
	padding: 12px 0;
	font-size: 12px;
	line-height: 24px;
	border: 1px solid #a6a2a3;
	border-radius: 30px;
	font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
	letter-spacing: 0.2em;
	transition: .3s;
	color: #4e454a;
	background: none;
}
a.bt_normal:hover{
	color: #fff;
	background: #a6a2a3;
}
@media only screen and (min-width: 640px) {
.top_about_wrap{
	max-width: 1120px;
	width: 92%;
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}
.top_about_pic{
	width: 48.6%;
	padding: 50% 0 0;
	border-top-right-radius: 100px;
}
.top_about_text{
	width: 48.6%;
	text-align: left;
	padding: 0 0 0;
	font-size: 20px!important;
	line-height: 42px!important;
	letter-spacing: 0.2em;
}
.top_about_text h2{
	font-size: 28px;
	line-height: 40px;
	margin: 0 0 16px;
	width: fit-content;
}
.top_about_text h2::after{
	content: "";
	position: absolute;
	width: 18px;
	height: 2px;
	background: #a6a2a3;
	right: -36px;
	top: 0;
	bottom: 0;
	margin: auto;
}
a.bt_normal{
	width: 180px;
	margin: 24px 0 0;
	padding: 15px 0;
	font-size: 12px;
	line-height: 20px;
}
}
@media only screen and (min-width: 1000px) {
.top_about_pic{
	padding: 40% 0 0;
}
.top_about_text{
	font-size: 28px!important;
	line-height: 58px!important;
}
.top_about_text h2{
	font-size: 34px;
	line-height: 48px;
	margin: 0 0 40px;
}
.top_about_text h2::after{
	width: 24px;
	right: -40px;
}
a.bt_normal{
	width: 204px;
	margin: 35px 0 0;
	padding: 18px 0;
	font-size: 14px;
	line-height: 24px;
}
}
/*-----------top_product-----------*/
.top_product_wrap{
	background: url("../img/top_product_bg_pc.webp")no-repeat center center;
	background-size: cover;
	padding: 60px 0;
}
.top_product_wrap h2{
	max-width: 1100px;
	width: 88%;
	margin: 0 auto 40px;
	font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
	position: relative;
	font-size: 22px;
	line-height: 32px;
}
.top_product_wrap h2 p{
	position: relative;
	display: block;
	width: fit-content;
}
.top_product_wrap h2 p::after{
	content: "";
	position: absolute;
	width: 16px;
	height: 1px;
	background: #a6a2a3;
	right: -32px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.top_product_slide_wrap{
	display: block;
	position: relative;
}
.top_product_slide_wrap .swiper-slide{
	padding: 0 3%;
	text-align: center;
}
.top_product_pc{
	display: none;
}
.top_product_box{
	position: relative;
	width: 23%;
	text-align: center;
	font-size: 11px;
	line-height: 22px;
	padding: 0 0 72px;
}
.top_product_pic{
	border-top-right-radius: 60px;
	max-width: 500px;
	overflow: hidden;
	margin: 0 auto 20px;
}
a.bt_top_product{
	position: static;
	z-index: 2;
	margin: 16px auto 0;
	display: block;
	width: 160px;
	text-align: center;
	padding: 12px 0;
	font-size: 11px;
	line-height: 24px;
	border: 1px solid #a6a2a3;
	border-radius: 30px;
	font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
	letter-spacing: 0.2em;
	transition: .3s;
	color: #4e454a;
	background: #fff;
}
a.bt_top_product:hover{
	color: #fff;
	background: #a6a2a3;
}
.top_product_txt{
	max-width: 1100px;
	width: 98%;
	margin: 48px auto 0;
	text-align: center;
	letter-spacing: 0.05em;
}
.swiper-button-prev,
.swiper-button-next {
  width: 6%;
	height: 18%;
	cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
	z-index: 10;
	width: 6%;
	height: 0;
	padding: 30% 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
	top: 0;
	bottom: 0;
}
.swiper-button-prev::after {
	background-image: url("http://andmeu.com/wp-content/uploads/2025/07/top_product_prev.svg");
  left: 7%;
  transform: translateX(-20px);
}
.swiper-button-next::after {
  background-image: url("http://andmeu.com/wp-content/uploads/2025/07/top_product_next.svg");
  right: 7%;
  transform: translateX(20px);
}
@media only screen and (min-width: 640px) {
.top_product_wrap h2{
	width: 92%;
	font-size: 28px;
	line-height: 40px;
}
.top_product_wrap h2 p::after{
	height: 2px;
	width: 18px;
	right: -36px;
}
.top_product_slide_wrap{
	display: none;
}
.top_product_pc{
	max-width: 1100px;
	width: 92%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.top_product_box{
	width: 24%;
	padding: 0 0 54px;
}
.top_product_pic{
	margin: 0 auto 12px;
}
a.bt_top_product{
	width: 132px;
	padding: 10px 0;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.1em;
}
a.bt_top_product{
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	display: block;
	width: 132px;
	padding: 10px 0;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.1em;
}
.top_product_txt{
	width: 92%;
	text-align: right;
	letter-spacing: 0.1em;
}
}
@media only screen and (min-width: 1000px) {
.top_product_wrap h2{
	font-size: 34px;
	line-height: 48px;
}
.top_product_wrap h2 p::after{
	width: 24px;
	right: -40px;
}
.top_product_box{
	width: 23%;
	font-size: 16px;
	line-height: 30px;
	padding: 0 0 72px;
}
.top_product_pic{
	margin: 0 auto 20px;
}
a.bt_top_product{
	width: 190px;
	padding: 12px 0;
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 0.2em;
}
}
/*-----------top_purchase-----------*/
.top_purchase_wrap{
	text-align: center;
	padding: 120px 0;
}
.top_purchase_wrap h2{
	font-size: 28px;
	line-height: 38px;
	letter-spacing: 0.2em;
}
.top_purchase_bt_wrap{
	list-style: none;
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	max-width: 720px;
	width: 92%;
	margin: 0 auto;
}
.top_purchase_bt_wrap li{
	width: 46%;
	margin: 0 auto 18px;
}
.top_purchase_bt_wrap li a{
	display: block;
	border: 1px solid #4E454A;
	height: 0;
	border-radius: 40px;
	transition: .2s;
	padding: 26% 0 0;
}
.top_purchase_bt_wrap li a:hover{
	opacity: 0.6;
}
.top_purchase_bt_wrap li a.top_purchase_bt1{
	background: url("../img/bt_top_purchase1.webp")no-repeat center center;
	background-size: contain;
}
.top_purchase_bt_wrap li a.top_purchase_bt2{
	background: url("../img/bt_top_purchase2.webp")no-repeat center center;
	background-size: contain;
}
.top_purchase_bt_wrap li a.top_purchase_bt3{
	background: url("../img/bt_top_purchase3.webp")no-repeat center center;
	background-size: contain;
}
@media only screen and (min-width: 640px) {
.top_purchase_wrap h2{
	font-size: 24px!important;
	line-height: 38px;
	letter-spacing: 0.2em;
}
.top_purchase_bt_wrap{
	justify-content: space-between;
}
.top_purchase_bt_wrap li{
	max-width: 214px;
	width: 32%;
	margin: 0 auto;
}
.top_purchase_bt_wrap li a{
	height: 60px;
	padding: 0;
}
}
/*-----------footer-----------*/
.footer_wrap{
	width: 100%;
	border-top: 2px solid #D2D0D1;
}
.footer_menu{
	max-width: 100%;
	width: 80%;
	margin: 0 auto 20px;
	padding: 50px 0 0;
	display: block;
}
a.footer_logo{
	display: block;
	max-width: 100px;
	padding: 0 0 12px;
	transition: .5s;
}
a.footer_logo:hover{
	opacity: 0.6;
}
ul.footer_head_menu{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0!important;
}
ul.footer_head_menu li{
	list-style: none;
}
ul.footer_head_menu li:nth-child(even){
	width: 40%;
}
ul.footer_head_menu li:nth-child(odd){
	width: 60%;
}
ul.footer_head_menu li a{
	display: block;
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.15em;
	padding: 6px 0!important;
	transition: .8s;
}
ul.footer_head_menu li a:hover{
	opacity: 0.6;
}
a.icon_instagram{
	display: block;
	width: 30px;
	margin: 12px auto;
	transition: .5s;
}
a.icon_instagram:hover{
	opacity: 0.6;
}
ul.footer_bottom_menu{
	padding: 0!important;
	text-align: center;
	max-width: 400px;
	width: 80%;
	margin: 0 auto;
}
ul.footer_bottom_menu li{
	list-style: none;
	display: inline-block;
}
ul.footer_bottom_menu li a{
	list-style: none;
	display: inline-block;
	font-size: 11px;
	line-height: 20px;
	letter-spacing: 0.1em;
	margin: 0 16px;
	transition: .8s;
}
ul.footer_bottom_menu li a:hover{
	opacity: 0.6;
}
.copyright{
	text-align: center;
	font-size: 10px;
	line-height: 20px;
	margin: 24px 0 0;
}
@media only screen and (min-width: 640px) {
.footer_menu{
	max-width: 900px;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
a.footer_logo{
	max-width: 148px;
	padding: 12px 0 0;
}
ul.footer_head_menu{
	width: 320px;
}
ul.footer_head_menu li:nth-child(even){
	width: 130px;
}
ul.footer_head_menu li:nth-child(odd){
	width: 130px;
}
ul.footer_head_menu li a{
	font-size: 16px;
	line-height: 26px;
}
a.icon_instagram{
	width: 36px;
	margin: 20px auto;
}
ul.footer_bottom_menu{
	max-width: none;
	width: 100%;
}
ul.footer_bottom_menu li a{
	font-size: 12px;
	margin: 0 12px;
}
}
@media only screen and (min-width: 1200px) {
ul.footer_head_menu{
	width: 400px;
}
ul.footer_head_menu li:nth-child(even){
	width: 150px;
}
ul.footer_head_menu li:nth-child(odd){
	width: 150px;
}
ul.footer_head_menu li a{
	font-size: 18px;
	line-height: 32px;
}
ul.footer_bottom_menu li a{
	font-size: 12px;
	line-height: 24px;
}
}
	