@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
:root{
	/* font */
	--font-def: zen-old-mincho, sans-serif;/* 400,700 */
	--font-en: adobe-garamond-pro, serif;/* 600 */

	/* color */
	--color-pink: #eb81a2;
	--color-yellow: #e7ba55;
	--color-black: #363636;

	/* sp-size */
	--sp-size-2: min(0.2667vw, 2px);
	--sp-size-4: min(0.5334vw, 4px);
	--sp-size-8: min(1.0667vw, 8px);
	--sp-size-10: min(1.3334vw, 10px);
	--sp-size-12: min(1.6vw, 12px);
	--sp-size-16: min(2.1334vw, 16px);
	--sp-size-20: min(2.6667vw, 20px);
	--sp-size-24: min(3.2vw, 24px);
	--sp-size-26: min(3.4667vw, 26px);
	--sp-size-28: min(3.7334vw, 28px);
	--sp-size-30: min(4vw, 30px);
	--sp-size-32: min(4.2667vw, 32px);
	--sp-size-36: min(4.8vw, 36px);
	--sp-size-40: min(5.3334vw, 40px);
	--sp-size-48: min(6.4vw, 48px);
	--sp-size-56: min(7.4667vw, 56px);
	--sp-size-64: min(8.5334vw, 64px);
	--sp-size-72: min(9.6vw, 72px);
	--sp-size-80: min(10.6667vw, 80px);
	--sp-size-96: min(12.8vw, 96px);
	--sp-size-192: min(25.6vw, 192px);

	/* size */
	--vw-min: 1200;
	--vh-min: 640;
	--max-percent: 1.6;
}
@media screen and (max-width:768px){
	:root{
		--vw-min: 750;
		--vh-min: 1293;
	}
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #363636;
	font-family: var(--font-def);
	font-feature-settings: "palt";
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #645D8A;
	color: #fff;
}
::-moz-selection{
	background: #645D8A;
	color:#fff;
}
@media screen and (max-width:768px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}


/**
 * Keyframes Animation Rotate
**/
@keyframes rotate{
	0%{transform: rotate(0);}
	100%{ transform:rotate(360deg); }
}

/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background:linear-gradient(0deg, rgba(192,101,144,60%) 0%, rgba(50,59,113,60%) 100%);
	backdrop-filter: blur(4px);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-width: 100px;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:768px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: min(calc(100 / var(--vw-min) * 100vw), 100px);
	height: min(calc(100 / var(--vw-min) * 100vw), 100px);
	position: absolute;
	top: 0;
	right: 0;
	margin-top: min(calc(22 / var(--vw-min) * 100vw), 22px);
	margin-right: min(calc(22 / var(--vw-min) * 100vw), 22px);
	z-index: 2;
}
@media screen and (max-width:768px){
	.closeBtn{
		width: calc(136 / var(--vw-min) * 100vw);
		height: calc(136 / var(--vw-min) * 100vw);
		margin-top: calc(20 / var(--vw-min) * 100vw);
		margin-right: calc(20 / var(--vw-min) * 100vw);
	}
}
.btn_modalClose{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	pointer-events: auto;
}
.btn_modalClose:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/navBtn_frame.svg) no-repeat center / contain;
	animation: 20s rotate linear infinite;
}
.btn_modalClose__lineWrap{
	width: 80%;
	height: 80%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-mask: url(../img/common/navBtn_bg1.png) no-repeat center / contain;
    mask: url(../img/common/navBtn_bg1.png) no-repeat center / contain;
}
.btn_modalClose__lineWrap:before{
	content: '';
	position: absolute;
	top: 1.25%;
	left: 1.25%;
	right: 1.25%;
	bottom: 1.25%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url(../img/common/navBtn_bg2.png);
}
.btn_modalClose__lineWrap:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/navBtn_bgFrame.svg) no-repeat center / contain;
	z-index: 2;
}
.btn_modalClose__lineInWrap{
	width: 32.5%;/* 26 */
	height: 15%;/* 12 */
	position: relative;
	z-index: 2;
}
.btn_modalClose--line{
	background-color: var(--color-yellow);
	display: block;
	width: 100%;
	height: 2px;
	margin: auto;
	position: absolute;
	transition: .3s ease;
	top: 0;
	bottom: 0;
}
.btn_modalClose--line:nth-child(1) {
	transform: rotate(30deg);
}
.btn_modalClose--line:nth-child(2) {
	transform: rotate(-30deg);
}

@media screen and (hover:hover) and (pointer: fine){
	.btn_modalClose:hover::before{
		animation-play-state: paused;
	}
	.btn_modalClose__lineWrap,
	.btn_modalClose__lineInWrap{
		transition: transform .3s ease;
	}
	.btn_modalClose:hover .btn_modalClose__lineWrap{
		transform: rotate(45deg);
	}
	.btn_modalClose:hover .btn_modalClose__lineInWrap{
		transform: rotate(-45deg);
	}
	.btn_modalClose__lineWrap:before{
		transition: transform .45s ease
	}
	.btn_modalClose:hover .btn_modalClose__lineWrap:before{
		transform: scale(125%);
		transition-delay: .05s;
	}	
}



/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:768px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 999;
	pointer-events: none;
}
.headerLogo{
	position: absolute;
	top: 0;
	left: 0;
	width: min(calc(264 / var(--vw-min) * 100vw), 264px);
	margin-left: 1.6667%;/* 20 */
	margin-top: min(calc(32 / var(--vw-min) * 100vw), 32px);
}
.headerLogo > a{
	display: block;
	width: 100%;
	pointer-events: auto;
	filter: drop-shadow(0 0 15px rgba(55,61,114,1)) drop-shadow(0 0 8px rgba(55,61,114,0.5));
}
.headerLogo > a > img{
	width: 100%;
}
.headerCont{
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: min(100vh, 100%);
}

