@charset "utf-8";

/**
 * label
 * -------------------------------------------------- */
.o-label {
	font-size: 18px;
	line-height: 1.5;
	font-family: "Vollkorn", serif;
	font-weight: 400;
	letter-spacing: .3em;
}
.p-product_features .o-label,
.p-featured-items .o-label {
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	.o-label {
		font-size: 24px;
	}
	.p-product_features .o-label,
	.p-featured-items .o-label {
		font-size: 18px;
	}
}
/* inview */
.o-label.js-inview {
	transform-origin: 0 0;
}
.o-label.js-inview:not(.is-inview) {
	opacity: 0;
	transform: skewY(5deg) translateY(24px);
}
.o-label.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.o-label.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * radio
 * -------------------------------------------------- */
.o-radio {
	position: absolute;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	border: 0;
}
.o-radio + * {
	position: relative;
	padding-left: 2em;
}
.o-radio + ::before,
.o-radio + ::after {
	content: "";
	position: absolute;
}
.o-radio + ::before {
	top: calc(50% - .5em);
	left: 0;
	width: 1em;
	height: 1em;
	border: 1px solid #c4c4c4;
	border-radius: 1em;
}
.o-radio + ::after {
	top: calc(50% - .5em + 3px);
	left: 3px;
	width: calc(1em - 6px);
	height: calc(1em - 6px);
	border-radius: 1em;
	background: #0091a8;
	transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.o-radio:not(:checked) + ::after {
	transform: scale(0);
}

/**
 * link
 * -------------------------------------------------- */
.o-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 200px;
	font-size: 12px;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: .3em;
}
.o-link .l {
	flex-grow: 1;
	position: relative;
	overflow: hidden;
	margin: 0 1em -.1em 0;
	height: 1px;
}
.o-link .l::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #787878;
}
@media (hover: hover) {
	.o-link {
		transition: color .4s;
	}
	.o-link .l::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #0091a8;
	}
	.o-link .l::before,
	.o-link .l::after {
		transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.o-link:hover {
		color: #0091a8;
	}
	.o-link:hover .l::before {
		transform: translateX(100%);
		transition-duration: .2s;
	}
	.o-link:not(:hover) .l::after {
		transform: translateX(-100%);
		transition-duration: .2s;
	}
}
/* inview */
.o-link.js-inview {
	transform-origin: 0 0;
}
.o-link.js-inview:not(.is-inview) {
	opacity: 0;
	transform: skewY(5deg) translateY(24px);
}
.o-link.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.o-link.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * text link
 * -------------------------------------------------- */
.o-textLink {
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 1px no-repeat;
	transition: background-size .4s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
	.o-textLink:hover {
		background-position: right bottom;
		background-size: 0 1px;
	}
}

/**
 * copy
 * -------------------------------------------------- */
.o-copy {
	font-size: 20px;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	letter-spacing: .2em;
}
@media screen and (min-width: 768px) {
	.o-copy {
		font-size: 30px;
	}
}
/* inview */
.o-copy.js-inview {
	transform-origin: 0 0;
}
.o-copy.js-inview:not(.is-inview) {
	opacity: 0;
	transform: skewY(5deg) translateY(24px);
}
.o-copy.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.o-copy.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * text
 * -------------------------------------------------- */
.o-text {
	font-size: 12px;
	line-height: 2.2;
}
@media screen and (min-width: 1025px) {
	.o-text {
		font-size: 14px;
		line-height: 2.2;
	}
}
/* inview */
.o-text.js-inview {
	transform-origin: 0 0;
}
.o-text.js-inview:not(.is-inview) {
	opacity: 0;
	transform: skewY(10deg) translateY(40px);
}
.o-text.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.o-text.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * note
 * -------------------------------------------------- */
.o-note {
	font-size: 10px;
	letter-spacing: .05em;
}
/* inview */
.o-note.js-inview:not(.is-inview) {
	opacity: 0;
	transform: skewY(10deg) translateY(40px);
}
.o-note.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.o-note.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * bg
 * -------------------------------------------------- */
.bg {
	background: url(../img/bg_mb.jpg) center / cover no-repeat;
}
@media screen and (min-width: 768px) {
	.bg {
		background-image: url(../img/bg.jpg);
	}
}

/**
 * 一夜漬け、本番肌。
 * -------------------------------------------------- */
.l-visual {
	z-index: 1;
	position: relative;
	width: 100%;
}
.o-pageTitle,
.key-visual .o-copy {
	z-index: 1;
	font-weight: 500;
	letter-spacing: .5em;
}
.key-visual .o-copy span {
	display: inline-block;
}
.key-visual .o-copy.is-hide span,
.key-visual figure.is-hide {
	opacity: 0;
	transform: scale(1.1);
}
.key-visual .o-copy.is-anim span,
.key-visual figure.is-anim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-visual .bg {
	pointer-events: none;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.o-pageTitle {
	font-size: 18px;
	font-family: "Vollkorn", serif;
	font-weight: 400;
}
@media screen and (max-width: 1024px) {
	.p-visual {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 72px;
		height: calc(362vw / 3.75);
		box-sizing: content-box;
	}
	.l-main:not(.p-home) .p-visual {
		height: 210px;
	}
	.key-visual figure {
		order: -1;
		margin-left: calc(30vw / 3.75);
	}
}
@media screen and (max-width: 767px) {
	.l-visual figure {
		width: calc(198vw / 3.75);
		height: auto;
		margin-left: calc(60vw / 3.75);
	}
	.key-visual .o-copy {
		margin-top: -8vw;
	}
}
@media screen and (min-width: 768px) {
	.l-visual figure {
		width: 355px;
		height: 492px;
	}
}
@media screen and (min-width: 1025px) {
	.key-visual {
		height: 100vh;
		min-height: 700px;
	}
	.l-main:not(.p-home) .p-visual {
		max-width: calc(1024px - 37px - 38px);
		height: 411px;
		margin: 0 auto;
	}
	.key-visual figure {
		position: absolute;
		top: calc(50% - 200px);
		left: calc(50% - 104px);
	}
	.o-pageTitle,
	.key-visual .o-copy {
		position: absolute;
		top: 50%;
		width: calc(50% - 160px);
		white-space: nowrap;
		line-height: 1;
	}
	.key-visual .o-copy {
		left: 20px;
		padding-bottom: 48px;
		text-align: right;
	}
	.l-main:not(.p-home) .p-visual .bg {
		right: calc(50% - 50vw);
		width: auto;
		margin-left: 64px;
	}
	.o-pageTitle {
		font-size: 30px;
	}
}
/* inview */
.o-pageTitle.js-inview {
	transform-origin: 0 0;
}
.o-pageTitle.js-inview:not(.is-inview) {
	opacity: 0;
	transform: skewY(10deg) translateY(40px);
}
.o-pageTitle.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.p-visual .bg.js-inview:not(.is-inview) {
	opacity: 0;
}
.o-pageTitle.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-visual .bg.js-inview.is-ivanim {
	transition: opacity 1s;
}

/**
 * main
 * -------------------------------------------------- */
.l-main {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 120px);
}
.l-section {
	max-width: 1200px;
	margin-top: 80px;
	padding: 20px 37px 20px 38px;
}
@media screen and (max-width: 1024px) {
	.l-main {
		transition: padding-bottom 1s cubic-bezier(0.16, 1, 0.3, 1);
	}
}
@media screen and (max-width: 767px) {
	.c-followMemo + .js-sc-wrap .l-main.p-home {
		padding-bottom: 120px;
	}
}
@media screen and (max-width: 374px) {
	.l-section {
		padding: 20px;
	}
}
@media screen and (min-width: 768px) {
	.l-section {
		margin-top: 120px;
	}
}
@media screen and (min-width: 1025px) {
	.l-section {
		margin: 200px auto 0;
	}
}

