@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
:root{
	/* font-family */
	--font-serif: source-han-serif-japanese, serif; /* 400,500,700 */
	--font-pagenini: paganini, serif; /* 400,700 */

	/* color */
	--color-light-blue: #58ffff;
	--color-blue: #0028a4;
	--color-yellow: #fdd000;

	--color-gradation-blue: linear-gradient(to top, rgb(0,0,0) 0%, rgb(0,40,164) 100%);

	/* sp-size */
	--sp-size-2: min(0.2667vw, 2px);
	--sp-size-4: min(0.5334vw, 4px);
	--sp-size-8: min(1.0667vw, 8px);
	--sp-size-10: min(1.3334vw, 10px);
	--sp-size-12: min(1.6vw, 12px);
	--sp-size-16: min(2.1334vw, 16px);
	--sp-size-20: min(2.6667vw, 20px);
	--sp-size-24: min(3.2vw, 24px);
	--sp-size-26: min(3.4667vw, 26px);
	--sp-size-28: min(3.7334vw, 28px);
	--sp-size-30: min(4vw, 30px);
	--sp-size-32: min(4.2667vw, 32px);
	--sp-size-36: min(4.8vw, 36px);
	--sp-size-40: min(5.3334vw, 40px);
	--sp-size-48: min(6.4vw, 48px);
	--sp-size-56: min(7.4667vw, 56px);
	--sp-size-64: min(8.5334vw, 64px);
	--sp-size-72: min(9.6vw, 72px);
	--sp-size-80: min(10.6667vw, 80px);
	--sp-size-96: min(12.8vw, 96px);
	--sp-size-192: min(25.6vw, 192px);
}
body{
	-webkit-text-size-adjust: 100%;
	background-color: #000;
	color: #FFF;
	font-family: source-han-serif-japanese, serif;
	font-feature-settings: "palt";
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #FFF; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #0028a4;
	color: #fff;
}
::-moz-selection{
	background: #0028a4;
	color:#fff;
}
@media screen and (max-width:767px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}

/* ScrollBar Setting */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
  background: #222;
}
::-webkit-scrollbar-thumb {
	background: var(--color-light-blue);
	border-radius: 2px;
	margin: 2px;
	box-shadow: none;
}
html{
	scrollbar-color: var(--color-light-blue) #222;
	scrollbar-width: thin;
}


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

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,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;
}

/* 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: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	overflow: hidden;
}
@media screen and (max-width:767px){
	.closeBtn{
		width: var(--sp-size-96);
		height: var(--sp-size-96);
	}
}
.closeBtn a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-mask: url(../img/common/icon/icon_close.svg) no-repeat 0 0 / 100%;
	mask: url(../img/common/icon/icon_close.svg) no-repeat 0 0 / 100%;
	background-color: #fff;
	transition: .3s ease;
}
.closeBtn a:hover{
	transform: rotate(90deg);
	background-color: var(--color-light-blue);
}

/**
 * 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 */
#imgModal .oneModalIn__cont{
	width: 100%;
}
.modalImgWrap{
	width: 66.6667%;
	max-width: 800px;
	margin: 0 auto;
	height: calc(100vh - 200px);
	height: calc(100svh - 200px);
	position: relative;
}
.modalImgIn{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.modalImgIn img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: scale-down;
}
@media screen and (max-width: 768px){
	.modalImgWrap{
		width: 93.6%;
	}
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 999;
}

/* inner */
.header__inner {
	position: sticky;
	top: 0;
	height: max(100vh, 640px);
	max-height: 100%;
	display: flex;
	flex-direction: column;
}
.header_logo{
	width: min(19.5%, 234px);
	padding-top: 34px;
	margin-left: min(3.3334%, 40px);
}
.header_logo a{
	display: block;
	pointer-events: auto;
	transition: .3s ease;
}
.header_logo a img{
	width: 100%;
}
@media screen and (min-width: 768px){
	.header_logo a:hover{
		filter: brightness(120%);
	}
}

