@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{
	/* max-width */
	--max-width: 1600px;
	--max-percent: 1.3334;

	/* font */
	--font-eng: 'Girassol', serif;
	--font-ja: 'Noto Serif JP', serif;

	/* color */
	--color-blue: #1eb9ee;
	--color-yellow: #d9bb17;

	/* gradation */
	--gradient-blue: linear-gradient(#0d97c6, #1eb9ee);

	/* sp-size */
	--sp-size-2: min(0.2667vw, 2px);
	--sp-size-4: min(0.5334vw, 4px);
	--sp-size-6: min(0.8vw, 6px);
	--sp-size-8: min(1.0667vw, 8px);
	--sp-size-9: min(1.2vw, 9px);
	--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-34: min(4.5334vw, 34px);
	--sp-size-36: min(4.8vw, 36px);
	--sp-size-40: min(5.3334vw, 40px);
	--sp-size-42: min(5.6vw, 42px);
	--sp-size-46: min(6.1334vw, 46px);
	--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-88: min(11.7334vw, 88px);
	--sp-size-96: min(12.8vw, 96px);
	--sp-size-100: min(13.3334vw, 100px);
	--sp-size-120: min(16vw, 120px);
	--sp-size-192: min(25.6vw, 192px);
}
@media screen and (max-width:767px){
	:root{
		--max-width: 100%;
		--max-percent: 1;

		--vw-min: 750;
	}
}
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: 'Noto Serif JP', serif;
	font-feature-settings: "palt";
	font-size: 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: #6ccfee;
	color: #fff;
}
::-moz-selection{
	background: #6ccfee;
	color:#fff;
}
@media screen and (max-width:767px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		font-size: var(--sp-size-24);
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}
#fullWrap{
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main{
	width: 100%;
	position: relative;
}

/* ScrollBar Setting */
html{
	scrollbar-color: var(--color-blue) rgb(230, 230, 230);
	scrollbar-width: thin;
}
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 0px;
  background: rgb(230, 230, 230);
}
::-webkit-scrollbar-thumb {
	background: var(--color-blue);
	border-radius: 4px;
	margin: 2px;
	box-shadow: none;
}


/*-----------------------------------------------
 * LOADING
-------------------------------------------------*/
#cLoading{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10001;
}
#cLoading:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	transition: 1.2s ease-in-out;
}
.cLoadingIn{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.cLoading__circle{
	width: min(47.9167%, 920px);
	padding-top: min(47.9167%, 920px);
	position: relative;
	transition: 1.2s ease-in-out;
}
.cLoading__circleImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation: 32s rotate linear;
}

.cLoading__logo{
	width: min(41.6667%, 800px);
	transition: .8s ease-in-out;
}
.cLoading__logo img{
	width: 100%;
}


body.--is-load .cLoading__circle,
body.--is-load .cLoading__logo{
	opacity: 0;
	transform: scale(250%);
	filter: blur(12px) brightness(1.8);
}
body.--is-load #cLoading:before{
	filter: brightness(1.8);
}

body.--is-loaded .cLoading__circleImg{
	animation-play-state: paused;
}

@media screen and (max-width:767px){
	.cLoading__circle{
		width: 69.3334%;
		padding-top: 69.3334%;
	}
	.cLoading__logo{
		width: min(74.6667%, 560px);
		transition: .8s ease-in-out;
	}
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: var(--gradient-blue);
	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: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:767px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 120px;
	position: absolute;
	top: 0;
	right: 30px;
	margin-top: 30px;
	z-index: 2;
}
.closeBtn a{
	display: block;
	width: 100%;
	padding-top: 26.6667%;/* 32px */
	position: relative;
}
.closeBtn a:before,
.closeBtn a:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
.closeBtn a:before{
	transform: rotate(15deg);
}
.closeBtn a:after{
	transform: rotate(-15deg);
}

@media (hover: hover) and (pointer: fine){
	.closeBtn a:before,
	.closeBtn a:after{
		transition: .3s ease;
	}
	.closeBtn a:hover::before{
		transform: rotate(-15deg);
	}
	.closeBtn a:hover::after{
		transform: rotate(15deg);
	}
}
@media screen and (max-width:767px){
	.closeBtn{
		width: min(24.8%, 186px);
		right: var(--sp-size-20);
		margin-top: var(--sp-size-20);
	}
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:767px){
	.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;
}


/* imageModal */
#imageModal .oneModalIn__cont{
	width: 100%;
}
.js-imageModalCont{
	pointer-events: none;
}
.imageModalCont{
    width: 70%;
	margin: 0 auto;
	height: calc(100vh - 200px);
	height: calc(100svh - 200px);
	position: relative;
}
.imageModalContIn{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.imageModalContIn img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: scale-down;
}

.imageModalCont.-modalimg_link{
	height: 100%;
}
.imageModalCont.-modalimg_link .imageModalContIn{
    padding: 0;
    position: relative;
    text-align: center;
	pointer-events: auto;
}
.imageModalCont.-modalimg_link .imageModalContIn img {
	position: relative;
    max-width: 100%;
    width: auto;
    height: auto;
	object-fit: unset;
}

@media screen and (max-width: 768px){
	.imageModalCont{
		width: 93.6%;
		height: calc(100vh - min(16vw, 120px));
		height: calc(100svh - min(16vw, 120px));
	}
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	pointer-events: none;
	overflow: hidden;
	box-shadow: unset;
}