/**
 * CONCEPT
 * -------------------------------------------------- */
@media screen and (min-width: 768px) {
	.p-concept {
		position: relative;
	}
	.p-home .p-concept {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		height: calc(1340vw / 11.5);
		padding-top: calc(120vw / 11.5);
		margin-top: 160px;
	}
	.l-main:not(.p-home) .p-concept {
		z-index: 1;
		max-width: 1024px;
		margin-top: -64px;
	}
	.p-home .p-concept .o-copy {
		margin-top: calc(80vw / 11.5);
	}
	.l-main:not(.p-home) .p-concept .o-copy {
		font-size: 48px;
	}
	.p-concept .o-text {
		margin-top: calc(40vw / 11.5);
	}
	.imageboard {
		z-index: -1;
		position: absolute;
		top: 0;
		left: -108px;
		width: calc(100% + 216px);
		height: 100%;
	}
	.imageboard .image {
		position: absolute;
		overflow: hidden;
	}
	.imageboard .image:nth-child(1) {
		top: 0;
		left: 55%;
		width: calc(616vw / 11.5);
	}
	.imageboard .image:nth-child(2) {
		bottom: 8%;
		left: 108px;
		width: calc(424vw / 11.5);
		margin-top: calc(-120vw / 11.5);
	}
	.imageboard .image:nth-child(3) {
		bottom: 0;
		left: 55%;
		width: calc(390vw / 11.5);
		margin-top: calc(-120vw / 11.5);
	}
}
@media screen and (min-width: 1150px) {
	.p-home .p-concept {
		height: 1340px;
		padding-top: 120px;
	}
	.p-home .p-concept .o-copy {
		margin-top: 80px;
	}
	.p-concept .o-text {
		margin-top: 40px;
	}
	.imageboard {
		left: calc(50% - 683px);
	}
	.imageboard .image:nth-child(1) {
		width: 616px;
	}
	.imageboard .image:nth-child(2) {
		width: 424px;
		margin-top: -120px;
	}
	.imageboard .image:nth-child(3) {
		width: 390px;
		margin-top: -120px;
	}
}
@media screen and (max-width: 767px) {
	.p-concept {
		margin-top: 40px;
	}
	.p-concept .o-label {
		text-align: center;
	}
	.p-home .p-concept .o-copy {
		margin-top: 24px;
		text-align: center;
	}
	.l-main:not(.p-home) .p-concept .o-copy {
		font-size: 20px;
	}
	.p-concept .o-text {
		margin-top: 28px;
	}
	.imageboard {
		display: flex;
		flex-direction: column;
	}
	.imageboard .image:nth-child(1),
	.imageboard .image:nth-child(3) {
		align-self: flex-end;
	}
	.imageboard .image:nth-child(1) {
		width: calc(240vw / 3.75);
		margin-top: 32px;
		margin-right: -37px;
	}
	.imageboard .image:nth-child(2) {
		width: calc(155vw / 3.75);
		margin-top: calc(-115vw / 3.75);
		margin-left: calc(3vw / 3.75);
	}
	.imageboard .image:nth-child(3) {
		width: calc(189vw / 3.75);
		margin-top: 32px;
		margin-right: calc(16vw / 3.75);
	}
}
/* inview */
.imageboard .image.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(40px);
}
.imageboard .image.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.imageboard .image.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-main.p-home .p-concept .o-copy.js-inview.is-ivanim.is-inview { transition-delay: .1s; }
.l-main.p-home .p-concept .o-text.js-inview.is-ivanim.is-inview { transition-delay: .2s; }
.l-main:not(.p-home) .p-concept .o-text.js-inview.is-ivanim.is-inview { transition-delay: .1s; }

/**
 * PRODUCT
 * -------------------------------------------------- */
.p-product .o-label {
	text-align: center;
}