@media screen and (max-width:767px){
	.header__inner {
		-webkit-overflow-scrolling: touch;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		min-height: 100vh;
		min-height: 100dvh;
		overflow: auto;
		overflow-x: hidden;
		top: 0;
		left: 0;
		padding: var(--sp-size-48) 0 var(--sp-size-96);
		opacity: 0;
		pointer-events: none;
		z-index: 1;
		transition: opacity .5s ease-in-out;
		background-color: rgba(0,0,0,.8);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		overscroll-behavior-y: contain;
		transform: translateX(100%);
		transition: .3s ease;
	}
	.header.is-active .header__inner {
		opacity: 1;
		transform: translateX(0%);
		pointer-events: auto;
	}

	.header_logo{
		position: relative;
		width: min(51.3334%, 385px);
		padding-top: 0;
		margin-left: auto;
		margin-right: auto;
	}
}

/**
 * headerNav
 */
.headerNav{
	padding-top: 80px;
	padding-bottom: 44px;
}
.headerNavLists__item{
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}
.headerNavLists__item:not(:last-child){
	margin-bottom: 20px;
}
.headerNavLists__item a{
	display: inline-block;
	padding-left: calc(min(3.3334%, 40px) * 1.25);
	text-decoration: none;
	font-weight: 700;
	color: #FFF;
	pointer-events: auto;
	position: relative;
	transition: .3s ease;
}
.headerNavLists__item a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(var(--color-light-blue) , var(--color-light-blue)) right center/ 0 100% no-repeat;
	transition: background-size .3s ease;
}
.headerNavLists__item a:hover,
.headerNavLists__item a.is-active{
	color: #000;
}
.headerNavLists__item a:hover:before,
.headerNavLists__item a.is-active:before{
	background-size: 100% 100%;
	background-position: left center;
}
.headerNavLists__item a span{
	display: inline-block;
	position: relative;
}
.headerNavLists__item a span:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	z-index: -1;
}
.header_xlink,
.header_snsLists{
	margin-top: auto;
	margin-bottom: 42px;
}
.header_xlink_link:after,
.header_snslink:after {
	content: '';
	position: absolute;
	right: -32px;
	bottom: 1px;
	width: 16px;
	transform: scale(1.25,1);
	height: 16px;
}
.header_xlink_link:after{
	background: url(../img/common/icon/icon_tw.svg) no-repeat center / contain;
}
.header_insta_link:after{
	background: url(../img/common/icon/icon_insta.svg) no-repeat center / contain;
}
.header_tiktok_link:after{
	background: url(../img/common/icon/icon_tiktok.svg) no-repeat center / contain;
}