@media screen and (hover:hover) and (pointer: fine){
	.headerLogo > a{
		transition: filter .4s ease, transform .3s ease;
	}
	.headerLogo > a:hover{
		transform: scale(102.5%);
		filter: drop-shadow(0 0 15px rgba(255,255,255,50%));;
	}
}

@media screen and (max-width:768px){
	.header {
		position: absolute;
		top: 0;
		bottom: unset;
	}
	.headerLogo{
		right: 0;
		margin-right: auto;
		margin-left: auto;
		width: calc(260 / var(--vw-min) * 100vw);
		margin-top: calc(40 / var(--vw-min) * 100vw);
	}
}

.headerContIn{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* inner */
.header__inner {
	-webkit-overflow-scrolling: touch;
	width: 100%;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 2;
	overscroll-behavior: contain;
	transition: opacity .5s ease-in-out;
}
.header.is-active .header__inner {
	opacity: 1;
	pointer-events: auto;
}

.header__navWrap{
	z-index: 3;
}
.header__innerContent{
	width: 30%;/* 360 */
	height: auto;
	min-height: 100%;
	position: relative;
	z-index: 2;
	margin-left: auto;
	padding: min(calc(160 / var(--vw-min) * 100vw), 160px) 0 0;
	display: flex;
	flex-direction: column;
}

@media screen and (max-width:768px){
	.header__innerContent{
		width: 69.3334%;/* 520 */
		padding-top: calc(168 / var(--vw-min) * 100vw);
	}
}


/**
 * headerNav
 */
.headerNav {
	position: relative;
	z-index: 2;
	width: 100%;
}
.navList__link {
	text-decoration: none;
	color: var(--color-black);
}

.headerNav .navList{
	position: relative;
	width: 100%;
}
.headerNav .navList:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top: 1px solid var(--color-yellow);
}
.headerNav .navList:last-child:before{
	border-bottom: 1px solid var(--color-yellow);
}
.headerNav .navList__link{
	width: 100%;
	position: relative;
	display: block;
	padding-top: min(calc(20 / var(--vw-min) * 100vw), 20px);
	padding-right: min(calc(60 / var(--vw-min) * 100vw), 60px);
	padding-bottom: min(calc(20 / var(--vw-min) * 100vw), 20px);
	padding-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
	font-size: min(calc(18 / var(--vw-min) * 100vw), 18px);
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 0 12px rgba(255, 255, 255, 100%), 0 0 12px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%),  0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%);
	transition: text-shadow .3s ease, color .3s ease;
}
.headerNav .navList__link:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, rgba(192,101,144,0) 0%, rgba(192,101,144,0.5) 50%, rgba(192,101,144,0.50196) 50%, rgb(50,59,113) 100%);
	-webkit-mask-image: linear-gradient(#FFF, #FFF);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 0% 100%;
	-webkit-mask-position: right center;
	mask-image: linear-gradient(#FFF, #FFF);
	mask-repeat: no-repeat;
	mask-size: 0% 100%;
	mask-position: right center;
	transition: mask-size .4s ease, -webkit-mask-size .4s ease, opacity .4s ease;
}

@media screen and (hover:hover) and (pointer: fine){
	.headerNav .navList__link:hover::before{
		opacity: 60%;
		-webkit-mask-size: 100% 100%;
		-webkit-mask-position: left center;
		mask-size: 100% 100%;
		mask-position: left center;
	}
}

.headerNav .navList__title{
	position: relative;
	z-index: 1;
}
.headerNav .navList__deco{
	position: absolute;
	top: 0;
	right: min(calc(20 / var(--vw-min) * 100vw), 20px);
	bottom: 0;
	width: min(calc(20 / var(--vw-min) * 100vw), 20px);
	height: min(calc(10 / var(--vw-min) * 100vw), 10px);
	margin: auto 0;
}
.headerNav .navList__deco:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-mask: url(../img/common/arrow_r.png) no-repeat center / contain;
	mask: url(../img/common/arrow_r.png) no-repeat center / contain;
	background-color: var(--color-yellow);
}

@media screen and (max-width:768px){
	.headerNav .navList__link{
		padding-top: calc(32 / var(--vw-min) * 100vw);
		padding-right: calc(100 / var(--vw-min) * 100vw);
		padding-bottom: calc(32 / var(--vw-min) * 100vw);
		padding-left: calc(40 / var(--vw-min) * 100vw);
		font-size: calc(40 / var(--vw-min) * 100vw);
	}
	.headerNav .navList__deco{
		right: calc(30 / var(--vw-min) * 100vw);
		width: calc(40 / var(--vw-min) * 100vw);
		height: calc(20 / var(--vw-min) * 100vw);
	}
}

/** Active **/
.headerNav .navList.--is-active .navList__link{
	color: #FFF;
	text-shadow: 0 0 0 rgba(255,255,255,0);
}
.headerNav .navList.--is-active .navList__link:before{
	opacity: 1;
	-webkit-mask-size: 100% 100%;
	-webkit-mask-position: left center;
	mask-size: 100% 100%;
	mask-position: left center;
}



/**
 * SNS
 */
