@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
-------------------------------------------------*/
:root{
	/* Font */
	--font-ja: dnp-shuei-shogomincho-std, sans-serif;
	--font-en: termina, sans-serif;
	--font-en-helvetica: "helvetica-lt-pro";

	/* color */
	--color-green: #0d713d;
	--color-green-rgb: 13, 113, 61;

	/* size */
	--vw-min: 1366;
	--vh-min: 1080;
}
@media screen and (max-width:768px){
	:root{
		/* size */
		--vw-min: 750;
		--vh-min: 1334;
		--max-percent: 1;
	}
}




/* ScrollBar Setting */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 0;
  background: #363636;
}
::-webkit-scrollbar-thumb {
	background: #0d713d;
	border-radius: 2px;
	margin: 2px;
	box-shadow: none;
}
/* firefox Only Scrollbar */
@-moz-document url-prefix() {
	html{
		scrollbar-color: #0d713d #363636;
		scrollbar-width: thin;
	}
}


/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
@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: #000;
	color: #FFF;
	font-family: "helvetica-lt-pro", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-feature-settings: "palt";
	font-size: min(calc(24 / var(--vw-min) * 100vw), 24px);
	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: #257e50;
	color: #fff;
}
::-moz-selection{
	background: #257e50;
	color:#fff;
}
@media screen and (max-width:768px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		font-size: calc(24 / var(--vw-min) * 100vw);
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,100%);
	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-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(96 / var(--vw-min) * 100vw), 96px);
	height: min(calc(96 / var(--vw-min) * 100vw), 96px);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.closeBtn__link--lines{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 70%;
	height: 2px;
	margin: auto;
}
.closeBtn__link--lines:before,
.closeBtn__link--lines:after{
	content: '';
	position: absolute;
	inset: 0;
	background-color: #FFF;
}
.closeBtn__link--lines:before{
	transform: rotate(30deg);
}
.closeBtn__link--lines:after{
	transform: rotate(-30deg);
}

@media screen and (max-width:768px){
	.closeBtn{
		width: calc(104 / var(--vw-min) * 100vw);
		height: calc(104 / var(--vw-min) * 100vw);
	}
}
.closeBtn__link{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

/**
 * 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: fixed;
    top: 0;
	z-index: 5;
}
@media screen and (max-width:768px){
	.header {
		position: absolute;
		bottom: 0;
		pointer-events: none;
	}
}
.header__logoWrap{
	position: fixed;
	z-index: 10;
	left: 0;
	top: min(calc(32 / var(--vw-min) * 100vw), 32px);
	width: calc(120 / var(--vw-min) * 100vw);
	height: min(calc(59 / var(--vw-min) * 100vw), 59px);
}
.header__logoLink{
	display: block;
	width: min(calc(68 / var(--vw-min) * 100vw), 68px);
	height: 100%;
	pointer-events: all;
	z-index: 11;
	position: relative;
	margin: 0 auto;
}
.header__logo{
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));
}
.header__logo img{
	width: 100%;
	height: auto;
}
.header__cont{
	position: relative;
    top: 0;
	width: 100%;
	height: min(calc(123 / var(--vw-min) * 100vw), 123px);
}
@media screen and (max-width:768px){
	.header__logoWrap{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(112 / var(--vw-min) * 100vw);
		background-color: #000;
		z-index: 10;
	}
	.header__logoLink{
		width: calc(67 / var(--vw-min) * 100vw);
		height: calc(59 / var(--vw-min) * 100vw);
		position: absolute;
		/* top: calc(27 / var(--vw-min) * 100vw); */
		top: 0;
		bottom: 0;
		left: calc(40 / var(--vw-min) * 100vw);
		margin: auto 0;
		width: calc(67 / var(--vw-min) * 100vw);
		height: calc(59 / var(--vw-min) * 100vw);
	}
	.header__cont{
		position: sticky;
		height: min(100vh, 100%);
		z-index: 5;
	}
}