@media screen and (max-width:767px){
	.headerNav {
		position: relative;
		z-index: 1;
		padding-top: var(--sp-size-80);
		padding-bottom: var(--sp-size-48);
	}
	.headerNavLists__item{
		font-size: var(--sp-size-32);
	}
	.headerNavLists__item:not(:last-child){
		margin-bottom: var(--sp-size-64);
	}
	.headerNavLists__item a {
		width: 100%;
		color: #fff;
		text-align: center;
		padding: 0;
		opacity: 0;
		transition: .75s ease;
		transform: translateY(200%) rotateX(90deg);
	}
	.header.is-active .headerNavLists__item a {
		opacity: 1;
		transform: translateY(0%) rotateX(0deg);
	}

	/* headerNavLists__item */
	.header.is-active .headerNavLists__item:nth-of-type(1) a{
		transition-delay: .4s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(2) a{
		transition-delay: .5s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(3) a{
		transition-delay: .6s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(4) a{
		transition-delay: .7s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(5) a{
		transition-delay: .8s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(6) a{
		transition-delay: .9s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(7) a{
		transition-delay: 1s;
	}
   	.header.is-active .headerNavLists__item:nth-of-type(8) a{
		transition-delay: 1.1s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(9) a{
		transition-delay: 1.2s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(10) a{
		transition-delay: 1.3s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(11) a{
		transition-delay: 1.4s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(12) a{
		transition-delay: 1.5s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(13) a{
		transition-delay: 1.6s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(14) a{
		transition-delay: 1.7s;
	}
	.header.is-active .headerNavLists__item:nth-of-type(15) a{
		transition-delay: 1.8s;
	}

	.header.is-active .header_xlink.headerNavLists__item a{
		transition-delay: .9s;
	}



	.header_xlink,
	.header_snsLists{
		margin-bottom: 0;
	}
	.header_snsLists{
		padding-top: var(--sp-size-80);
	}
	.header_xlink_link:after,
	.header_snslink:after{
		content: unset;
	}
	.header_xlink_link span,
	.header_snslink span{
		position: relative;
	}
	.header_snslink span:after{
		content: '';
		position: absolute;
		right: calc(var(--sp-size-64) * -1);
		bottom: calc(var(--sp-size-4) * -1);
		width: var(--sp-size-40);
		transform: scale(1.25,1);
		height: var(--sp-size-40);
		background-color: #fff;
	}
	.header_xlink_link span:after {
		-webkit-mask: url(../img/common/icon/icon_tw.svg) no-repeat center / contain;
		mask: url(../img/common/icon/icon_tw.svg) no-repeat center / contain;
	}
	.header_insta_link span:after {
		-webkit-mask: url(../img/common/icon/icon_insta.svg) no-repeat center / contain;
		mask: url(../img/common/icon/icon_insta.svg) no-repeat center / contain;
	}
	.header_tiktok_link span:after {
		-webkit-mask: url(../img/common/icon/icon_tiktok.svg) no-repeat center / contain;
		mask: url(../img/common/icon/icon_tiktok.svg) no-repeat center / contain;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:767px){
	.header__navBtnWrap {
		width: var(--sp-size-96);
		height: var(--sp-size-96);
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 2;
		pointer-events: auto;
		overflow: hidden;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
		background-color: var(--color-light-blue);
	}
	.header__navBtn:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 0%;
		background-color: var(--color-yellow);
		transition: .3s ease;
	}
	.header__navBtn__lineWrap {
		width: 50%;
		height: var(--sp-size-16);
		position: relative;
		margin: var(--sp-size-24) auto 0;
		position: absolute;
		top: 0;
	}
	.header__navBtn--line {
		background-color: #000;
		display: block;
		width: 100%;
		height: 2px;
		margin: auto;
		position: absolute;
		transition: .3s ease;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: 100%;
	}
	.header__navBtn--line:nth-child(2) {
		bottom: 0;
		top: 100%;
	}
	.header__navBtn__textWrap{
		position: absolute;
		left: 0;
		bottom: 0;
		margin-bottom: var(--sp-size-20);
		text-align: center;
		line-height: 1;
		font-size: var(--sp-size-20);
		color: #000;
		font-weight: 700;
	}
	.header__navBtn__text{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		opacity: 0;
		transform: translateX(25%);
		transition: opacity .3s ease, transform .3s ease;
	}
	.header__navBtn__text.--menu{
		opacity: 1;
		transform: translateX(0%);
	}

	/* active */
	.header__navBtn.is-active:before {
		width: 100%;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		top: 50%;
		bottom: 50%;
		transform: rotate(15deg);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		bottom: 50%;
		top: 50%;
		transform: rotate(-15deg);
	}

	.header__navBtn.is-active .header__navBtn__text.--menu{
		opacity: 0;
		transform: translateX(-25%);
	}
	.header__navBtn.is-active .header__navBtn__text.--close{
		opacity: 1;
		transform: translateX(0%);
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
	display: flex;
}

/* item */
.shareLists__item {
	width: 44px;
	height: 20px;
	padding: 0 12px;
}
@media screen and (max-width: 767px){
	.shareLists__item {
		width: var(--sp-size-96);
		height: var(--sp-size-48);
		padding: 0 var(--sp-size-24);
	}
}

/* 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: #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;
}
.shareLists__link:hover:before {
	background-color: var(--color-light-blue);
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
	mask-image: url(../img/common/icon/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon/icon_fb.svg);
	mask-image: url(../img/common/icon/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon/icon_line.svg);
	mask-image: url(../img/common/icon/icon_line.svg);
}


/* 長体テキスト */
.narrow{
	transform: scale(0.8, 1);
	transform-origin: 0 0;
	width: 125%;
	font-family: var(--font-pagenini);
}
span.narrow{
	display: inline-block;
}

/* ICON PLAY */
.icon_play{
	position:absolute;
	display:block;
	top:50%;
	left:50%;
	width:64px;
	height:64px;
	margin-left:-32px;
	margin-top:-32px;
	z-index: 2;
}
.icon_play:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border:1px solid rgba(255,255,255,.4);
	border-radius:50%;
}
.play-circle{
	position:absolute;
	left:0;
	width:100%;
	top:0;
	height:100%;
	display:block;
	transform:rotate(180deg);
}
.play-circle circle{
	fill:transparent;
	stroke:#FFF;
	stroke-width:1px;
	stroke-dasharray:0 255;
	transition:all 0.3s linear;
}
.btn_movieplay:hover .play-circle circle{
	stroke-dasharray:255 255;
}

.arrows{
	left:-1px;
	top:-1px;
	width:calc(100% + 2px);
	height:calc(100% + 2px);
	position:absolute;
}
.arrows__rod{
	display:block;
	bottom:50%;
	right:34.375%; /* 22px */
	width:93.75%; /* 60px */
	height:12.5%; /* 8px */
	position:absolute;
	background:url(../img/common/icon/icon_arrow_r.svg) no-repeat right bottom / contain;
	transition:all .3s ease;
}
.btn_movieplay:hover .arrows__rod{
	transition-delay:0s;
	transform:translateX(10px);
}
.arrows__tri1{
	position:absolute;
	display:block;
	left:25%; /* 16px */
	bottom:7.8126%; /* 5px */
	height:84.375%; /* 54px */
	width:1px;
	background:rgba(255,255,255,.4);
}
.arrows__tri1:before{
	content:'';
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height:0;
	background:#FFF;
	transition:all 0.3s linear;
}
.btn_movieplay:hover .arrows__tri1:before{
	height:100%;
}
.arrows__tri2{
	position:absolute;
	left:25%; /* 16px */
	top:6.25%; /* 4px */
	transform-origin:left top;
	height:1px;
	width:84.375%; /* 54px */
	background:rgba(255,255,255,.4);
	transform:rotate(30deg);
}
.arrows__tri2:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	width:0;
	background:#FFF;
	transition:all 0.3s linear;
}
.btn_movieplay:hover .arrows__tri2:before{
	width:100%;
}
.arrows__tri3{
	position:absolute;
	left:25%; /* 16px */
	bottom:6.25%; /* 4px */
	transform-origin:left bottom;
	height:1px;
	width:84.375%; /* 54px */
	background:rgba(255,255,255,.4);
	transform:rotate(-30deg);
}
.arrows__tri3:before{
	content:'';
	position:absolute;
	right:0;
	top:0;
	bottom:0;
	width:0;
	background:#FFF;
	transition:all 0.3s linear;
}
.btn_movieplay:hover .arrows__tri3:before{
	width:100%;
}


/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer{
	width: 100%;
	padding: 80px 0;
	background-color: #000;
	position: relative;
	z-index: 2;
}
.footerIn{
	width: 100%;
}
.shareLists{
	display: flex;
	justify-content: center;
	align-items: center;
}
.shareLists dt{
	width: auto;
	flex-shrink: 0;
	padding-right: calc(12px * 1.25);
	line-height: 1;
	font-size: 16px;
	font-weight: 700;
	margin-right: -1em;
}
.footer_bannerLists{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 80px;
}
.footer_bannerList{
	width: 280px;
	padding: 0 20px;
}
.footer_bannerList a{
	display: block;
	transition: .3s ease;
}
.footer_bannerList a img{
	width: 100%;
}
.footer_bannerList a:hover{
	filter: brightness(150%);
}

.footer_anxInfo{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 80px;
	position: relative;
}
.footer_anxLists{
	padding: 0 calc(3.334% * 1.25);
	display: flex;
	width: auto;
	flex-shrink: 0;
	/* width: 38.3334%; */
	width: calc(3.334% * 2 + 390px);
}
.footer_anxList{
	flex-shrink: 0;
	padding: 0 calc(24px * 1.25);
}
.footer_anxList:first-child{
	padding-left: 0;
	margin-right: calc(24px * 1.25);
}
.footer_anxList:last-child{
	padding-right: 0;
}
.logo_anx{
	width: calc(116px * 1.25);
	padding-top: 33px;
	position: relative;
}
.logo_anx a{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-mask: url(../img/common/logo/logo_aniplex.svg) no-repeat center / contain;
	mask: url(../img/common/logo/logo_aniplex.svg) no-repeat center / contain;
	transform: scale(1.25, 1);
	background-color: #fff;
	transition: background-color .3s ease;
}
.logo_anx a:hover{
	background-color: var(--color-light-blue);
}
.anx_txtlink{
	line-height: 0.8;
	display: flex;
	align-items: center;
	position: relative;
}
.anx_txtlink:not(:last-child):after{
	content: '';
	position: absolute;
	top: 0.45em;
	bottom: 0.45em;
	right: 0;
	width: calc(1px * 1.25);
	background-color: rgba(255,255,255,.4);
}
.anx_txtlink a{
	display: block;
	text-decoration: none;
	transition: color .3s ease;
	font-weight: 700;
}
.anx_txtlink a:hover{
	color: var(--color-light-blue);
}

.footer_sitecaution{
	padding: 0 3.334%;
	opacity: 40%;
	font-size: 12px;
	line-height: 2;
}
.copyright{
	font-size: 12px;
	line-height: 1;
	margin-top: 80px;
	text-align: center;
}

@media screen and (max-width: 767px){
	.footer{
		padding: var(--sp-size-96) 0;
	}
	.shareLists dt{
		font-size: var(--sp-size-24);
		padding-right: calc(var(--sp-size-24) * 1.25);
	}
	.footer_bannerLists{
		margin-top: var(--sp-size-96);
		flex-wrap: wrap;
		margin-top: var(--sp-size-72);
		justify-content: center;
		padding: 0 var(--sp-size-24);
	}
	.footer_bannerList{
		width: 50%;
		padding: var(--sp-size-24);
	}

	.footer_anxInfo{
		margin-top: var(--sp-size-72);
		display: block;
		overflow: hidden;
	}
	.footer_anxLists{
		width: 125%;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
	}
	.footer_anxList,
	.footer_anxList:first-child,
	.footer_anxList:last-child{
		padding: 0 calc(var(--sp-size-24) * 1.25);
	}
	.footer_anxList:first-child{
		margin-right: 0;
	}
	.logo_anx{
		width: 100%;
		height: var(--sp-size-72);
		margin-right: unset;
		margin-bottom: var(--sp-size-48);
	}
	.logo_anx a{
		width: min(34.1334%, 256px);
		margin: 0 auto;
		right: 0;
	}
	.anx_txtlink{
		font-size: var(--sp-size-20);
		line-height: 1.2;
	}
	.anx_txtlink:not(:last-child):after{
		top: 0;
		bottom: 0;
		width: calc(2px * 1.25);
	}

	.footer_sitecaution{
		width: 100%;
		padding: 0 var(--sp-size-48);
		margin-top: var(--sp-size-40);
		font-size: var(--sp-size-20);
		text-align: center;
	}
	.copyright{
		margin-top: var(--sp-size-96);
		font-size: var(--sp-size-20);
	}
}


/*-----------------------------------------------
 * COMMON
-------------------------------------------------*/
#fullWrap{
	position: relative;
}
#fullWrap:before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/bg/bg.webp) no-repeat center top / cover;
	z-index: -1;	
}
html.no-webp #fullWrap:before{
	background-image: url(../img/common/bg/bg.jpg);
}
.contentfullWrap{
	width: 100%;
	position: relative;
	padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
	.contentfullWrap{
		padding-bottom: var(--sp-size-192);
	}
}


/* content */
.content{
	width: 75%;
	padding-top: 160px;
}
.content.-right{
	margin-left: auto;
}
.content.-center{
	margin-left: auto;
	margin-right: auto;
}
.content.-w100{
	width: 100%;
}
.content_h2{
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.content_h2__img{
	display: inline-block;
}
.contentIn{
	padding: 80px 0;
	margin-top: -40px;
	position: relative;
}
.contentbg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 80%;
	background-color: var(--color-blue);
	z-index: -1;
}
.contentbg:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-gradation-blue);
	opacity: 40%;
}

@media screen and (max-width: 767px){
	.content{
		width: 87.2%;
		padding-top: var(--sp-size-96);
	}
	.content.-inpage{
		padding-top: var(--sp-size-24);
	}
	.content_h2__img{
		height: 100%;
	}
	.content_h2 img{
		height: 100%;
	}
	.contentIn{
		padding: var(--sp-size-96) 0 0;
		margin-top: calc(var(--sp-size-48) * -1);
	}
}


/* scrollAnimation */
/* ttl */
.content_h2__img{
	opacity: 0;
	transform: translateY(100%) rotate(-8deg);
	transition: .4s ease .4s;
}
.content.-right .content_h2__img{
	transform: translateY(100%) rotate(8deg);
	transform-origin: left center;
}
.content.is-ani .content_h2__img{
	opacity: 1;
	transform: translateY(0%) rotate(0deg);
}

/* contbg */
.contentbg{
	width: 0%;
	will-change: width;
	transition: width .3s cubic-bezier(0,.2,.4,1) .1s;
}
.content.-right .contentbg{
	left: unset;
	right: 0;
}
.content.is-ani .contentbg{
	width: 100%;
}

/* contentIn */
.contentIn_cont{
	opacity: 0;
    filter: blur(8px);
    transition: .4s ease-in, filter .8s cubic-bezier(.59,.25,.45,.96);
}
.content.is-ani .contentIn_cont{
	transition-delay: .6s;
	opacity: 1;
	filter: blur(0px);
}


/* inPage */
#fullWrap.--inPage{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
#fullWrap.--inPage .main{
	padding-bottom: 80px;
}
#fullWrap.--inPage .footer{
	margin-top: auto;
}
@media screen and (min-width: 768px){
	.inp_logo-sp{
		display: none;
	}
}
@media screen and (max-width: 767px){
	#fullWrap.--inPage .main{
		padding-bottom: 0;
	}
	.inp_logo-sp{
		width: 32%;
		padding: var(--sp-size-48) 0;
		margin: 0 auto;
	}
	.inp_logo-sp img{
		width: 100%;
	}
}


/* linkbox */
.linkbox{
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	transition: color .3s ease .3s;
	overflow: hidden;
}
.linkbox:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	filter: brightness(100%);
	background-color: var(--color-light-blue);
	transition: opacity .6s ease-in-out .25s, filter .6s ease .8s;
}
.linkbox_line,
.linkbox_line span{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.linkbox_line:before,
.linkbox_line:after,
.linkbox_line span:before,
.linkbox_line span:after{
	content: '';
	position: absolute;
	background-image: linear-gradient(var(--color-light-blue), var(--color-light-blue));
    background-repeat: no-repeat;
	transition: background-size .4s ease;
}
.linkbox_line:before{
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background-position: right bottom;
    background-size: 0% 100%;
}
.linkbox_line span:before{
	top: 0;
	right: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background-position: right bottom;
	background-size: 100% 0%;
}
.linkbox_line span:after{
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background-position: left bottom;
    background-size: 0% 100%;
}
.linkbox_line:after{
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background-position: left top;
	background-size: 100% 0%;
}
@media screen and (max-width: 767px){
	.linkbox_line:before,
	.linkbox_line span:after{
		height: var(--sp-size-2);
	}
	.linkbox_line span:before,
	.linkbox_line:after{
		width: var(--sp-size-2);
	}
}

/* hover */
.linkbox:hover{
	color: #000;
}
.linkbox:hover::after{
	opacity: 1;
	filter: brightness(200%);
	/* transition-delay: .25s, .4s; */
}
.linkbox:hover .linkbox_line:before{
	background-position: left bottom;
	background-size: 100% 100%;
}
.linkbox:hover .linkbox_line span:before{
	background-position: right top;
	background-size: 100% 100%;
}
.linkbox:hover .linkbox_line span:after{
	background-position: right bottom;
	background-size: 100% 100%;
}
.linkbox:hover .linkbox_line:after{
	background-position: left bottom;
	background-size: 100% 100%;
}

.linkbox_txt{
	position: relative;
	z-index: 2;
}
.linkbox.-icon_blank .icon_blank{
	width: 16px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px;
	-webkit-mask: url(../img/common/icon/icon_blank.svg) no-repeat right center / contain;
	mask: url(../img/common/icon/icon_blank.svg) no-repeat right center / contain;
	background-color: #fff;
	z-index: 2;
	transition: .3s ease .3s;
}
.linkbox.-icon_blank .linkbox_txt{
	padding: 0 8px;
}
.linkbox.-icon_blank:hover .icon_blank{
	background-color: #000;
}
@media screen and (max-width:767px){
	.linkbox.-icon_blank .icon_blank{
		width: var(--sp-size-16);
		right: var(--sp-size-16);
	}
	.linkbox.-icon_blank .linkbox_txt{
		padding: 0 var(--sp-size-16);
	}
}