/* inner */
.header__inner {
	min-height: 100dvh;
	position: absolute;
	width: 100%;
	padding: 0;
	display: block;
	pointer-events: auto;
	transform: translateX(100%);
	transition: all 0.3s ease;
	overflow: auto;
	overscroll-behavior: contain;
	bottom: 0;
	left: 0;
    top: 0;
	z-index: 2;
	padding: 40px 0;
}
.header.is-active .header__inner {
	transform: translateX(0%);
}
.header__innerIn {
	width: 100%;
	height: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	position: relative;
	z-index: 2;
	padding: 60px 0;
}
.header__innerInCont{
	width: 100%;
	height: calc(100% - 80px);
    min-height: 400px;/* navlistsの量に応じて変更 */
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
@media screen and (max-width:800px){
	.header__innerInCont{
		justify-content: center;
	}
}
@media screen and (max-width:767px){
	.header__innerInCont{
		min-height: unset;
		height: auto;
		flex-direction: column;
		align-items: unset;
		justify-content: unset;
	}
}

.headerLogo{
	width: 390px;
	width: 32.5%;
	padding: 0 40px;
	padding: 0 3.3334%;
}
.headerLogo a{
	display: block;
}
.headerLogo img{
	width: 100%;
}
@media screen and (max-width:767px){
	.headerLogo{
		width: min(65.3334%, 490px);
		margin: 0 auto min(5.3334%, 40px);
	}
}
@media (hover: hover) and (pointer: fine){
	.headerLogo a{
		transition: .3s ease;
	}
	.headerLogo a:hover{
		transform: scale(105%);
	}
}

/**
 * headerNav
 */
.headerNav {
	width: 540px;
	position: relative;
	z-index: 1;
}

.navList{
	font-family: var(--font-eng);
	pointer-events: none;
	line-height: 0.82143;
}
.navList__link{
	display: inline-block;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0;
	pointer-events: auto;
	line-height: 0.82143;
}
.navList__linkTxt{
	display: inline-block;
	line-height: 0.82143;
	position: relative;
}


/* headerNav > navLists */
.headerNav .navLists{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.headerNav .navList{
	width: 50%;
	font-size: 34px;
	padding: 20px 0;
}
.headerNav .navList__link{
	transition: .3s ease;
	padding-right: 64px;
	position: relative;
	pointer-events: none;
}
.headerNav .navList__link:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: url(../img/common/icon_sword.svg) no-repeat right center / contain;
	transform: translateX(0%) rotateX(90deg);
	opacity: 1;
	transition: opacity .2s ease, transform .35s ease .05s;
	width: 46px;
	height: 14px;
	margin: auto 0;
}
.headerNav .navList__linkTxt{
	pointer-events: auto;
}

/** is-active **/
.headerNav .navList.is-active .navList__link{
	color: var(--color-yellow);
}
.headerNav .navList.is-active .navList__link:after{
	opacity: 1;
	transform: translateX(-10px) rotateX(0deg);
	filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 1px #fff);
}
.headerNav .navList.is-active .navList__linkTxt{
	filter: drop-shadow(0 0 4px #fff) drop-shadow(1px 0 2px #fff);
}
@media (hover: hover) and (pointer: fine){
	.headerNav .navList__link:hover::after{
		opacity: 1;
		transform: translateX(-5px) rotateX(0deg);
	}
}

@media screen and (max-width:767px){
	.headerNav {
		width: 100%;
		padding: 0 5.3334%;
	}
	.headerNav .navList{
		font-size: var(--sp-size-46);
		padding: var(--sp-size-32) 0;
	}
	.headerNav .navList__link{
		padding-right: var(--sp-size-72);
	}
	.headerNav .navList__link:after{
		width: var(--sp-size-48);
		height: var(--sp-size-16);
	}
/** is-active **/
	.headerNav .navList.is-active .navList__link:after{
		transform: translateX(calc(var(--sp-size-10) * -1)) rotateX(0deg);
		filter: drop-shadow(0 0 var(--sp-size-4) #fff) drop-shadow(0 0 var(--sp-size-2) #fff);
	}
	.headerNav .navList.is-active .navList__linkTxt{
		filter: drop-shadow(0 0 var(--sp-size-6) #fff) drop-shadow(1px 0 var(--sp-size-4) #fff);
	}
}


/**
* SEASONNAV
**/
.seasonNavListsWrap.__header{
	width: 100%;
	position: relative;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}
.seasonNavListsWrap.__header .seasonNavLists{
	position: relative;
	padding: 9px 0;
}
.seasonNavListsWrap.__header .seasonNavLists:before,
.seasonNavListsWrap.__header .seasonNavLists:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 9px;
}
.seasonNavListsWrap.__header .seasonNavLists:before{
	top: 0;
	background: linear-gradient(0deg, var(--color-blue) 0%, var(--color-blue) 22%, transparent 22%, transparent 56%, var(--color-blue) 56%, var(--color-blue) 100%);
}
.seasonNavListsWrap.__header .seasonNavLists:after{
	bottom: 0;
	background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 22%, transparent 22%, transparent 56%, var(--color-blue) 56%, var(--color-blue) 100%);
}
@media screen and (max-width:768px){
	.seasonNavListsWrap.__header .seasonNavLists{
		padding: calc(9 / var(--vw-min) * 100vw) 0;
	}
	.seasonNavListsWrap.__header .seasonNavLists:before,
	.seasonNavListsWrap.__header .seasonNavLists:after{
		height: calc(9 / var(--vw-min) * 100vw);
	}
}




/**
 * SNS LISTS
 */
.nav_snsLists__dt{
	font-family: var(--font-eng);
	letter-spacing: 0;
}
.nav_snsLists{
	display: flex;
}
.nav_snsList__link{
	position: relative;
}
.nav_snsList__linkIcon{
	display: block;
	position: absolute;
}
.nav_snsList__linkIcon:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: right center;
	mask-position: right center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: .3s ease;
}
.nav_snsList__linkIcon[data-sns="x"]:after{
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.nav_snsList__linkIcon[data-sns="tiktok"]:after{
	-webkit-mask-image: url(../img/common/icon_tt.svg);
	mask-image: url(../img/common/icon_tt.svg);
}
.nav_snsList__linkIcon[data-sns="youtube"]:after{
	-webkit-mask-image: url(../img/common/icon_yt.svg);
	mask-image: url(../img/common/icon_yt.svg);
}

/* header */
.headersnsListsWrap{
	width: 100%;
	padding: 0 3.3334%;
}
.headersnsListsWrap .nav_snsLists__dl{
	width: 186px;
}
.headersnsListsWrap .nav_snsLists__dt{
	text-align: center;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 10px;
	color: #FFF;
}
.headersnsListsWrap .nav_snsLists{
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.headersnsListsWrap .nav_snsList{
	width: 54px;
	position: relative;
	padding: 4px;
}
.headersnsListsWrap .nav_snsList__link{
	width: 100%;
	padding-top: 100%;
	position: relative;
	display: block;
}
.headersnsListsWrap .nav_snsList:before,
.headersnsListsWrap .nav_snsList__link:before,
.headersnsListsWrap .nav_snsList__link:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.headersnsListsWrap .nav_snsList:before{
	background-image: url(../img/common/header_snslink_bg_of.svg);
}

.headersnsListsWrap .nav_snsList__link:after{
	background-image: url(../img/common/header_snslink_bg_if.svg);
}

.headersnsListsWrap .nav_snsList__linkIcon{
	width: 43.4783%;
	height: 43.4783%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.headersnsListsWrap .nav_snsList__linkIcon:after{
	background-color: #fff;
}
@media (hover: hover) and (pointer: fine){
	.headersnsListsWrap .nav_snsList__link:before{
		opacity: 0;
		transition: .3s ease;
	}
	.headersnsListsWrap .nav_snsList__link:before{
		background-image: url(../img/common/header_snslink_bg.svg);
	}
	.headersnsListsWrap .nav_snsList__link:hover::before{
		opacity: 1;
	}
	.headersnsListsWrap .nav_snsList__link:hover .nav_snsList__linkIcon:after{
		background-color: #000;
	}
}
@media screen and (max-width:800px){
	.headersnsListsWrap .nav_snsLists__dl{
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width:767px){
	.headersnsListsWrap{
		margin-top: min(8.5334%, 64px);
		padding: 0 5.3334% 6.4%;
	}
	.headersnsListsWrap .nav_snsLists__dl{
		width: min(60.8956%, 408px);
	}
	.headersnsListsWrap .nav_snsLists__dt{
		font-size: var(--sp-size-32);
		margin-bottom: var(--sp-size-30);
	}
	.headersnsListsWrap .nav_snsList{
		width: min(28.4314%, 116px);
		padding: var(--sp-size-6);
	}
	.headersnsListsWrap .nav_snsList__linkIcon{
		width: var(--sp-size-48);
		height: var(--sp-size-48);
	}
}

/**
 * headerBG
 */
.header__bgWrap{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: unset;
	z-index: 1;
	background: var(--gradient-blue);
	overflow: hidden;
}
.header__bgInWrap{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: max(43.3334%, 520px);/* 520 */
	opacity: 50%;
	mix-blend-mode: multiply;
}
.header__bgInWrap:before,
.header__bgInWrap:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	opacity: 0;
	transition: .2s ease;
}
.header__bgInWrap:before{
	background-image: url(../img/common/nav_bg_c1.png);
	transform: translate(10%,0%) scale(95%);
}
.header__bgInWrap:after{
	background-image: url(../img/common/nav_bg_c2.png);
	transform: translate(-10%,10%) scale(105%);
}

/* active */
.header.header.is-active .header__bgInWrap:before,
.header.header.is-active .header__bgInWrap:after{
	opacity: 1;
	transform: translate(0%,0%) scale(100%);
}
.header.header.is-active .header__bgInWrap:before{
	transition: .3s ease .3s;
}
.header.header.is-active .header__bgInWrap:after{
	transition: .3s ease .3s;
}

@media screen and (max-width:767px){
	.header__bgInWrap{
		display: none;
	}
}


/**
 * navBtn
 */
.header__navBtnWrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	pointer-events: none;
}
.header__navBtnInWrap{
	position: sticky;
	min-height: min(100%, 640px);
	height: 100%;
	max-height: 100vh;
	top: 0;
	overflow: hidden;
}
.header__navBtn {
	display: block;
	width: 76px;
	height: 76px;
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: auto;
	background: linear-gradient(0deg, rgb(99,99,99) 0%, rgb(31,31,31) 100%);
	transition: .3s ease;
}
.header__navBtn:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	border: 1px solid rgba(255,255,255,30%);
}
  

.header__navBtn__lineWrap {
	width: 37px;
	height: 35px;
	margin: 0 auto 10px;
	padding-top: 20px;
	position: relative;
	z-index: 2;
}
.header__navBtn__lineIn{
	width: 100%;
	height: 100%;
	position: relative;
}
.header__navBtn--line {
	background: url(../img/common/navbtn_line.svg) no-repeat center / contain;
	display: block;
	width: 100%;
	height: 4px;
	margin: auto;
	position: absolute;
	transition: .4s ease;
}
.header__navBtn--line:nth-child(1) {
	top: 0;
	bottom: calc(100% - 4px);
}
.header__navBtn--line:nth-child(2) {
	top: calc(100% - 4px);
	bottom: 0;
}

.header__navBtn__textWrap{
	width: 100%;
	position: relative;
	z-index: 2;
	text-align: center;
	font-family: var(--font-eng);
	line-height: 1;
	color: #FFF;
}
.header__navBtn__text{
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	transition: .3s ease;
}
.header__navBtn__text span{
	display: inline-block;
	transition: .3s ease;
}

/* off */
.header__navBtn__text.-close{
	opacity: 0;
}
.header__navBtn__text.-close span{
	transform: translateX(20%);
}


/* on */
.header__navBtn.is-active {
	position: fixed;
}
.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
	top: 0;
	bottom: 0;
	transform: rotate(15deg);
}
.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
	top: 0;
	bottom: 0;
	transform: rotate(-15deg);
}
.header__navBtn.is-active .header__navBtn__text.-menu{
	opacity: 0;
}
.header__navBtn.is-active .header__navBtn__text.-menu span{
	transform: translateX(-20%);
}
.header__navBtn.is-active .header__navBtn__bg.-menu{
	transform: translateX(-100%);
}
.header__navBtn.is-active .header__navBtn__text.-close{
	opacity: 1;
}
.header__navBtn.is-active .header__navBtn__text.-close span{
	transform: translateX(0%);
}