.headerSns{
	margin-top: auto;
	padding-top: min(calc(96 / var(--vw-min) * 100vw), 96px);
	padding-right: min(calc(20 / var(--vw-min) * 100vw), 20px);
	padding-bottom: min(calc(30 / var(--vw-min) * 100vw), 30px);
	padding-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
	position: relative;
	z-index: 2;
}
.header_snsLists{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.snsLists__title{
	font-weight: 700;
	color: var(--color-pink);
	line-height: 1;
	padding-right: min(calc(8 / var(--vw-min) * 100vw), 8px);
	text-shadow: 0 0 12px rgba(255, 255, 255, 100%), 0 0 12px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%),  0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%);
}
.snsLists__srv{
	width: min(calc(50 / var(--vw-min) * 100vw), 50px);
	height: min(calc(50 / var(--vw-min) * 100vw), 50px);
	margin: 0 min(calc(12 / var(--vw-min) * 100vw), 12px);
	position: relative;
}
.snsLists__srv:last-child{
	margin-right: 0;
}
.snsLists__srvLink{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	text-decoration: none;
	background: linear-gradient(0deg, rgb(118,118,118) 0%, rgb(87,87,87) 37%, rgb(55,55,55) 100%);
}
.snsLists__srvLink:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	border: 2px solid var(--color-yellow);
}


.snsLists__srvLink--icon{
	display: inline-block;
	width: 40%;
	height: 40%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: #fff;
}

.snsLists__srv.is-x .snsLists__srvLink--icon{
	mask-image: url(../img/common/icon_tw.svg);
}

@media screen and (hover:hover) and (pointer: fine){
	.snsLists__srvLink:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 50%;
		opacity: 0;
		background: linear-gradient(180deg, rgba(117, 107, 170, 100%) 0%, rgba(84, 82, 141, 1) 37%, rgba(51, 57, 111, 100%) 100%);
		transform: scale(40%);
		transition: opacity .3s ease, transform .45s ease;
	}
	.snsLists__srvLink:hover::before{
		opacity: 80%;
		transform: scale(100%);
	}
}

@media screen and (max-width:768px){
	.headerSns{
		padding-top: calc(48 / var(--vw-min) * 100vw);
		padding-bottom: calc(24 / var(--vw-min) * 100vw);
		padding-right: calc(30 / var(--vw-min) * 100vw);
		padding-left: calc(40 / var(--vw-min) * 100vw);
	}
	.snsLists__title{
		font-size: calc(24 / var(--vw-min) * 100vw);
		padding-right: calc(12 / var(--vw-min) * 100vw);
	}
	.snsLists__srv{
		width: calc(80 / var(--vw-min) * 100vw);
		height: calc(80 / var(--vw-min) * 100vw);
		margin: 0 calc(12 / var(--vw-min) * 100vw);
	}
}



/**
 * BG - in
 */
.header__innerContentBg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	border-top-left-radius: min(calc(120 / var(--vw-min) * 100vw), 120px);
	overflow: hidden;
}
.header__innerContentBg--layer{
	position: absolute;
	left: calc(-160 / var(--vw-min) * 100vw);
	bottom: 0;
	margin-bottom: calc(-57 / var(--vw-min) * 100vw);
	width: calc(672 / var(--vw-min) * 100vw);
	height: calc(333 / var(--vw-min) * 100vw);
	background: url(../img/common/bg/bg_2_layer.png) no-repeat center bottom / cover;
	z-index: 1;
}
@supports (background-image: url(../img/common/bg/bg_2_layer.webp)){
	.header__innerContentBg--layer{
		background-image:url(../img/common/bg/bg_2_layer.webp);
	}
}
.header__innerContentBg--tex{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	mask: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);;
}
.header__innerContentBg--tex:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-mask: url(../img/common/bg/bg_2_tex.png) repeat center;
	-webkit-mask-size: min(calc(134 / var(--vw-min) * 100vw), 134px) min(calc(78 / var(--vw-min) * 100vw), 78px);
	mask: url(../img/common/bg/bg_2_tex.png) repeat center;
	mask-size: min(calc(134 / var(--vw-min) * 100vw), 134px) min(calc(78 / var(--vw-min) * 100vw), 78px);
	background-color: #FFF;
	opacity: 60%;
}
@media screen and (max-width:768px){
	.header__innerContentBg--layer{
		left: 0;
		margin-bottom: 0;
		width: 100%;
		height: calc(256 / var(--vw-min) * 100vw);
		background-image: url(../img/common/bg/bg_2_layer-s.png);
	}
	@supports (background-image: url(../img/common/bg/bg_2_layer-s.webp)){
		.header__innerContentBg--layer{
			background-image: url(../img/common/bg/bg_2_layer-s.webp);
		}
	}
}


/**
 * BG - out
 */
.header__bgWrap{
	overflow: hidden;
}
.header__bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:linear-gradient(0deg, rgb(192,101,144) 0%, rgb(50,59,113) 100%);
	opacity: 60%;
}


/**
* header View Animation
**/
/* list */
.headerNav{
	overflow: hidden;
	padding-bottom: 20%;
}
.headerNav .navLists{
	transform: translateX(100%);
	transition: transform .3s ease;
}
.header.is-active .headerNav .navLists{
	transform: translateX(0%);
}
.headerNav .navList{
	opacity: 0;
	transform: translateY(100%);
	transition: opacity .25s ease, transform .4s ease .2s;
}
.header.is-active .headerNav .navList{
	opacity: 1;
	transform: translateY(0%);
}
.header.is-active .headerNav .navList:nth-of-type(1){
	transition-delay: .35s, .375s;
}
.header.is-active .headerNav .navList:nth-of-type(2){
	transition-delay: .4s, .425s;
}
.header.is-active .headerNav .navList:nth-of-type(3){
	transition-delay: .45s, .475s;
}
.header.is-active .headerNav .navList:nth-of-type(4){
	transition-delay: .5s, .525s;
}
.header.is-active .headerNav .navList:nth-of-type(5){
	transition-delay: .55s, .575s;
}
.header.is-active .headerNav .navList:nth-of-type(6){
	transition-delay: .6s, .625s;
}
.header.is-active .headerNav .navList:nth-of-type(7){
	transition-delay: .65s, .675s;
}
.header.is-active .headerNav .navList:nth-of-type(8){
	transition-delay: .7s, .725s;
}
.header.is-active .headerNav .navList:nth-of-type(9){
	transition-delay: .75s, .775s;
}
.header.is-active .headerNav .navList:nth-of-type(10){
	transition-delay: .8s, .825s;
}

