@charset "utf-8";
/*
Theme Name: Im beauty produce
Version: 1.0
*/

html {
	scroll-behavior: smooth;
}

body .pc {
	display: none;
}

@media screen and (min-width: 1024px) {
	body .sp {
		display: none;
	}

	body .pc {
		display: block;
	}
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	line-height: 170%;
	font-size: 14px;
	color: #3D3D3D;
	letter-spacing: 0.05em;
	background-color: #FFFEFB;
}

img {
	width: 100%;
	height: auto;
}

main {
	overflow: hidden;
}


@media screen and (min-width: 1024px) {
	body {
		font-size: 16px;
	}
}

/* ----------------------------------------------------
    header
---------------------------------------------------- */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

header h1 {
	font-size: 24px;
	font-weight: 400;
	font-family: "Bellefair", serif;
	color: #BA8874;
}

header a.header-logo {
	text-decoration: none;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
	padding: 4px 16px;
	background-color: #F9F7F2;
	z-index: 999;
}

.header__nav {
	position: absolute;
	display: flex;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	transform: translateX(100%);
	background-color: #F9F7F2;
	transition: ease 0.4s;
	height: 100vh;
	z-index: 998;
}

.header__nav.active {
	transform: translateX(0);
}

.nav-items {
	position: absolute;
	top: 44%;
	left: 55px;
	transform: translateY(-50%);
}

.nav__items li {
	margin-bottom: 24px;

}

.nav-items__item a {
	font-family: "Shippori Mincho B1", serif;
	color: #3D3D3D;
	font-weight: 400;
	text-decoration: none;
}


.hamburger {
	position: relative;
	width: 48px;
	height: 48px;
	background-color: #F9F7F2;
	border-radius: 100px;
	cursor: pointer;
	border: none;
}

.hamburger .span {
	height: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	display: block;
	display: flex;
	width: 100%;
}

.hamburger .span>span {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 26px;
	height: 1px;
	background-color: #3D3D3D;
	transition:
		transform 0.4s ease,
		opacity 0.4s ease;
}

.hamburger .span>span:nth-child(1) {
	top: 40%;
}

.hamburger .span>span:nth-child(2) {
	top: 60%;
}

.hamburger.active .span>span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active .span>span:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (1024px <=width) {
	.header__nav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
		width: 100%;
	}

	.nav__items {
		width: 100%;
		display: flex;
		align-items: center;
		height: initial;
		justify-content: flex-end;
		gap: 48px;
	}

	header h1 {
		font-size: 24px;
		white-space: nowrap;
	}

	.nav-bg {
		display: none;
	}

	.nav__items li {
		margin-bottom: 0;
	}

	.nav-items {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}

	.nav-items__item {
		margin-bottom: 0;
	}

	.nav-items__item:not(:last-child) {
		padding-bottom: 0;
	}

	.nav-items__item a {
		width: 100%;
		display: block;
		border-top: none;
		padding-top: 0px;
		margin-top: 0px;
		padding-left: 0%;
	}

	.nav__items li:last-child.nav-items__item a {
		padding: 12px 16px;
		color: #fff;
	}

	.nav-items__item a:hover {
		opacity: 0.7;
	}

	.hamburger {
		display: none;
	}

	.header__inner {
		padding: 20px 72px 20px 40px;
		gap: 32px;
	}
}

/* ----------------------------------------------------
    メインビジュアル
---------------------------------------------------- */
.mv-sp {
	margin-bottom: 59px;
}

.mv-top {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	align-items: center;
	padding-top: 104px;
}

.mv-img {
	width: 76%;
}

.mv-top p {
	writing-mode: vertical-rl;
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	letter-spacing: 0.3em;
}

.mvtop-maincopy {
	font-family: "Shippori Mincho B1", serif;
	font-size: 32px;
	letter-spacing: 0.04em;
	line-height: 125%;
	margin-left: 10%;
	margin-top: 26px;
	margin-bottom: 17px;
}

.mvtop-subcopy {
	margin-left: 10%;
	margin-bottom: 35px;
}

.cta {
	background-color: #BA8874;
	font-size: 16px;
	padding: 15px 30px;
	font-family: "Shippori Mincho B1", serif;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	margin: 40px auto;
	width: 52%;
	max-width: 300px;
	text-align: center;
}

.cta span::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 7px;
	background-image: url('./images/arrow.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: relative;
	top: -3px;
	margin-left: 8px;
}