/* inner */
.header__contInner{
	height: 100%;
}
@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%;
}
.header__innerCont{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
    justify-content: flex-end;
	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{
		height: auto;
		justify-content: center;
		padding: calc(112 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
	}
	.header__inner{
		justify-content: center;
	}
	.header__inner:before{
		background-color: #000;
	}
}


/**
 * headerNav
 */
 .headerNav {
	position: relative;
	z-index: 1;
}
.headerNavLists{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: min(calc(51 / var(--vw-min) * 100vw), 51px);
}
.headerNavLists__item{
	position: relative;
}
.headerNavLists__item--link{
	display: block;
	font-family: var(--font-en);
	font-weight: 800;
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	line-height: 1.2728;
	color: #FFF;
	text-decoration: none;
	text-align: center;
}
@media screen and (max-width:768px){
	.headerNavLists__item--link{
		font-size: calc(38 / var(--vw-min) * 100vw);
	}
}
.headerNavLists__item.-soon .headerNavLists__item--link{
	pointer-events: none;
}
.headerNavLists__item.-soon:after{
	content: '';
	position: absolute;
	top: 0;
	left: -20%;
	right: -20%;
	bottom: 0;
	margin: auto;
	width: min(calc(86 / var(--vw-min) * 100vw), 86px);
	height: min(calc(26 / var(--vw-min) * 100vw), 26px);
	background: url(../img/common/txt-nav_comingsoon.svg) no-repeat center / contain;
	transform: rotate(-10deg);
	margin: auto;
	z-index: 1;
}
@media screen and (max-width:768px){
	.headerNavLists__item.-soon:after{
		width: calc(156 / var(--vw-min) * 100vw);
	}
}
.headerNavLists__item:not(.-soon) .headerNavLists__item--link > span{
	background: linear-gradient(var(--color-green), var(--color-green)) right bottom / 0% 100% no-repeat;
	transition: background-size .35s ease;
}
.headerNavLists__item:not(.-soon) .headerNavLists__item--link.--is-current > span{
	background-position: left bottom;
	background-size: 100% 100%;
}
@media screen and (hover:hover) and (pointer: fine){
	.headerNavLists__item:not(.-soon) .headerNavLists__item--link:hover > span{
		background-position: left bottom;
		background-size: 100% 100%;
	}
}
@media screen and (max-width:768px){
	.headerNavLists{
		display: flex;
		flex-direction: column;

		gap: min(calc(72 / var(--vw-min) * 100vw), 72px);
	}
}

/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		width: calc(58 / var(--vw-min) * 100vw);
		height: calc(26 / var(--vw-min) * 100vw);
		position: fixed;
		top: calc(40 / var(--vw-min) * 100vw);
		right: calc(40 / var(--vw-min) * 100vw);
		z-index: 10;
		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: 100%;
		height:100%;
		position: relative;
	}
	.header__navBtn--line {
		background-color: #FFF;
		display: block;
		width: 100%;
		height: calc(2 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - calc(2 / var(--vw-min) * 100vw));
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - calc(2 / 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;
}

/* 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);
}


/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer{
	padding-top: min(calc(48 / var(--vw-min) * 100vw), 48px);
	background-color: rgba(0,0,0,100%);
	position: relative;
}
.subPage #fullContents .footer{
	margin-top: auto;
}
.footer__cont{
	width: 100%;
	position: relative;
}
@media screen and (max-width:768px){
	.footer{
		padding-top: calc(64 / var(--vw-min) * 100vw);
	}
	.footer__cont{
		padding-top: 0;
	}
}


/* LOGO */
.footer__logo{
	position: relative;
	width: min(calc(74 / var(--vw-min) * 100vw), 74px);
	margin: min(calc(24 / var(--vw-min) * 100vw), 24px) auto 0;
	line-height: 1;
}
.footer__logo > a{
	display: block;
	text-decoration: none;
}
.footer__logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media screen and (hover:hover) and (pointer: fine){
	.footer__logo > a{
		transition: opacity .3s ease;
	}
	.footer__logo > a:hover{
		opacity: 50%;
	}
}
@media screen and (max-width:768px){
	.footer__logo{
		position: relative;
		width: min(calc(160 / var(--vw-min) * 100vw), 160px);
		margin-top: min(calc(32 / var(--vw-min) * 100vw), 32px);
	}
}


/* SNS */
.footer__snsListsArea{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer__snsListsArea--dt{
	font-family: var(--font-en);
	font-size: min(calc(11 / var(--vw-min) * 100vw), 11px);
	line-height: 1;
	letter-spacing: 0;
}
.footer__snsListsArea--dd{
	position: relative;
	margin-top: min(calc(24 / var(--vw-min) * 100vw), 24px);
	padding: min(calc(16 / var(--vw-min) * 100vw), 16px) min(calc(45 / var(--vw-min) * 100vw), 45px);
}

.footer__snsListsArea--dd_deco{
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(calc(11 / var(--vw-min) * 100vw), 11px);
}
.footer__snsListsArea--dd_deco:before{
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	bottom: 0;
	width: 2px;
	background-color: var(--color-green);
}
.footer__snsListsArea--dd_deco:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	border-top: 2px solid var(--color-green);
	border-bottom: 2px solid var(--color-green);
}

.footer__snsListsArea--dd_deco.-l{
	left: 0;
}
.footer__snsListsArea--dd_deco.-l:before,
.footer__snsListsArea--dd_deco.-l:after{
	left: 0;
}

.footer__snsListsArea--dd_deco.-r{
	right: 0;
}
.footer__snsListsArea--dd_deco.-r:before,
.footer__snsListsArea--dd_deco.-r:after{
	right: 0;
}


.footer__snsLists{
	display: flex;
	justify-content: flex-end;
	gap: min(calc(17 / var(--vw-min) * 100vw), 17px);
	height: min(calc(22 / var(--vw-min) * 100vw), 22px);
}
.footer__snsList{
	width: min(calc(29 / var(--vw-min) * 100vw), 29px);
	height: 100%;
}
.footer__snsList--link{
	display: block;
	text-decoration: none;
	width: 100%;
	height: 100%;
	-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;
}
.footer__snsList._sns-x .footer__snsList--link{
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.footer__snsList._sns-ig .footer__snsList--link{
	-webkit-mask-image: url(../img/common/icon-instagram.svg);
	mask-image: url(../img/common/icon-instagram.svg);
}
.footer__snsList._sns-tt .footer__snsList--link{
	-webkit-mask-image: url(../img/common/icon-tiktok.svg);
	mask-image: url(../img/common/icon-tiktok.svg);
}
.footer__snsList._sns-yt .footer__snsList--link{
	-webkit-mask-image: url(../img/common/icon-youtube.svg);
	mask-image: url(../img/common/icon-youtube.svg);
}

@media screen and (hover:hover) and (pointer: fine){
	.footer__snsList--link{
		transition: opacity .3s ease;
	}
	.footer__snsList--link:hover{
		opacity: 50%;
	}
}

@media screen and (max-width:768px){
	.footer__snsListsArea--dt{
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
	.footer__snsListsArea--dd{
		margin-top: calc(32 / var(--vw-min) * 100vw);
		padding: calc(32 / var(--vw-min) * 100vw) calc(64 / var(--vw-min) * 100vw);
	}
	.footer__snsLists{
		justify-content: center;
		gap: calc(40 / var(--vw-min) * 100vw);
		height: calc(42 / var(--vw-min) * 100vw);
	}
	.footer__snsList{
		width: calc(42 / var(--vw-min) * 100vw);
	}
}


/* COPYRIGHT */
.footer__copyright{
	width: 100%;
	position: relative;
	margin-top: min(calc(22 / var(--vw-min) * 100vw), 22px);
	padding: min(calc(11 / var(--vw-min) * 100vw), 11px) 0;
	background-color: var(--color-green);
	color: #FFF;
}
.footer__copyright--txt{
	font-family: var(--font-en);
	font-weight: 800;
	font-size: min(calc(9 / var(--vw-min) * 100vw), 9px);
	line-height: 1;
	text-align: center;
}
@media screen and (max-width:768px){
	.footer__copyright{
		margin-top: calc(64 / var(--vw-min) * 100vw);
		padding: calc(32 / var(--vw-min) * 100vw);
	}
	.footer__copyright:before{
		height: 1px;
	}
	.footer__copyright--txt{
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
}


/*-----------------------------------------------
 * SUB PAGE
-------------------------------------------------*/
.subPage{
	padding-top: min(calc(123 / var(--vw-min) * 100vw), 123px);
}
.subPage::before{
	content: '';
	position: absolute;
	z-index: 10;
	pointer-events: none;
	top: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.60);
}
@media screen and (max-width:768px){
	.subPage{
		padding-top: calc(112 / var(--vw-min) * 100vw);
	}
	.subPage::before{
		width: 100%;
		height: calc(2 / var(--vw-min) * 100vw);
	}
}
.subPage #fullContents{
	min-height: calc(100vh - min(calc(123 / var(--vw-min) * 100vw), 123px));
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.subPage .mainContents{
	position: relative;
	padding-top: min(calc(144 / var(--vw-min) * 100vw), 144px);
	padding-bottom: min(calc(200 / var(--vw-min) * 100vw), 200px);
	z-index: 1;
}
@media screen and (max-width:768px){
	.subPage .mainContents{
		padding-top: calc(75 / var(--vw-min) * 100vw);
		padding-bottom: calc(224 / var(--vw-min) * 100vw);
	}
}

.subPage .cont_h2{
	font-family: var(--font-en);
	font-weight: 800;
	font-size: min(calc(42 / var(--vw-min) * 100vw), 42px);
	line-height: 1;
	text-align: center;
}
@media screen and (max-width:768px){
	.subPage .cont_h2{
		font-size: calc(48 / var(--vw-min) * 100vw);
	}
}
/**
 * animation
 */
 .subPage .a-title{
	opacity: 0;
	transition: opacity .3s ease .1s;
}
.subPage .a-title__txt{
	display: inline-block;
	transform: translateY(75%);
	transition: transform .4s cubic-bezier(.54, .42, .2, 1) .2s;
}
.subPage .--is-ani .a-title {
	opacity: 1;
}
.subPage .--is-ani .a-title__txt{
	transform: translateY(0%);
}
.subPage .a-contents{
	opacity: 0;
	transform: translateY(10%);
	transition: opacity .3s ease .1s, transform .4s cubic-bezier(.54, .42, .2, 1) .2s;
}
.subPage .a-contents.--is-ani{
	opacity: 1;
	transition-delay: .6s;
	transform: translateY(0%);
}


/*-----------------------------------------------
 * moreBtn
-------------------------------------------------*/
/* moreBtn */
.moreBtn{
	display: flex;
	align-items: center;
	justify-content: center;
	height: min(calc(30 / var(--vw-min) * 100vw), 30px);
}
.moreBtn__link{
	height: 100%;
	color: #FFF;
	text-decoration: none;
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
	line-height: 1;
	font-family: var(--font-en);
	position: relative;
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	padding-right: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
.moreBtn__link.-noArrow{
	padding-right: 0;
}
.moreBtn__link.-ja{
	font-family: termina, "helvetica-lt-pro", sans-serif;
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: 700;
}
.moreBtn__link:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	height: min(calc(6 / var(--vw-min) * 100vw), 6px);
	background: linear-gradient(to right, var(--color-green) 50%, #fff 50%) right bottom / 200% 100% no-repeat;
	transition: all 0.4s;
}

.moreBtn__link--txt {
    position: relative;
    color: transparent;
    background: linear-gradient(to right, var(--color-green) 50%, #fff 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
}
.moreBtn__link--arrow{
	display: block;
	width: min(calc(17 / var(--vw-min) * 100vw), 17px);
	height: min(calc(10 / var(--vw-min) * 100vw), 10px);
	-webkit-mask: url(../img/common/icon-arrow.svg) no-repeat right center / contain;
	mask: url(../img/common/icon-arrow.svg) no-repeat right center / contain;
	transition: all .3s ease;
	position: absolute;
	right: 0;
	top: 0;
	background-color: #fff;
}
.moreBtn__link.-noArrow .moreBtn__link--arrow{
	display: none;
}
a.moreBtn__link[target="_blank"] .moreBtn__link--arrow{
	transform: rotate(-45deg);
}
@media screen and (max-width:768px){
	.moreBtn{
		height: calc(40 / var(--vw-min) * 100vw);
	}
	.moreBtn__link{
		padding-right: calc(32 / var(--vw-min) * 100vw);
	}
	.moreBtn__link--arrow{
		width: calc(27 / var(--vw-min) * 100vw);
		height: calc(16 / var(--vw-min) * 100vw);
	}
	.moreBtn__link:before{
		height: calc(6 / var(--vw-min) * 100vw);
	}
	.moreBtn__link--txt{
		font-size: calc(22 / var(--vw-min) * 100vw);
	}

	.moreBtn__link.-ja,
	.moreBtn__link.-ja .moreBtn__link--txt{
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
}

/* -cs */
.moreBtn__link.-cs{
	pointer-events: none;
}
.moreBtn__link.-cs .moreBtn__link--txt:after{
	content: '';
	position: absolute;
	top: 80%;
	left: -20%;
	right: -40%;
	bottom: 0;
	margin: auto;
	width: min(calc(172 / var(--vw-min) * 100vw), 172px);
	height: min(calc(52 / var(--vw-min) * 100vw), 52px);
	background: url(../img/common/txt-nav_comingsoon.svg) no-repeat center / contain;
	transform: rotate(-10deg);
	margin: auto;
	z-index: 10;
}
/* .moreBtn__link.-cs:before,
.moreBtn__link.-cs .moreBtn__link--arrow{
	background: #444;
}
.moreBtn__link.-cs .moreBtn__link--txt{
	background: unset;
	color: #444;
	background-clip: unset;
} */
@media screen and (max-width:768px){
	.moreBtn__link.-cs .moreBtn__link--txt:after{
		width: calc(220 / var(--vw-min) * 100vw);
	}
}




@media screen and (hover:hover) and (pointer: fine){
	.moreBtn__link:hover .moreBtn__link--arrow{
		background-color: var(--color-green);
		transition-delay: 0.15s;
	}
	.moreBtn__link:hover .moreBtn__link--txt {
        background-position: 0 100%;
    }
	.moreBtn__link:hover:before {
        background-size: 200% 100%;
        background-position: left bottom;
	}
}
/* BACK（矢印左・テキスト右） */
.moreBtn._back{
	width: min(calc(87 / var(--vw-min) * 100vw), 87px);
}
@media screen and (max-width:768px){
	.moreBtn._back{
		width: calc(132 / var(--vw-min) * 100vw);
		height: calc(40 / var(--vw-min) * 100vw);
	}
}
.moreBtn__link._back:before{
	background: linear-gradient(to left, var(--color-green) 50%, #fff 50%) left bottom / 200% 100% no-repeat;
}
.moreBtn__link._back{
	justify-content: flex-end;
	padding-right: 0;
}
.moreBtn__link._back .moreBtn__link--txt{
	background-image: linear-gradient(to left, var(--color-green) 50%, #fff 50%);
	background-position: 0 100%;
}

.moreBtn__link._back .moreBtn__link--arrow{
	left: 0;
	top: min(calc(2 / var(--vw-min) * 100vw), 2px);
}



.moreBtn__link._back .moreBtn__link--arrow{
	left: 0;
	right: auto;
	transform: rotate(180deg);
}

.moreBtn__link._back .moreBtn__link--txt{
	display: inline-block;
	padding-left: min(calc(25 / var(--vw-min) * 100vw), 25px);
}

@media screen and (hover:hover) and (pointer: fine){
	.moreBtn__link._back:hover .moreBtn__link--txt{
		background-position: 100% 100%;
	}
	.moreBtn__link._back:hover:before{
		background-size: 200% 100%;
		background-position: right bottom;
	}
}