/* SNS */
.headerSns{
	overflow: hidden;
}
.header_snsLists{
	opacity: 0;
	transform: translateX(100%);
	transition: opacity .3s ease, transform .3s ease;
}
.header.is-active .header_snsLists{
	opacity: 1;
	transform: translateX(0%);
	transition-delay: .425s, 0s;
}


/* bg */
.header__innerContentBg--layer{
	transform: translateX(150%);
	opacity: 0;
	transition: opacity .3s ease, transform .2s ease;
}
.header__innerContentBg .contBg__fixed{
	transform: translateX(100%);
	border-top-left-radius: min(calc(120 / var(--vw-min) * 100vw), 120px);
	transition: transform .3s ease;
}

.header.is-active .header__innerContentBg--layer{
	transform: translateX(0%);
	opacity: 1;
	transition-delay: .4s, 0s;
}
.header.is-active .header__innerContentBg .contBg__fixed{
	transform: translateY(0%);
	transition-delay: .15s;
}



/**
 * navBtn
 */
.header__navBtnWrap {
	width: min(calc(100 / var(--vw-min) * 100vw), 100px);
	height: min(calc(100 / var(--vw-min) * 100vw), 100px);
	position: fixed;
	top: 0;
	right: 0;
	margin-top: min(calc(22 / var(--vw-min) * 100vw), 22px);
	margin-right: min(calc(22 / var(--vw-min) * 100vw), 22px);
	z-index: 2;
}
@media screen and (max-width:768px){
	.header__navBtnWrap{
		width: calc(136 / var(--vw-min) * 100vw);
		height: calc(136 / var(--vw-min) * 100vw);
		margin-top: calc(20 / var(--vw-min) * 100vw);
		margin-right: calc(20 / var(--vw-min) * 100vw);
	}
}

.header__navBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	pointer-events: auto;
}
.header__navBtn:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/navBtn_frame.svg) no-repeat center / contain;
	animation: 20s rotate linear infinite;
}
.header__navBtn__lineWrap {
	width: 80%;
	height: 80%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__navBtn__lineWrap:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/navBtn_bgFrame.svg) no-repeat center / contain;
	z-index: 2;
}
.header__navBtn__lineInWrap{
	width: 32.5%;/* 26 */
	height: 15%;/* 12 */
	position: relative;
	z-index: 2;
}
.header__navBtn--line {
	background-color: var(--color-yellow);
	display: block;
	width: 100%;
	height: 2px;
	margin: auto;
	position: absolute;
	transition: top .3s ease, bottom .3s ease, transform .3s ease;
}
.header__navBtn--line:nth-child(1) {
	top: 0;
	bottom: calc(100%  - 2px);
}
.header__navBtn--line:nth-child(2) {
	top: calc(100% - 2px);
	bottom: 0;
}

.header__navBtn__lineBg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-mask: url(../img/common/navBtn_bg1.png) no-repeat center / contain;
	mask: url(../img/common/navBtn_bg1.png) no-repeat center / contain;
}
.header__navBtn__lineBg:before,
.header__navBtn__lineBg:after{
	content: '';
	position: absolute;
	top: 1.25%;
	left: 1.25%;
	right: 1.25%;
	bottom: 1.25%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: opacity .3s ease;
}
.header__navBtn__lineBg:before{
	background-image: url(../img/common/navBtn_bg1.png);
}
.header__navBtn__lineBg:after{
	opacity: 0;
	background-image: url(../img/common/navBtn_bg2.png);
}


/* Close */
.header__navBtn.is-active .header__navBtn--line{
	transition-delay: 0s, 0s, .175s;
}
.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
	bottom: 0;
	transform: rotate(30deg);
}
.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
	top: 0;
	transform: rotate(-30deg);
}
.header__navBtn.is-active .header__navBtn__lineBg:before{
	opacity: 0;
}
.header__navBtn.is-active .header__navBtn__lineBg:after{
	opacity: 1;
}

@media screen and (hover:hover) and (pointer: fine){
	.header__navBtn:hover::before{
		animation-play-state: paused;
	}

	.header__navBtn__lineBg,
	.header__navBtn__lineWrap:after{
		transition: transform .3s ease;
	}
	.header__navBtn:hover .header__navBtn__lineBg,
	.header__navBtn:hover .header__navBtn__lineWrap:after{
		transform: rotate(45deg);
	}

	.header__navBtn__lineBg:before,
	.header__navBtn__lineBg:after{
		transition: transform .45s ease, opacity .3s ease;
	}
	.header__navBtn:hover .header__navBtn__lineBg:before,
	.header__navBtn:hover .header__navBtn__lineBg:after{
		transform: scale(125%);
		transition-delay: .05s, 0s;
	}
}

/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * ndImg
 **/
.-ndlimg{
	-webkit-touch-callout: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-touch-callout: none;
	touch-callout: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	user-drag: none;
}

/**
 * shareLists
 */
.shareLists {
	display: flex;
}

/* item */
.shareLists__item {
	width: 60px;
	height: 60px;
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	background-color: #000;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	transition: background-color .4s ease;
}
.shareLists__link:hover:before {
	background-color: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	width: 26px;
	height: 26px;
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	width: 26px;
	height: 26px;
	-webkit-mask-image: url(../img/common/icon_fb.svg);
	mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	width: 26px;
	height: 26px;
	-webkit-mask-image: url(../img/common/icon_line.svg);
	mask-image: url(../img/common/icon_line.svg);
}