@media screen and (min-width: 1024px) {
	.mv {
		height: 100vh;
		position: relative;
	}

	.mv .p-1 {
		font-size: 26px;
		font-family: "Shippori Mincho B1", serif;
		font-weight: 400;
	}

	.mvtop-maincopy {
		font-size: 48px;
		margin-left: 0;
		margin-bottom: 56px;
	}

	.mv-img {
		width: 100%;
	}

	.mv-img img {
		height: 100vh;
		object-fit: cover;
	}

	.mv-text {
		position: absolute;
		left: 50%;
		top: 53%;
		transform: translate(-50%, -50%);
		max-width: 1600px;
		width: 82%;
	}

	.mvtop-subcopy {
		margin-left: 0;
		margin-bottom: 56px;
	}

	.cta {
		margin: 0;
	}
}

/* ----------------------------------------------------
	    こんなお悩みありませんか？
---------------------------------------------------- */
.problem .heading {
	background-color: #F9F7F2;
}

.problem .heading .inner {
	display: flex;

	align-items: center;
	justify-content: center;
}

.problem .heading h2 {
	font-size: 22px;
	font-family: "Shippori Mincho B1", serif;
	color: #BA8874;
	width: 44.5%;
	line-height: 145%;
	font-weight: 400;
	position: relative;
	display: inline-block;
}

