html {
	color: var(--primary-color);
	font-family: var(--font-family--ja);
	font-size: 16px;
	font-weight: 400;
	scroll-behavior: smooth;
}

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

a,
:visited {
	color: var(--primary-color);
	cursor: pointer;
	text-decoration: unset;
	transition: all .3s;

	@media (hover: hover) {
		&:hover {
			transition: all .3s;
		}
	}

	@media (hover: none) {
		&:active {
			transition: all .3s;
		}
	}
}

ul,
figure {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

p {
	font-size: var(--base-font-size);
	line-height: 1.5;
	margin: 0;
}

sup,
sub {
	font-size: .625em;
	-webkit-margin-end: .5em;
	margin-inline-end: .5em;
}

button {
	border: unset;
	background: unset;
	margin: 0;
	padding: 0;
}




.pcNone {
	display: none;

	@media screen and (max-width: 899px) {
		display: block;
	}
}

.spNone {
	display: block;

	@media screen and (max-width: 899px) {
		display: none;
	}
}

.u-container-inline {
	container-type: inline-size;
}

body {
	&.is-open {
		overflow: hidden;
	}
}

/* -----------
ヘッダー
----------*/
.site-header {
	background-color: var(--color-white);
	padding-inline: 20px;
	position: -webkit-sticky;
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	transition: opacity .3s ease, transform 1s ease;

	@media screen and (max-width: 899px) {
		padding: 5.33vw;
	}

	&.hide {
		transform: translateY(-100%);
		transition: transform 1s ease;
	}
}

.site-header__container {
	height: 140px;
	width: min(1200px, 100%);
	container-type: inline-size;
	margin: 0 auto;
	display: grid;
	align-items: center;

	@media screen and (max-width: 899px) {
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}
}

.site-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 7.75cqw;
}

.site-header__logo {
	margin: 0;
	width: min(276px, 23cqw);

	@media screen and (max-width: 899px) {
		width: 49.87vw;
	}
}

.site-header-wrap {
	flex: 1;

	@media screen and (max-width: 899px) {
		width: 100vw;
		position: fixed;
		top: -150vh;
		left: 50%;
		translate: -50% 0;
		background: var(--primary-color);
		z-index: 1000;
		padding-inline: 10.13vw;
		height: 100vh;
		overflow-y: scroll;
		transition: all .5s ease;
		opacity: 0;

		&.is-open {
			top: 0;
			opacity: 1;
			transition: all .5s ease;

			.is-ios & {
				top: -5.33vw;
				transition: all .5s ease;
				opacity: 1;
			}
		}


	}
}

.site-header__sp-hum-wrap {
	display: contents;

	@media screen and (max-width: 899px) {
		display: block;
		padding-block: 13.33vw 50vw;
	}
}

.hum-btn__close {
	cursor: pointer;

	@media screen and (max-width: 899px) {
		display: block;
		position: absolute;
		left: 6.67vw;
		top: 6.67vw;
		width: 4.53vw;
		aspect-ratio: 1;
		background-color: unset;
		border: unset;


		span {
			position: absolute;
			top: 50%;
			left: 50%;
			width: calc(100% * 1.4142);
			/* ↑ ルート2 */
			height: 2px;
			background-color: var(--color-white);
			display: block;
			transform-origin: center;
			transition: transform 0.3s ease;

			&:first-child {
				transform: translate(-50%, -50%) rotate(45deg);
			}

			&:last-child {
				transform: translate(-50%, -50%) rotate(-45deg);
			}
		}
	}
}

.site-header__hum-logo {
	@media screen and (max-width: 899px) {
		width: 58.67vw;
		margin: 0 auto 8vw;
	}
}

nav.site-header__nav {
	@media screen and (max-width: 899px) {
		margin-bottom: 5.33vw;
	}
}

ul.site-header__nav {
	display: flex;
	justify-content: space-between;
	font-size: clamp(0.75rem, 0.375rem + 0.67vw, 0.875rem);
	line-height: 1;

	@media screen and (max-width: 899px) {
		flex-direction: column;
		text-align: center;
		font-size: 4.27vw;
		gap: 1em;
	}
}