@media (hover: hover) and (pointer: fine){
	.header__navBtn:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(180deg, rgb(99,99,99) 0%, rgb(31,31,31) 100%);
		opacity: 0;
		transition: .4s ease;
	}
	.header__navBtn:hover::before{
		opacity: 1;
	}
}

@media screen and (max-width:767px){
	.header__navBtnInWrap{
		position: fixed;
		min-height: unset;
		max-height: unset;
	}
	.header__navBtn {
		position: fixed;
		width: var(--sp-size-100);
		height: var(--sp-size-100);
	}
	.header__navBtn:after{
		top: var(--sp-size-4);
		left: var(--sp-size-4);
		bottom: var(--sp-size-4);
		right: var(--sp-size-4);
		border-width: var(--sp-size-2);
	}
	.header__navBtn__lineWrap {
		width: var(--sp-size-46);
		height: var(--sp-size-42);
		padding-top: var(--sp-size-26);
		margin-bottom: var(--sp-size-12);
	}
	.header__navBtn--line {
		background-image: url(../img/common/navbtn_line-s.svg);
		height: var(--sp-size-4);
	}
	.header__navBtn--line:nth-child(1) {
		bottom: calc(100% - var(--sp-size-4));
	}
	.header__navBtn--line:nth-child(2) {
		top: calc(100% - var(--sp-size-4));
	}
	.header__navBtn__textWrap{
		font-size: var(--sp-size-20);
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
	display: flex;
	align-items: center;
}

/* title */
.shareLists__title{
	font-family: var(--font-eng);
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0;
	padding-right: 12px;
	color: #FFF;
}

/* item */
.shareLists__item {
	width: 48px;
	height: 24px;
	padding: 0 12px;
}

/* 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: #FFF;
	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;
	width: 100%;
	height: 100%;
}


@media (hover: hover) and (pointer: fine){
	.shareLists__link:hover:before {
		background-color: var(--color-yellow);
	}
}
@media screen and (max-width:767px){
	.shareLists{
		justify-content: center;
	}
	.shareLists__title{
		font-size: var(--sp-size-20);
		padding-right: var(--sp-size-24);
	}
	.shareLists__item {
		width: var(--sp-size-96);
		height: var(--sp-size-48);
		padding: 0 var(--sp-size-24);
	}
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_fb.svg);
	mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_line.svg);
	mask-image: url(../img/common/icon_line.svg);
}


/**
 * 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;
}


/**
 * Keyframes Animation Rotate
**/
@keyframes rotate{
	0%{transform: rotate(0);}
	100%{ transform:rotate(360deg); }
}



/**
 * contentBgWrap
 */
.contentBgWrap{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-top: calc(255px + 13.75%);
	overflow: hidden;
}
body[data-page="top"] .contentBgWrap{
	margin-top: 48px;
}
.contentBgWrap:before,
.contentBgWrap:after{
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 2;
}
.contentBgWrap:before{
	top: 0;
	background: linear-gradient(#FFF, transparent);
}
.contentBgWrap:after{
	bottom: 0;
	background: linear-gradient(transparent, #FFF);
}

.contentBgInWrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.contentBg_contWrap{
	width: 100%;
	padding-top: min(160%, 1920px);
	position: relative;
	margin-top: min(5.3334%, 64px);
}
.contentBg_cont{
	position: absolute;
}
.contentBg_contimg{
	width: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 60%;
}

@media screen and (max-width:767px){
	.contentBgWrap{
		margin-top: min(56.3334%, 424px);
	}
	body[data-page="top"] .contentBgWrap{
		margin-top: var(--sp-size-48);
	}
	.contentBgWrap:before,
	.contentBgWrap:after{
		height: var(--sp-size-120);
	}
	.contentBg_contWrap{
		padding-top: min(256%, 1920px);
		margin-top: var(--sp-size-120);
	}
}


/* bg1 */
.contentBg_cont.-bg1{
	top: 0;
	left: 0;
	width: min(37.5%, 450px);
	margin-top: max(-8.3334%, -100px);
	transform-origin: left center;
}
.contentBg_cont.-bg1 .contentBg_contimg{
	padding-top: 166.4445%;/* 749px */
	background-image: url(../img/common/bg_c1.jpg);
	background-position: right top;
}

/* 2n */
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg1{
	left: unset;
	right: 0;
	transform-origin: right center;
}
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg1 .contentBg_contimg{
	background-position: left top;
}
@media screen and (max-width:767px){
	.contentBg_cont.-bg1{
		width: 60%;
		margin-top: calc(var(--sp-size-96) * -1);
	}
}


/* bg2 */
.contentBg_cont.-bg2{
	top: 0;
	right: 0;
	margin-top: min(64.8334%, 778px);
	width: min(35.6667%, 428px);
	transform-origin: right center;
}
.contentBg_cont.-bg2 .contentBg_contimg{
	padding-top: 132.0094%;/* 565 */
	background-image: url(../img/common/bg_c2.jpg);
	background-position: left center;
}

/* 2n */
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg2{
	right: unset;
	left: 0;
	transform-origin: left center;
}
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg2 .contentBg_contimg{
	background-position: right center;
}
@media screen and (max-width:767px){
	.contentBg_cont.-bg2{
		margin-top: min(103.7334%, 778px);
		width: min(57.0667%, 428px);
	}
}


/* bg3 */
.contentBg_cont.-bg3{
	bottom: 0;
	left: 0;
	width: min(27.5%, 330px);
	transform-origin: left center;
}
.contentBg_cont.-bg3 .contentBg_contimg{
	padding-top: 143.3334%;/* 473 */
	background-image: url(../img/common/bg_c3.jpg);
	background-position: right bottom;
}

/* 2n */
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg3{
	left: unset;
	right: 0;
	transform-origin: right center;
}
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg3 .contentBg_contimg{
	background-position: left bottom;
}
@media screen and (max-width:767px){
	.contentBg_cont.-bg3{
		width: min(44%, 330px);
	}
}


/* is-ani */
.contentBg_cont{
	opacity: 0;
	filter: blur(2px);
	transition: opacity .3s ease, transform .6s cubic-bezier(.45,.52,.56,1.02), filter .8s cubic-bezier(.45,.52,.56,1.02) .3s;
}
.contentBg_cont.-bg1{
	transform: translate(-10%,5%) scale(95%);
}
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg1{
	transform: translate(10%,5%) scale(95%);
}
.contentBg_cont.-bg2{
	transform: translate(10%,5%) scale(95%);
}
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg2{
	transform: translate(-10%,5%) scale(95%);
}
.contentBg_cont.-bg3{
	transform: translate(-10%,5%) scale(95%);
}
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.-bg3{
	transform: translate(10%,5%) scale(95%);
}


.contentBg_cont.is-ani,
.contentBgInWrap .contentBg_contWrap:nth-of-type(2n) .contentBg_cont.is-ani{
	opacity: 1;
	filter: blur(0px);
	transform: translate(0,0) scale(100%);
}

/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer{
	position: relative;
	width: 100%;
	padding-top: 12.6667%;/* 152px */
	padding-bottom: 80px;
	background: var(--gradient-blue);
	overflow: hidden;
	margin-top: auto;
}
.footer:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding-top: 12.6667%;
	background: url(../img/common/footer_bgt.svg) center top / cover;
	pointer-events: none;
}
.footerIn{
	width: 100%;
	position: relative;
}

.toTop{
	width: min(9.8334%, 118px);
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 6%;/* 72px */
	margin-right: 3.3334%;/* 40px */
}

.btn_toTop{
	display: block;
	width: 100%;
	padding-top: 100%;
	position: relative;
}
.btn_toTop:before,
.btn_toTop:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.btn_toTop:before{
	width: 100%;
	height: 100%;
	background: url(../img/common/btn_toTop__line.svg) no-repeat center / contain;
	animation: 18s rotate linear infinite reverse;
}
.btn_toTop:after{
	width: 79.6611%;/* 94 */
	height: 79.6611%;/* 94 */
	background: url(../img/common/btn_toTop__txt.svg) no-repeat center / contain;
	animation: 18s rotate linear infinite;
}
.btn_toTop__icon{
	width: 20.3389%;/* 24px */
	height: 16.9492%;/* 20px */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: url(../img/common/arrow_t.svg) no-repeat center / contain;
	transition: .3s ease;
}

@media (hover: hover) and (pointer: fine){
	.btn_toTop:hover::before,
	.btn_toTop:hover::after{
		animation-play-state: paused;
	}
	.btn_toTop:hover .btn_toTop__icon{
		transform: translateY(-10%) scale(1.1);
	}
}


.footerIn{
	width: 100%;
}

.footerLogo{
	width: min(25%, 300px);
	width: 300px;
	margin: 0 auto;
}
.footerLogo a{
	display: block;
}
.footerLogo a img{
	width: 100%;
}


.footerContentWrap{
	width: min(100%, 1200px);
	padding: 0 min(8.3334%, calc(100px * var(--max-percent)));
	margin-top: 16px;
	margin-left: auto;
	margin-right: auto;
}
.footerContentWrap.-w100{
	width: 100%;
	padding: 0 3.3334%;
	margin-top: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.footerContentWrap .navLists{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footerContentWrap .navList{
	font-size: 24px;
	padding: 14px;
}


.footerBannerLists{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}
.footerBannerList{
	width: min(26%, 260px);
	width: 260px;
	padding: min(1%, 10px);
	padding: 10px;
}
.footerBannerList a{
	display: block;
}
.footerBannerList a img{
	width: 100%;
}

.copyright{
	font-size: 12px;
	padding-left: 2em;
	color: #FFF;
	font-weight: 500;
}






@media (hover: hover) and (pointer: fine){
/* footerLogo */
	.footerLogo a{
		transition: .3s ease;
	}
	.footerLogo a:hover{
		transform: scale(105%);
	}

/* footerContentWrap - navList */
	.footerContentWrap .navList__link{
		transition: .3s ease;
	}
	.footerContentWrap .navList__link:hover{
		color: var(--color-yellow);
	}

/* footerBanner */
	.footerBannerList a{
		transition: .3s ease;	
	}
	.footerBannerList a:hover{
		filter: brightness(1.15);
	}
}


@media screen and (max-width:767px){
	.footer{
		padding-top: var(--sp-size-120);
		padding-bottom: var(--sp-size-72);
	}
	.footer:after{
		padding-top: var(--sp-size-120);
		background-image: url(../img/common/footer_bgt-s.svg);
	}
	.toTop{
		right: 0;
		left: 0;
		margin-top: var(--sp-size-120);
		margin-right: auto;
		margin-left: auto;
		width: min(21.8667vw, 164px);
		z-index: 2;
	}
	.btn_toTop:after{
		width: min(17.8667vw, 134px);
		height: min(17.8667vw, 134px);
	}
	.btn_toTop__icon{
		width: min(22.078%, 34px);
		height: min(17.5325%, 27%);
	}

	.footerIn{
		padding-top: min(25.3334%, 190px);
	}
	.footerLogo{
		width: min(65.6%, 492px);
	}

	.footerContentWrap{
		padding: 0;
		margin-top: var(--sp-size-40);
	}
	.footerContentWrap.-w100{
		padding: 0;
		margin-top: var(--sp-size-48);
		display: block;
	}

	.footerContentWrap .navLists{
		width: 100%;
		padding: 0 var(--sp-size-16);
	}
	.footerContentWrap .navList{
		padding: var(--sp-size-16);
		font-size: var(--sp-size-34);
	}

	.footerBannerLists{
		margin-top: var(--sp-size-48);
		padding: 0 var(--sp-size-30);
	}
	.footerBannerList{
		width: 50%;
		padding: var(--sp-size-10);
	}
	.copyright{
		margin-top: var(--sp-size-72);
		padding-left: 0;
		font-size: var(--sp-size-20);
		letter-spacing: 0;
		text-align: center;
	}
}




/**
* SEASONNAV
**/
.seasonNavListsWrap.__footer{
	padding: 0;
	padding-right: 24px;
	position: relative;
}
.seasonNavListsWrap.__footer:after{
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 12px;
	width: 2px;
	background-color: #fff;
}
@media screen and (max-width:767px){
	.seasonNavListsWrap.__footer{
		padding-right: calc(32 / var(--vw-min) * 100vw);
	}
	.seasonNavListsWrap.__footer:after{
		top: calc(8 / var(--vw-min) * 100vw);
		bottom: calc(8 / var(--vw-min) * 100vw);
		right: calc(16 / var(--vw-min) * 100vw);
		width: calc(2 / var(--vw-min) * 100vw);
	}
}


/*-----------------------------------------------
 * Contents Common
-------------------------------------------------*/
/**
* comHead
**/
.comHead{
	width: 100%;
	padding-top: calc(255px + 13.75%);/* 255 + 165 */
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}
.comHead__logo{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	width: min(19.5834%, 235px);
	margin-top: 24px;
	margin-left: 1.6667%;/* 20px */
}
.comHead__logo a{
	display: block;
}
.comHead__logo a img{
	width: 100%;
}

@media (hover: hover) and (pointer: fine){
	.comHead__logo a{
		transition: .3s ease;
	}
	.comHead__logo a:hover{
		transform: scale(105%);
	}
}
.comHead:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #fff;
	z-index: 2;
}
.comHead:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 13.75%;
	background: url(../img/common/comHead_bg.svg) no-repeat center bottom / cover;
	z-index: 2;
}

.moviebg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
}
.moviebg:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-blue);
	mix-blend-mode: multiply;
}
.bg_ytplayer {
	position: absolute;
	top: calc(50% - 50vw);
	left: 0;
	width: 100%;
	height: 100vw;
	transition: .3s ease;
}
body.--yt-apmov-stop .bg_ytplayer{
	opacity: 0;
}