#fullWrap{
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/**
* SECTION
**/
.contentSection{
	width: 100%;
	position: relative;
}
.content{
	width: 100%;
	max-width: 1920px;
	position: relative;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.content{
		max-width: 100%;
	}
}


.contentIn.-flex{
	display: flex;
	align-items: flex-start;
}

.contentIn.-flex > .contentTitle{
	flex-shrink: 0;
}

.contentTitle{
	line-height: 1;
}
.contentTitle--ja{
	font-size: min(calc(40 / var(--vw-min) * 100vw), 40px);
	font-weight: 700;
	color: var(--color-pink);
	position: relative;
}
.contentTitle--ja:before{
	content: '';
	width: min(calc(40 / var(--vw-min) * 100vw), 40px);
	height: min(calc(36 / var(--vw-min) * 100vw), 36px);
	position: absolute;
	background: url(../img/common/deco_title.svg)  no-repeat center / contain;
}
.contentTitle--en{
	font-family: var(--font-en);
	font-size: min(calc(22 / var(--vw-min) * 100vw), 22px);
	font-weight: 600;
	color: var(--color-yellow);
}

.contentTitle.-cWhite .contentTitle--ja{
	color: #FFF;
	text-shadow: 0 0 16px rgba(0, 0, 0, 50%);
}
.contentTitle.-cWhite .contentTitle--en{
	text-shadow: 0 0 16px rgba(0, 0, 0, 50%);
}

@media screen and (max-width:768px){
	.contentTitle--ja{
		font-family: calc(40 / var(--vw-min) * 100vw);
	}
	.contentTitle--ja:before{
		width: calc(40 / var(--vw-min) * 100vw);
		height: calc(36 / var(--vw-min) * 100vw);
	}
	.contentTitle--en{
		font-size: calc(22 / var(--vw-min) * 100vw);
	}
}


/* Title - vert */
.contentTitle.-vert{
	writing-mode: vertical-lr;
	padding-bottom: min(calc(40 / var(--vw-min) * 100vw), 40px);
	position: relative;
}
.contentTitle.-vert .contentTitle--ja{
	padding-top: min(calc(50 / var(--vw-min) * 100vw), 50px);
}
.contentTitle.-vert .contentTitle--ja:before{
	top: 0;
	left: min(calc(8 / var(--vw-min) * 100vw), 8px);
}
.contentTitle.-vert .contentTitle--ja_txt{
	display: inline-block;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	.wf-active .contentTitle.-vert .contentTitle--ja_txt{
		letter-spacing: -0.35em;
		text-indent: -0.35em;
		padding-bottom: 0.35em;
	}
}
@-moz-document url-prefix() {
	.wf-active .contentTitle.-vert .contentTitle--ja_txt{
		letter-spacing: unset;
		text-indent: 0;
		padding-bottom: 0;
	}
}
_::-webkit-full-page-media, _:future, :root .contentTitle--ja_txt{
	letter-spacing: unset!important;
	text-indent: 0.07em!important;
	padding-bottom: 0!important;
}
.contentTitle.-vert .contentTitle--en{
	padding-top: min(calc(50 / var(--vw-min) * 100vw), 50px);
	margin-left: min(calc(8 / var(--vw-min) * 100vw), 8px);
}

@media screen and (max-width:768px){
	.contentTitle.-vert{
		padding-bottom: calc(40 / var(--vw-min) * 100vw);
	}
	.contentTitle.-vert .contentTitle--ja{
		padding-top: calc(50 / var(--vw-min) * 100vw);
	}
	.contentTitle.-vert .contentTitle--ja:before{
		left: calc(8 / var(--vw-min) * 100vw);
	}
	.contentTitle.-vert .contentTitle--en{
		padding-top: calc(50 / var(--vw-min) * 100vw);
		margin-left: calc(8 / var(--vw-min) * 100vw);
	}
}