.site-header__nav-item {
	a {
		position: relative;
		text-decoration: unset;

		@media screen and (max-width: 899px) {
			color: var(--color-white);
			line-height: 2;
		}
	}
}

.site-header__nav-item.site-header__nav-item--sp {
	a {
		@media screen and (max-width: 899px) {
			color: var(--primary-color);
			background: var(--color-white);
			padding: 0.813em;
			display: block;
		}
	}

}

.site-header__nav-item a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -.75em;
	height: 2px;
	background-color: currentColor;
	width: 100%;
	transition: all .4s ease;
	left: 50%;
	translate: -50% 0;
	scale: 0 1;

	@media screen and (max-width: 899px) {
		display: none;
	}
}

.site-header__nav-item a:hover:after {
	scale: 1 1;
	transition: all .4s ease;
}

.site-header__sp-contact {
	color: var(--color-white);
}

.site-header__sp-contact-label {
	font-size: 4.27vw;
	text-align: center;
	font-weight: 300;
	line-height: 1;
}

.site-header__sp-contact-number {
	a {
		color: var(--color-white);
		font-family: var(--font-family--en);
		font-size: 13.33vw;
		font-weight: 500;
		line-height: 1.5;
		display: block;
		text-align: center;
	}
}

.site-header__sp-contact-time {
	font-size: 4.27vw;
	text-align: center;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 8vw;
}

.site-header__sp-social {
	display: flex;
	justify-content: center;
	gap: 4.27vw;
}

.site-header__sp-social-link {
	width: 10.67vw;
}

.site-header__sp-social-link--instagram {}

.site-header__sp-social-link--line {}

.hum-btn__open {
	cursor: pointer;

	@media screen and (max-width: 899px) {
		width: 22px;
		aspect-ratio: 11/9;
		display: flex;
		flex-direction: column;
		justify-content: space-between;

		span {
			width: 100%;
			height: 2px;
			display: block;
			background-color: var(--primary-color);
		}
	}
}




/* -----------
CTAセクション
----------*/
.section-cta {
	width: 100%;
	background-color: var(--warm-grey);
	color: var(--color-white);
	padding-inline: 20px;

	@media screen and (max-width: 899px) {
		padding-inline: 5.33vw;
	}
}

.cta-section__container {
	width: min(1200px, 100%);
	container-type: inline-size;
	margin: 0 auto;
}

.cta-section__inner {
	padding-block: 58px 103px;
	display: grid;
	gap: min(33px, 2.75cqw);

	@media screen and (max-width: 899px) {
		padding-block: 8vw 8.8vw;
		gap: 2.67vw;
	}
}

.cta-section__header {
	display: flex;
	justify-content: flex-start;
	gap: min(27px, 2.25cqw);
	align-items: flex-end;

	@media screen and (max-width: 899px) {
		display: grid;
		align-items: start;
		gap: 2.67vw;
	}
}

.cta-section__en-heading {
	font-family: var(--font-family--en);
	font-size: 5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -.02em;
	margin: 0;

	@media screen and (max-width: 899px) {
		font-size: 14.67vw;
	}
}

.cta-section__ja-heading {
	font-size: 0.812rem;
	line-height: 2.3;
	margin: 0;
	font-weight: 400;
	letter-spacing: .02em;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;

	@media screen and (max-width: 899px) {}
}

.cta-section__ja-heading:before,
.cta-section__ja-heading:after {
	content: "";
	width: .75em;
	height: 1px;
	background: currentColor;
	display: block;
}

.cta-section__body {
	display: grid;
	grid-template-columns: min(630px, 52.5cqw) 1fr;
	gap: min(68px, 5.67cqw);

	@media screen and (max-width: 899px) {
		grid-template-columns: 1fr;
		gap: 10.67vw;
	}
}

.cta-section__main {
	container-type: inline-size;
}

.cta-section__lead {
	font-size: 0.812rem;
	letter-spacing: .02em;
	margin-bottom: 1.25em;
	font-weight: 300;
}

