@charset "UTF-8";

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	min-width: 1200px;
}

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

@media screen and (max-width: 640px) {
	html {
		min-height: 100vh;
	}

	body {
		min-width: inherit;
	}

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

/* link
--------------------------------------------------*/
a {
	color: inherit;
}

a:link,
a:active,
a:visited {
	text-decoration: none;
}

@media print,
screen and (min-width: 641px) {
	a[href^="tel:"] {
		pointer-events: none;
		display: inline-block;
	}

	a {
		transition: 0.3s;
	}

	a:hover {
		opacity: 0.7;
	}

	a,
	a * {
		outline: 1px solid transparent;
		outline: none;
	}
}

/* font
--------------------------------------------------*/
.font-serif {
	font-family: "Noto Serif JP", serif;
}

.fwb {
	font-weight: 600;
}

/* --------------------------------------------------
display
-------------------------------------------------- */
@media screen and (max-width: 640px) {
	.pc {
		display: none;
	}
}

@media print,
screen and (min-width: 641px) {
	.sp {
		display: none;
	}
}

/* --------------------------------------------------
cleafix
-------------------------------------------------- */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* --------------------------------------------------
align
-------------------------------------------------- */
.ta_l {
	text-align: left;
}

.ta_c {
	text-align: center;
}

.ta_r {
	text-align: right;
}

/* --------------------------------------------------
layout
-------------------------------------------------- */
.l-main {
	padding-bottom: 0;
	background-color: #fff;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.618;
	color: #2b3851;
	letter-spacing: 0;
	word-wrap: break-word;
	word-break: break-all;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	line-break: strict;
	overflow-wrap: break-word;
}

.wrap {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	.wrap {
		width: calc(100% - 60px);
		max-width: inherit;
		margin: auto;
	}
}

.l-main * {
	font-family: "Noto Sans JP", sans-serif;
}

@media print,
screen and (min-width: 641px) {
	.l-footer .c-contentWidth {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}

.l-main *,
.l-main *:before,
.l-main *:after {
	box-sizing: border-box;
}

.l-main h2 {
	margin: 0;
}

.l-main .unit01 {
	padding: 0;
}

.l-main .unit02 {
	padding: 0;
	background-color: #fff;
}

.l-main .unit03 {
	padding: 0;
	background-color: #fff;
}

.l-main .unit04 {
	padding: 120px 0;
	background-color: #fff;
}

@media screen and (max-width: 640px) {
	.l-main .unit01 {
		padding: 0;
		background-color: rgba(185, 216, 255, 0.15);
	}

	.l-main .unit02 {
		padding: 0;
	}

	.l-main .unit03 {
		padding: 0;
	}

	.l-main .unit04 {
		padding: 80px 0;
	}
}

/* --------------------------------------------------
animation
-------------------------------------------------- */
.js-zoomin {
	opacity: 0;
	transition: transform 3s;
}

.is-zoomin {
	-webkit-animation: zoomIn 3s forwards;
	animation: zoomIn 3s forwards;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(1.025, 1.025);
	}

	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(1.025, 1.025);
	}

	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

.js-zoomout {
	opacity: 0;
	transition: transform 0.8s;
}

.is-zoomout {
	-webkit-animation: zoomOut 0.8s forwards;
	animation: zoomOut 0.8s forwards;
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 0;
		transform: scale(0.9, 0.9);
	}

	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

@keyframes zoomOut {
	0% {
		opacity: 0;
		transform: scale(0.9, 0.9);
	}

	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

.js-fadein {
	opacity: 0;
	transition: transform 3s;
}

.is-fadein {
	-webkit-animation: fadeIn 0.8s forwards;
	animation: fadeIn 0.8s forwards;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.js-fadeup {
	opacity: 0;
	transition: transform 3s;
}

.is-fadeup {
	-webkit-animation: fadeUp 0.8s forwards;
	animation: fadeUp 0.8s forwards;
}

@-webkit-keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.js-fadedown {
	opacity: 0;
	transition: transform 3s;
}

.is-fadedown {
	-webkit-animation: fadeDown 0.8s forwards;
	animation: fadeDown 0.8s forwards;
}

@-webkit-keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.js-fadeup {
	opacity: 0;
	transition: transform 3s;
}

.is-fadeup {
	-webkit-animation: fadeup 0.8s forwards;
	animation: fadeup 0.8s forwards;
}

@-webkit-keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.js-fadeleft {
	opacity: 0;
	transition: transform 3s;
}

.is-fadeleft {
	-webkit-animation: fadeLeft 0.8s forwards;
	animation: fadeLeft 0.8s forwards;
}

@-webkit-keyframes fadeLeft {
	0% {
		opacity: 0;
		transform: translateX(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeLeft {
	0% {
		opacity: 0;
		transform: translateX(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.js-faderight {
	opacity: 0;
	transition: transform 3s;
}

.is-faderight {
	-webkit-animation: fadeRight 0.8s forwards;
	animation: fadeRight 0.8s forwards;
}

@-webkit-keyframes fadeRight {
	0% {
		opacity: 0;
		transform: translateX(80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeRight {
	0% {
		opacity: 0;
		transform: translateX(80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*================================================================
# p-mv
================================================================ */
.p-mv {
	background: url(../img/mv_back.png) no-repeat center center / cover;
	position: relative;
	overflow: hidden;
}

.p-mv .mv_img.is-zoomin {
	animation: zoomIn 3s 0.8s forwards;
}

.p-mv .mv_img img {
	width: 100%;
	height: auto;
	min-height: 648px;
	object-fit: cover;
}

.p-mv .text-wrap {
	width: 624px;
	height: 329px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5.071428571428571%;
	text-align: center;
}

@media screen and (min-width: 1441px) {
	.p-mv .text-wrap {
		width: 44.571428571428571%;
		height: 50.693374422187982%;
	}
}

.p-mv .text-wrap .mv_logo {
	width: 82.051282051282051%;
	margin: auto;
}

.p-mv .text-wrap .mv_copy {
	width: 100%;
	margin: -5% auto 0;
}

.p-mv .text-wrap .mv_title {
	width: 69.711538461538462%;
	margin: 8% auto 0;
}

.p-mv .text-wrap .mv_text {
	width: 20.192307692307692%;
	margin: 3.8% auto 0;
}

.p-mv .mv_note {
	width: 29.166666666666667%;
	position: absolute;
	bottom: 2.773497688751926%;
	left: 12.142857142857143%;
}

.p-mv .mv_pop-up {
	width: 12.222222222222222%;
	position: absolute;
	top: 12.326656394453005%;
	right: 12.361111111111111%;
}

.p-mv .text-wrap .mv_copy.is-fadedown {
	animation: fadeDown 0.8s 0.2s forwards;
}

.p-mv .text-wrap .mv_title.is-fadedown {
	animation: fadeDown 0.8s 0.4s forwards;
}

.p-mv .text-wrap .mv_text.is-fadedown {
	animation: fadeDown 0.8s 0.6s forwards;
}

.p-mv .mv_pop-up.is-zoomin {
	animation: zoomIn 1.6s 1.6s forwards;
}

.p-mv img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 640px) {
	.p-mv {
		height: 100%;
		background: url(../img/mv_back_sp.png) no-repeat center center / cover;
		position: relative;
		overflow: hidden;
	}

	.p-mv .mv_img {
		margin: 0;
	}

	.p-mv .mv_img img {
		width: 100%;
		height: 100%;
		min-height: auto;
		object-fit: cover;
	}

	.p-mv .text-wrap {
		width: 100%;
		height: 31.466666666666667%;
		margin: 0;
		position: absolute;
		top: auto;
		bottom: 8%;
		left: 0;
		text-align: center;
	}

	.p-mv .text-wrap .mv_logo {
		width: 81%;
		margin: 6% auto 0;
	}

	.p-mv .text-wrap .mv_copy {
		width: 58%;
		margin: -0.5% auto 0;
	}

	.p-mv .text-wrap .mv_title {
		width: 74%;
		margin: 2% auto 0;
	}

	.p-mv .text-wrap .mv_text {
		width: 20%;
		margin: 1.5% auto 0;
	}

	.p-mv .mv_note {
		width: 65%;
		margin: 0 auto;
		right: 0;
		bottom: 1.5%;
		left: 0;
	}

	.p-mv .mv_pop-up {
		width: 28%;
		margin: 0 auto;
		top: 2.7%;
		right: 6%;
	}

	.p-mv .text-wrap img {
		width: 100%;
		height: auto;
	}
}

/*================================================================
# p-intro
================================================================ */
.p-intro {
	padding: 80px 0 100px;
	background: url(../img/p-intro_back.png) no-repeat center bottom / 1440px auto;
	text-align: center;
}

@media screen and (min-width: 1441px) {
	.p-intro {
		background: url(../img/p-intro_back.png) no-repeat center bottom / cover;
	}
}

h2.p-intro__ttl {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 34px;
	font-weight: 500;
	line-height: 72px;
	color: #009dc0;
	letter-spacing: -0.03em;
}

.p-intro__content {
	margin: 8px 0 0;
}

.p-intro__txt {
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: 1px;
}

@media screen and (max-width: 640px) {
	.p-intro {
		padding: 50px 0 70px;
		background: url(../img/p-intro_back_sp.png) no-repeat center center / cover;
	}

	h2.p-intro__ttl {
		margin: 0;
		font-size: 22px;
		line-height: 2;
		letter-spacing: -0.03em;
	}

	.p-intro__content {
		margin: 0;
		padding: 0;
	}

	.p-intro__txt {
		margin: 20px 0 0;
		padding: 0;
		font-size: 14px;
		line-height: 2.4;
		letter-spacing: -0.01em;
	}
}

/*================================================================
# p-product
================================================================ */
.p-product {
	margin: 0;
	padding: 87px 0;
	background-color: rgba(185, 216, 255, 0.1);
}

.p-product__title {
	font-family: "Noto Serif JP", serif;
	font-size: 36px;
	font-weight: 600;
	line-height: 60px;
	color: #2b3851;
	text-align: center;
	letter-spacing: -0.05em;
}

.p-product .container {
	margin: 109px 0 0;
	display: flex;
}

.p-product .img-area {
	width: 50%;
	margin: 0;
	position: relative;
}

.p-product .img-area .product_bg {
	position: absolute;
	top: 0;
	right: 44px;
	z-index: 0;
}

@media screen and (min-width: 1441px) {
	.p-product .img-area .product_bg {
		width: 100%;
	}

	.p-product .img-area .product_bg img {
		width: 100%;
		object-fit: cover;
	}
}

.p-product .img-area .product_img01 {
	position: absolute;
	top: 54px;
	right: 206px;
	z-index: 1;
}

.p-product .text-area {
	width: 50%;
	margin: 87px 0 0;
	padding: 0 0 0 49px;
}

.p-product .p-product__date {
	width: 390px;
	height: 56px;
	padding: 13px 15px 15px;
	border: 1px solid #009dc0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 33px;
	color: #009dc0;
	text-align: center;
	letter-spacing: 0.07em;
}

.p-product .p-product__date small {
	margin: 4px 4px 0;
	font-size: 14px;
}

.p-product .p-product__name {
	margin: 37px 0 0;
	font-size: 20px;
	line-height: 45px;
	color: #2b3851;
}

.p-product .p-product__tag {
	margin: 7px 0 0;
}

.p-product .p-product__tag span {
	padding: 3px 14px;
	border: 1px solid #2b3851;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
}

.p-product__note {
	margin: 16px 0 0;
}

.p-product__note li {
	padding-left: 1em;
	display: block;
	font-size: 12px;
	color: #2b3851;
	text-indent: -0.5em;
	letter-spacing: 0.6px;
}

.p-product__note li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	.p-product {
		padding: 60px 0 0;
	}

	.p-product .container {
		margin: 18% 0 0;
		flex-direction: column;
	}

	.p-product .img-area {
		width: 100%;
		margin: 0;
	}

	.p-product .img-area .product_bg {
		width: 100%;
		position: absolute;
		top: 34%;
		right: 0;
		z-index: 0;
	}

	.p-product .img-area .product_img01 {
		width: 24.8%;
		margin: auto;
		position: relative;
		top: auto;
		right: auto;
	}

	.p-product .text-area {
		width: 100%;
		margin: 51px 0 0 0;
		padding: 0;
	}

	.p-product .p-product__date {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 16px;
		line-height: 1.618;
		text-align: center;
	}

	.p-product .p-product__name {
		margin: 20px 0 0;
		font-size: 16px;
		line-height: 1.95;
		text-align: center;
	}

	.p-product .p-product__tag {
		width: 20%;
		margin: 7px auto 0;
	}

	.p-product .p-product__tag span {
		padding: 0;
		border: 1px solid #2b3851;
		display: block;
		font-size: 14px;
		line-height: 1.618;
		color: #2b3851;
		text-align: center;
	}

	.p-product .p-product__note {
		margin: 10px 0 0 0;
		font-size: 10px;
		text-align: center;
	}

	.p-product__note li {
		font-size: 10px;
	}

	.p-product__title {
		width: 96%;
		margin: 0 auto;
		padding: 0 0 0 10px;
		font-size: 21px;
		line-height: 1.7;
		letter-spacing: -0.03em;
	}
}

/*================================================================
# anchor-link
================================================================ */
.anchor-link {
	margin: 0;
	padding: 85px 0;
	background-color: rgba(185, 216, 255, 0.1);
}

.anchor-link .container {
	margin: 0 0 0 -15px;
	display: flex;
	flex-wrap: wrap;
}

.anchor-link .anchor-link__li {
	width: calc(33.3% - 15px);
	margin: 0 0 0 15px;
}

.anchor-link .anchor-link__li:nth-child(n + 3) {
	margin: 0 0 0 15px;
}

.anchor-link .anchor-btn {
	padding: 16px 0 26px;
	background-color: #b9d8ff;
	position: relative;
	display: block;
	font-size: 26px;
	line-height: 24px;
	color: #2b3851;
	text-align: center;
}

.anchor-link .anchor-btn:before {
	width: 40px;
	height: 40px;
	margin: auto;
	background: url(../img/anchor-link_arrow.png) no-repeat center top / contain;
	position: absolute;
	content: "";
	top: 0;
	right: 33px;
	bottom: 0;
}

.anchor-link .name-jp {
	font-size: 18px;
	font-weight: 400;
}

.anchor-link .name-en {
	margin: 5px 0 0;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 640px) {
	.anchor-link {
		padding: 60px 0 80px;
		background-color: rgba(185, 216, 255, 0.15);
	}

	.anchor-link .container {
		margin: 0;
		display: flex;
		flex-wrap: wrap;
	}

	.anchor-link .anchor-link__li {
		width: 100%;
		margin: 0;
	}

	.anchor-link .anchor-link__li:nth-child(n + 2) {
		margin: 10px 0 0;
	}

	.anchor-link .anchor-btn {
		padding: 10px 0 12px;
		background-color: #b9d8ff;
		position: relative;
		display: block;
		font-size: 20px;
		line-height: 1.618;
	}

	.anchor-link .anchor-btn:before {
		width: 25px;
		height: 25px;
		margin: auto;
		background: url(../img/anchor-link_arrow.png) no-repeat center top / contain;
		position: absolute;
		content: "";
		top: 0;
		right: 28px;
		bottom: 0;
	}

	.anchor-link .name-jp {
		font-size: 14px;
		font-weight: 400;
		line-height: 1.3;
	}

	.anchor-link .name-en {
		margin: 0;
		line-height: 1.3;
		letter-spacing: 0.05em;
	}
}

#about,
#skincare-tips,
#product,
#campaing,
#present {
	height: 1px;
	margin-top: -80px;
	padding-top: 80px;
	display: block;
}

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

	#about,
	#skincare-tips,
	#product,
	#campaing,
	#present {
		margin-top: -74px;
		padding-top: 74px;
	}
}

/*================================================================
# about
================================================================ */
.about {
	padding: 139px 0 0;
}

.about .container {
	width: 1080px;
	margin: auto;
	position: relative;
	display: flex;
}

.about .text-area {
	width: 50%;
}

.about .title {
	margin: 6px 0 0 33px;
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	line-height: 60px;
	color: #2b3851;
	letter-spacing: -0.07em;
}

.about .title span {
	font-family: "Noto Serif JP", serif;
	color: #009dc0;
}

.about .sub-title {
	margin: 12px 0 0 33px;
	font-family: "Noto Serif JP", serif;
	font-size: 28px;
	line-height: 50px;
	color: #2b3851;
	letter-spacing: -0.05em;
}

.about .sub-title span {
	font-family: "Noto Serif JP", serif;
	color: #009dc0;
}

.about .text {
	margin: 34px 0 0 33px;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: 1px;
}

.about .img-area {
	width: 50%;
	margin: 54px 0 0;
	padding: 0 0 0 20px;
}

.about .img {
	position: relative;
	z-index: 1;
}

.about .note {
	margin: 61px 0 0;
	position: relative;
	font-size: 12px;
	line-height: 48px;
	color: #2b3851;
	text-align: right;
	letter-spacing: 0.6px;
}

@media screen and (max-width: 640px) {
	.about {
		margin: 0;
		padding: 70px 0 0;
	}

	.about .container {
		width: 100%;
		margin: 0;
		flex-wrap: wrap;
	}

	.about .text-area {
		width: calc(100% - 34px);
		margin: auto;
		position: relative;
		z-index: 1;
	}

	.about .point {
		width: 27.3%;
	}

	.about .title {
		margin: -22px 0 0;
		font-size: 22px;
		font-weight: 500;
		line-height: 1.618;
		text-align: right;
		letter-spacing: -0.05em;
	}

	.about .sub-title {
		margin: 9px 0 0;
		font-size: 18px;
		font-weight: 500;
		line-height: 1.618;
		text-align: right;
		letter-spacing: -0.05em;
	}

	.about .sub-title span {
		font-family: "Noto Serif JP", serif;
		color: #009dc0;
	}

	.about .text {
		margin: 18px auto 0;
		font-size: 14px;
		line-height: 2.1;
		color: #2b3851;
		text-align: center;
		letter-spacing: 1px;
	}

	.about .img-area {
		width: 100%;
		margin: 46px calc(50% - 50vw) 0;
		padding: 0;
		position: relative;
	}

	.about .img {
		width: 75%;
		margin: auto;
		position: relative;
		z-index: 1;
	}

	.about .note {
		margin: 11px 12.5% 0;
		font-size: 10px;
		line-height: 1.618;
	}
}

/* point01
------------------------------------------------------ */
.about .point01 .back {
	position: absolute;
	top: 112px;
	right: -181px;
	z-index: 0;
}

@media screen and (min-width: 1441px) {
	.about .point01 .back {
		width: 50vw;
		margin: 0 calc(50% - 50vw);
	}

	.about .point01 .back img {
		width: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 640px) {
	.about .point01 .back {
		width: 75%;
		height: 100%;
		top: -33%;
		right: 0;
	}
}

/* point02
------------------------------------------------------ */
.about .point02.container {
	margin: 157px auto 0;
	flex-direction: row-reverse;
}

.about .point02 .text-area {
	padding: 0 17px 0 0;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.about .point02 .point {
	margin: 0 auto 0 67px;
}

.about .point02 .title {
	margin: 8px 0 0;
}

.about .point02 .sub-title {
	margin: 12px 0 0;
	text-align: right;
}

.about .point02 .text {
	margin: 32px 20px 0 0;
}

.about .point02 .note {
	margin: 73px 0 0;
	text-align: left;
}

.about .point02 .img-area {
	margin: 13px 0 0;
	padding: 0;
}

.about .point02 .back {
	position: absolute;
	top: 85px;
	left: -179px;
	z-index: 0;
}

@media screen and (min-width: 1441px) {
	.about .point02 .back {
		width: 50vw;
		margin: 0 calc(50% - 50vw);
	}

	.about .point02 .back img {
		width: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 640px) {
	.about .point02.container {
		margin: 45px auto 0;
		flex-direction: row-reverse;
	}

	.about .point02 .text-area {
		padding: 0;
	}

	.about .point02 .point {
		margin: 0 auto 0 7px;
	}

	.about .point02 .title {
		margin: -20px -3% 0 0;
		letter-spacing: -0.07em;
	}

	.about .point02 .sub-title {
		margin: 8px -2% 0 0;
		line-height: 1.73;
		text-align: right;
	}

	.about .point02 .text {
		margin: 17px auto 0;
	}

	.about .point02 .note {
		margin: 10px 12.5% 0 0;
		text-align: right;
	}

	.about .point02 .img-area {
		margin: 13px 0 0;
		padding: 0;
	}

	.about .point02 .img {
		width: 75%;
		margin: 35px auto 0;
		position: relative;
		z-index: 1;
	}

	.about .point02 .back {
		width: 75%;
		height: 100%;
		top: -17%;
		left: 0;
	}
}

/*================================================================
# mission
================================================================ */
.mission {
	margin: 47px 0 0;
	padding: 172px 0 215px;
	background: url(../img/mission_back.png) no-repeat center center / 1440px auto;
	text-align: center;
}

@media screen and (min-width: 1441px) {
	.mission {
		background: url(../img/mission_back.png) no-repeat center center / cover;
	}
}

.mission .sub-title {
	font-family: "Noto Serif JP", serif;
	font-size: 40px;
	line-height: 70px;
	color: #2b3851;
	letter-spacing: 0.02em;
}

.mission .title {
	margin: 26px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 48px;
	line-height: 60px;
	color: #2b3851;
}

.mission .container {
	margin: 121px 0 0;
	display: flex;
	justify-content: space-between;
}

.mission .card:nth-child(2).is-faderight {
	animation: fadeRight 0.8s 0.2s forwards;
}

.mission .card:nth-child(3).is-faderight {
	animation: fadeRight 0.8s 0.4s forwards;
}

.mission .text {
	margin: 19px 0 0;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: -0.02em;
}

.mission sub {
	font-size: 12px;
}

.mission .note {
	margin: 7px 0 0;
	font-size: 12px;
	color: #2b3851;
}

@media screen and (max-width: 640px) {
	.mission {
		margin: 86px 0 0;
		padding: 70px 0 90px;
		background: url(../img/mission_back_sp.png) no-repeat center center / cover;
		text-align: center;
	}

	.mission .sub-title {
		margin: 0 calc(50% - 50vw);
		font-size: 18px;
		font-weight: 600;
		line-height: 1.618;
		letter-spacing: 0;
	}

	.mission .title {
		margin: 9px 0 0;
		font-size: 27px;
		font-weight: 600;
		line-height: 1.618;
	}

	.mission .container {
		margin: 59px 0 0;
		display: flex;
		flex-direction: column;
	}

	.mission .card {
		margin: auto calc(50% - 50vw);
		position: relative;
	}

	.mission .card:nth-child(n + 2) {
		margin: 40px calc(50% - 50vw) 0;
	}

	.mission .card:nth-child(2).is-faderight {
		animation: fadeRight 0.8s 0.2s forwards;
	}

	.mission .card:nth-child(3).is-faderight {
		animation: fadeRight 0.8s 0.4s forwards;
	}

	.mission .text {
		width: 60%;
		margin: 0;
		position: absolute;
		right: 0;
		bottom: 20%;
		font-size: 12px;
		line-height: 1.618;
		letter-spacing: -0.02em;
	}

	.mission .card:nth-child(2) .text {
		bottom: 32%;
	}

	.mission sub {
		font-size: 12px;
	}

	.mission .note {
		width: 60%;
		margin: 7px 0 0;
		margin: 0;
		position: absolute;
		right: 0;
		bottom: 20%;
		font-size: 12px;
		line-height: 1.618;
		color: #2b3851;
		letter-spacing: -0.02em;
	}
}

/*================================================================
#skincare-tips
================================================================ */
.skincare-tips {
	padding: 0 0 274px;
}

.skincare-tips .title-en {
	margin: 191px 0 0;
	text-align: center;
}

.skincare-tips .section01 {
	margin: 20px 0 0;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.skincare-tips .title-jp {
	margin: 9px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 50px;
	color: #009dc0;
	text-align: center;
}

.skincare-tips .box {
	width: 1080px;
	margin: 60px auto 0;
	padding: 60px 0 60px;
	box-shadow: 0 0 10px rgba(47, 54, 63, 0.13);
	display: flex;
	align-items: center;
	flex-direction: column;
}

.skincare-tips .list {
	margin: 0 0 0 16px;
}

.skincare-tips .list li {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 35px;
	color: #2b3851;
	text-indent: -1em;
}

.skincare-tips .list li:nth-child(n + 2) {
	margin: 9px 0 0;
}

.skincare-tips .list li:last-child {
	margin: 8px 0 0 23px;
	line-height: 1;
}

.skincare-tips .link-text a {
	position: relative;
	font-size: 16px;
	font-weight: 300;
	color: #2b3851;
	letter-spacing: 0.08em;
}

.skincare-tips .link-text a:before {
	width: 100%;
	height: 1px;
	background-color: #2b3851;
	position: absolute;
	content: "";
	bottom: 1px;
	left: 0;
	transition: 0.3s;
}

.skincare-tips .link-text a:hover:before {
	width: 0;
	height: 1px;
	background-color: #2b3851;
	position: absolute;
	content: "";
	right: 0;
	bottom: 1px;
}

.skincare-tips .tag {
	margin: 56px auto 0;
}

.skincare-tips .text {
	margin: 15px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 35px;
	color: #2b3851;
}

.skincare-tips .section02 {
	margin: 92px 0 0;
}

.skincare-tips .youtube {
	width: 560px;
	margin: 58px auto 0;
	position: relative;
}

.skincare-tips .youtube:before {
	width: 560px;
	height: 315px;
	background: url(../img/skincare-back.png) no-repeat center top / contain;
	position: absolute;
	content: "";
	top: 70px;
	left: 73px;
}

.youtube__inner {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}

.youtube__inner iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (max-width: 640px) {
	.skincare-tips {
		padding: 70px 0 140px;
	}

	.skincare-tips .title-en {
		width: 92%;
		margin: auto;
	}

	.skincare-tips .section01 {
		margin: 0;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.skincare-tips .title-jp {
		margin: 14px calc(50% - 50vw) 0;
		font-size: 21px;
		line-height: 1.618;
	}

	.skincare-tips .box {
		width: 100%;
		margin: 35px auto 0;
		padding: 40px 22px 35px;
	}

	.skincare-tips .list {
		margin: 0;
	}

	.skincare-tips .list li {
		font-size: 13px;
		line-height: 1.618;
		text-indent: -1em;
		letter-spacing: -0.05em;
	}

	.skincare-tips .list li:nth-child(n + 2) {
		margin: 11px 0 0;
	}

	.skincare-tips .list li:last-child {
		margin: 5px 0 0 14px;
		line-height: 1;
	}

	.skincare-tips .link-text a {
		position: relative;
		font-size: 11px;
		font-weight: 300;
		color: #2b3851;
		letter-spacing: 0.08em;
	}

	.skincare-tips .link-text a:before {
		width: 100%;
		height: 1px;
		background-color: #2b3851;
		position: absolute;
		content: "";
		bottom: 1px;
		left: 0;
		transition: 0.3s;
	}

	.skincare-tips .link-text a:hover:before {
		width: 0;
		height: 1px;
		background-color: #2b3851;
		position: absolute;
		content: "";
		right: 0;
		bottom: 1px;
	}

	.skincare-tips .tag {
		width: 61%;
		margin: 35px auto 0;
	}

	.skincare-tips .text {
		margin: 11px 0 0;
		font-size: 13px;
		line-height: 1.618;
		text-align: center;
	}

	.skincare-tips .section02 {
		margin: 46px 0 0;
	}

	.skincare-tips .youtube {
		width: auto;
		margin: 42px calc(50% - 50vw) 0;
	}

	.skincare-tips .youtube .youtube__inner {
		width: calc(100% - 60px);
		margin: auto;
		padding-top: 48.25%;
	}

	.skincare-tips .youtube:before {
		width: calc(100% - 12%);
		height: 100%;
		background: url(../img/skincare-back_sp.png) no-repeat center top / cover;
		position: absolute;
		content: "";
		top: 54px;
		right: 0;
		left: auto;
	}
}

/*================================================================
#product
================================================================ */
.product {
	padding: 128px 0 150px;
	background-color: #f5faff;
	text-align: center;
}

.product .container {
	display: flex;
	align-items: center;
}

.product .img-area {
	width: 395px;
	margin: 13px 0 0 60px;
}

.product .text-area {
	width: calc(100% - 395px - 60px);
	padding: 0 0 0 28px;
}

.product .title {
	font-family: "Noto Serif JP", serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 65px;
	color: #2b3851;
	letter-spacing: -0.03em;
}

.product .release-date {
	width: 457px;
	height: 56px;
	margin: 20px auto 0;
	border: 1px solid #2b3851;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.2em;
}

.product .release-date small {
	margin: 2px 0 0;
	font-size: 14px;
}

.product .new {
	margin: 40px auto 0;
}

.product .name {
	margin: 17px 0 0;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
}

.product .name small {
	font-size: 13px;
	line-height: 40px;
	color: #2b3851;
}

.product .text {
	font-size: 20px;
	color: #2b3851;
}

.product .tag {
	margin: 18px 0 0;
}

.product .tag span {
	padding: 2px 10px 3px;
	border: 1px solid #2b3851;
	font-size: 20px;
	color: #2b3851;
}

.product .note {
	margin: 43px 0 0;
	font-size: 12px;
	color: #2b3851;
	letter-spacing: 0.6px;
}

.product .link {
	margin: 35px 68px 0 0;
	text-align: right;
}

.product .link a {
	padding: 0 20px 0 0;
	position: relative;
	font-size: 16px;
	line-height: 30px;
	color: #2b3851;
	letter-spacing: 1.44px;
}

.product .link a:before {
	width: 8px;
	height: 12px;
	margin: auto;
	background: url(../img/product_arrow.png) no-repeat center top / contain;
	position: absolute;
	content: "";
	top: 1px;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 640px) {
	.product {
		padding: 70px 0 90px;
		background-color: #f5faff;
		text-align: center;
	}

	.product .container {
		flex-direction: column;
	}

	.product .img-area {
		width: 91%;
		margin: 59px auto 0;
	}

	.product .text-area {
		width: 100%;
		padding: 0;
	}

	.product .title {
		margin: 0 calc(50% - 50vw);
		padding: 0 0 0 10px;
		font-size: 22px;
		line-height: 1.8;
		letter-spacing: -0.06em;
	}

	.product .release-date {
		width: 457px;
		height: 56px;
		margin: 20px auto 0;
		border: 1px solid #2b3851;
		display: flex;
		justify-content: center;
		align-items: center;
		letter-spacing: 0.2em;
	}

	.product .release-date small {
		margin: 2px 0 0;
		font-size: 14px;
	}

	.product .new {
		margin: 40px auto 0;
	}

	.product .name {
		margin: 17px 0 0;
		font-size: 18px;
		line-height: 1.618;
	}

	.product .name small {
		font-size: 13px;
		line-height: 40px;
		color: #2b3851;
	}

	.product .text {
		margin: -4px 0 0;
		font-size: 16px;
	}

	.product .tag {
		margin: 7px 0 0;
	}

	.product .tag span {
		padding: 1px 6px 2px;
		font-size: 14px;
	}

	.product .note {
		margin: 10px calc(50% - 50vw) 0;
		font-size: 10px;
		letter-spacing: -0.01em;
	}

	.product .link {
		margin: 23px 0 0;
		text-align: center;
	}

	.product .link a {
		padding: 0 14px 0 0;
		font-size: 13px;
		line-height: 1.618;
		letter-spacing: 1.44px;
	}

	.product .link a:before {
		width: 8px;
		height: 12px;
		margin: auto;
		background: url(../img/product_arrow.png) no-repeat center top / contain;
		position: absolute;
		content: "";
		top: 1px;
		right: 0;
		bottom: 0;
	}
}

/*================================================================
# campaign
================================================================ */
.campaign .title-area {
	padding: 83px 0 93px;
	background: linear-gradient(to right, #c7e0ff 0%, #ffffff 50%, #d2d2ec 100%);
	text-align: center;
}

.campaign .title-area .title {
	font-size: 40px;
	line-height: 70px;
	color: #2b3851;
	letter-spacing: 3.5px;
}

.campaign .title-area .title02 {
	margin: 17px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 48px;
	font-weight: 600;
	color: #2b3851;
	letter-spacing: -0.05em;
}

.campaign .title-area .title03 {
	margin: 13px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 36px;
	color: #009dc0;
	letter-spacing: -0.05em;
}

.campaign .application-method {
	border-top: 8px solid #fff;
	position: relative;
}

.campaign .application-method:before {
	width: 50%;
	height: 100%;
	background-color: #b9d8ff;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 0;
}

.campaign .application-method::after {
	width: 50%;
	height: 100%;
	background-color: #b4b4df;
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	z-index: 0;
}

.campaign .application-method .container {
	position: relative;
	display: flex;
	z-index: 1;
}

.campaign .application-method .left {
	width: 50%;
	padding: 70px 40px 80px;
	text-align: center;
}

.campaign .application-method .title {
	width: 270px;
	height: 54px;
	margin: auto;
	background-color: #fff;
	font-size: 26px;
	line-height: 50px;
	color: #2b3851;
	text-align: center;
}

.campaign .application-method .text {
	margin: 44px 0 0;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: 1px;
}

.campaign .application-method .period {
	width: 320px;
	height: 47px;
	margin: 52px auto 0;
	padding: 0 0 4px;
	border-radius: 30px;
	background-color: #009dc0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: #ffffff;
	letter-spacing: 0.05em;
}

.campaign .application-method .period small {
	margin: 2px 2px 0;
	font-size: 14px;
}

.campaign .application-method .right {
	width: 50%;
	padding: 70px 30px 86px;
}

.campaign .application-method .box {
	margin: 18px 0 0;
	padding: 16px 23px;
	background-color: #fff;
}

.campaign .application-method .container02 {
	display: flex;
}

.campaign .application-method .container03 {
	display: flex;
	align-items: center;
}

.campaign .application-method .text {
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	text-align: center;
	letter-spacing: 1px;
}

.campaign .application-method .text02 {
	margin: 20px 0 0;
	font-size: 18px;
	line-height: 30px;
	color: #2b3851;
}

.campaign .application-method .text03 {
	margin: 0 0 5px 10px;
	font-size: 17px;
	color: #2b3851;
}

.campaign .application-method .text03 a {
	color: #009dc0;
}

.campaign .application-method .text04 {
	margin: 12px 0 0;
	font-size: 12px;
	line-height: 20px;
	color: #2b3851;
}

.campaign .application-method .container02__right {
	margin: 20px 0 0;
}

.campaign .overview {
	padding: 90px 0 120px;
	background-color: #b9d8ff;
	text-align: center;
}

.campaign .overview .overview__box {
	padding: 72px 90px;
	background-color: #fff;
}

.campaign .overview .slogan {
	width: 303px;
	height: 45px;
	margin: auto;
	border: 1px solid #009dc0;
	border-radius: 22px 0 22px 0;
	font-size: 26px;
	font-weight: 500;
	color: #009dc0;
}

.campaign .overview .title {
	margin: 20px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 50px;
	color: #2b3851;
	letter-spacing: -0.05em;
}

.campaign .overview .period {
	width: 352px;
	height: 48px;
	margin: 34px auto 0;
	padding: 0 0 4px;
	border-radius: 24px;
	background-color: #009dc0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #ffffff;
}

.campaign .overview .period small {
	margin: 4px 4px 0;
	font-size: 20px;
}

.campaign .overview .campaign_img01 {
	margin: 87px 0 0;
}

.campaign .overview .text {
	margin: 76px 0 0;
	font-size: 20px;
	line-height: 40px;
	color: #009dc0;
	letter-spacing: 1px;
}

.campaign .overview .text02 {
	margin: 24px 0 0;
	font-size: 22px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: 1.1px;
}

.campaign .overview .title-en {
	margin: 74px 0 0;
	position: relative;
	font-size: 24px;
	font-weight: 300;
	color: #009dc0;
	letter-spacing: 0.05em;
}

.campaign .overview .title-en:before {
	width: 100%;
	height: 1px;
	margin: auto;
	background-color: #009dc0;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.campaign .overview .title-en span {
	padding: 0 30px;
	background-color: #fff;
	position: relative;
}

.campaign .overview .step {
	margin: 43px auto 0;
	padding: 0;
	list-style: none;
	counter-reset: li;
	display: inline-block;
}

.campaign .overview .step li {
	padding: 0 0 0 80px;
	position: relative;
	font-size: 22px;
	color: #2b3851;
	text-align: left;
}

.campaign .overview .step li+li {
	margin: 20px 0 0;
}

.campaign .overview .step li::before {
	width: 60px;
	height: 24px;
	counter-increment: li;
	border-radius: 12px;
	background-color: #009dc0;
	position: absolute;
	content: "0" counter(li);
	top: 9px;
	left: 0;
	display: block;
	font-size: 22px;
	line-height: 20px;
	color: #fff;
	text-align: center;
}

.campaign .overview .step li:nth-child(2).is-faderight {
	animation: fadeRight 0.8s 0.2s forwards;
}

.campaign .overview .step li:nth-child(3).is-faderight {
	animation: fadeRight 0.8s 0.4s forwards;
}

.campaign .overview .note {
	margin: 13px 0 0;
	font-size: 12px;
	line-height: 30px;
	color: #2b3851;
}

.campaign .overview .btn a {
	width: 632px;
	height: 100px;
	margin: 55px auto 0;
	border-radius: 20px;
	background-color: #009dc0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	line-height: 34px;
	color: #ffffff;
}

.campaign .overview .btn a:before {
	width: 17px;
	height: 25px;
	margin: auto;
	background: url(../img/arrow.png) no-repeat center top / contain;
	position: absolute;
	content: "";
	top: 0;
	right: 29px;
	bottom: 0;
}

.campaign .overview .btn .abtn {
	width: 632px;
	height: 100px;
	margin: 55px auto 0;
	border-radius: 20px;
	background-color: #CCC;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	line-height: 34px;
	color: #ffffff;
}

.campaign .overview .btn .abtn:before {
	width: 17px;
	height: 25px;
	margin: auto;
	position: absolute;
	content: "";
	top: 0;
	right: 29px;
	bottom: 0;
}

@media screen and (max-width: 640px) {
	.campaign .title-area {
		padding: 40px 0 36px;
		background: linear-gradient(to right, #c7e0ff 0%, #ffffff 50%, #d2d2ec 100%);
		text-align: center;
	}

	.campaign .title-area .title {
		font-size: 16px;
		line-height: 1.618;
		letter-spacing: 0;
	}

	.campaign .title-area .title02 {
		margin: 13px 0 0;
		font-size: 22px;
		letter-spacing: -0.05em;
	}

	.campaign .title-area .title03 {
		margin: 5px 0 0;
		font-size: 19px;
		font-weight: 600;
		letter-spacing: -0.05em;
	}

	.campaign .application-method {
		border-top: 6px solid #fff;
		position: relative;
	}

	.campaign .application-method:before {
		width: 50%;
		height: 100%;
		background-color: #b9d8ff;
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		z-index: 0;
	}

	.campaign .application-method::after {
		width: 50%;
		height: 100%;
		background-color: #b4b4df;
		position: absolute;
		content: "";
		top: 0;
		right: 0;
		z-index: 0;
	}

	.campaign .application-method .container {
		margin: 0 calc(50% - 50vw);
	}

	.campaign .application-method .left {
		width: 50%;
		padding: 37px 10px 58px;
	}

	.campaign .application-method .title {
		width: 84%;
		height: 33px;
		margin: auto;
		font-size: 17px;
		line-height: 1.8;
	}

	.campaign .application-method .text {
		margin: 44px 0 0;
		font-size: 20px;
		line-height: 40px;
		color: #2b3851;
		letter-spacing: 1px;
	}

	.campaign .application-method .period {
		width: 100%;
		height: 25px;
		margin: 24px auto 0;
		padding: 0;
		border-radius: 25px;
		font-size: 12px;
		letter-spacing: 0.05em;
	}

	.campaign .application-method .period small {
		margin: 1px 1px 0;
		font-size: 10px;
	}

	.campaign .application-method .right {
		width: 50%;
		padding: 37px 10px 58px;
	}

	.campaign .application-method .box {
		width: 90%;
		margin: 26px auto 0;
		padding: 7px 15px;
	}

	.campaign .application-method .container02 {
		display: flex;
	}

	.campaign .application-method .container03 {
		display: flex;
		align-items: center;
	}

	.campaign .application-method .text {
		margin: 25px 0 0;
		font-size: 14px;
		line-height: 2.1;
		letter-spacing: -0.07em;
	}

	.campaign .application-method .text02 {
		margin: 16px 0 0;
		font-size: 12px;
		line-height: 1.618;
	}

	.campaign .application-method .container03 .icon {
		width: 30%;
	}

	.campaign .application-method .text03 {
		width: 70%;
		margin: 0 0 0 10px;
		font-size: 12px;
	}

	.campaign .application-method .text03 a {
		color: #009dc0;
	}

	.campaign .application-method .text04 {
		margin: 12px 0 0;
		font-size: 12px;
		line-height: 20px;
		color: #2b3851;
	}

	.campaign .application-method .container02__right {
		margin: 20px 0 0;
	}

	.campaign .overview {
		padding: 30px 0 70px;
		background-color: #b9d8ff;
		text-align: center;
	}

	.campaign .overview .overview__box {
		padding: 35px 29px 77px;
		background-color: #fff;
	}

	.campaign .overview .slogan {
		width: 198px;
		height: 30px;
		border-radius: 15px 0 15px 0;
		font-size: 17px;
	}

	.campaign .overview .title {
		margin: 7px 0 0;
		font-size: 20px;
		line-height: 1.618;
		letter-spacing: -0.05em;
	}

	.campaign .overview .period {
		width: 230px;
		height: 30px;
		margin: 11px auto 0;
		padding: 0 0 4px;
		border-radius: 15px;
		font-size: 17px;
	}

	.campaign .overview .period small {
		margin: 4px 2px 0;
		font-size: 12px;
	}

	.campaign .overview .campaign_img01 {
		width: 28%;
		margin: 30px auto 0;
	}

	.campaign .overview .text {
		margin: 46px 0 0;
		font-size: 16px;
		line-height: 1.618;
		letter-spacing: 0;
	}

	.campaign .overview .text02 {
		margin: 15px 0 0;
		font-size: 16px;
		line-height: 1.8;
		letter-spacing: 1.1px;
	}

	.campaign .overview .title-en {
		margin: 48px 0 0;
		font-size: 18px;
		letter-spacing: 0;
	}

	.campaign .overview .title-en:before {
		width: 100%;
		height: 1px;
		margin: auto;
		background-color: #009dc0;
		position: absolute;
		content: "";
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 0;
	}

	.campaign .overview .title-en span {
		padding: 0 11px;
		background-color: #fff;
		position: relative;
	}

	.campaign .overview .step {
		margin: 26px auto 0;
	}

	.campaign .overview .step li {
		padding: 0 0 0 48px;
		font-size: 14px;
		letter-spacing: -0.05em;
	}

	.campaign .overview .step li+li {
		margin: 14px 0 0;
	}

	.campaign .overview .step li::before {
		width: 40px;
		height: 17px;
		border-radius: 12px;
		top: 4px;
		left: 0;
		font-size: 16px;
		line-height: 1;
	}

	.campaign .overview .step li:nth-child(2).is-faderight {
		animation: fadeRight 0.8s 0.2s forwards;
	}

	.campaign .overview .step li:nth-child(3).is-faderight {
		animation: fadeRight 0.8s 0.4s forwards;
	}

	.campaign .overview .note {
		margin: 7px 0 0;
		font-size: 10px;
		line-height: 1.618;
	}

	.campaign .overview .btn a {
		width: 100%;
		height: 64px;
		margin: 36px auto 0;
		padding: 0 0 3px;
		border-radius: 10px;
		font-size: 21px;
		line-height: 1.618;
	}

	.campaign .overview .btn a:before {
		width: 13px;
		height: 18px;
		right: 17px;
	}

	.campaign .overview .btn .abtn {
		width: 100%;
		height: 64px;
		margin: 36px auto 0;
		padding: 0 0 3px;
		border-radius: 10px;
		font-size: 17px;
		line-height: 1.618;
	}

	.campaign .overview .btn .abtn:before {
		width: 13px;
		height: 18px;
		right: 17px;
	}
}

/*================================================================
# review-campaign
================================================================ */
.review-campaign {
	padding: 120px 0 0;
	/*background-color: rgba(185, 216, 255, 0.15);*/
}

.review-campaign__inner {
	padding: 69px 80px 100px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(47, 54, 63, 0.13);
}

.review-campaign .headline {
	margin: 0 0 0 50px;
	display: flex;
	align-items: center;
}

.review-campaign .popup {
	width: 144px;
	height: 144px;
	border-radius: 72px;
	background: linear-gradient(135deg, #c7d7f8 0%, #82cee0 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.review-campaign .popup span {
	font-size: 20px;
	color: #2b3851;
	text-align: center;
	transform: rotate(-15deg);
}

.review-campaign .title {
	margin: 0 0 0 17px;
	font-family: "Noto Serif JP", serif;
	font-size: 34px;
	font-weight: 500;
	line-height: 53px;
	color: #009dc0;
	letter-spacing: -0.05em;
}

.review-campaign .text {
	margin: 38px 0 0;
	font-size: 22px;
	line-height: 40px;
	color: #2b3851;
	text-align: center;
	letter-spacing: 1.1px;
}

.review-campaign .period {
	width: 383px;
	height: 48px;
	margin: 38px auto 0;
	padding: 0 0 3px;
	border-radius: 24px;
	background-color: #009dc0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #ffffff;
	letter-spacing: 0.02em;
}

.review-campaign .period small {
	margin: 4px 4px 0;
	font-size: 20px;
}

.review-campaign .title-en {
	margin: 83px 0 0;
	position: relative;
	font-size: 24px;
	font-weight: 300;
	color: #009dc0;
	text-align: center;
	letter-spacing: 0.05em;
}

.review-campaign .title-en:before {
	width: 100%;
	height: 1px;
	margin: auto;
	background-color: #009dc0;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.review-campaign .title-en span {
	padding: 0 30px;
	background-color: #fff;
	position: relative;
}

.review-campaign .step {
	margin: 43px 0 0 20px;
	padding: 0;
	list-style: none;
	counter-reset: li;
	display: inline-block;
}

.review-campaign .step li {
	padding: 0 0 0 80px;
	position: relative;
	font-size: 22px;
	color: #2b3851;
	text-align: left;
	letter-spacing: 0.02em;
}

.review-campaign .step li+li {
	margin: 20px 0 0;
}

.review-campaign .step li::before {
	width: 60px;
	height: 24px;
	counter-increment: li;
	border-radius: 12px;
	background-color: #009dc0;
	position: absolute;
	content: "0" counter(li);
	top: 9px;
	left: 0;
	display: block;
	font-size: 22px;
	line-height: 20px;
	color: #fff;
	text-align: center;
}

.review-campaign .step li:nth-child(2).is-faderight {
	animation: fadeRight 0.8s 0.2s forwards;
}

.review-campaign .step li:nth-child(3).is-faderight {
	animation: fadeRight 0.8s 0.4s forwards;
}

.review-campaign .note {
	margin: 20px 0 0;
	font-size: 12px;
	line-height: 18px;
	color: #2b3851;
	text-align: center;
	letter-spacing: 0.5px;
}

@media screen and (max-width: 640px) {
	.review-campaign {
		padding: 60px 0 0;
	}

	.review-campaign__inner {
		padding: 35px 19px 66px;
	}

	.review-campaign .headline {
		margin: 0;
		display: flex;
		align-items: center;
	}

	.review-campaign .popup {
		width: 80px;
		height: 80px;
		border-radius: 80px;
	}

	.review-campaign .popup span {
		font-size: 12px;
	}

	.review-campaign .title {
		width: calc(100% - 80px);
		margin: 0 0 0 11px;
		font-size: 20px;
		line-height: 1.618;
		letter-spacing: -0.07em;
	}

	.review-campaign .text {
		margin: 43px 0 0;
		font-size: 15px;
		line-height: 1.8;
		letter-spacing: 0;
	}

	.review-campaign .period {
		width: 252px;
		height: 32px;
		margin: 20px auto 0;
		padding: 0 0 3px;
		font-size: 16px;
		letter-spacing: 0.02em;
	}

	.review-campaign .period small {
		margin: 4px 2px 0;
		font-size: 12px;
	}

	.review-campaign .title-en {
		margin: 53px 0 0;
		font-size: 18px;
		letter-spacing: 0;
	}

	.review-campaign .title-en:before {
		width: 100%;
		height: 1px;
		margin: auto;
		background-color: #009dc0;
		position: absolute;
		content: "";
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 0;
	}

	.review-campaign .title-en span {
		padding: 0 10px;
	}

	.review-campaign .step {
		margin: 27px 0 0 6px;
		padding: 0;
		list-style: none;
		counter-reset: li;
		display: inline-block;
	}

	.review-campaign .step li {
		padding: 0 0 0 48px;
		font-size: 15px;
		letter-spacing: -0.05em;
	}

	.review-campaign .step li+li {
		margin: 14px 0 0;
	}

	.review-campaign .step li::before {
		width: 40px;
		height: 17px;
		border-radius: 12px;
		top: 4px;
		left: 0;
		font-size: 16px;
		line-height: 1;
	}

	.review-campaign .note {
		margin: 10px 0 0;
		line-height: 1.618;
		font-size: 10px;
	}
}

/*================================================================
# rules
================================================================ */
.rules {
	padding: 60px 0 120px;
}

.rules .title {
	width: 152px;
	height: 40px;
	margin: auto;
	padding: 0 0 3px;
	border: 1px solid #2b3851;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	line-height: 33px;
	color: #2b3851;
}

.rules .text-box {
	height: 264px;
	margin: 39px 0 0;
	padding: 23px 40px;
	background-color: #b9d8ff;
	overflow-y: scroll;
}

.rules .text-box .headline {
	font-family: "Noto Serif JP", serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 33px;
	color: #2b3851;
	text-align: center;
}

.rules .text-box .headline02 {
	margin: 100px 0 0;
}

.rules .text-box .text {
	margin: 21px 0 0;
	font-size: 16px;
	line-height: 24px;
	color: #2b3851;
}

.rules .contact {
	margin: 60px 0 0;
	padding: 60px 0 60px;
	box-shadow: 0 0 10px rgba(47, 54, 63, 0.13);
}

.rules .contact .label {
	width: 296px;
	height: 48px;
	margin: auto;
	padding: 0 0 3px;
	background-color: #009dc0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	line-height: 30px;
	color: #ffffff;
	text-align: center;
}

.rules .contact .text {
	margin: 32px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 22px;
	font-weight: 600;
	color: #2b3851;
	text-align: center;
	letter-spacing: -0.05em;
}

.rules .contact .container {
	margin: 66px 0 0;
	display: flex;
}

.rules .contact .tel {
	width: 50%;
	padding: 20px;
	border-right: 1px solid #2b3851;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.rules .contact .icon {
	margin: 0 11px 0 0;
}

.rules .contact .tel .icon {
	margin: 11px 11px 0 0;
}

.rules .contact .number {
	font-size: 35px;
	line-height: 89.16px;
	color: #009dc0;
	letter-spacing: 0.09em;
}

.rules .contact .mail {
	width: 50%;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.rules .contact .address {
	font-size: 25px;
	line-height: 89.16px;
	color: #009dc0;
	letter-spacing: 0.03em;
}

.rules .contact .text02 {
	width: 100%;
	font-size: 25px;
	line-height: 45px;
	color: #2b3851;
	text-align: center;
}

.rules .contact .text03 {
	margin: 36px 0 0;
	font-size: 22px;
	line-height: 40px;
	color: #2b3851;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.rules {
		padding: 30px 0 80px;
	}

	.rules .title {
		width: 105px;
		height: 30px;
		padding: 0;
		border-radius: 15px;
		font-size: 16px;
		line-height: 33px;
	}

	.rules .text-box {
		height: 260px;
		margin: 17px 0 0;
		padding: 19px 25px;
		background-color: #b9d8ff;
		overflow: scroll;
	}

	.rules .text-box .headline {
		font-size: 13px;
		line-height: 1.618;
	}

	.rules .text-box .headline02 {
		margin: 100px 0 0;
	}

	.rules .text-box .text {
		margin: 12px 0 0;
		font-size: 11px;
		line-height: 1.45;
	}

	.rules .contact {
		margin: 30px 0 0;
		padding: 40px 0 60px;
	}

	.rules .contact .label {
		width: 194px;
		height: 31px;
		padding: 0;
		font-size: 16px;
		line-height: 1.618;
	}

	.rules .contact .text {
		margin: 16px 0 0;
		font-size: 16px;
		letter-spacing: -0.05em;
	}

	.rules .contact .container {
		margin: 30px 0 0;
		display: flex;
		flex-direction: column;
	}

	.rules .contact .tel {
		width: 100%;
		padding: 0;
		border-right: 0;
	}

	.rules .contact .icon {
		width: 12%;
		margin: 7px 3% 0 0;
	}

	.rules .contact .tel .icon {
		width: 12%;
		margin: 11px 3% 0 0;
	}

	.rules .contact .number {
		margin: 5px 0 0;
		font-size: 26px;
		line-height: 1;
		letter-spacing: 0;
	}

	.rules .contact .mail {
		width: 100%;
		padding: 20px 0 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.rules .contact .address {
		margin: 5px 0 0;
		font-size: 16px;
		line-height: 1;
		letter-spacing: 0;
	}

	.rules .contact .text02 {
		width: 100%;
		font-size: 16px;
		line-height: 1.618;
	}

	.rules .contact .text03 {
		margin: 36px 0 0;
		font-size: 14px;
		line-height: 1.65;
	}
}

/*================================================================
# unit04
================================================================ */
.unit04 {
	padding: 0;
	background: url(../img/unit04_back.png?1) no-repeat center bottom / cover;
}

@media screen and (min-width: 560px) {
	.unit04 {
		background: url(../img/unit04_back.png?1) no-repeat center bottom / cover;
	}
}

.unit04 .container {
	display: flex;
	justify-content: space-between;
}

.unit04 .left {
	width: 537px;
	text-align: center;
}

.unit04 .right {
	width: calc(100% - 537px - 102px);
	margin: 0 0 0 102px;
}

.unit04 .start {
	width: 208px;
	height: 38px;
	margin: 13px auto 0;
	background-color: #009dc0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 33px;
	color: #ffffff;
}

.unit04 .start small {
	font-size: 15px;
}

.unit04 .text {
	margin: 47px 0 0;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: 1px;
}

.unit04 .label {
	width: 192px;
	height: 38px;
	margin: 60px auto 0;
	background-color: #2b3851;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 33px;
	color: #ffffff;
}

.unit04 .text02 {
	margin: 29px 0 0;
	font-size: 20px;
	line-height: 40px;
	color: #2b3851;
	letter-spacing: 1px;
}

.unit04 .container02 {
	margin: 78px 0 0 -32px;
	display: flex;
	justify-content: center;
}

.unit04 .card {
	width: calc(50% - 32px);
	margin: 0 0 0 32px;
	padding: 10px 10px 0;
	display: flex;
	justify-content: center;
	text-align: left;
}

.unit04 .card01 {
	background-color: #c3c7dc;
}

.unit04 .card01 .img-area {
	margin: -28px 0 -8px;
}

.unit04 .card02 .img-area {
	margin: -28px 0 -8px;
}

.unit04 .headline {
	font-size: 20px;
	line-height: 35px;
	color: #2b3851;
}

.unit04 .name {
	margin: 11px 0 0;
	font-size: 12px;
	line-height: 18px;
	color: #2b3851;
	letter-spacing: 0.6px;
}

.unit04 .card02 {
	background-color: #c4d9df;
}

.unit04 .note {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 20.29px;
	color: #2b3851;
	text-indent: -0.5em;
	letter-spacing: 0.05em;
}

.unit04_img03 {
	margin: 0 0 0 -42px;
}

.unit04 .line {
	width: 784px;
	margin: 0 auto;
	padding: 18px 45px 0;
	background-color: #fff;
	display: flex;
	justify-content: center;
}

.unit04 .line .img-area {
	height:189px;
}

.unit04 .line .text-area {
	width: 400px;
	margin: 13px 0 0 33px;
}

.unit04 .line .text-area .container {
	display: flex;
	justify-content: flex-start;
}

.unit04 .line .icon {
	margin: 0 10px 0 0;
}

.unit04 .line .text-area .text {
	margin: 7px 0 0 5px;
	font-size: 17px;
	line-height: 1.618;
	color: #2b3851;
	letter-spacing: 0;
}

.unit04 .line .text-area .text02 {
	margin: 15px 0 0;
	font-size: 12px;
	line-height: 20px;
	color: #2b3851;
	letter-spacing: 0;
}

.unit04 .line .qr-area {
	width: 140px;
	margin: 13px 0 0 auto;
	text-align: center;
}

.unit04 .line .text03 {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 20px;
	color: #2b3851;
}

@media screen and (max-width: 640px) {
	.unit04 {
		padding: 0;
		background: url(../img/unit04_back_sp.png?1) no-repeat center bottom / cover;
	}

	.unit04 .container {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}

	.unit04 .left {
		width: 100%;
	}

	.unit04 .right {
		width: 100%;
		margin: 0;
	}

	.unit04 .unit04_title-en {
		width: 84%;
		margin: auto;
	}

	.unit04 .start {
		width: 180px;
		height: 28px;
		margin: 7px auto 0;
		font-size: 16px;
		line-height: 1.618;
	}

	.unit04 .start small {
		font-size: 15px;
	}

	.unit04 .text {
		margin: 26px calc(50% - 50vw) 0;
		font-size: 15px;
		line-height: 1.8;
		letter-spacing: 0;
	}

	.unit04 .label {
		width: 124px;
		height: 25px;
		margin: 28px auto 0;
		font-size: 14px;
		line-height: 1.618;
	}

	.unit04 .text02 {
		display: none;
	}

	.unit04 .container02 {
		margin: 46px 0 0 -15px;
		display: flex;
		justify-content: center;
	}

	.unit04 .card {
		width: calc(50% - 15px);
		margin: 0 0 0 15px;
		padding: 10px 10px 8px 0;
		display: flex;
		justify-content: center;
		text-align: left;
	}

	.unit04 .card01 {
		background-color: #c3c7dc;
	}

	.unit04 .card01 .img-area {
		width: 23%;
		margin: -28px 0 -8px;
	}

	.unit04 .card02 .img-area {
		width: 23%;
		margin: -24px 0 1px;
	}

	.unit04 .headline {
		font-size: 13px;
		line-height: 1.618;
	}

	.unit04 .name {
		margin: 6px 0 0;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: -0.07em;
	}

	.unit04 .card02 {
		background-color: #c4d9df;
	}

	.unit04 .note {
		width: 90%;
		margin: 27px auto 0;
		font-size: 10px;
		line-height: 1.4;
		letter-spacing: 0;
	}

	.unit04_img03 {
		width: 88%;
		margin: 45px auto 0;
	}

	.unit04 .line {
		width: 100%;
		margin: 0 auto;
		padding: 25px 18px 22px 18px;
	}

	.unit04 .line .img-area {
		display: none;
	}

	.unit04 .line .text-area {
		width: 100%;
		margin: 0;
	}

	.unit04 .line .text-area .container {
		display: flex;
		justify-content: center;
		flex-direction: row;
	}

	.unit04 .line .icon {
		width: 14%;
		margin: 0;
	}

	.unit04 .line .text-area .text {
		margin: 0;
		padding: 0 0 0 10px;
		font-size: 14px;
		line-height: 1.618;
		letter-spacing: 0;
	}

	.unit04 .line .text-area .text02 {
		margin: 15px 0 0;
		font-size: 12px;
		line-height: 20px;
		color: #2b3851;
		letter-spacing: 0;
	}

	.unit04 .line .qr-area {
		display: none;
	}

	.unit04 .line .text03 {
		margin: 8px 0 0;
		font-size: 12px;
		line-height: 20px;
		color: #2b3851;
	}

	.unit04 .line .text-area .text .link {
		margin: 4px 0 0;
	}

	.unit04 .line .text-area .text .link a {
		padding: 0 15px 0 0;
		position: relative;
		color: #009dc0;
	}

	.unit04 .line .text-area .text .link a:before {
		width: 7px;
		height: 13px;
		margin: auto;
		background: url(../img/arrow02.png) no-repeat center top / contain;
		position: absolute;
		content: "";
		top: 5px;
		right: 0;
		bottom: 0;
	}
}

/*================================================================
# unit05
================================================================ */
.unit05 {
	padding: 138px 0 190px;
	background: url(../img/unit05_back.png) no-repeat center center / 1440px auto;
}

@media screen and (min-width: 560px) {
	.unit05 {
		background: url(../img/unit05_back.png) no-repeat center center / cover;
	}
}

.unit05 .text {
	margin: 48px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 49px;
	color: #2b3851;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.unit05 {
		padding: 117px 0 140px;
		background: url(../img/unit05_back_sp.png) no-repeat center center / cover;
	}

	.unit05 .text {
		margin: 25px 0 0;
		font-size: 17px;
		line-height: 1.97;
	}
}

/*================================================================
#unit06
================================================================ */
.l-main .unit06 {
	padding: 0 0 120px;
}

.l-main .unit06 .search {
	margin: 120px 0 0;
}

.l-main .unit06 .title {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	color: #2b3851;
	text-align: center;
	letter-spacing: 2.8px;
}

.l-main .unit06 .container {
	width: 775px;
	margin: 20px auto 0;
	position: relative;
	display: flex;
	align-items: center;
}

.l-main .unit06 .container:before {
	width: 176px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 0;
}

.l-main .unit06 .img-area {
	width: 320px;
	padding: 24px 0;
	position: relative;
}

.l-main .unit06 .text-area {
	width: calc(100% - 320px);
	text-align: center;
}

.l-main .unit06 .text {
	margin: -12px 0 0;
	font-size: 20px;
	line-height: 33px;
	color: #2b3851;
	letter-spacing: 2.8px;
}

.l-main .unit06 .btn {
	width: 286px;
	height: 46px;
	margin: 24px auto 0;
	padding: 0 0 4px;
	background: #ffffff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 40px;
	color: #2b3851;
}

.l-main .unit06 .btn:before {
	width: 8px;
	height: 13px;
	margin: auto;
	background: url(../img/arrow03.png) no-repeat center top / contain;
	position: absolute;
	content: "";
	top: 0;
	right: 26px;
	bottom: 0;
}

.l-main .unit06 .search .container {
	background-color: #b4b4df;
}

.l-main .unit06 .counseling {
	margin: 113px 0 0;
}

.l-main .unit06 .counseling .title {
	letter-spacing: -0.02em;
}

.l-main .unit06 .counseling .container {
	background-color: #b9d8ff;
}

.l-main .unit06 .counseling .text {
	font-size: 20px;
	line-height: 33px;
	color: #2b3851;
	letter-spacing: 2.8px;
}

@media screen and (max-width: 640px) {
	.l-main .unit06 .search {
		margin: 80px 0 0;
	}

	.l-main .unit06 .title {
		font-size: 15px;
	}

	.l-main .unit06 .container {
		width: 100%;
		margin: 52px auto 0;
	}

	.l-main .unit06 .container:before {
		width: 66px;
	}

	.l-main .unit06 .img-area {
		width: 163px;
		margin: -20px 0 0;
		padding: 0 0 24px;
	}

	.l-main .unit06 .text-area {
		width: calc(100% - 163px);
		padding: 0 10px;
	}

	.l-main .unit06 .text {
		margin: 0;
		font-size: 11px;
		line-height: 1.6;
		text-align: left;
		letter-spacing: 0;
	}

	.l-main .unit06 .btn {
		width: 100%;
		height: 23px;
		margin: 10px auto 0;
		padding: 0 0 1px;
		font-size: 11px;
	}

	.l-main .unit06 .btn:before {
		width: calc(8px / 1.5);
		height: calc(13px / 1.5);
		right: 14px;
	}

	.l-main .unit06 .counseling {
		margin: 34px 0 0;
	}

	.l-main .unit06 .counseling .text {
		margin: 0;
		font-size: 11px;
		line-height: 1.6;
		text-align: left;
		letter-spacing: 0;
	}
}

/*================================================================
#
================================================================ */
.p-closeup-modal__open {
	position: fixed;
	right: 0;
	bottom: 140px;
	z-index: 198;
}

.p-closeup-modal__open:hover {
	cursor: pointer;
}

.p-closeup-modal__open img {
	width: 202px;
	box-shadow: 0 0 10px rgba(47, 54, 63, 0.13);
}

@media screen and (max-width: 640px) {
	.p-closeup-modal__open {
		width: 54.0625%;
		right: 0;
		bottom: 0;
	}

	.p-closeup-modal__open img {
		width: 100%;
	}
}