@media screen and (max-width:767px){
	.comHead{
		padding-top: min(56.3334%, 424px);
	}
	.comHead__logo{
		width: 0;
		height: 0;
		overflow: hidden;
		top: 0;
		left: 0;
		opacity: 0;
	}
	.comHead:after{
		padding-top: min(14.8%, 111px);
		background-image: url(../img/common/comHead_bg-s.svg);
	}
}


/**
* mainContents
**/
.mainContents{
	width: 100%;
	position: relative;
	padding-bottom: 64px;
}
body[data-page="top"] .mainContents{
	padding-top: 48px;
	margin-top: -48px;
}
.content{
	width: 100%;
	max-width: var(--max-width);
	padding: 80px min(8.3334%, calc(100px * var(--max-percent))) 64px;
	position: relative;
	z-index: 3;
	margin-left: auto;
	margin-right: auto;
}
body[data-page="top"] .content{
	padding-top: 48px;
	padding-bottom: 48px;
}
@media screen and (max-width:767px){
	.mainContents{
		padding-bottom: var(--sp-size-96);
	}
	body[data-page="top"] .mainContents{
		padding-top: var(--sp-size-48);
		margin-top: calc(var(--sp-size-48) * -1);
	}
	.content{
		padding: var(--sp-size-72) 0 var(--sp-size-80);
	}
	body[data-page="top"] .content{
		padding-top: var(--sp-size-48);
		padding-bottom: var(--sp-size-48);
	}
}