.cta-section__buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.76cqw;

	@media screen and (max-width: 899px) {
		grid-template-columns: 1fr;
		gap: 5.33vw;
	}

}

.cta-section__button {
	a {
		display: block;
		background: var(--color-white);
		font-size: min(1rem, 3.17cqw);
		font-weight: 300;
		padding: 1em;
		border-radius: 5px;
		text-align: center;
		line-height: 1.8;
		transition: all .3s;

		@media screen and (max-width: 899px) {
			width: 89.55%;
			font-size: 5.33vw;
			line-height: 1.25;
		}


		@media (hover: hover) {
			&:hover {
				color: var(--color-white);
				background: var(--primary-color);
				transition: all .3s;
				text-decoration: unset;
			}
		}

		@media (hover: none) {
			&:active {
				color: var(--color-white);
				background: var(--primary-color);
				transition: all .3s;
				text-decoration: unset;
			}
		}



	}
}

.cta-section__button--sub {}

.cta-section__tel {}

.cta-section__tel-wrap {
	display: grid;
	grid-template-columns: auto auto;
	gap: min(40px, 1rem);

	@container (max-width: 1199px) {
		grid-template-columns: 1fr;
	}
}

.cta-section__tel-caption {
	font-size: 0.812rem;
	letter-spacing: .02em;
	margin-bottom: 1.25em;
	font-weight: 300;

	@media screen and (max-width: 899px) {
		line-height: 1.75;
	}

}

.cta-section__tel-block {}

.cta-section__tel-label {
	font-size: 0.812rem;
	letter-spacing: .02em;
	font-weight: 300;
}

.cta-section__tel-number {
	line-height: 1;

	a {
		font-family: var(--font-family--en);
		font-size: 2.5rem;
		font-weight: 500;
		color: var(--color-white);
		line-height: 1.3;

		@media (hover: hover) {
			&:hover {
				opacity: .7;
			}
		}

		@media (hover: none) {
			&:active {
				opacity: .7;
			}
		}
	}
}




/* -----------
フッター
----------*/
.site-footer {
	width: 100%;
	background-color: var(--primary-color);
	color: var(--color-white);
	padding-inline: 20px;

	@media screen and (max-width: 899px) {
		padding-inline: 5.33vw;
	}
}

.site-footer__container {
	width: min(1200px, 100%);
	container-type: inline-size;
	margin: 0 auto;
}

.site-footer__inner {
	padding-block: min(100px, 8.33cqw) min(96px, 8cqw);

	@media screen and (max-width: 899px) {
		padding-block: 10.67vw 8vw;
	}
}

.site-footer__head {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	gap: min(33px, 2.75cqw);
	margin-bottom: min(56px, 4.67cqw);

	@media screen and (max-width: 899px) {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-bottom: 5.33vw;
	}
}

.site-footer__logo {
	width: min(320px, 33.33cqw);

	@media screen and (max-width: 899px) {
		width: 62.13vw;
		margin-bottom: 2.93vw;
	}

	a {
		display: block;

		@media (hover: hover) {
			&:hover {
				opacity: .7;
			}
		}

		@media (hover: none) {
			&:active {
				opacity: .7;
			}
		}
	}
}

.site-footer__copy {
	font-family: var(--font-family--en);
	font-weight: 300;
	font-size: 1.312rem;
	line-height: 1;
	color: var(--color-white);

	@media screen and (max-width: 899px) {
		font-size: 4.53vw;
		margin-bottom: 5.6vw;
	}
}

.site-footer__sns {
	display: flex;
	gap: 20px;

	@media screen and (max-width: 899px) {
		gap: 3.47vw;
	}
}

.site-footer__sns__icon {
	width: min(40px, 4.17cqw);

	@media screen and (max-width: 899px) {
		width: 9.07vw;
	}

	a {
		display: block;

		@media (hover: hover) {
			&:hover {
				opacity: .7;
			}
		}

		@media (hover: none) {
			&:active {
				opacity: .7;
			}
		}
	}
}