/* Title - hz */
.contentTitleWrap{
	text-align: center;
}
.contentTitle.-hz{
	display: inline-block;
	text-align: center;
	position: relative;
	padding-right: min(calc(50 / var(--vw-min) * 100vw), 50px);
}
.contentTitle.-hz.-deco_flower{
	padding-right: min(calc(60 / var(--vw-min) * 100vw), 60px);
	padding-left: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
.contentTitle.-hz .contentTitle--ja{
	display: inline-block;
	padding-top: min(calc(10 / var(--vw-min) * 100vw), 10px);
	padding-left: min(calc(50 / var(--vw-min) * 100vw), 50px);
}
.contentTitle.-hz .contentTitle--ja:before{
	top: 0;
	left: 0;
}
.contentTitle.-hz .contentTitle--ja_txt{
	display: inline-block;
	letter-spacing: 0.15em;
}
.contentTitle.-hz .contentTitle--en{
	padding-top: min(calc(16 / var(--vw-min) * 100vw), 16px);
	padding-left: min(calc(50 / var(--vw-min) * 100vw), 50px);
}


.contentTitle.-deco_flower:after{
	content: '';
	position: absolute;
	width: min(calc(90 / var(--vw-min) * 100vw), 90px);
	height: min(calc(90 / var(--vw-min) * 100vw), 90px);
	background: url(../img/common/bg/deco_flower0.png) no-repeat center / contain;
	z-index: -1;
	filter: drop-shadow(0 0 18px rgba(255,255,255,40%)) drop-shadow(0 0 8px rgba(255,255,255,40%));
}
.contentTitle.-vert.-deco_flower:after{
	bottom: 0;
	left: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
.contentTitle.-hz.-deco_flower:after{
	top: min(calc(10 / var(--vw-min) * 100vw), 10px);
	right: 0;
}

/**
* TITLE - LOAD ANIMTION
**/
/* STANDBY */
body:not([data-page="top"]) .contentTitle--ja:before{
	transform: scale(20%);
	opacity: 0;
	transition: transform .4s cubic-bezier(.54,1.82,.81,1.06), opacity .2s cubic-bezier(.54,1.82,.81,1.06);
}
body:not([data-page="top"]) .contentTitle--ja_txt{
	transform: translateY(0.5em);
	opacity: 0;
	transition: transform .4s cubic-bezier(.32,.32,.58,.97) .2s, opacity .3s cubic-bezier(.54,1.82,.81,1.06) .2s;
}
body:not([data-page="top"]) .contentTitle.-vert .contentTitle--en{
	transform: translateX(-0.5em);
	opacity: 0;
	transition: transform .4s cubic-bezier(.32,.32,.58,.97) .3s, opacity .3s cubic-bezier(.54,1.82,.81,1.06) .3s;
}
body:not([data-page="top"]) .contentTitle.-hz .contentTitle--en{
	transform: translateY(-0.5em);
	opacity: 0;
	transition: transform .4s cubic-bezier(.32,.32,.58,.97) .3s, opacity .3s cubic-bezier(.54,1.82,.81,1.06) .3s;
}
body:not([data-page="top"]) .contentTitle.-deco_flower:after{
	transform: scale(20%) rotate(-120deg);
	opacity: 0;
	transition: opacity .6s ease .4s, transform .8s ease .4s;
}


/** LOADED **/
body.--load.--is-loading .contentTitle--ja:before{
	transform: scale(100%);
	opacity: 1;
}
body.--load.--is-loading .contentTitle--ja_txt{
	transform: translateY(0em);
	opacity: 1;
}
body.--load.--is-loading .contentTitle.-vert .contentTitle--en{
	transform: translateX(0em);
	opacity: 1;
}
body.--load.--is-loading .contentTitle.-hz .contentTitle--en{
	transform: translateY(0em);
	opacity: 1;
}
body.--load.--is-loading .contentTitle.-deco_flower:after{
	opacity: 1;
	transform: scale(100%) rotate(0deg);
}





/**
* contSubTitle - VertB
**/
.contSubTitle.-vertB{
	display: flex;
    align-items: center;
	width: min(calc(40 / var(--vw-min) * 100vw), 40px);
	writing-mode: vertical-lr;
	line-height: 1;
	color: #FFF;
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	font-weight: 700;
	text-align: center;
	padding-top: min(calc(12 / var(--vw-min) * 100vw), 12px);
	padding-bottom: min(calc(48 / var(--vw-min) * 100vw), 48px);
	position: relative;
	background: linear-gradient(180deg, rgb(255,98,147) 0%, rgba(255,98,147, 0) 100%);
	text-shadow: 0 0 12px rgba(255, 115, 159, 100%), 0 0 12px rgba(255, 115, 159, 100%), 0 0 8px rgba(255, 115, 159, 100%),  0 0 8px rgba(255, 115, 159, 100%), 0 0 8px rgba(255, 115, 159, 100%);
}
@media screen and (max-width:768px){
	.contSubTitle.-vertB{
		width: calc(50 / var(--vw-min) * 100vw);
		font-size: calc(24 / var(--vw-min) * 100vw);
		padding-top: calc(16 / var(--vw-min) * 100vw);
		padding-bottom: calc(40 / var(--vw-min) * 100vw);
	}
}


  
/**
* comLink
**/
.comLink{
	display: inline-flex;
	align-items: center;
	color: var(--color-pink);
	font-weight: 700;
	text-decoration: none;
}
.comLink__txt{
	display: inline-block;
	padding: 0 min(calc(14 / var(--vw-min) * 100vw), 14px);
}
.comLink__circle{
	display: inline-block;
	width: min(calc(46 / var(--vw-min) * 100vw), 46px);
	height: min(calc(46 / var(--vw-min) * 100vw), 46px);
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--color-pink);
	position: relative;
}
.comLink__circle:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 43.4783%;
	height: 43.4783%;
	margin: auto;
	background-color: var(--color-pink);
}
.-arrowCR .comLink__circle:after{
	-webkit-mask: url(../img/common/arrow_r.png) no-repeat center / contain;
	mask: url(../img/common/arrow_r.png) no-repeat center / contain;
}
.-arrowCL .comLink__circle:after{
	-webkit-mask: url(../img/common/arrow_l.png) no-repeat center / contain;
	mask: url(../img/common/arrow_l.png) no-repeat center / contain;
}
.-arrowCT .comLink__circle:after{
	-webkit-mask: url(../img/common/arrow_t.png) no-repeat center / contain;
	mask: url(../img/common/arrow_t.png) no-repeat center / contain;
}

@media screen and (hover:hover) and (pointer: fine){
	.comLink__circle:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 50%;
		opacity: 0;
		transform: scale(40%);
		background-color: var(--color-pink);
		transition: opacity .3s ease, transform .4s ease;
	}
	.comLink__circle:after{
		transition: background-color .35s ease, transform .3s ease;
	}

	.comLink:hover .comLink__circle:before{
		opacity: 1;
		transform: scale(100%);
	}
	.comLink:hover .comLink__circle:after{
		background-color: #fff;
	}
	.-arrowCR:hover .comLink__circle:after{
		transform: translateX(16%);
	}
	.-arrowCL:hover .comLink__circle:after{
		transform: translateX(-16%);
	}
	.-arrowCT:hover .comLink__circle:after{
		transform: translateY(-16%);
	}
}