/*
 * cont_h2
 */
.cont_h2{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	line-height: 1;
	padding: 58px 0;
	margin-bottom: 13.75vw;/* 165px */
}
body[data-page="top"] .cont_h2{
	margin-bottom: 32px;
}
.cont_h2::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 54px;
	height: 100%;
	margin: auto;
	background: url(../img/common/cont_h2_sword.svg) no-repeat center / contain;
	opacity: 40%;
}
body[data-page="top"] .cont_h2::before{
	background-image: url(../img/common/cont_h2_sword_bl.svg);
}
.cont_h2__line{
	width: 100%;
	height: 9px;
	display: flex;
	align-items: center;
	position: relative;
}
.cont_h2__line:before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 33px;
	height: 100%;
	background-repeat: no-repeat;
	background-size: contain;
}
.cont_h2__line span{
	width: 100%;
	height: 2px;
	position: relative;
	margin: auto 0;
}
.cont_h2__line span::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(#fff, #fff);
	background-repeat: no-repeat;
	background-size: 0% 100%;
}
body[data-page="top"] .cont_h2__line span::before{
	background-image: linear-gradient(var(--color-blue), var(--color-blue));
}

/* cont_h2__line.-l */
.cont_h2__line.-l:before{
	right: 0;
	background-image: url(../img/common/cont_h2__line_l.svg);
	background-position: right center;
}
body[data-page="top"] .cont_h2__line.-l:before{
	background-image: url(../img/common/cont_h2__line_l_bl.svg);
}
.cont_h2__line.-l span{
	padding-right: 20px;
}
.cont_h2__line.-l span::before{
	background-position:  right bottom;
}