/* :::::: PREMIUM FACE MASK :::::: */
.p-product_content {
	display: flex;
	position: relative;
	margin-top: 24px;
	padding: 53px 0 40px;
}
.p-product_content .bg {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -37px;
	left: -38px;
	height: 100%;
	background: url(../img/bg1_mb.jpg) center / cover no-repeat;
}
.p-product_image img {
	width: calc(271vw / 3.75);
}
.p-product_text {
	color: white;
}
@media screen and (max-width: 767px) {
	.p-product_content {
		flex-direction: column;
	}
	.p-product_text {
		order: -1;
	}
	.p-product_image {
		margin-top: 24px;
		text-align: center;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-product_image {
		margin-left: -24px;
	}
	.p-product_image img {
		position: relative;
		left: 20px;
	}
}
@media screen and (min-width: 768px) {
	.p-product_content {
		justify-content: space-between;
		align-items: center;
		margin-top: 40px;
		padding: 24px 0 64px
	}
	.p-product_image {
		margin-top: -32px;
		text-align: right;
	}
	.p-product_text {
		padding-left: 24px;
	}
	.p-product_content .bg {
		background-image: url(../img/bg1.jpg);
	}
}
@media screen and (min-width: 1025px) {
	.p-product .o-label {
		text-align: right;
	}
	.p-product_content {
		padding: 0;
	}
	.p-product_content .bg {
		right: calc(50% - 50vw);
		left: calc(50% - 50vw);
	}
	.p-product_image,
	.p-product_text {
		flex-basis: 50%;
	}
	.p-product_image {
		margin-top: -72px;
	}
	.p-product_image img {
		width: 545px;
	}
	.p-product_text {
		padding: 0 0 64px 64px;
	}
}
/* inview */
.p-product_image.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(40px);
}
.p-product_image.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.p-product_image.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-product_text .name {
	line-height: 1.6;
}
.p-product_text .name ruby {
	display: flex;
	flex-direction: column;
}
.p-product_text .name rb {
	font-size: 18px;
	font-family: "Vollkorn", serif;
	letter-spacing: .1em;
}
.p-product_text .name rt {
	font-size: 10px;
	font-family: "Noto Serif JP", serif;
	letter-spacing: .2em;
	text-align: left;
	ruby-align: left;
	ruby-align: start;
}
.p-product_text .name ruby {
	ruby-position: under;
	position: relative;
	top: -1em;
}
/*.p-product_text .name rt {
	transform: translateY(4.2em);
}
@-moz-document url-prefix() {
	.p-product_text .name ruby {
		top: 0;
	}
}
@supports (-ms-ime-align: auto) {
	.p-product_text .name rt {
		position: relative;
		top: 3.5em;
	}
}*/
.p-product_text .o-text {
	margin-top: 14px;
}
.p-product_text .link {
	margin-top: 20px;
}
@media screen and (min-width: 768px) {
	.p-product_text .name rb {
		font-size: 30px;
	}
	.p-product_text .name rt {
		font-size: 14px;
	}
	.p-product_text .o-button {
		color: #74b1cc;
		background: white;
	}
}
@media screen and (min-width: 1025px) {
	.p-product_text .o-text {
		margin-top: 32px;
	}
	.p-product_text .o-button {
		margin-top: 40px;
	}
}
@media screen and (max-width: 767px) {
	.p-product_text .o-button {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}
@media (hover: hover) {
	.p-product_text .o-button {
		color: white;
		background: none;
	}
	.p-product_text .o-button::before {
		border: 1px solid white;
	}
	.p-product_text .o-button::after {
		color: #0091A8;
		background: white;
	}
	.p-product_text .o-button:hover::after {
		opacity: 0;
	}
}
/* inview */
.p-product_text.js-inview .name,
.p-product_text.js-inview .o-text,
.p-product_text.js-inview .link {
	transform-origin: 0 0;
}
.p-product_text.js-inview:not(.is-inview) .name,
.p-product_text.js-inview:not(.is-inview) .o-text,
.p-product_text.js-inview:not(.is-inview) .link {
	opacity: 0;
	transform: skewY(10deg) translateY(40px);
}
.p-product_text.js-inview.is-ivanim:not(.is-inview) .name,
.p-product_text.js-inview.is-ivanim:not(.is-inview) .o-text,
.p-product_text.js-inview.is-ivanim:not(.is-inview) .link {
	transform: translateY(-40px);
}
.p-product_text.js-inview.is-ivanim .name,
.p-product_text.js-inview.is-ivanim .o-text,
.p-product_text.js-inview.is-ivanim .link {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-product_text.js-inview.is-ivanim.is-inview .o-text { transition-delay: .1s; }
.p-product_text.js-inview.is-ivanim.is-inview .link { transition-delay: .2s; }

/**
 * FEATURES
 * -------------------------------------------------- */
.p-product_features {
	z-index: 1;
	position: relative;
	margin-top: -40px;
	padding: 40px 20px;
	background: #f2fcff;
}
.c-features_list {
	margin-top: 32px;
}
.c-features_item figure {
	text-align: center;
}
.c-features_item .title {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	text-align: center;
}
.c-features_item .title small {
	font-size: 10px;
	font-family: "Noto Sans JP", sans-serif;
}
.c-features_item .o-text {
	margin-top: 14px;
}
.p-product_features .o-link {
	width: 200px;
	margin-top: 40px;
	margin-left: auto;
}
@media screen and (min-width: 768px) {
	.p-product_features {
		margin-top: -64px;
		padding: 80px 40px;
	}
	.p-product_features .o-label {
		text-align: center;
	}
	.c-features_list {
		display: flex;
		margin-top: 48px;
	}
	.c-features_item {
		flex-basis: calc(33.33333% - 64px / 3);
	}
	.c-features_item:not(:nth-child(3n+1)) {
		margin-left: 32px;
	}
}
@media screen and (min-width: 1025px) {
	.p-product_features {
		padding: 80px 96px;
	}
	.c-features_item {
		flex-basis: calc(33.33333% - 136px / 3);
	}
	.c-features_item:not(:nth-child(3n+1)) {
		margin-left: 68px;
	}
}
@media screen and (max-width: 767px) {
	.c-features_item:not(:first-child) {
		margin-top: 40px;
	}
	.c-features_item figure img {
		width: 100%;
		max-width: 224px;
	}
}
/* inview */
.c-features_item.js-inview:not(.is-inview) figure,
.c-features_item.js-inview:not(.is-inview) .title,
.c-features_item.js-inview:not(.is-inview) .o-text {
	opacity: 0;
	transform: translateY(40px);
}
.c-features_item.js-inview.is-ivanim:not(.is-inview) figure,
.c-features_item.js-inview.is-ivanim:not(.is-inview) .title,
.c-features_item.js-inview.is-ivanim:not(.is-inview) .o-text {
	transform: translateY(-40px);
}
.c-features_item.js-inview.is-ivanim figure,
.c-features_item.js-inview.is-ivanim .title,
.c-features_item.js-inview.is-ivanim .o-text {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-features_item.js-inview.is-ivanim.is-inview .title { transition-delay: .1s; }
.c-features_item.js-inview.is-ivanim.is-inview .o-text { transition-delay: .2s; }
@media screen and (min-width: 768px) {
	.c-features_item:nth-child(1).js-inview.is-ivanim.is-inview .title { transition-delay: .1s; }
	.c-features_item:nth-child(1).js-inview.is-ivanim.is-inview .o-text { transition-delay: .2s; }
	.c-features_item:nth-child(2).js-inview.is-ivanim.is-inview figure { transition-delay: .1s; }
	.c-features_item:nth-child(2).js-inview.is-ivanim.is-inview .title { transition-delay: .2s; }
	.c-features_item:nth-child(2).js-inview.is-ivanim.is-inview .o-text { transition-delay: .3s; }
	.c-features_item:nth-child(3).js-inview.is-ivanim.is-inview figure { transition-delay: .2s; }
	.c-features_item:nth-child(3).js-inview.is-ivanim.is-inview .title { transition-delay: .3s; }
	.c-features_item:nth-child(3).js-inview.is-ivanim.is-inview .o-text { transition-delay: .4s; }
}

/**
 * FEATURED ITEMS
 * -------------------------------------------------- */
.p-featuredItems .o-label {
	text-align: center;
}
.c-product_image {
	position: relative;
}
.c-product_image .bg {
	z-index: -1;
	position: absolute;
	top: 0;
	height: 100%;
}
.c-product_name {
	font-size: 20px;
	line-height: 1.6;
	font-family: "Vollkorn", serif;
	font-weight: 400;
	letter-spacing: .1em;
}
.c-product_jaName {
	color: #6b6b6b;
	font-size: 10px;
	line-height: 1.6;
	font-family: "Noto Serif JP", serif;
}
.c-product_price {
	color: #0091a8;
	font-size: 16px;
	font-family: "Vollkorn", serif;
	font-weight: 500;
	text-align: right;
}
.c-product_text {
	margin-top: 16px;
	font-size: 12px;
	line-height: 2.2;
}
@media screen and (min-width: 768px) {
	.c-product {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 72px;
	}
	.c-product_image {
		order: 1;
		flex-basis: calc(650vw / 13.55);
		height: calc(396vw / 13.55);
	}
	.c-product_image .bg {
		left: 0;
		width: 100%;
	}
	.c-product_data {
		align-self: center;
		flex-basis: 41vw;
		max-width: 41vw;
	}
	.c-product_name {
		line-height: 1.3;
	}
	.c-product_jaName {
		float: left;
		margin-top: 8px;
	}
	.c-product_text {
		margin-top: 32px;
	}
}
@media screen and (min-width: 1025px) {
	.c-product_image {
		flex-basis: calc(750vw / 13.55);
	}
	.c-product_data {
		flex-basis: 34vw;
		max-width: 34vw;
	}
	.c-product_name {
		font-size: 30px;
	}
	.c-product_text {
		font-size: 14px;
	}
}
@media screen and (min-width: 1150px) {
	.c-product_data {
		flex-basis: 375px;
		max-width: 375px;
	}
}
@media screen and (min-width: 1366px) {
	.c-product_image {
		flex-basis: 750px;
		height: 396px;
	}
}
@media screen and (max-width: 1149px) {
	.c-product_jaName {
		float: none;
	}
}
@media screen and (max-width: 767px) {
	.c-product {
		padding-top: 24px;
	}
	.c-product_image {
		height: calc(200vw / 3.75);
	}
	.c-product_image .bg {
		right: -37px;
		left: -38px;
	}
	.c-product_price {
		margin-top: 8px;
	}
}

/* :::::: オプション :::::: */
.c-product_option {
	margin-top: 16px;
	padding: 12px 20px;
	border: 1px solid #c4c4c4;
}
.c-product_option label {
	cursor: pointer;
	display: flex;
	align-items: center;
}
.c-product_option dl {
	flex-basis: 100%;
	display: grid;
	grid-template: auto / repeat(2, auto);
	font-size: 12px;
}
.c-product_option dd {
	text-align: right;
}
@media screen and (min-width: 768px) {
	.c-product_option {
		margin-top: 32px;
	}
}
@media screen and (max-width: 374px) {
	.c-product_option .tax {
		margin-right: -.7em;
	}
}
@media all and (-ms-high-contrast: none) {
	.c-product_option dl {
		display: flex;
		justify-content: space-between;
	}
	.c-product_option dt,
	.c-product_option dd {
		flex-grow: 1;
	}
	.c-product_option .o-radio {
		position: absolute;
		rect: clip(0 0 0 0);
		overflow: hidden;
		width: 1px;
		height: 1px;
	}
}

/* :::::: Buy now :::::: */
.c-product_buynow {
	margin-top: 24px;
}
.c-product_buynow .o-orderCount {
	justify-content: center;
}
.c-product_data .o-note {
	margin-top: 24px;
}
@media screen and (min-width: 768px) {
	.c-product_buynow {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 56px;
	}
	.c-product_buynow .o-button {
		flex-basis: calc(100% - 134px);
	}
	.c-product_data .o-note {
		margin-top: 40px;
	}
}
@media screen and (min-width: 1366px) {
	.c-product_buynow .o-button {
		flex-basis: 240px;
	}
}
@media screen and (max-width: 1149px) {
	.c-product_buynow {
		display: block;
		margin-top: 24px;
	}
	.c-product_buynow .o-button {
		width: 100%;
		margin-top: 20px;
	}
}
@media screen and (max-width: 767px) {
	.c-product_buynow .o-button {
		width: 100%;
		height: 64px;
		margin-top: 20px;
	}
}
/* inview */
.c-product_image.js-inview:not(.is-inview) > * {
	opacity: 0;
	transform: translateY(40px);
}
.c-product_image.js-inview.is-ivanim:not(.is-inview) > * {
	transform: translateY(-40px);
}
.c-product_title.js-inview:not(.is-inview),
.c-product_text.js-inview:not(.is-inview),
.c-product_option.js-inview:not(.is-inview),
.c-product_buynow.js-inview:not(.is-inview) .o-orderCount,
.c-product_buynow.js-inview:not(.is-inview) .o-button {
	opacity: 0;
	transform: skewY(10deg) translateY(40px);
}
.c-product_title.js-inview.is-ivanim:not(.is-inview),
.c-product_text.js-inview.is-ivanim:not(.is-inview),
.c-product_option.js-inview.is-ivanim:not(.is-inview),
.c-product_buynow.js-inview.is-ivanim:not(.is-inview) .o-orderCount,
.c-product_buynow.js-inview.is-ivanim:not(.is-inview) .o-button {
	transform: translateY(-40px);
}
.c-product_image.js-inview.is-ivanim > *,
.c-product_title.js-inview.is-ivanim,
.c-product_text.js-inview.is-ivanim,
.c-product_option.js-inview.is-ivanim,
.c-product_buynow.js-inview.is-ivanim .o-orderCount,
.c-product_buynow.js-inview.is-ivanim .o-button {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-product_buynow.js-inview.is-ivanim .o-button,
.c-product_image.js-inview.is-ivanim.is-inview .image1 { transition-delay: .2s; }
.c-product_image.js-inview.is-ivanim.is-inview .image2 { transition-delay: .3s; }
.c-product_image.js-inview.is-ivanim.is-inview .image3 { transition-delay: .4s; }

/* :::::: 成分・使用方法・免責事項 :::::: */
.c-product_notes {
	margin-top: 86px;
	font-size: 12px;
}
.c-product_notes .o-note {
	margin-top: 0;
	letter-spacing: 0;
}
.c-product_notes .o-note + .o-note {
	margin-top: 12px;
}
.c-product_notes figure {
	margin: 8px 0;
	max-width: 528px;
}
@media screen and (min-width: 768px) {
	.c-product_notes {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.c-product_noteList {
		flex-basis: calc(100% - 320px);
	}
	.c-product_noteLink {
		flex-basis: 200px;
	}
	.c-product_noteLink li {
		margin-bottom: 16px;
	}
	.c-product_notes {
		margin-top: 48px;
	}
}
@media screen and (min-width: 1150px) {
	.c-product_notes {
		margin-top: 80px;
	}
}
@media screen and (max-width: 767px) {
	.c-product_noteLink {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.c-product_noteLink li {
		min-width: 200px;
		margin-top: 40px;
	}
	.c-product_noteLink li:first-child {
		order: 1;
		margin-top: 32px;
	}
}
@media all and (-ms-high-contrast: none) {
	.c-product_notes {
		width: 100%;
	}
}
/* inview */
.c-product_notes.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(40px);
}
.c-product_notes.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.c-product_notes.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* :::::: PREMIUM FACE MASK :::::: */
.p-featuredItems_1 .c-product_image {
	margin-top: 44px;
	margin-bottom: 48px;
}
.p-featuredItems_1 .c-product_image .image1,
.p-featuredItems_1 .c-product_image .image2 {
	position: absolute;
}
@media screen and (min-width: 768px) {
	.p-featuredItems_1 .c-product_image {
		margin-right: calc(50% - 50vw);
	}
	.p-featuredItems_1 .c-product_image .image1 {
		top: calc(-96vw / 13.55);
		right: 33%;
		width: calc(452vw / 13.55);
	}
	.p-featuredItems_1 .c-product_image .image2 {
		bottom: calc(-120vw / 13.55);
		left: 53%;
		width: calc(321vw / 13.55);
	}
}
@media screen and (min-width: 1366px) {
	.p-featuredItems_1 .c-product_image {
		margin-right: -145px;
	}
	.p-featuredItems_1 .c-product_image .image1 {
		top: -96px;
		width: 452px;
	}
	.p-featuredItems_1 .c-product_image .image2 {
		bottom: -120px;
		width: 321px;
	}
}
@media screen and (max-width: 767px) {
	.p-featuredItems_1 .c-product_image .image1 {
		top: -44px;
		left: 0;
		width: calc(200vw / 3.75);
	}
	.p-featuredItems_1 .c-product_image .image2 {
		bottom: -48px;
		right: 0;
		width: calc(150vw / 3.75);
	}
}

/* :::::: PREMIUM FACE MASK for GIFT :::::: */
.p-featuredItems_2 {
	margin-top: 64px;
}
.p-featuredItems_2 .c-product_image {
	margin-top: 36px;
	margin-bottom: 72px;
}
.p-featuredItems_2 .c-product_image .image1,
.p-featuredItems_2 .c-product_image .image2,
.p-featuredItems_2 .c-product_image .image3 {
	position: absolute;
}
@media screen and (min-width: 768px) {
	.p-featuredItems_2 .c-product_image {
		order: -1;
		margin-left: calc(50% - 50vw);
	}
	.p-featuredItems_2 .c-product_image .image1 {
		top: calc(-80vw / 13.55);
		right: 39%;
		width: calc(450vw / 13.55);
	}
	.p-featuredItems_2 .c-product_image .image2 {
		bottom: calc(-144vw / 13.55);
		left: 38%;
		width: calc(303vw / 13.55);
	}
	.p-featuredItems_2 .c-product_image .image3 {
		bottom: calc(-80vw / 13.55);
		left: 54%;
		width: calc(322vw / 13.55);
	}
}
@media screen and (min-width: 1366px) {
	.p-featuredItems_2 .c-product_image {
		order: -1;
		margin-left: -145px;
	}
	.p-featuredItems_2 .c-product_image .image1 {
		top: -80px;
		width: 450px;
	}
	.p-featuredItems_2 .c-product_image .image2 {
		bottom: -144px;
		width: 303px;
	}
	.p-featuredItems_2 .c-product_image .image3 {
		bottom: -80px;
		width: 322px;
	}
}
@media screen and (max-width: 767px) {
	.p-featuredItems_2 .c-product_image .image1 {
		top: -36px;
		left: calc(-16vw / 3.75);
		width: calc(190vw / 3.75);
	}
	.p-featuredItems_2 .c-product_image .image2 {
		bottom: -72px;
		left: 34%;
		width: calc(152vw / 3.75);
	}
	.p-featuredItems_2 .c-product_image .image3 {
		bottom: -40px;
		right: calc(-16vw / 3.75);
		width: calc(152vw / 3.75);
	}
}

/**
 * アコーディオン
 * -------------------------------------------------- */
.c-accordion_item {
	overflow: hidden;
	border-top: .5px solid #c4c4c4;
}
.c-accordion_item:last-child {
	border-bottom: .5px solid #c4c4c4;
}
.c-accordion_item.is-anim {
	transition: height .4s cubic-bezier(0.65, 0, 0.35, 1);
}
.c-acc_head {
	cursor: pointer;
	position: relative;
	padding: 16px 1em;
	padding-right: 24px;
}
.c-acc_head::after {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 1em;
}
.c-faq_item .c-acc_head::after,
.c-accordion_item .c-acc_head::after {
	border-width: 0 5px 8px;
	border-style: solid;
	border-color: transparent;
	border-bottom-color: #c4c4c4;
}
:not(.is-active) > .c-acc_head::after {
	transform: rotate(180deg);
}
.is-anim > .c-acc_head::after {
	transition: transform .4s cubic-bezier(0.65, 0, 0.35, 1);
}
.c-acc_body {
	padding: 0 1em 16px;
}
:not(.is-active) > .c-acc_body {
	pointer-events: none;
	opacity: 0;
}
.is-anim > .c-acc_body {
	transition: opacity .4s;
}
.is-active.is-anim > .c-acc_body {
	transition-delay: .2s;
}

/**
 * KOKOZOの、ずっとお得な定期便
 * -------------------------------------------------- */
.c-pr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #c4c4c4;
	margin: 40px 0;
	padding: 24px 20px 40px;
}
.c-pr figure {
	align-self: flex-start;
	order: -1;
}
.c-pr_copy {
	font-size: 18px;
	line-height: 1.6;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	letter-spacing: .2em;
	white-space: nowrap;
}
.c-pr_copy:not(:first-child) {
	margin-top: 16px;
}
.c-pr_step {
	display: flex;
	justify-content: center;
	margin-top: 16px;
	padding-bottom: calc(1em + 6px);
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}
.c-pr_step li {
	display: flex;
	justify-content: center;
	align-items: center;
	counter-increment: step;
	position: relative;
	width: calc(68vw / 3.75);
	height: calc(68vw / 3.75);
	padding-top: 6px;
	border: 1px solid #ccc;
	border-radius: 80vw;
}
.c-pr_step li::before {
	content: "0" counter(step);
	position: absolute;
	top: 24px;
	width: 100%;
	font-family: "Vollkorn", serif;
}
.c-pr_step li small {
	position: absolute;
	bottom: calc(-1em - 6px);
	left: 0;
	width: 100%;
	font-size: 10px;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
}
.c-pr_guide {
	margin: 8px 0 24px;
}
.c-pr_note {
	font-size: 12px;
	line-height: 1.7;
	font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
	.c-pr_step li::before {
		top: 8px;
	}
	.c-pr_guide .o-button {
		margin-top: 24px;
	}
	.c-pr_anchor {
		margin: 20px 0 0 auto;
	}
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
	.c-pr_note br {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.c-pr {
		flex-direction: column;
		text-align: center;
	}
	.c-pr figure {
		margin-top: 24px;
		padding: 0 20px;
	}
	.c-pr_guide .o-button {
		height: 64px;
		margin: 24px auto 0;
	}
	.c-pr_note {
		text-align: center;
	}
	.c-pr_note small {
		margin-top: 8px;
	}
	.c-pr_anchor {
		max-width: 240px;
		margin: 20px auto 0;
	}
}
@media screen and (max-width: 480px) {
	.c-pr_step {
		flex-wrap: wrap;
	}
	.c-pr_step li {
		width: calc(104vw / 3.75);
		height: calc(104vw / 3.75);
	}
	.c-pr_step li:nth-child(2n) {
		margin-left: 16px;
	}
	.c-pr_step li:nth-child(n+3) {
		margin-top: 16px;
	}
}
@media screen and (max-width: 374px) {
	.c-pr {
		padding: 24px 16px 40px;
	}
	.c-pr_step li {
		width: 104px;
		height: 104px;
	}
	.c-pr_step li:nth-child(2n) {
		margin-left: 8px;
	}
	.c-pr_step li:nth-child(n+3) {
		margin-top: 8px;
	}
}
@media screen and (min-width: 481px) {
	.c-pr_step {
		font-size: calc(10vw / 4.8);
	}
	.c-pr_step li:not(:first-child) {
		margin-left: 8px;
	}
}
@media screen and (min-width: 768px) {
	.c-pr {
		margin: 96px 0;
		padding: 40px;
	}
	.c-pr figure {
		flex-basis: 356px;
	}
	.c-pr_text {
		flex-basis: calc(100% - 356px - 80px);
		margin-left: 40px;
	}
	.c-pr_step {
		justify-content: space-between;
		font-size: 10px;
	}
	.c-pr_step li small {
		font-size: 9px;
	}
	.c-pr_step li {
		width: calc(141 / 1125 * (100vw - 75px));
		height: calc(141 / 1125 * (100vw - 75px));
		text-align: center;
	}
	.c-pr_guide .o-button {
		flex-basis: 280px;
	}
	.c-pr_note .o-link {
		min-width: 200px;
	}
}
@media screen and (min-width: 1025px) {
	.c-pr_text {
		margin-left: 80px;
	}
	.c-pr_copy {
		font-size: 24px;
	}
	.c-pr_step {
		font-size: 12px;
	}
	.c-pr_step li small {
		font-size: 10px;
	}
	.c-pr_guide,
	.c-pr_note {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.c-pr_guide .o-button {
		margin-left: 16px;
	}
	.c-pr_note .o-link {
		margin-left: 16px;
	}
}
@media screen and (min-width: 1200px) {
	.c-pr {
		-ms-grid-columns: 356px 48px auto 48px 85px;
		grid-template: repeat(3, auto) / 356px auto 85px;
		grid-column-gap: 48px;
	}
	.c-pr_step {
		font-size: 14px;
	}
	.c-pr_step li {
		width: 141px;
		height: 141px;
		font-size: 14px;
	}
	.c-pr_step li small {
		font-size: 11px;
	}
}
/* inview */
.c-pr.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(40px);
}
.c-pr.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.c-pr.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * The more special days you have, 
 * the more fun your life becomes.
 * -------------------------------------------------- */
.p-items .o-label {
	margin: 0 -1em;
	font-size: 16px;
	letter-spacing: .1em;
	text-align: center;
}
.p-items .o-link {
	width: 200px;
	margin-top: 40px;
	margin-left: auto;
}
.c-insta {
	display: flex;
	flex-wrap: wrap;
	margin-top: 48px;
}
.c-insta a {
	display: block;
}
@media screen and (min-width: 1025px) {
	.p-items .o-label {
		font-size: 30px;
	}
	.c-insta li {
		flex-basis: calc(33.33333% - 104px / 3);
	}
	.c-insta li:not(:nth-child(3n+1)) {
		margin-left: 52px;
	}
	.c-insta li:nth-child(n+4) {
		margin-top: 52px;
	}
}
@media screen and (max-width: 1024px) {
	.c-insta {
		margin-top: 32px;
	}
	.c-insta li {
		flex-basis: calc(33.33333% - 48px / 3);
	}
	.c-insta li:not(:nth-child(3n+1)) {
		margin-left: 24px;
	}
	.c-insta li:nth-child(n+4) {
		margin-top: 24px;
	}
}
@media screen and (max-width: 480px) {
	.c-insta {
		margin-top: 24px;
	}
	.c-insta li {
		flex-basis: calc(33.33333% - 8px);
	}
	.c-insta li:not(:nth-child(3n+1)) {
		margin-left: 12px;
	}
	.c-insta li:nth-child(n+4) {
		margin-top: 12px;
	}
}
/* inview */
.c-insta.js-inview:not(.is-inview) li {
	opacity: 0;
	transform: translateY(40px);
}
.c-insta.js-inview.is-ivanim:not(.is-inview) li {
	transform: translateY(-40px);
}
.c-insta.js-inview.is-ivanim li {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(1) { transition-delay: .1s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(2) { transition-delay: .2s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(3) { transition-delay: .3s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(4) { transition-delay: .4s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(5) { transition-delay: .2s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(6) { transition-delay: .3s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(7) { transition-delay: .4s; }
.c-insta.js-inview.is-ivanim.is-inview li:nth-child(8) { transition-delay: .5s; }
@media screen and (max-width: 767px) {
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(1) { transition-delay: .1s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(2) { transition-delay: .2s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(3) { transition-delay: .2s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(4) { transition-delay: .3s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(5) { transition-delay: .3s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(6) { transition-delay: .4s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(7) { transition-delay: .4s; }
	.c-insta.js-inview.is-ivanim.is-inview li:nth-child(8) { transition-delay: .5s; }
}

/**
 * ここぞを、もっと。
 * -------------------------------------------------- */
.p-message {
	margin-top: 80px;
}
.p-message_text .o-copy {
	font-size: 24px;
	white-space: nowrap;
}
.p-message_text .o-text {
	margin-top: 20px;
	letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
	.p-message {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 700px;
		margin-top: 200px;
		padding: 20px;
	}
	.p-message_text .o-text {
		margin-top: 24px;
		font-weight: 300;
	}
	.p-message_image {
		margin-bottom: -32px;
	}
}
@media screen and (min-width: 1150px) {
	.p-message_text {
		margin-left: -32px;
	}
	.p-message_text .o-text {
		line-height: 2.8;
	}
	.p-message_image {
		margin-left: 32px;
	}
}
@media screen and (max-width: 1024px) {
	.p-message_text {
		padding: 20px 37px 20px 38px;
	}
	.p-message_figureWrap {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		height: 90vw;
		margin-top: 40px;
	}
	.p-message_image {
		margin-top: 16vw;
		margin-left: calc(30vw / 3.75);
	}
}
/* inview */
.p-message_image.js-inview:not(.is-inview) {
	opacity: 0;
	transform: scale(1.1);
}
.p-message_image.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * FEATURES
 * -------------------------------------------------- */
.c-features.l-section {
	z-index: 1;
	position: relative;
	max-width: 1200px;
}
.c-features_text {
	position: relative;
	padding-top: 40px;
}
.c-features_text::before {
	content: attr(data-num);
	position: absolute;
	top: 0;
	left: 0;
	font-size: 16px;
	font-family: "Vollkorn", serif;
}
.c-features_text dt {
	font-size: 20px;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
}
.c-features_text dt small {
	margin-left: 1em;
	font-size: 12px;
	font-family: "Noto Sans JP", sans-serif;
}
.c-features_text dd {
	font-size: 12px;
	line-height: 2.2;
}
@media screen and (min-width: 768px) {
	.c-features.l-section {
		display: flex;
		justify-content: space-between;
		max-width: 1092px;
		margin-top: 160px;
	}
	.c-features_text {
		flex-grow: 1;
		max-width: 492px;
		font-size: 30px;
		padding-top: 56px;
	}
	.c-features_text::before {
		font-size: 12px;
	}
	.c-features_text dt {
		font-size: 30px;
	}
	.c-features_text dd {
		max-width: 356px;
		margin-top: 24px;
		font-size: 14px;
	}
	.c-features_image {
		flex-basis: calc(50% + 72px);
		margin: 0 -72px 0 72px;
	}
	.c-features.-reverse .c-features_image {
		order: -1;
		margin: 0 72px 0 -72px;
	}
	.c-features .bg {
		z-index: -1;
		position: absolute;
		bottom: -40px;
		height: 348px;
		background: url(../img/bg2.png) center / cover no-repeat;
	}
	.c-features.-reverse .bg {
		right: calc(50% - 50vw);
		left: 321px;
	}
	.c-features:not(.-reverse) .bg {
		left: calc(50% - 50vw);
		right: 321px;
	}
}
@media screen and (max-width: 767px) {
	.c-features.l-section {
		margin-top: 0;
	}
	.c-features_text dd {
		margin-top: 16px;
	}
	.c-features_image {
		position: relative;
		margin-top: 24px;
		padding: 0 30px 30px 0;
	}
	.c-features_image::before {
		content: "";
		z-index: -1;
		position: absolute;
		right: 0;
		bottom: 0;
		width: calc(100% - 30px);
		height: calc(100% - 30px);
		background: url(../img/bg2_mb.png) center / cover no-repeat;
	}
}
/* inview */
.c-features_text.js-inview::before,
.c-features_text.js-inview dt,
.c-features_text.js-inview dd {
	transform-origin: 0 0;
}
.c-features_text.js-inview:not(.is-inview)::before,
.c-features_text.js-inview:not(.is-inview) dt,
.c-features_text.js-inview:not(.is-inview) dd {
	opacity: 0;
	transform: skewY(10deg) translateY(40px);
}
.c-features_image.js-inview:not(.is-inview),
.c-features .bg.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(40px);
}
.c-features_text.js-inview.is-ivanim:not(.is-inview)::before,
.c-features_text.js-inview.is-ivanim:not(.is-inview) dt,
.c-features_text.js-inview.is-ivanim:not(.is-inview) dd,
.c-features_image.js-inview.is-ivanim:not(.is-inview),
.c-features .bg.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.c-features_text.js-inview.is-ivanim::before,
.c-features_text.js-inview.is-ivanim dt,
.c-features_text.js-inview.is-ivanim dd,
.c-features_image.js-inview.is-ivanim,
.c-features .bg.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-features_text.js-inview.is-ivanim.is-inview::before { transition-delay: .1s; }
.c-features_text.js-inview.is-ivanim.is-inview dt { transition-delay: .2s; }
.c-features_text.js-inview.is-ivanim.is-inview dd { transition-delay: .3s; }
.c-features_image.js-inview.is-ivanim.is-inview { transition-delay: .3s; }

/**
 * FAQ
 * -------------------------------------------------- */
.o-anchorList {
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	margin-top: 24px;
	font-size: 12px;
	font-weight: 300;
	white-space: nowrap;
}
.o-anchorList a {
	display: block;
	padding: 16px 0;
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 1px no-repeat;
	transition: background-size .4s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
	.o-anchorList a:hover {
		background-position: right bottom;
		background-size: 0 1px;
	}
}
@media screen and (max-width: 767px) {
	.o-anchorList {
		justify-content: space-between;
	}
	.o-anchorList li {
		flex-basis: calc(50% - 12px);
	}
	.o-anchorList li:nth-child(n+3) {
		margin-top: 8px;
	}
}
@media screen and (min-width: 768px) {
	.o-anchorList {
		margin-top: 48px;
		font-size: 14px;
	}
	.o-anchorList li {
		flex-basis: calc(33.33333% - 128px / 3);
	}
	.o-anchorList li:not(:nth-child(3n+1)) {
		margin-left: 64px;
	}
	.o-anchorList li:nth-child(n+4) {
		margin-top: 8px;
	}
	.o-anchorList a {
		padding: 8px 0;
	}
}
/* inview */
.o-anchorList.js-inview {
	transform-origin: 0 0;
}
.o-anchorList.js-inview:not(.is-inview) li {
	opacity: 0;
	transform: skewY(5deg) translateY(24px);
}
.o-anchorList.js-inview.is-ivanim:not(.is-inview) li {
	transform: translateY(-40px);
}
.o-anchorList.js-inview.is-ivanim li {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(1) { transition-delay: .1s; }
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(2) { transition-delay: .2s; }
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(3) { transition-delay: .3s; }
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(4) { transition-delay: .4s; }
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(5) { transition-delay: .5s; }
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(6) { transition-delay: .6s; }
.o-anchorList.js-inview.is-ivanim.is-inview li:nth-child(7) { transition-delay: .7s; }

.c-faq {
	max-width: 1024px;
	margin-top: 48px;
}
.c-faq_title {
	font-size: 20px;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}
.c-faq_list {
	margin-top: 24px;
	font-size: 12px;
}
.c-faq_item {
	overflow: hidden;
	margin-top: 20px;
}
.c-faq_item.is-anim[style] {
	transition: height .4s cubic-bezier(0.65, 0, 0.35, 1) !important;
}
.c-faq_item .q,
.c-faq_item .a {
	position: relative;
	padding: 16px 0;
	padding-left: 32px;
}
.c-faq_item .q {
	padding-right: 24px;
}
.c-faq_item .q {
	border-bottom: 1px solid currentcolor;
}
.c-faq_item .a b,
.c-faq_item .a span {
	display: block;
	font-weight: 400;
}
.c-faq_item .a span {
	margin-top: 8px;
	font-weight: 300;
}
.c-faq_item .q::before,
.c-faq_item .a::before {
	position: absolute;
	top: 8px;
	left: 0;
	font-size: 24px;
	font-family: "Vollkorn", serif;
}
.c-faq_item .q::before {
	content: "Q.";
}
.c-faq_item .a::before {
	content: "A.";
}
@media screen and (max-width: 767px) {
	.p-faq .o-anchorList li:nth-child(2n+1) {
		flex-basis: calc(51% - 12px);
	}
	.p-faq .o-anchorList li:nth-child(2n) {
		flex-basis: calc(49% - 12px);
	}
}
@media screen and (min-width: 768px) {
	.c-faq {
		margin-top: 80px;
	}
	.c-faq_title {
		font-size: 30px;
	}
	.c-faq_list {
		font-size: 14px;
	}
}
/* inview */
.c-faq_title.js-inview:not(.is-inview),
.c-faq_item.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(40px);
}
.c-faq_title.js-inview.is-ivanim:not(.is-inview),
.c-faq_item.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.c-faq_title.js-inview.is-ivanim,
.c-faq_item.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/**
 * SHOPPING GUIDE
 * -------------------------------------------------- */
.c-guide {
	max-width: 1024px;
	margin-top: 32px;
}
.c-guide_title {
	font-size: 20px;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}
.c-guide_block {
	margin-top: 24px;
	font-weight: 300;
}
.c-guide_block dt {
	margin-top: 24px;
	font-size: 14px;
	font-weight: 400;
}
.c-guide_block dt + dt {
	margin-top: 0;
}
.c-guide_block dd {
	font-size: 12px;
}
.c-guide_block dd + dd {
	margin-top: 16px;
}
.c-guide_block dd b {
	font-weight: 400;
}
.c-guide_block .notes {
	font-size: 12px;
}
@media screen and (max-width: 767px) {
	.p-guide .o-anchorList li:nth-child(2n+1) {
		flex-basis: calc(44% - 12px);
	}
	.p-guide .o-anchorList li:nth-child(2n) {
		flex-basis: calc(56% - 12px);
	}
}
@media screen and (min-width: 768px) {
	.c-guide {
		margin-top: 48px;
	}
	.c-guide_title {
		font-size: 30px;
	}
	.c-guide_block dt {
		font-size: 16px;
	}
	.c-guide_block dd {
		font-size: 14px;
	}
}
/* inview */
.c-guide_title.js-inview:not(.is-inview),
.c-guide_block.js-inview:not(.is-inview),
.c-guide_container.js-inview:not(.is-inview) {
	opacity: 0;
	transform: translateY(24px);
}
.c-guide_title.js-inview.is-ivanim:not(.is-inview),
.c-guide_block.js-inview.is-ivanim:not(.is-inview),
.c-guide_container.js-inview.is-ivanim:not(.is-inview) {
	transform: translateY(-40px);
}
.c-guide_title.js-inview.is-ivanim,
.c-guide_block.js-inview.is-ivanim,
.c-guide_container.js-inview.is-ivanim {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* :::::: お使いいただけるカード :::::: */
.c-guide_block .card {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 24px 0;
}
.c-guide_block .card li {
	flex-basis: 80px;
	max-width: 80px;
	margin: 6px 0;
}
.c-guide_block .card li:nth-child(n+2) {
	margin-left: 12px;
}
@media screen and (min-width: 768px) {
	.c-guide_block .card li {
		flex-basis: 120px;
		max-width: 120px;
		margin: 8px 0;
	}
	.c-guide_block .card li:nth-child(n+2) {
		margin-left: 16px;
	}
}

/* :::::: 定期便のメリット :::::: */
.c-guide_block .c-pr_step {
	justify-content: center;
	margin: 24px 0;
	font-size: 10px;
}
.c-guide_block .c-pr_step li:nth-child(n+2) {
	margin-left: 8px;
}
@media screen and (min-width: 768px) {
	.c-guide_block .c-pr_step {
		font-size: 14px;
	}
	.c-guide_block .c-pr_step li {
		width: 158px;
		height: 158px;
	}
	.c-guide_block .c-pr_step li:nth-child(n+2) {
		margin-left: 16px;
	}
}
@media screen and (max-width: 374px) {
	.c-guide_block .c-pr_step {
		font-size: 9px;
	}
}

/* :::::: 会員規約 :::::: */
.c-guide_container {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	will-change: scroll-position;
	max-height: 458px;
	margin-top: 24px;
	padding: 24px;
	border: 1px solid #c4c4c4;
}
.c-guide_container .title {
	font-weight: 400;
}
@media screen and (min-width: 768px) {
	.c-guide_container {
		padding: 32px;
	}
}

.u-mt0 { margin-top: 0 !important; }
.u-mt1 { margin-top: 8px !important; }
.u-mt2 { margin-top: 16px !important; }
.u-mt3 { margin-top: 24px !important; }
.u-mt4 { margin-top: 32px !important; }
.u-mt5 { margin-top: 40px !important; }