.site-footer__content {
	display: grid;
	grid-template-columns: auto 1fr;
	margin-bottom: min(62px, 5.17cqw);
	gap: min(48px, 4cqw);
	font-size: min(13px, 1.33cqw);

	@media screen and (max-width: 899px) {
		grid-template-columns: 1fr;
		gap: 8vw;
		margin-bottom: 8vw;
		font-size: 4.27vw;
	}
}

.site-footer__nav {
	border-right: 1px solid;
	padding-right: min(33px, 2.75cqw);
	line-height: 1;
	display: grid;
	gap: 2.5em;

	@media screen and (max-width: 899px) {
		border-right: unset;
		gap: 1.5em 4.53vw;
		padding-right: unset;
		grid-template-rows: repeat(5, auto);
		grid-auto-flow: column;
		grid-template-columns: minmax(auto, 44.8vw) auto;
	}
}

.site-footer__nav-item {
	a {
		color: var(--color-white);

		&[href="/privacy-policy/"] {
			letter-spacing: -.075em;
		}

		@media (hover: hover) {
			&:hover {
				opacity: .7;
				text-decoration: underline;
			}
		}

		@media (hover: none) {
			&:active {
				opacity: .7;
				text-decoration: underline;
			}
		}
	}
}

.footer__cat-list-container {
	display: flex;
	justify-content: space-between;
	gap: min(10px, 0.83cqw);

	@media screen and (max-width: 899px) {
		display: grid;
		grid-template-columns: minmax(auto, 44.8vw) auto;
		gap: 8vw 4.53vw;
		justify-content: start;
	}
}

.footer__cat-list {
	&.footer__cat-list--lotion {
		grid-area: 1/1/2/2;
	}

	&.footer__cat-list--serum {
		grid-area: 1/2/3/3;
	}

	&.footer__cat-list--cream {
		grid-area: 2/1/5/2;
	}

	&.footer__cat-list--cleansing {
		grid-area: 3/2/4/3;
		3/FONT-WEIGHT: 200;
	}

	&.footer__cat-list--uv {
		grid-area: 4/2/5/3;
	}
}

.footer__cat-list-wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 3.2em;

	@media screen and (max-width: 899px) {
		display: contents;
	}
}

.footer__cat-list__title {
	margin: 0;
	font-size: 1em;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 2.5em;

	@media screen and (max-width: 899px) {
		margin-bottom: 1.5em;
	}
}

.footer__cat-list__ul {
	line-height: 1;
	display: grid;
	gap: 2.5em;

	@media screen and (max-width: 899px) {
		font-size: .75em;
		gap: 1.5em;
	}
}

.footer__cat-list__ul-item {
	a {
		color: var(--color-white);

		&[href="/products/activechargelotion/"],
		&[href="/products/moistcushionwash/"] {
			letter-spacing: -.075em;
		}

		@media (hover: hover) {
			&:hover {
				opacity: .7;
				text-decoration: underline;
			}
		}

		@media (hover: none) {
			&:active {
				opacity: .7;
				text-decoration: underline;
			}
		}
	}
}

.footer__copyright {
	font-family: var(--font-family--en);
	font-weight: 300;
	text-align: center;
	line-height: 1;
	font-size: 0.812rem;
}



/* コンテンツエリア最後の要素 */
.content-area> :last-child {
	margin-bottom: min(200px, 26.67vw);
}



/* ----------
fadeアニメーション
---------- */
/* fade-in */
.cg-fade-in {
	opacity: 0;
	transition: var(--transition-fade);
	transition-property: opacity;
	transition-delay: 40ms;

	&.is-cg-visible {
		opacity: 1;
	}
}

/* fade-up */
.cg-fade-up {
	opacity: 0;
	filter: blur(0.1rem);
	transform: translate3d(0, 1.5rem, 0) rotate(0.001deg);
	transition: var(--transition-fadeup);
	transition-property: opacity, filter, transform;
	transition-delay: 40ms;

	&.is-cg-visible {
		opacity: 1;
		filter: blur(0);
		transform: translate3d(0, 0, 0) rotate(0.001deg);
	}
}