/* cont_h2__line.-r */
.cont_h2__line.-r:before{
	left: 0;
	background-image: url(../img/common/cont_h2__line_r.svg);
	background-position: left center;
}
body[data-page="top"] .cont_h2__line.-r:before{
	background-image: url(../img/common/cont_h2__line_r_bl.svg);
}
.cont_h2__line.-r span{
	padding-left: 20px;
}
.cont_h2__line.-r span::before{
	background-position:  left bottom;
}


.cont_h2__txt_eng{
	display: inline-block;
	flex-shrink: 0;
	padding: 0 40px;
	font-family: var(--font-eng);
	font-size: 60px;
	line-height: 1;
	position: relative;
	z-index: 2;
	background: linear-gradient(#fff, #fff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
body[data-page="top"] .cont_h2__txt_eng{
	background: linear-gradient(#0d97c6, #1eb9ee);
	-webkit-background-clip: text;
	background-clip: text;
}


.cont_h2__txt_ja{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto auto 24px;
	text-align: center;
	font-size: 18px;
	line-height: 1.3334;
	font-weight: 700;
	color: var(--color-blue);
}
.cont_h2__txt_ja span{
	display: inline-block;
	background-color: #FFF;
	padding: 0 20px;
	clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
}

body[data-page="top"] .cont_h2__txt_ja{
	color: #FFF;
}
body[data-page="top"] .cont_h2__txt_ja span{
	background-color: var(--color-blue);
}

/* scrAni & loadAni */
.cont_h2::before{
	opacity: 0;
	transform: translateY(-40%);
	transition: .4s cubic-bezier(.52,.26,.14,1);
}
.cont_h2__txt_eng{
	opacity: 0;
	transform: translateY(20%);
	transition: .4s cubic-bezier(.24,.36,.13,1.14) .4s;
}
.cont_h2__txt_ja{
	opacity: 0;
	transform: translateY(15%);
	transition: .4s cubic-bezier(.24,.36,.13,1.14) .4s;
}
.cont_h2__line:before{
	opacity: 0;
	transition: .3s ease .5s;
}
.cont_h2__line span::before{
	transition: background-size .4s ease .6s;
}

.cont_h2.is-ani::before{
	opacity: 40%;
	transform: translateY(0%);
}
.cont_h2.is-ani .cont_h2__line:before{
	opacity: 1;
}
.cont_h2.is-ani .cont_h2__line span::before{
	background-size: 100% 100%;
}
.cont_h2.is-ani .cont_h2__txt_ja,
.cont_h2.is-ani .cont_h2__txt_eng{
	opacity: 1;
	transform: translateY(0%);
}


@media screen and (max-width:767px){
	.cont_h2{
		padding: var(--sp-size-56) 0 var(--sp-size-88);
		margin-bottom: min(19.2%, 144px);
	}
	body[data-page="top"] .cont_h2{
		margin-bottom: var(--sp-size-32);
	}
	.cont_h2::before{
		width: min(11.2vw, 84px);
	}
	.cont_h2__line{
		height: var(--sp-size-10);
	}
	.cont_h2__line:before{
		width: min(4.5334vw, 34px);
		height: var(--sp-size-10);
	}
	.cont_h2__line span{
		height: var(--sp-size-2);
	}
	.cont_h2__line.-r span{
		padding-left: var(--sp-size-20);
	}
	.cont_h2__txt_eng{
		padding: 0 var(--sp-size-40);
		font-size: var(--sp-size-80);
	}
	.cont_h2__txt_ja{
		font-size: var(--sp-size-24);
		margin-bottom: var(--sp-size-36);
	}
	.cont_h2__txt_ja span{
		padding: 0 var(--sp-size-32);
		clip-path: polygon(var(--sp-size-12) 0%, calc(100% - var(--sp-size-12)) 0%, 100% 50%, calc(100% - var(--sp-size-12)) 100%, var(--sp-size-12) 100%, 0% 50%);
	}
}


/*
 * contentIn
 */
.contentIn{
	width: 100%;
	position: relative;
}
@media screen and (max-width:767px){
	.contentIn{
		padding: 0 min(5.3334%, 40px);
	}
	.contentIn.-s_w100 {
		padding: 0;
	}
}


/**
* pagenaviWrap
**/
.wp-pagenaviWrap{
	width: 100%;
	z-index: 3;
	position: relative;
}
.wp-pagenavi{
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
}
.previouspostslink,
.nextpostslink{
	position: absolute;
	text-decoration: none;
	width: 100px;
	line-height: 0.82143;
	font-family: var(--font-eng);
	font-size: 20px;
	padding-bottom: 9px;
	pointer-events: none;
}
.previouspostslink:before,
.nextpostslink:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 9px;
	background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 22%, #FFF 22%, #FFF 56%, var(--color-blue) 56%, var(--color-blue) 100%);
}
.previouspostslink .pager_txt,
.nextpostslink .pager_txt{
	display: inline-block;
	position: relative;
	pointer-events: auto;
	color: var(--color-blue);
}

.previouspostslink{
	left: 0;
	text-align: right;
}
.previouspostslink .pager_txt{
	padding-left: 22px;
}
.previouspostslink .pager_txt:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 12px;
	height: 16px;
	margin: auto 0;
	-webkit-mask: url(../img/common/arrow_l.svg) no-repeat left center / contain;
	mask: url(../img/common/arrow_l.svg) no-repeat left center / contain;
	background-color: var(--color-blue);
}

.nextpostslink{
	right: 0;
}
.nextpostslink .pager_txt{
	padding-right: 22px;
}
.nextpostslink .pager_txt:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 16px;
	margin: auto 0;
	-webkit-mask: url(../img/common/arrow_r.svg) no-repeat left center / contain;
	mask: url(../img/common/arrow_r.svg) no-repeat left center / contain;
	background-color: var(--color-blue);
}