.problem .heading h2::before {
	position: absolute;
	content: "";
	width: 70px;
	height: 55px;
	background-image: url('./images/check!.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: -40px;
	left: -28px;
}

.problem .heading .illust {
	width: 38.66%;
	margin-left: -10px;
}

.problem-inner {
	background-color: #fff;
	padding: 28px;
}

.problem ul {
	width: 92%;
	margin: 0 auto;
	max-width: 340px;
}

.problem li {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.problem li .dot {
	width: 6px;
	height: 6px;
	margin-top: -9px;
}

.problem li span {
	color: #BA8874;
}

.support-message {
	font-family: "Shippori Mincho B1", serif;
	background-color: #F9F7F2;
	text-align: center;
	padding-top: 23px;
}

.support-message p {
	font-size: 16px;
}

.support-message p .marker {

	background: linear-gradient(transparent 50%, rgba(240, 197, 164, 0.2) 50%);
}

@media screen and (min-width: 1024px) {

	.problem .heading .inner {
		display: block;
	}

	.problem .heading {
		display: block;
		text-align: center;
		padding-top: 184px;
	}

	.problem .heading h2 {
		width: auto;
		margin: 0 auto;
		font-size: 40px;
		margin-bottom: 56px;
	}

	.problem .heading .illust {
		width: 72%;
		max-width: 1120px;
		margin: 0 auto;
	}

	.problem .heading h2::before {
		width: 107px;
		height: 49px;
		top: -41px;
		left: -61px;
	}

	.problem .support-message .p-1 {
		font-size: 28px;

	}

	.problem .support-message p {
		font-size: 43px;
		line-height: 170%;
	}

	.problem-inner {
		padding: 0;
	}
}

/* ----------------------------------------------------
    肌が改善しないのには理由があります
---------------------------------------------------- */
.inner {
	max-width: 560px;
	margin: 0 auto;
	padding: 0 24px;
}

.reason-main {
	font-family: "Shippori Mincho B1", serif;
	color: #BA8874;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
	margin-top: 16px;
	margin-bottom: 38px;
}

.emphasis-dot {
	position: relative;
	display: inline-block;
}

.emphasis-dot::before,
.emphasis-dot::after {
	content: "";
	position: absolute;

	width: 2px;
	height: 2px;
	background-color: #BA8874;
	border-radius: 50%;
}

.emphasis-dot::before {
	left: 23%;
}

.emphasis-dot::after {
	right: 24%;
}

.reason-box {
	background: #fff;
	padding: 36px 25px;
	margin-bottom: 32px;
	border-radius: 8px;
	box-shadow: 0 0 37px 0 rgba(186, 130, 116, 0.25);
}

.check-list {
	width: 75%;
	margin: 0 auto;
	max-width: 240px;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.check-list li:not(:last-child) {
	margin-bottom: 8px;
}

.check-list .checkbox img {
	width: 12px;
	height: 12px;
	margin-top: 6px;
	display: block;
	flex-shrink: 0;
}

.reason-compare {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 34px;
}

.reason-item p {
	text-align: center;
	font-size: 14px;
	margin-top: 16px;
	color: #BA8874;
}

.cross {
	font-weight: 700;
	color: #BA8874;
	font-size: 16px;
	margin-top: -34px;
}

.reason-footer {
	background: #BA8574;
	padding: 14px 26px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 2.0;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 500;
	margin-bottom: 42px;
}

.reason-footer .bold {
	font-weight: 700;
}

@media screen and (min-width: 1024px) {
	.inner {
		max-width: 1120px;
		width: 78%;
		margin: 0 auto;
		padding: 0;
	}

	.reason-main {
		font-size: 43px;
		margin-top: 64px;
	}

	.emphasis-dot::before,
	.emphasis-dot::after {
		content: "";
		position: absolute;
		width: 6px;
		height: 6px;
		background-color: #BA8874;
		border-radius: 50%;
	}


	.reason-box {
		width: 725px;
		margin: 24px auto 42px;
		padding: 62px 0;

	}

	.check-list li {
		font-size: 22px;
		margin-bottom: 21px;
		gap: 8px;
	}

	.check-list li:last-child {
		margin-bottom: 0;
	}

	.check-list li:not(:last-child) {
		margin-bottom: 22px;
	}

	.check-list .checkbox img {
		width: 19px;
		height: 19px;
		margin-top: 5px;
	}

	.check-list {
		width: 62%;
		max-width: none;
	}

	.reason-footer {
		font-size: 32px;
	}

	.reason-item p {
		font-size: 22px;
	}

	.cross {
		font-size: 28px;
	}

	.reason-compare {
		gap: 40px;
		margin-bottom: 72px;
	}

	.reason-footer {
		padding: 64px 0;
		margin-bottom: 120px;
	}

}


/* ----------------------------------------------------
サポート内容
---------------------------------------------------- */
.support h2 {
	text-align: center;
	margin-bottom: 34px;
}

.support-heading .sub {
	font-size: 16px;
	color: #BA8874;
	display: inline-block;
	margin-bottom: 12px;
}

.support-heading .main {
	font-size: 32px;
	color: #BA8874;
	font-family: "Bellefair", serif;
	font-weight: 400;
	display: inline-block;
	margin-bottom: 16px;
}

.support-heading .nara {
	margin-bottom: 16px;
	display: inline-block;
}

.support-list .img {
	box-shadow: 10px 10px 40px 0 rgba(255, 227, 220, 1);
	margin-bottom: 24px;
}

.support-list .sub {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 500;
	margin-bottom: 8px;
}

.support-list h3 {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 28px;
	line-height: 1.6;
}

.support-list .marker {
	background: linear-gradient(transparent 50%, rgba(240, 197, 164, 0.2) 50%);
}

.support-list .bold {
	font-weight: 700;
}

.support-list {
	margin-bottom: 72px;
}

.support-conclusion {
	position: relative;
	margin-bottom: 40px;
}

.quotes_up {
	position: absolute;
	top: -18px;
	left: -2px;
}

.quotes_down {
	position: absolute;
	bottom: -22px;
	right: 0px;
}

.support-conclusion img {
	width: 51px;
	height: 43px;
}

.support-conclusion p {
	font-size: 20px;
	line-height: 180%;
	text-align: center;
}

.support-conclusion .emphasis {
	font-size: 24px;
	color: #BA8874;
}


@media screen and (min-width: 1024px) {

	.support-heading .sub {
		font-size: 22px;
	}

	.support-heading .main {
		font-size: 48px;
		margin-bottom: 4px;
	}

	.support-heading .nara {
		font-size: 21px;
	}

	.support h2 {
		font-size: 24px;
		margin-bottom: 80px;
		line-height: 1.6;
	}


	.support-list {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 120px;
	}

	.support-list .img {
		width: 50%;
		margin-bottom: 0;
	}

	.support-list .text {
		width: 45%;
	}

	.support-conclusion p {
		font-size: 32px;
	}

	.support-conclusion .emphasis {
		font-size: 36px;
	}

	.support-conclusion {
		max-width: 954px;
		margin: 0 auto 24px;
	}

	.support-conclusion img {
		width: 69px;
		height: 58px;
	}

	.quotes_down {
		position: absolute;
		bottom: 0px;
		right: -2px;
	}

}


/* ----------------------------------------------------
    サービスの流れ
---------------------------------------------------- */
.service-flow {
	margin-top: 20px;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h2 {
	font-family: "Shippori Mincho B1", serif;
	font-size: 18px;
	color: #BA8574;
}

.service-flow .section-title p::before {
	content: '';
	background: rgba(186, 133, 116, 0.5);
	width: 8px;
	height: 0.3px;
	display: block;
	margin-top: 5px;
}

.section-title p {
	font-family: "Bellefair", serif;
	font-size: 14px;
	color: rgba(186, 133, 116, 0.5);
}

.service-content img {
	width: 35px;
}

.service-list {
	display: flex;
	gap: 14px;
	margin-bottom: 32px;
}

.service-sub {
	font-family: "Shippori Mincho B1", serif;
	font-size: 14px;
	font-weight: 700;
	color: rgba(186, 133, 116, 0.5);

}

.service-list h3 {
	font-family: "Shippori Mincho B1", serif;
	font-size: 18px;
	font-weight: 700;
	color: #BA8574;
	margin-bottom: 12px;
	letter-spacing: 0.1em;
}

.video-box .label {
	font-family: "Shippori Mincho B1", serif;
	color: #BA8574;
	text-align: center;
	margin-bottom: 10px;
}

.video-box {
	background-color: #F9F7F2;
	max-width: 500px;
	margin: 32px auto;
	padding: 12px 32px 32px;
}

.video {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9のアスペクト比 */
	height: 0;
}


.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (min-width: 1024px) {
	.service-flow-pc {
		margin-top: 80px;
		display: flex !important;
	}

	.service-flow-pc .section-title {
		width: 45%;
	}

	.section-title h2 {
		font-family: "Shippori Mincho B1", serif;
		font-size: 40px;
		color: #BA8574;
	}

	.service-flow .section-title p::before {
		content: '';
		background: rgba(186, 133, 116, 0.5);
		width: 14px;
		height: 1px;
		display: block;
		margin-top: 20px;
		margin-bottom: 8px;
	}

	.section-title p {
		font-family: "Bellefair", serif;
		font-size: 24px;
		color: rgba(186, 133, 116, 0.5);
	}

	.service-list {
		margin-bottom: 64px;
		gap: 24px;
	}

	.service-content {
		width: 50%;
	}

	.service-content img {
		width: 56px;
	}

	.service-list h3 {
		font-size: 22px;
		margin-bottom: 16px;
	}


	.video-box .label {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.video-box {
		width: 72%;
		max-width: 1120px;
		margin: 0px auto 80px;
		padding: 40px 80px;
	}

}


/* ----------------------------------------------------
    選ばれる理由
---------------------------------------------------- */
.reasons-to-choose-us {
	padding-bottom: 64px;

}

.reasons-to-choose-us .section-title p::before {
	content: '';
	background: rgba(186, 133, 116, 0.5);
	width: 8px;
	height: 0.3px;
	display: block;
	margin-top: 5px;
}

.reasons-to-choose-us .img {
	margin-bottom: 32px;
}

.reasons-to-choose-us h3 {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 16px;
	line-height: 1.6;
}

.reasons-to-choose-us h3 span {
	background: linear-gradient(transparent 50%, rgba(255, 227, 220, 0.5) 50%);
}

.reasons-to-choose-us li {
	margin-bottom: 40px;
}

.reasons-to-choose-us .reason-num img {
	margin-bottom: 24px;
}


@media screen and (min-width: 1024px) {
	.reasons-to-choose-us {
		margin-top: 80px;
	}

	.reasons-to-choose-us .title {
		margin-bottom: 72px;
	}

	.reasons-to-choose-us li {
		margin-bottom: 120px;
	}

	.reasons-to-choose-us .img,
	.reason-num-img {
		margin-bottom: 0;
		width: 50%;
	}

	/* 
	.reasons-to-choose-us img {
		width: 50%;
	} */

	.reasons-to-choose-us h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.reasons-to-choose-us .text {
		width: 50%;
	}

	.reason-list {
		display: flex;
		flex-direction: row-reverse;
		gap: 24px;
		align-items: center;
	}

	.reasons-to-choose-us .section-title p::before {
		margin-top: 24px;
		width: 14px;
		height: 1px;
		margin-bottom: 8px;
	}

}


/* ----------------------------------------------------
    私がサービスを始めた理由
---------------------------------------------------- */
.about-me {
	background-color: #F7F4F0;
	position: relative;
	padding: 150px 0 0;
}

.about-me1 {
	position: absolute;
	right: -10px;
	top: -76px;
	width: 61%;
	max-width: 370px;
}

.about-me-title {
	margin-bottom: 88px;
	display: inline-block;
}

.about-me h2 {
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	color: #BA8574;
	margin-bottom: 12px;
}

.about-me .about-me-title p {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 14px;
}

.about-me .about-me-title p::before {
	content: '';
	background: #3D3D3D;
	width: 16px;
	height: 1px;
	display: block;
	margin-right: 4px;
}

.about-me .inner-text {
	z-index: 100;
	position: relative;
}

.about-me p {
	line-height: 2.1;
	font-size: 16px;
}

.about-me2 {
	width: 72%;
	margin: 56px auto 56px 0;
	max-width: 500px;
}

.profile {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 32px;
	padding-bottom: 88px;
}

.profile .img {
	width: 93px;
}

.profile .sign {
	width: 164px;
}

.profile-text {
	width: 50%;
	font-family: "Bellefair", serif;
}

.video-wrap video {
	width: 100vw;
}

@media screen and (min-width: 1024px) {
	.about-me h2 {
		font-size: 36px;
	}

	.about-me-title {
		margin-bottom: 180px;
		display: block;
	}

	.about-me .about-me-title p {
		justify-content: flex-start;
		margin-top: 24px;
		font-size: 18px;
	}

	.about-me .about-me-title p::before {
		width: 50px;
		margin-right: 14px;
	}

	.about-me p {
		line-height: 2.6;
	}

	.about-me1 {
		width: 30%;
		top: 16%;
		max-width: 480px;
	}

	.about-me3 {
		width: 26%;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		max-width: 500px;
	}

	.about-me2 img {
		aspect-ratio: 239/ 179;
		object-fit: cover;
		object-position: left;
	}

	.about-me2 {
		position: absolute;
		right: 0;
		width: 30%;
		right: -30px;
		transform: scale(-1, 1);
		margin: 0;
		bottom: 0;
		max-width: 600px;
	}

	.about-me .inner-text {
		width: 50%;
		max-width: 800px;
	}

	.inner-text-wrapper {
		margin-right: -10%;
	}

	.profile {
		margin-top: 64px;
		padding-bottom: 320px;
	}

	.profile .img {
		max-width: 93px;
	}

	.profile-text {
		text-align: center;
		width: auto;
	}

	.profile-text p {
		display: inline-block;
	}

	.profile .sign {
		width: 188px;
	}

	.video-wrap video {
		width: 50%;
		margin-top: -12%;
		max-width: 828px;
		left: -94px;
		z-index: 800;
		position: relative;
	}
}

/* ----------------------------------------------------
    インスタセクション
---------------------------------------------------- */
.instagram {
	font-family: "Bellefair", serif;
	text-align: center;
	color: #BA8874;
	margin: 72px 24px;
	display: block;
}

.instagram #sb_instagram,
.instagram .sbi_feed_container {
	max-width: 560px !important;
}

.instagram h2 {
	font-size: 24px;
	margin-top: 8px;
	margin-bottom: 24px;
}

.instagram .insta-icon {
	width: 21px;
	height: 21px;
	display: block;
	text-align: center;
	margin: 0 auto;
}

.follow-me a {
	text-decoration: none;
	display: flex;
	align-items: center;
	color: #BA8874;
	font-size: 16px;
	width: 100%;
	justify-content: space-between;
}

.follow-me a::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url('./images/arrow2.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

}

.follow-me {
	border-bottom: 1px solid #BA8874;
	padding-bottom: 8px;
	margin: 0 auto;
	width: 197px;
}

.follow-me .label-group {
	display: flex;
	gap: 8px;
	align-items: center;
}


.follow-me img {
	width: 8px;
	height: 8px;
	display: block;

}

@media screen and (min-width: 1024px) {
	.instagram {
		margin: 120px auto;
		max-width: 1120px;
		width: 88%;
	}

	.instagram .insta-icon {
		width: 36px;
		margin-bottom: 32px;
	}

	.instagram h2 {
		margin-bottom: 80px;
	}

	.instagram #sb_instagram,
	.instagram .sbi_feed_container {
		max-width: none !important;
	}
}

/* ----------------------------------------------------
    CTA
--------------------------------------------------- */

.cta-area p {
	font-family: "Shippori Mincho B1", serif;
	color: #fff;
	line-height: 142%;
}

.cta-area .cta-btn a {
	background-color: #fff;
	font-size: 14px;
	padding: 8px 16px;
	font-family: "Shippori Mincho B1", serif;
	color: #BA8574;
	text-decoration: none;
	display: block;
	text-align: center;
	width: 140px;
	height: 25px;
}

.cta-area .cta-btn span::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 6px;
	background-image: url('./images/arrow2.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: relative;
	top: -3px;
	margin-left: 8px;
}

.cta-area {
	background-color: #BA8574;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;

}

.cta-area .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}



@media screen and (min-width: 1024px) {

	.cta-area {
		padding: 72px 0;
	}

	.cta-area .inner {
		max-width: 1120px;
		width: 78%;
		margin: 0 auto;
	}

	.cta-area p {
		font-size: 32px;
		line-height: 1.5;
	}

	.cta-area .cta-btn a {
		font-size: 20px;
		padding: 20px;
		width: 291px;
	}

	.cta-area .cta-btn span::after {
		width: 15px;
		top: -5px;
	}
}

/* ----------------------------------------------------
    お客様の声
---------------------------------------------------- */
.users-voice .section-title p::before {
	content: '';
	background: rgba(186, 133, 116, 0.5);
	width: 8px;
	height: 0.3px;
	display: block;
	margin: 0 auto;
}

.users-voice .section-title {
	text-align: center;
	margin: 40px auto;
}

.users-voice .section-title h2 {
	margin-bottom: 6px;
}

.users-voice ul li h3 span {
	background: linear-gradient(transparent 50%, rgba(255, 227, 225, 0.5) 50%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;

}

.users-voice ul li:not(:last-child) {
	margin-bottom: 88px;
}

.users-voice ul li h3 {
	font-family: "Shippori Mincho B1", serif;
	font-size: 16px;
	text-align: center;
	line-height: 180%;
}

.user-illust img {
	width: 112px;
	height: 105px;
	display: block;
	margin: 24px auto;
}

.users-voice ul li h4 {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	line-height: 180%;
	margin-bottom: 24px;
}

.users-voice ul li .p-1 {
	margin-bottom: 56px;
}


.before-after {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.before-after .Before p,
.After p {
	font-size: 16px;
	font-family: "Bellefair", serif;
	color: #BA8574;
	position: absolute;
	top: -32px;
	left: 40px;
}

.Before,
.After {
	position: relative;
}

.before-after-img img {
	width: 122px;
	height: 152px;
	display: block;
}

.triangle img {
	width: 12px;
}

.users-voice .attention {
	text-align: center;
}

@media screen and (min-width: 1024px) {
	.users-voice {
		padding-top: 60px;
	}

	.users-voice .section-title p::before {
		height: 1px;
		width: 14px;
		margin-top: 20px;
		margin-bottom: 8px;
	}

	.users-voice .section-title {
		margin-bottom: 72px;
	}

	.users-voice ul li h3 {
		font-size: 28px;
	}

	.user-illust {
		width: 88px;
	}

	.user-illust img {
		width: 88px;
		height: 86px;
		transform: scale(-1, 1);
		margin: 0;
	}

	.users-voice ul li h4 {
		text-align: left;
		margin: 0;
		font-size: 18px;
	}

	.users-voice ul li .voice-heading {
		display: flex;
		gap: 16px;
		align-items: center;
		margin-bottom: 32px;
	}

	.users-voice .voice-inner {
		display: flex;
		justify-content: space-between;
		margin-top: 56px;
	}

	.users-voice li:nth-child(2) .voice-inner {
		flex-direction: row-reverse;
	}

	.users-voice .voice-inner .voice-right {
		width: 50%;
	}

	.users-voice .voice-inner .before-after {
		width: 42%;
		gap: 24px;
	}

	.before-after-img img {
		width: inherit;
		height: inherit;
	}

	.Before,
	.After {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.before-after .Before p,
	.After p {
		left: auto;
		position: relative;
		top: auto;
		margin-bottom: 8px;
	}

	.before-after-img,
	.before-after-img {
		width: 100%;
	}

	.triangle img {
		width: 20px;
		margin-top: 28px;
	}

	.users-voice ul li .p-1 {
		margin-bottom: 0;
	}

	.users-voice ul li:not(:last-child) {
		margin-bottom: 160px;
	}

	.users-voice .attention {
		margin-top: 32px;
		margin-bottom: 64px;
	}
}

/* ----------------------------------------------------
    サポート内容 skin-support
---------------------------------------------------- */
.skin-support .haikeiari {
	background-color: #F9F7F2;
	text-align: center;
}

.illust-woman img {
	margin-bottom: 64px;
	min-width: 65%;
}

.skin-support .lead {
	font-family: "Shippori Mincho B1", serif;
	line-height: 180%;
	margin-bottom: 56px;

}

.skin-support .lead span {
	color: #BA8874;
	background: linear-gradient(transparent 50%, rgba(255, 227, 225, 0.5) 50%);

}

.skin-support .sub {
	font-family: "Shippori Mincho B1", serif;
	line-height: 180%;
}

.sub {
	position: relative;
	display: inline-block;
	/* ←テキスト幅に合わせる */
}

/* 左の線（＼） */
.skin-support .sub::before {
	content: "";
	position: absolute;
	width: 40px;
	height: 1px;
	background: #3D3D3D;
	top: 54%;
	left: -39px;
	/* ←テキストからの距離 */
	transform: rotate(53deg);
}

/* 右の線（／） */
.skin-support .sub::after {
	content: "";
	position: absolute;
	width: 40px;
	height: 1px;
	background: #3D3D3D;
	top: 54%;
	right: -39px;
	/* ←テキストからの距離 */
	transform: rotate(-53deg);
}

/* 丸の並び */
.circle-wrap-sp {
	margin: 32px auto;
}

.circle-wrap-sp .circle-2 {
	display: flex;
	gap: 32px;
}

.circle-wrap-sp .circle-2 .circle:nth-child(1) {
	margin-right: 0;
}

.circle-wrap-sp .circle-2 .circle:nth-child(2) {
	margin-left: 0;
}


/* 丸 */
.circle {
	width: 130px;
	height: 130px;
	background: #BA8874;
	border-radius: 50%;
	margin: 0 auto;

	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

}


.circle p {
	font-family: "Shippori Mincho B1", serif;
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0;

}

.circle span {
	font-size: 14px;
}

.skin-support .message span {
	font-family: "Shippori Mincho B1", serif;
	color: #BA8874;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
}

.skin-support .message {
	font-family: "Shippori Mincho B1", serif;
}

@media screen and (min-width: 1024px) {
	.skin-support .lead {
		font-size: 32px;
		margin-bottom: 140px;
	}

	.skin-support .sub {
		font-size: 28px;
	}

	.skin-support .sub::before {
		width: 100px;
		left: -120px;
	}

	.skin-support .sub::after {
		width: 100px;
		right: -120px;
	}

	.circle-wrap-sp {
		display: none !important;
	}

	.circle-wrap {
		margin-top: 56px;
		display: flex !important;
		justify-content: space-between;
		margin-bottom: 80px;
	}

	.circle {
		width: 31%;
		height: auto;
		aspect-ratio: 1/1;
		margin: 0;
	}

	.circle p {
		font-size: 32px;
	}

	.circle span {
		font-size: 20px;
	}

	.circle span.fz14 {
		font-size: 14px;
	}

	.circle span.fz32 {
		font-size: 32px;
	}

	.skin-support .message {
		font-size: 24px;
		line-height: 1.8;
	}

	.skin-support .message span {
		font-size: 32px;
	}
}

/* ----------------------------------------------------
    FAQ
---------------------------------------------------- */
.FAQ .section-title p::before {
	content: '';
	background: rgba(186, 133, 116, 0.5);
	width: 8px;
	height: 1px;
	display: block;
	margin: 0 auto 4px;
}

.FAQ .section-title {
	text-align: center;
	margin: 40px auto;
}

.FAQ .section-title h2 {
	margin-bottom: 6px;
}


.FAQ-list .FAQ-item .FAQ-q {
	background-color: #E5D0C8;
	margin-bottom: 8px;
	padding: 8px;

}

.FAQ-q,
.FAQ-a {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}

.FAQ-q span,
.FAQ-a span {
	font-family: "Bellefair", serif;
	margin-right: 4px;
}


.FAQ-a p {
	font-weight: 400;
}

.FAQ-a {
	line-height: 170%;
	padding: 8px;
}

.FAQ-list .FAQ-item {
	margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
	.FAQ-list {
		margin-bottom: 160px;
	}

	.FAQ .section-title {
		margin: 120px 0 80px;
	}

	.FAQ .section-title h2 {
		margin-bottom: 20px;
	}

	.FAQ-list .FAQ-item .FAQ-q {
		padding: 20px 30px;
		margin-bottom: 20px;
	}

	.FAQ .section-title p::before {
		width: 14px;
		height: 1px;
		margin-bottom: 8px;
	}

	.FAQ-q span,
	.FAQ-a span {
		font-size: 28px;
		margin-right: 16px;
	}

	.FAQ-q p {
		font-size: 20px;
	}

	.FAQ-a {
		padding: 0 0 0 32px;
		margin-bottom: 0;
	}

	.FAQ-list .FAQ-item {
		margin-bottom: 64px;
	}
}


/* ----------------------------------------------------
安心して肌改善を続けていただくために
---------------------------------------------------- */

.for-your-peace-of-mind .haikeiari {
	background-color: #F9F7F2;
	padding-bottom: 56px;
}

.for-your-peace-of-mind .section-title p::before {
	content: '';
	background: rgba(186, 133, 116, 0.5);
	width: 8px;
	height: 0.3px;
	display: block;
	margin-bottom: 4px;
}

.for-your-peace-of-mind .section-title {
	text-align: left;

}

.for-your-peace-of-mind .section-title h2 {
	margin-bottom: 6px;
	font-size: 16px;

}

.menard img {
	margin-bottom: 56px;
}

.for-your-peace-of-mind .p-2 {
	line-height: 210%;

}


@media screen and (min-width: 1024px) {

	.for-your-peace-of-mind .haikeiari {
		padding-bottom: 132px;
		padding-top: 64px;
	}

	.for-your-peace-of-mind .section-title h2 {
		font-size: 32px;
	}

	.for-your-peace-of-mind .section-title p::before {
		width: 14px;
		height: 1px;
		margin-top: 20px;
		margin-bottom: 12px;
	}

	.for-your-peace-of-mind .wrapper {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}

	.menard img {
		margin-bottom: 0;
	}

	.for-your-peace-of-mind .menard {
		width: 49%;
	}

	.for-your-peace-of-mind .p-2 {
		width: 49%;
	}
}


/* ----------------------------------------------------
最後の一押しCTA
---------------------------------------------------- */
.footer-cta .last-cta {
	position: relative;
}

.last-cta .txt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	font-family: "Shippori Mincho B1", serif;
}

.footer-cta .last-cta .cta {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px auto 0;
}


.footer-cta .last-cta a {
	width: 143px;
	height: 10px;
	margin: 0;
}

.last-cta .txt {
	left: 50%;
	top: 53%;
	transform: translate(-50%, -50%);
	max-width: 700px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: flex-end;
}

.footer-cta img {
	width: 120%;
	left: -20%;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.last-cta h2 {
		font-size: 32px;
		line-height: 1.7;
	}

	.footer-cta .last-cta .cta {
		margin: 24px auto 0 0;
		padding: 26px;
	}

	.footer-cta .last-cta a {
		width: 291px;
		font-size: 20px;
	}

	.last-cta .txt {
		left: 50%;
		top: 53%;
		transform: translate(-50%, -50%);
		max-width: 1380px;
		width: 96%;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-content: flex-end;
	}

	.footer-cta img {
		width: 100%;
		left: 0;
		position: relative;
	}

}

/* ----------------------------------------------------
footer
---------------------------------------------------- */

footer {
	padding: 40px;
	background-color: #F9F7F2;
}

.logo-insta .footer-logo {
	font-family: "Bellefair", serif;
	color: #BA8874;
	font-size: 24px;
}

.logo-insta a {
	display: inline-block;
}

.logo-insta .insta {
	width: 32px;
	height: 32px;
}

.logo-insta {
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer-inner .footer-list {
	margin-top: 40px;
}

.footer-inner .footer-list li {
	font-family: "Shippori Mincho B1", serif;
	margin-bottom: 24px;
	font-weight: 400;
}

.footer-inner .footer-list li a {
	text-decoration: none;
	color: #3d3d3d;
}

.footer-inner .footer-flower img {
	width: 105px;
	height: 157px;
	display: block;
	margin-left: auto;
	margin-top: -125px;
}

@media screen and (min-width: 1024px) {
	footer {
		padding: 64px 0;
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		padding: 0;
		max-width: 1280px;
		width: 88%;
		margin: 0 auto;
	}

	.footer-list {
		display: flex;
		gap: 54px;
		align-items: center;
	}

	.footer-inner .footer-list,
	.footer-inner .footer-list li {
		margin: 0;
	}
}

@media (max-width: 1023px) and (min-width: 768px) {
	.mv-top {
		gap: 64px;
	}

	.mv-top p {
		font-size: 32px;
	