@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:768px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
-------------------------------------------------*/
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;}

:root {
	/* デザインサイズ */
	--vw-min: 1200;
	--vh-min: 640;
	--max-percent: 1.6;/* 1920/1200 */

	/* フォント  */
	--font-noto: "Noto Sans JP", sans-serif;
	--font-en: "Fredoka", sans-serif;
	--font-main: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
	--font-dela: "Dela Gothic One", sans-serif;

	/* カラー */
	--color-white: #FFFFFF;
	--color-black: #434343;
	--color-main: #FF6E9D;
	--color-sub: #31D8D4;

	/* デザインカラー */
	--color-sora: #6872f1;
	--color-robocosan: #ee82ee;
	--color-aki: #bdff52;
	--color-fubuki: #a1dffd;
	--color-matsuri: #f0c060;
	--color-ayame: #c7284f;
	--color-choco: #dc415c;
	--color-subaru: #e8ed79;
	--color-azki: #e22b6d;
	--color-mio: #de2e2a;
	--color-miko: #fe9297;
	--color-okayu: #d153ee;
	--color-korone: #ffd65b;
	--color-suisei: #6cb1ed;
	--color-pekora: #8dbdf5;
	--color-flare: #fc5e24;
	--color-noel: #d2dcdc;
	--color-marine: #d40032;
	--color-watame: #fcf5c1;
	--color-towa: #ee2aa8;
	--color-luna: #faa3d5;
	--color-lamy: #47a3f4;
	--color-nene: #f78e2a;
	--color-botan: #665f6d;
	--color-polka: #e8306e;
	--color-darknesss: #936cc6;
	--color-lui: #831550;
	--color-koyori: #ffacd3;
	--color-iroha: #93dcd8;

	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:768px){
	:root {
		/* デザインサイズ */
		--vw-min: 375;
		--vh-min: 667;
		--max-percent: 1;
	}
}

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
.ff-noto{ font-family: var(--font-noto); }
.ff-en{ font-family: var(--font-en); }
.ff-main{ font-family: var(--font-main); }
.ff-dela{ font-family: var(--font-dela); }
.ff-ja{ font-family: var(--font-ja); }

body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: var(--font-main);
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: normal;
	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: #B7D4F9;
	color: #000;
}
::-moz-selection{
	background: #B7D4F9;
	color: #000;
}
@media screen and (max-width:768px){
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
	body{
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: #fff;
}
::-webkit-scrollbar-thumb {
	background: #000;
	margin: 2px;
	box-shadow: none;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

/* main reveal after loading */
main.main{
	opacity: 0;
	transform: translate3d(0, min(calc(16 / var(--vw-min) * 100vw), 16px), 0);
	transition:
		opacity 0.7s ease,
		transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	z-index: 1;
}
main.main.is-reveal{
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce){
	main.main{
		transform: none;
		transition: opacity 0.3s ease;
	}
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(255, 110, 157, 0.8);
	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;
}
.oneModal.is-show {
	display: block;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	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%;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: min(calc(80 / var(--vw-min) * 100vw),80px);
	height: min(calc(80 / var(--vw-min) * 100vw),80px);
	position: absolute;
	top: min(calc(20 / var(--vw-min) * 100vw),20px);
	right: min(calc(20 / var(--vw-min) * 100vw),20px);
	z-index: 2;
}
@media screen and (max-width:768px){
	.closeBtn{
		width:calc(50 / var(--vw-min) * 100vw);
		height:calc(50 / var(--vw-min) * 100vw);
		top: calc(10 / var(--vw-min) * 100vw);
		right:calc(10 / var(--vw-min) * 100vw);
	}
}

.closeBtn a {
	background-color: var(--color-sub);
	border: 1px solid var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

/* 角丸のバツ */
.closeBtn a:before,
.closeBtn a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 3px;
	border-radius: 999px;
	background: #fff;
}
.closeBtn a:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.closeBtn a:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width:768px){
	.closeBtn a:before,
	.closeBtn a:after {
		height: 2px;
	}
}

@media screen and (hover: hover){
	.closeBtn a:hover {
		transform: scale(1.1);
	}
}
/**
 * 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%;
		margin: 50px 0;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/**
 * Image Modal
 */
.imageModal__image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	height: 100svh;
}
.imageModal__image img{
	width: 100%;
	height: 100%;
	object-fit:scale-down;
}