.wp-pagenavi span.current,
.wp-pagenavi a.page{
	flex-shrink: 0;
	margin: 0 15px;
	padding: 10px 6px;
	text-decoration: unset;
	position: relative;
	font-weight: 500;
	color: #000;
}
.wp-pagenavi span.current:before,
.wp-pagenavi a.page:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0%;
	margin: 0 auto;
	height: 1px;
	background-color: var(--color-blue);
}
.wp-pagenavi span.current:before{
	width: 100%;
}

@media (hover: hover) and (pointer: fine){
	.previouspostslink .pager_txt:before,
	.nextpostslink .pager_txt:before{
		transition: .3s ease;
	}
	.previouspostslink:hover .pager_txt::before{
		transform: translateX(-50%);
	}
	.nextpostslink:hover .pager_txt::before{
		transform: translateX(50%);
	}
	.wp-pagenavi a.page:before{
		transition: .3s ease;
	}
	.wp-pagenavi a.page:hover::before{
		width: 80%;
	}
}
@media screen and (max-width:767px){
	.wp-pagenavi{
		justify-content: space-between;
	}
	.previouspostslink,
	.nextpostslink{
		position: relative;
		width: min(18.6667vw, 140px);
		font-size: var(--sp-size-36);
		padding-bottom: min(1.2vw, 9px);
	}
	.previouspostslink:before,
	.nextpostslink:before{
		height: min(1.2vw, 9px);
	}
	.previouspostslink .pager_txt{
		padding-left: min(5.8667vw, 44px);
	}
	.nextpostslink .pager_txt{
		padding-right: min(5.8667vw, 44px);
	}
	.previouspostslink .pager_txt:before,
	.nextpostslink .pager_txt:before{
		width: var(--sp-size-24);
		height: var(--sp-size-30);
	}
	.nextpostslink{
		margin-left: auto;
	}

	.wp-pagenavi span.current,
	.wp-pagenavi a.page{
		display: none;
	}
}




/**
* com_linkBox
**/
.com_linkBox{
	position: relative;
	z-index: 3;
	text-align: center;
}
.com_linkBox__link{
	display: inline-block;
	min-width: 220px;
	text-align: center;
	padding: 4px;
	position: relative;
	margin: 0 auto;
}
.com_linkBox__link:before,
.com_linkBox__txtWrap:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0% 10px);
	background-color: var(--color-blue);
}
.com_linkBox__link:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0% 9px);
	background-color: #fff;
}
.com_linkBox__txtWrap{
	width: 100%;
	position: relative;
	z-index: 2;
}
.com_linkBox__txtWrap:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0% 8px);
	background-color: #fff;
}
.com_linkBox__txt{
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	padding: 14px 40px;
	position: relative;
	z-index: 2;
	color: var(--color-blue);
	font-size: 20px;
}
.com_linkBox__txt.-eng{
	font-family: var(--font-eng);
}
.com_linkBox__txt span{
	display: inline-block;
	position: relative;
}
.com_linkBox__txt span:before,
.com_linkBox__txt span:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.com_linkBox__txt span.-al{
	padding-left: 24px;
}
.com_linkBox__txt span.-al:before{
	width: 14px;
	height: 16px;
	left: 0;
	-webkit-mask: url(../img/common/arrow_l.svg) no-repeat center right / contain;
	mask: url(../img/common/arrow_l.svg) no-repeat center right / contain;
	background-color: var(--color-blue);
}

.com_linkBox__txt span.-ar{
	padding-right: 24px;
}
.com_linkBox__txt span.-ar:before{
	width: 14px;
	height: 16px;
	right: 0;
	-webkit-mask: url(../img/common/arrow_r.svg) no-repeat center right / contain;
	mask: url(../img/common/arrow_r.svg) no-repeat center right / contain;
	background-color: var(--color-blue);
}

@media (hover: hover) and (pointer: fine){
	.com_linkBox__txtWrap:after{
		transition: .3s ease;
	}
	.com_linkBox__link:hover .com_linkBox__txtWrap:after{
		opacity: 0;
	}
	.com_linkBox__txt{
		transition: .3s ease;
	}
	.com_linkBox__link:hover .com_linkBox__txt{
		color: #FFF;
	}
	.com_linkBox__txt span:before,
	.com_linkBox__txt span:after{
		transition: .3s ease;
	}
	.com_linkBox__link:hover .com_linkBox__txt span.-al:before{
		transform: translateX(-50%);
		background-color: #fff;
	}
	.com_linkBox__link:hover .com_linkBox__txt span.-ar:before{
		transform: translateX(50%);
		background-color: #fff;
	}
}

@media screen and (max-width:767px){
	.com_linkBox__link{
		min-width: min(48vw, 360px);
		padding: var(--sp-size-8);
	}
	.com_linkBox__link:before,
	.com_linkBox__txtWrap:before{
		clip-path: polygon(var(--sp-size-10) 0, calc(100% - var(--sp-size-10)) 0, 100% var(--sp-size-10), 100% calc(100% - var(--sp-size-10)), calc(100% - var(--sp-size-10)) 100%, var(--sp-size-10) 100%, 0 calc(100% - var(--sp-size-10)), 0% var(--sp-size-10));
	}
	.com_linkBox__link:after{
		top: var(--sp-size-2);
		left: var(--sp-size-2);
		right: var(--sp-size-2);
		bottom: var(--sp-size-2);
		clip-path: polygon(var(--sp-size-9) 0, calc(100% - var(--sp-size-9)) 0, 100% var(--sp-size-9), 100% calc(100% - var(--sp-size-9)), calc(100% - var(--sp-size-9)) 100%, var(--sp-size-9) 100%, 0 calc(100% - var(--sp-size-9)), 0% var(--sp-size-9));
	}
	.com_linkBox__txtWrap:after{
		clip-path: polygon(var(--sp-size-8) 0, calc(100% - var(--sp-size-8)) 0, 100% var(--sp-size-8), 100% calc(100% - var(--sp-size-8)), calc(100% - var(--sp-size-8)) 100%, var(--sp-size-8) 100%, 0 calc(100% - var(--sp-size-8)), 0% var(--sp-size-8));
	}
	.com_linkBox__txt{
		font-size: var(--sp-size-36);
		padding: var(--sp-size-30) var(--sp-size-64);
	}
	.com_linkBox__txt span.-al{
		padding-left: var(--sp-size-40);
	}
	.com_linkBox__txt span.-al:before{
		width: var(--sp-size-24);
		height: var(--sp-size-30);
	}
	.com_linkBox__txt span.-ar{
		padding-right: var(--sp-size-40);
	}
	.com_linkBox__txt span.-ar:before{
		width: var(--sp-size-24);
		height: var(--sp-size-30);
	}
}