@media screen and (max-width:768px){
	.comLink__txt{
		padding-right: calc(20 / var(--vw-min) * 100vw);
	}
	.comLink__circle{
		width: calc(46 / var(--vw-min) * 100vw);
		height: calc(46 / var(--vw-min) * 100vw);
	}
}


/**
* BG
**/
.contBg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;	
}
.contBg__sticky{
	position: sticky;
	top: 0;
	width: 100%;
	height: min(100vh, 100%);
	min-height: 640px;
}
.contBg__stickyImg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.contBg__stickyImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contBg__t{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: min(calc(824 / var(--vw-min) * 100vw), calc(824px * var(--max-percent)));
	max-height: 100%;
}
.contBg__fixed{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.contBg__fixed img{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.contBg__t .contBg__fixed{
	-webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 63.1068%, rgba(0, 0, 0, 0) 100%);
	mask: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 63.1068%, rgba(0, 0, 0, 0) 100%);
}
.contBg__t .contBg__fixed img{
	opacity: 80%;
}


.contBg__tGrad{
	position: absolute;
	top: 0;
	width: 100%;
	height: min(calc(400 / var(--vw-min) * 100vw), 400px);
	background-image: linear-gradient(0deg, rgba(192,101,144,0) 0%, rgba(192,101,144,0.5) 30%, rgb(50,59,113) 100%);
	mix-blend-mode: multiply;
}


.contBg__tFlower{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: min(100%, calc(1200px * var(--max-percent)));
	margin: 0 auto;
}
.contBg__tFlower:before{
	content: '';
	display: block;
	position: relative;
	width: 100%;
	padding-top: 19.8925%;
	-webkit-mask: url(../img/common/bg/bg_flower.png) no-repeat center bottom / cover;
	mask: url(../img/common/bg/bg_flower.png) no-repeat center bottom / cover;
	background-color: #fff;
	opacity: 12%;
}
@supports (mask-image: url(../img/common/bg/bg_flower.avif)){
	.contBg__tFlower:before{
		-webkit-mask-image:url(../img/common/bg/bg_flower.avif);
		mask-image:url(../img/common/bg/bg_flower.avif);
	}
}


@media screen and (max-width:768px){
	.contBg__t{
		overflow: hidden;
	}
	.contBg__tGrad{
		height: calc(640 / var(--vw-min) * 100vw);
		background-image: linear-gradient(0deg, rgba(192,101,144,0) 0%, rgba(192,101,144,0.5) 50%, rgb(50,59,113) 100%);
	}
	.contBg__tFlower{
		width: 100%;
	}
	.contBg__tFlower:before{
		height: calc(200 / var(--vw-min) * 100vw);
	}
}



/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer{
	width: 100%;
	padding: min(calc(90 / var(--vw-min) * 100vw), 90px) 0 min(calc(80 / var(--vw-min) * 100vw), 80px);
	position: relative;
	z-index: 1;
	margin-top: auto;
}

@media screen and (max-width:768px){
	.footer{
		padding: calc(80 / var(--vw-min) * 100vw) 0 calc(64 / var(--vw-min) * 100vw);
		overflow: hidden;
	}
}


.footerBannerLists{
	display: flex;
	justify-content: center;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.footerBannerList{
	width: min(calc(220 / var(--vw-min) * 100vw), calc(220px * var(--max-percent)));
}
.footerBannerList__link{
	display: block;
}
.footerBannerList__link img{
	width: 100%;
}

@media screen and (hover:hover) and (pointer: fine){
	.footerBannerList__link{
		transition: filter .3s ease, transform .3s ease;
	}
	.footerBannerList__link:hover{
		transform: scale(102.5%);
		filter: brightness(110%);
	}
}

@media screen and (max-width:768px){
	.footerBannerLists{
		gap: calc(24 / var(--vw-min) * 100vw);
	}
	.footerBannerList{
		width: calc(224 / var(--vw-min) * 100vw);
	}
}


.footerIn{
	padding: min(calc(104 / var(--vw-min) * 100vw), calc(104px * var(--max-percent))) min(calc(40 / var(--vw-min) * 100vw), calc(40px * var(--max-percent)));
	display: flex;
	position: relative;
}
.footer__logo{
	width: min(calc(250 / var(--vw-min) * 100vw), calc(250px * var(--max-percent)));
	text-align: center;
}
.footer__logo-img{
	width: min(calc(170 / var(--vw-min) * 100vw), calc(170px * var(--max-percent)));
	display: inline-block;
}
.footer__logo-img img{
	width: 100%;
	filter: drop-shadow(0 0 15px rgba(255,255,255,1)) drop-shadow(0 0 8px rgba(255,255,255,1)) drop-shadow(0 0 8px rgba(255,255,255,1)) drop-shadow(0 0 8px rgba(255,255,255,1));
}
@media screen and (max-width:768px){
	.footerIn{
		padding: calc(104 / var(--vw-min) * 100vw) 0 calc(80 / var(--vw-min) * 100vw);
		justify-content: center;
	}
	.footer__logo{
		width: calc(352 / var(--vw-min) * 100vw);
	}
	.footer__logo-img{
		width: 100%;
	}
}


/**
* Nav[PC ONLY]
**/
.footerNav{
	writing-mode: vertical-lr;
	padding-top: min(calc(36 / var(--vw-min) * 100vw), calc(36px * var(--max-percent)));
}
.footerNav .navLists{
	display: flex;
	flex-direction: column;
	gap: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
.footerNav .navList__link{
	padding: min(calc(6 / var(--vw-min) * 100vw), 6px) min(calc(4 / var(--vw-min) * 100vw), 4px) min(calc(30 / var(--vw-min) * 100vw), 30px);
	position: relative;
	font-size: min(calc(18 / var(--vw-min) * 100vw), 18px);
	line-height: 1;
	font-weight: 700;
	text-shadow: 0 0 12px rgba(255, 255, 255, 100%), 0 0 12px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%),  0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%), 0 0 8px rgba(255, 255, 255, 100%);
}