/*-----------------------------------------------
 * sectionTtl scroll animation
-------------------------------------------------*/
.sectionTtl.js-scrani .sectionTtl__txt{
	opacity: 0;
	transform: translate3d(0, min(calc(36 / var(--vw-min) * 100vw),36px), 0) scaleY(0.82);
	transform-origin: center bottom;
	transition:
		opacity 0.45s ease-out,
		transform 0.75s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.sectionTtl.js-scrani .sectionTtl__deco{
	opacity: 0;
	transform: translate3d(0, min(calc(28 / var(--vw-min) * 100vw),28px), 0) scale(0.8) rotate(-14deg);
	transform-origin: center center;
	transition:
		opacity 0.35s ease-out,
		transform 0.7s cubic-bezier(0.34, 1.55, 0.64, 1);
}
.sectionTtl.js-scrani .sectionTtl__marker{
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
	-webkit-mask-size: 0% 100%;
	mask-size: 0% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: left center;
	mask-position: left center;
	transition:
		-webkit-mask-size 1.55s linear,
		mask-size 1.55s linear;
}
.sectionTtl.js-scrani.--is-ani .sectionTtl__txt{
	opacity: 1;
	transform: translate3d(0, 0, 0) scaleY(1);
}
.sectionTtl.js-scrani.--is-ani .sectionTtl__marker{
	-webkit-mask-size: 140% 100%;
	mask-size: 140% 100%;
	transition-delay: 0.12s;
}
.sectionTtl.js-scrani.--is-ani .sectionTtl__deco{
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
	transition-delay: 0.2s, 0.2s;
}
.sectionContent.js-scrani{
	opacity: 0;
	transform: translate3d(0, min(calc(40 / var(--vw-min) * 100vw),40px), 0) scale(0.94);
	transform-origin: center bottom;
	transition:
		opacity 0.5s ease-out,
		transform 0.8s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.sectionContent.js-scrani.--is-ani{
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}
.photoArea__inner.js-scrani{
	transform: translate3d(0, min(calc(64 / var(--vw-min) * 100vw),64px), 0);
	transition: transform 0.85s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.photoArea__inner.js-scrani.--is-ani{
	transform: translate3d(0, 0, 0);
}
.sectionContent.js-scrani .introductionTxtBlock__bg{
	transform: rotate(0deg);
	transition: transform 0.75s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.sectionContent.js-scrani.--is-ani .introductionTxtBlock__bg{
	transform: rotate(-4deg);
	transition-delay: 0.15s;
}
@media (prefers-reduced-motion: reduce){
	.sectionTtl.js-scrani .sectionTtl__txt,
	.sectionTtl.js-scrani .sectionTtl__deco,
	.sectionTtl.js-scrani .sectionTtl__marker{
		opacity: 1;
		transform: none;
		-webkit-mask-image: none;
		mask-image: none;
		-webkit-mask-size: auto;
		mask-size: auto;
		transition: none;
	}
	.sectionContent.js-scrani{
		opacity: 1;
		transform: none;
		transition: none;
	}
	.photoArea__inner.js-scrani{
		transform: none;
		transition: none;
	}
	.sectionContent.js-scrani .introductionTxtBlock__bg{
		transform: rotate(-4deg);
		transition: none;
	}
}
.deco__ashi.js-scrani{
	opacity: 0;
	transform: translate3d(max(calc(-48 / var(--vw-min) * 100vw),-48px), 0, 0);
	transition:
		opacity 0.7s ease-out,
		transform 0.85s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.deco__ashi.js-scrani.--is-ani{
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.deco__hikouki.js-scrani span{
	opacity: 0;
	transform: translate3d(100%, 0, 0);
	transition:
		opacity 0.9s ease-out,
		transform 1.4s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.deco__hikouki.js-scrani.--is-ani span{
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.deco__triangle.js-scrani ._tr1,
.deco__triangle.js-scrani ._tr2,
.deco__triangle.js-scrani ._tr3{
	opacity: 0;
	transform: translate3d(0, min(calc(48 / var(--vw-min) * 100vw),48px), 0) scale(0.7);
	transition:
		opacity 0.4s ease-out,
		transform 0.65s cubic-bezier(0.34, 1.5, 0.64, 1);
}
.deco__triangle.js-scrani.--is-ani ._tr1{
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	transition-delay: 0s, 0s;
}
.deco__triangle.js-scrani.--is-ani ._tr2{
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	transition-delay: 0.14s, 0.14s;
}
.deco__triangle.js-scrani.--is-ani ._tr3{
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	transition-delay: 0.28s, 0.28s;
}
@media (prefers-reduced-motion: reduce){
	.deco__ashi.js-scrani{
		opacity: 1;
		transform: none;
		transition: none;
	}
	.deco__hikouki.js-scrani span{
		opacity: 1;
		transform: none;
		transition: none;
	}
	.deco__triangle.js-scrani ._tr1,
	.deco__triangle.js-scrani ._tr2,
	.deco__triangle.js-scrani ._tr3{
		opacity: 1;
		transform: none;
		transition: none;
	}
}
.js-parallax{
	--para-y: 0px;
	translate: 0 var(--para-y);
	will-change: translate;
}
@media (prefers-reduced-motion: reduce){
	.js-parallax{
		translate: none;
		will-change: auto;
	}
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    width: 100%;
    position: sticky;
    top: 0;
}
@media screen and (max-width:768px){
	.header {
		position: absolute;
		bottom: 0;
		pointer-events: none;
	}
}

.header__cont{
	position: relative;
    top: 0;
	width: 100%;
}
@media screen and (max-width:768px){
	.header__cont{
		position: sticky;
		height: min(100vh, 100%);
		z-index: 1;
	}
}


/* inner */
@media screen and (max-width:768px){
	.header__contInner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		padding: 0;
		opacity: 1;
		pointer-events: none;
		z-index: 2;
		opacity: 0;
		overscroll-behavior: contain;
		transition: opacity .2s ease-in-out;
	}
	.header.is-active .header__contInner {
		opacity: 1;
		pointer-events: auto;
	}
}


/** 
 * inner
**/
.header__inner{
	width: 100%;
	min-height: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header__inner:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
}
.header__innerCont{
	width: 100%;
	position: relative;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(48 / var(--vw-min) * 100vw), 48px);
	z-index: 1;
}
@media screen and (max-width:768px){
	.header__innerCont{
		padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
	}
}



/**
 * headerNav
 */
.headerNav,
.headerNav__inner,
.headerNav__cont {
	width: 100%;
	height: 100%;
}

/**
 * headerNavLists
 */
.headerNavLists {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerNavLists .navList {
	height: 100%;
}
@media screen and (max-width:768px){
	.headerNavLists {
		display: block;
	}
	.headerNavLists .navList {
		height: auto;
	}
	.headerNavLists .navList:not(:first-child) {
		margin-top: calc(20 / var(--vw-min) * 100vw);
	}
}

/* a */
.headerNavLists .navList__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 800;
	padding: 0 min(calc(20 / var(--vw-min) * 100vw), 20px);
	position: relative;
	text-decoration: none;
	color: var(--color-white);
}
@media screen and (max-width:768px){
	.headerNavLists .navList__link {
		display: block;
		color: #fff;
		height: auto;
		padding: calc(8 / var(--vw-min) * 100vw) 0;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		background-color: red;
		width: calc(80 / var(--vw-min) * 100vw);
		height: calc(80 / var(--vw-min) * 100vw);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
		pointer-events: auto;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}
	.header__navBtn__lineWrap {
		display: block;
		width: calc(40 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
		position: relative;
	}
	.header__navBtn--line {
		background-color: #000;
		display: block;
		width: 100%;
		height: calc(4 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - calc(4 / var(--vw-min) * 100vw));
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - calc(4 / var(--vw-min) * 100vw));
		bottom: 0;
	}
}

/**
 * active
 */
@media screen and (max-width:768px){
	.header__inner:before{
		width: 0%;
		transition: width .25s ease;
	}
	.header.is-active .header__inner:before{
		width: 100%;
	}
	.header__innerCont{
		opacity: 0;
		transition: opacity .3s ease;
	}
	.header.is-active .header__innerCont{
		opacity: 1;
		transition-delay: .15s;
	}
	.header__navBtn--line {
		transition: transform .3s ease, opacity .3s ease;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		transform: rotate(45deg);
		bottom: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		transform: rotate(-45deg);
		top: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		transform: translateX(20%);
		opacity: 0;
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * shareLists
 */
.shareLists {
	display: flex;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}

/* item */
.shareLists__item {
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(24 / var(--vw-min) * 100vw), 24px);
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	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-x .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_fb.svg);
	mask-image: url(../img/common/sns/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_line.svg);
	mask-image: url(../img/common/sns/icon_line.svg);
}



/**
* modalOpen
**/
.js-modalOpen{
	cursor: pointer;
}

/*-----------------------------------------------
 * FOOTER
-------------------------------------------------*/
.footer{
    position: relative;
    width: 100%;
    overflow: hidden;
	background-color: #FFF;
}
.toTopBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(calc(120 / var(--vw-min) * 100vw),120px);
    height: min(calc(120 / var(--vw-min) * 100vw),120px);
    position: absolute;
    top: min(calc(54 / var(--vw-min) * 100vw),54px);
    right: min(calc(40 / var(--vw-min) * 100vw),40px);
    z-index: 2;
    text-decoration: none;
    transition: scale 0.4s var(--easing-outquart);
}
.toTopBtn__circle{
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/common/deco/pagetop_circle.png) no-repeat center center / contain;
    transform-origin: center center;
    animation: toTopCircle 12s linear infinite;
}
.toTopBtn__arrow{
    display: block;
    width: min(calc(28 / var(--vw-min) * 100vw),28px);
    height: min(calc(36 / var(--vw-min) * 100vw),36px);
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../img/common/deco/pagetop_arrow.png) no-repeat center center / contain;
    transform: translate(-50%, -50%);
    transition: transform 0.4s var(--easing-outquart);
}
@media screen and (hover: hover){
    .toTopBtn:hover{
        scale: 1.06;
    }
    .toTopBtn:hover .toTopBtn__arrow{
        transform: translate(-50%, calc(-50% - 6px));
    }
}
@media screen and (max-width:768px){
    .toTopBtn{
        width: calc(90 / var(--vw-min) * 100vw);
        height: calc(90 / var(--vw-min) * 100vw);
        top: calc(44 / var(--vw-min) * 100vw);
        right: calc(20 / var(--vw-min) * 100vw);
    }
	.toTopBtn__arrow{
		width: calc(20 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
	}
}
@keyframes toTopCircle{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce){
    .toTopBtn__circle{
        animation: none;
    }
}
.footer__line{
    width: 100%;
    overflow: hidden;
}
.footer__lineTrack{
    display: flex;
    width: max-content;
    animation: footerLineFlow 60s linear infinite;
    will-change: transform;
}
.footer__lineTrack > span{
    display: block;
    flex-shrink: 0;
    width: min(calc(2030 / var(--vw-min) * 100vw),2030px);
    height: min(calc(20 / var(--vw-min) * 100vw),20px);
    background: url(../img/common/deco/deco_line.svg) no-repeat left center / 100% 100%;
}
@media screen and (max-width:768px){
    .footer__lineTrack > span{
		width: calc(1421 / var(--vw-min) * 100vw);
        height: calc(14 / var(--vw-min) * 100vw);
    }
}
@keyframes footerLineFlow{
    from{ transform: translate3d(0, 0, 0); }
    to{ transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce){
    .footer__lineTrack{
        animation: none;
    }
}

.footer__inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: min(calc(40 / var(--vw-min) * 100vw),40px) 0 min(calc(74 / var(--vw-min) * 100vw),74px);
}
@media screen and (max-width:768px){
    .footer__inner{
        padding: calc(30 / var(--vw-min) * 100vw) 0 calc(48 / var(--vw-min) * 100vw);
    }
}



.footer__logo{
    width: min(calc(358 / var(--vw-min) * 100vw),358px);
    margin: 0 auto min(calc(40 / var(--vw-min) * 100vw),40px);
}
.footer__logo img{
    width: 100%;
    height: auto;
	transition: opacity .4s ease;
}

@media screen and (hover: hover){
	.footer__logo:hover img{
		opacity: .7;
	}
}

@media screen and (max-width:768px){
    .footer__logo{
        width: calc(200 / var(--vw-min) * 100vw);
        margin-left: calc(20 / var(--vw-min) * 100vw);
        margin-right: auto;
        margin-bottom: calc(48 / var(--vw-min) * 100vw);
    }
}


.officialLinks{
	display: flex;
	align-items: center;
	gap: min(calc(12 / var(--vw-min) * 100vw),12px);
}
.officialLinks__txt{
    font-size: min(calc(20 / var(--vw-min) * 100vw),20px);
    line-height: 1;
    letter-spacing: 0.04em;
    font-family: var(--font-en);
    font-weight: 500;
    color: var(--color-main);
}

.officialLink__item{
    width: min(calc(54 / var(--vw-min) * 100vw),54px);
    height: min(calc(54 / var(--vw-min) * 100vw),54px);
    background-color: var(--color-main);
    border-radius: 50%;
    border: 1px solid var(--color-sub);
    display: flex;
    align-items: center;
    justify-content: center;
	transition: background-color .4s ease;
}
@media screen and (hover: hover){
	.officialLink__item:hover{
		background-color: var(--color-sub);
	}
}
.officialX__ic::before{
    content: '';
    display: block;
    width: min(calc(22 / var(--vw-min) * 100vw),22px);
    height: min(calc(22 / var(--vw-min) * 100vw),22px);
    mask: url(../img/common/sns/icon_x.svg) no-repeat center center / contain;
    background-color: #FFF;
}
.officialYt__ic::before{
    content: '';
    display: block;
    width: min(calc(24 / var(--vw-min) * 100vw),24px);
    height: min(calc(22 / var(--vw-min) * 100vw),22px);
    mask: url(../img/common/sns/icon_yt.svg) no-repeat center center / contain;
    background-color: #FFF;
}


@media screen and (max-width:768px){
    .officialLinks__txt{
        font-size: calc(16 / var(--vw-min) * 100vw);
    }
    .officialLink__item{
        width: calc(48 / var(--vw-min) * 100vw);
        height: calc(48 / var(--vw-min) * 100vw);
    }
    .officialX__ic::before{
        width: calc(20 / var(--vw-min) * 100vw);
        height: calc(20 / var(--vw-min) * 100vw);
    }
	.officialYt__ic::before{
		width: calc(22 / var(--vw-min) * 100vw);
		height: calc(20 / var(--vw-min) * 100vw);
	}
}

.footer__copy{
    color: var(--color-black);
    font-size: min(calc(12 / var(--vw-min) * 100vw),12px);
    line-height: 1;
    font-weight: 900;
    margin-top: min(calc(70 / var(--vw-min) * 100vw),70px);
}
.footer__copy small{
    font-size: inherit;
}
@media screen and (max-width:768px){
    .footer__copy{
        font-size: calc(10 / var(--vw-min) * 100vw);
        margin-top: calc(40 / var(--vw-min) * 100vw);
    }
}


.mainBg{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	background: url(../img/common/deco/pt_note.svg) repeat top left / min(calc(20 / var(--vw-min) * 100vw),20px) min(calc(20 / var(--vw-min) * 100vw),20px);
}


/*-----------------------------------------------
 * Loading
-------------------------------------------------*/
.loading{
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	transition: opacity .55s ease, visibility .55s ease;
}
.loading.is-hide{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.loading__inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(calc(420 / var(--vw-min) * 100vw), 420px);
	padding: 0 min(calc(24 / var(--vw-min) * 100vw), 24px);
}
@media screen and (max-width:768px){
	.loading__inner{
		width: calc(230 / var(--vw-min) * 100vw);
		padding: 0 calc(16 / var(--vw-min) * 100vw);
	}
}
.loading__logo{
	width: min(calc(400 / var(--vw-min) * 100vw), 400px);
	margin: 0 auto min(calc(28 / var(--vw-min) * 100vw), 28px);
}
@media screen and (max-width:768px){
	.loading__logo{
		width: calc(200 / var(--vw-min) * 100vw);
		margin-bottom: calc(12 / var(--vw-min) * 100vw);
	}
}
.loading__logo img{
	display: block;
	width: 100%;
	height: auto;
	transform-origin: center bottom;
	/*animation: loadingLogoPop 1.25s cubic-bezier(0.34, 1.4, 0.64, 1) infinite;*/
}
@keyframes loadingLogoPop{
	0%,
	100%{
		transform: translateY(0) scale(1, 1) rotate(0deg);
	}
	18%{
		transform: translateY(0) scale(1.04, 0.95) rotate(-1deg);
	}
	36%{
		transform: translateY(-10px) scale(0.97, 1.04) rotate(1deg);
	}
	52%{
		transform: translateY(0) scale(1.02, 0.98) rotate(-0.5deg);
	}
	68%{
		transform: translateY(-4px) scale(0.99, 1.015) rotate(0.5deg);
	}
	84%{
		transform: translateY(0) scale(1.01, 0.995) rotate(0deg);
	}
}
@media (prefers-reduced-motion: reduce){
	.loading__logo img{
		animation: none;
	}
}
.loading__txt{
	margin: 0 0 min(calc(28 / var(--vw-min) * 100vw), 28px);
	color: var(--color-main);
	font-family: var(--font-en);
	font-size: min(calc(22 / var(--vw-min) * 100vw), 22px);
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	margin-top:  min(calc(40 / var(--vw-min) * 100vw), 40px);
}
@media screen and (max-width:768px){
	.loading__txt{
		margin-bottom: calc(16 / var(--vw-min) * 100vw);
		font-size: calc(16 / var(--vw-min) * 100vw);
	}
}
.loading__dots{
	display: inline-block;
	min-width: 1.2em;
	text-align: left;
	animation: loadingDots 1.2s steps(4, end) infinite;
}
@keyframes loadingDots{
	0%{ clip-path: inset(0 100% 0 0); }
	25%{ clip-path: inset(0 66% 0 0); }
	50%{ clip-path: inset(0 33% 0 0); }
	75%,
	100%{ clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce){
	.loading__dots{
		animation: none;
	}
}
.loading__ashi{
	position: relative;
	width: min(calc(360 / var(--vw-min) * 100vw), 360px);
	max-width: 78vw;
	height: min(calc(72 / var(--vw-min) * 100vw), 72px);
	left: 50%;
	translate: -50% 0;
}
@media screen and (max-width:768px){
	.loading__ashi{
		width: calc(200 / var(--vw-min) * 100vw);
		height: calc(36 / var(--vw-min) * 100vw);
	}
}
.loading__ashiItem{
	--ashi-flip: 1;
	position: absolute;
	display: block;
	width: min(calc(44 / var(--vw-min) * 100vw), 44px);
	height: min(calc(19 / var(--vw-min) * 100vw), 19px);
	background: url(../img/common/deco/loading_ashi.png) center / contain no-repeat;
	opacity: 0;
	transform: scaleY(var(--ashi-flip)) rotate(-8deg) scale(0.88);
	animation: loadingAshiStep 2.6s ease-in-out infinite;
}
@media screen and (max-width:768px){
	.loading__ashiItem{
		width: calc(22 / var(--vw-min) * 100vw);
		height: calc(9 / var(--vw-min) * 100vw);
	}
}
.loading__ashiItem.is-l{
	--ashi-flip: 1;
}
.loading__ashiItem.is-r{
	--ashi-flip: -1;
}
.loading__ashiItem:nth-child(1){ left: 80%; bottom: 14%; animation-delay: 0s; }
.loading__ashiItem:nth-child(2){ left: 66%; bottom: 50%; animation-delay: 0.2s; }
.loading__ashiItem:nth-child(3){ left: 52%; bottom: 12%; animation-delay: 0.4s; }
.loading__ashiItem:nth-child(4){ left: 38%; bottom: 52%; animation-delay: 0.6s; }
.loading__ashiItem:nth-child(5){ left: 24%; bottom: 10%; animation-delay: 0.8s; }
.loading__ashiItem:nth-child(6){ left: 10%; bottom: 54%; animation-delay: 1s; }
@keyframes loadingAshiStep{
	0%,
	8%{
		opacity: 0;
		transform: scaleY(var(--ashi-flip)) rotate(-8deg) scale(0.88);
	}
	16%,
	48%{
		opacity: 1;
		transform: scaleY(var(--ashi-flip)) rotate(-8deg) scale(1);
	}
	62%,
	100%{
		opacity: 0;
		transform: scaleY(var(--ashi-flip)) rotate(-8deg) scale(0.94);
	}
}
@media (prefers-reduced-motion: reduce){
	.loading__ashiItem{
		opacity: 1;
		transform: scaleY(var(--ashi-flip)) rotate(-8deg);
		animation: none;
	}
}