/**
* Comment
**/
#commentModal .oneModalIn__cont{
	width: 100%;
}
.commentContWrap{
	width: 100%;
	max-width: var(--max-width);
	padding: 50px min(8.3334%, calc(100px * var(--max-percent)));
	margin: 0 auto;
}
.comment_h2{
	font-family: var(--font-eng);
	color: #FFF;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 30px;
}
#js-commentModalCont{
	display: flex;
	width: 100%;
}
.commentCont{
	width: 100%;
	color: #FFF;
}
.commentCont__h3{
	display: inline-flex;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	flex-wrap: wrap;
	align-items: flex-end;
}
.commentCont__h3_job{
	font-size: 75%;
}
.commentCont__txt{
	margin-top: 40px;
	line-height: 2;
	font-weight: 500;
}


.commentCont__img{
	order: -1;
	flex-shrink: 0;
	width: 30%;
	padding-right: 5%;
}
.commentCont__img img{
	max-width: 100%;
}

@media screen and (max-width:767px){
	.commentContWrap{
		padding: var(--sp-size-64) var(--sp-size-40);
	}
	.comment_h2{
		font-size: var(--sp-size-40);
		margin-bottom: var(--sp-size-40);
		text-align: center;
	}
	#js-commentModalCont{
		flex-direction: column;
	}
	.commentCont__h3{
		display: flex;
		justify-content: center;
		font-size: var(--sp-size-40);
		line-height: 1.5;
	}
	.commentCont__h3_name{
		text-align: center;
	}
	.commentCont__txt{
		margin-top: var(--sp-size-56);
	}

	.commentCont__img{
		width: min(59.7015%, 400px);
		padding-right: 0;
		margin: 0 auto var(--sp-size-48);
	}
}



/* option -imgOnly */
@media screen and (min-width: 768px){
	#js-commentModalCont.-imgOnly{
		flex-direction: column;
	}
	#js-commentModalCont.-imgOnly .commentCont__img{
		order: unset;
		width: 100%;
		padding-right: 0;
	}
	#js-commentModalCont.-imgOnly .commentCont__imgIn{
		width: 80%;
		margin: 0 auto;
		text-align: center;
	}
	#js-commentModalCont.-imgOnly .commentCont{
		margin-top: 48px;
	}
	#js-commentModalCont.-imgOnly .commentCont__h3{
		display: flex;
		justify-content: center;
	}
}
@media screen and (max-width:767px){
	#js-commentModalCont.-imgOnly .commentCont__img,
	#js-commentModalCont.-imgOnly .commentCont__imgIn{
		width: 100%;
	}
	#js-commentModalCont.-imgOnly .commentCont__imgIn{
		text-align: center;
	}
}


/**
* com_border
**/
.com_borderWrap{
	display: inline-block;
	padding: 4px;
	position: relative;
	line-height: 0;
}
.com_borderWrap:before,
.com_borderIn:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0% 10px);
	background-color: var(--color-blue);
}
.com_borderWrap:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0% 9px);
	background-color: #fff;
}
.com_borderIn{
	width: 100%;
	padding-top: 100%;
	position: relative;
	z-index: 2;
	clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0% 10px);
}
.com_borderCont{
	display: inline-block;
	padding: 2px;
	clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0% 10px);
	left: 3px;
	right: 3px;
	bottom: 2px;
	top: 2px;
	position: absolute;
}
@media screen and (max-width:767px){
	.com_borderWrap{
		padding: var(--sp-size-4);
	}
	.com_borderWrap:before{
		clip-path: polygon(var(--sp-size-10) 0, calc(100% - var(--sp-size-10)) 0, 100% var(--sp-size-10), 100% calc(100% - var(--sp-size-10)), calc(100% - var(--sp-size-10)) 100%, var(--sp-size-10) 100%, 0 calc(100% - var(--sp-size-10)), 0% var(--sp-size-10));
	}
	.com_borderIn:before{
		clip-path: polygon(var(--sp-size-10) 0, calc(100% - var(--sp-size-10)) 0, 100% var(--sp-size-10), 100% calc(100% - var(--sp-size-10)), calc(100% - var(--sp-size-10)) 100%, var(--sp-size-10) 100%, 0 calc(100% - var(--sp-size-10)), 0% var(--sp-size-10));
	}
	.com_borderIn{
		clip-path: polygon(var(--sp-size-10) 0, calc(100% - var(--sp-size-10)) 0, 100% var(--sp-size-10), 100% calc(100% - var(--sp-size-10)), calc(100% - var(--sp-size-10)) 100%, var(--sp-size-10) 100%, 0 calc(100% - var(--sp-size-10)), 0% var(--sp-size-10));
	}
	.com_borderWrap:after{
		top: var(--sp-size-2);
		left: var(--sp-size-2);
		right: var(--sp-size-2);
		bottom: var(--sp-size-2);
		clip-path: polygon(var(--sp-size-9) 0, calc(100% - var(--sp-size-9)) 0, 100% var(--sp-size-9), 100% calc(100% - var(--sp-size-9)), calc(100% - var(--sp-size-9)) 100%, var(--sp-size-9) 100%, 0 calc(100% - var(--sp-size-9)), 0% var(--sp-size-9));
	}
	.com_borderCont{
		padding: var(--sp-size-2);
		left: var(--sp-size-2);
		right: var(--sp-size-2);
		top: var(--sp-size-2);
		bottom: var(--sp-size-2);
		clip-path: polygon(var(--sp-size-10) 0, calc(100% - var(--sp-size-10)) 0, 100% var(--sp-size-10), 100% calc(100% - var(--sp-size-10)), calc(100% - var(--sp-size-10)) 100%, var(--sp-size-10) 100%, 0 calc(100% - var(--sp-size-10)), 0% var(--sp-size-10));
	}
}