/* hover */
@media screen and (hover:hover) and (pointer: fine){
	.footerNav .navList__link::before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background-image: linear-gradient(0deg, rgba(192,101,144,0) 0%, rgba(192,101,144,0.5) 50%, rgba(192,101,144,0.50196) 50%, rgb(50,59,113) 100%);
		z-index: -1;
		-webkit-mask-image: linear-gradient(#FFF, #FFF);
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-size: 0% 100%;
		-webkit-mask-position: right center;
		mask-image: linear-gradient(#FFF, #FFF);
		mask-repeat: no-repeat;
		mask-size: 100% 0%;
		opacity: 60%;
		mask-position: center bottom;
		transition: mask-size .6s ease, -webkit-mask-size .6s ease, opacity .4s ease;
	}
	.footerNav .navList__link:hover::before{
		-webkit-mask-size: 100% 100%;
		-webkit-mask-position: center top;
		mask-size: 100% 100%;
		mask-position: center top;
	}
}

/* active */
.footerNav .navList.--is-active .navList__link{
	color: #FFF;
	text-shadow: 0 0 0 rgba(255,255,255,0);
}
.footerNav .navList.--is-active .navList__link:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-image: linear-gradient(0deg, rgba(192,101,144,0) 0%, rgba(192,101,144,0.5) 50%, rgba(192,101,144,0.50196) 50%, rgb(50,59,113) 100%);
	z-index: -1;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	opacity: 1;
}
@media screen and (max-width:768px){
	.footerNav{
		display: none;
	}
}


/**
* deco
**/
.footer_deco_bfly{
	position: absolute;
	top: min(calc(72 / var(--vw-min) * 100vw), calc(72px * var(--max-percent)));
	right: min(calc(192 / var(--vw-min) * 100vw), calc(192px * var(--max-percent)));
	width: min(calc(172 / var(--vw-min) * 100vw), calc(172px * var(--max-percent)));
	height: min(calc(182 / var(--vw-min) * 100vw), calc(182px * var(--max-percent)));
	background: url(../img/common/bg/bg_footer_bfly.png) no-repeat center / contain;
}
.footer_deco_flowers{
	position: absolute;
	top: min(calc(232 / var(--vw-min) * 100vw), calc(232px * var(--max-percent)));
	right: min(calc(48 / var(--vw-min) * 100vw), calc(48px * var(--max-percent)));
	width: min(calc(106 / var(--vw-min) * 100vw), calc(106px * var(--max-percent)));
	height: min(calc(109 / var(--vw-min) * 100vw), calc(109px * var(--max-percent)));
	background: url(../img/common/bg/bg_footer_deco1.png) no-repeat center / contain;
}
@media screen and (max-width:768px){
	.footer_deco_bfly{
		top: calc(544 / var(--vw-min) * 100vw);
		right: calc(44 / var(--vw-min) * 100vw);
		width: calc(172 / var(--vw-min) * 100vw);
		height: calc(182 / var(--vw-min) * 100vw);
	}
	.footer_deco_flowers{
		top: calc(62 / var(--vw-min) * 100vw);
		right: unset;
		left: calc(68 / var(--vw-min) * 100vw);
		width: calc(164 / var(--vw-min) * 100vw);
		height: calc(169 / var(--vw-min) * 100vw);
	}
}


/**
* footer__toTop
**/
.footer__toTop{
	position: absolute;
	bottom: min(calc(76 / var(--vw-min) * 100vw), 76px);
	right: min(calc(56 / var(--vw-min) * 100vw), calc(56px * var(--max-percent)));
}
.footer__toTop .comLink{
	font-family: var(--font-en);
	font-size: min(calc(22 / var(--vw-min) * 100vw), 22px);
	font-weight: 600;
}
@media screen and (max-width:768px){
	.footer__toTop{
		bottom: calc(56 / var(--vw-min) * 100vw);
		right: calc(32 / var(--vw-min) * 100vw);
	}
	.footer__toTop .comLink{
		font-size: calc(22 / var(--vw-min) * 100vw);
		letter-spacing: 0;
	}
}


/**
* copyRight
**/
.footer__copyRight{
	text-align: center;
	font-size: 75%;
	font-weight: 700;
}
@media screen and (max-width:768px){
	.footer__copyRight{
		padding: 0 calc(40 / var(--vw-min) * 100vw);
		text-align: left;
		font-size: calc(16 / var(--vw-min) * 100vw);
		letter-spacing: 0;
	}
}


/**
* ani
**/
.footer{
	opacity: 0;
	transition: opacity .6s ease .4s;
}
body.--is-loaded .footer{
	opacity: 1;
}


.footer_deco_flowers{
	opacity: 0;
    transform: scale(60%);
	transition: transform .4s cubic-bezier(.54,1.82,.81,1.06) .6s, opacity .4s cubic-bezier(.54,1.82,.81,1.06) .6s;
}
body.--is-loaded .footer_deco_flowers{
	opacity: 1;
	transform: scale(100%);
}


.footer_deco_bfly{
	transform: translate(85%, 60%) scale(40%);
	opacity: 0;
	filter: blur(2px);
	transition: transform .5s cubic-bezier(.5,.25,.53,1) .8s, opacity .5s ease .8s, filter .5s cubic-bezier(.5,.25,.53,1) .8s;
}
body.--is-loaded .footer_deco_bfly{
	opacity: 1;
	filter: blur(0px);
	transform: translate(0%, 0%) scale(100%);
}