@charset "utf-8";



/*  ===============================
			ROOT
===============================*/

/* variable
===============================
	--bigInrMaxW -
	--cntInrMaxW - pc時inrのmaxwidth inr
*/


/* 1200px < window */
:root{
	--windowMinW: 1024px;
	--windowMaxW: none;
	--cntInrMaxW: 960px;
	--bigInrMaxW: 1440px;
	--secBodyWidth: 960px;

	/* js */
	--documentHeight: ;

	--commonSidePadding: 40px;
	--sans-serif: 'Noto Sans JP', sans-serif;
	--serif: 'Noto Serif JP' , serif;
	--en: 'EB Garamond', serif;

	--primaryColor: #00009B;
	--textColor: #fff;
	--darkTextColor: #000;

	font-size: 10px;
}

body{
	font-size: 16px;
	font-family: var(--serif);
	color: var(--textColor);
	letter-spacing: 1px;

	background-color: #2E2723;
}



img{
	width: auto;
}


html,
body,
.loading{
	max-width: var(--windowMaxW);
	min-width: var(--windowMinW);
}

.Ghdr,
.mv,
.main{
	min-width: var(--windowMinW);
}


.inr{
	max-width: var(--cntInrMaxW);
	margin-left: auto;
	margin-right: auto;
}

.inr--mid{
	padding-right: 40px;
	padding-left: 40px;
}

.inr--big{
	max-width: var(--bigInrMaxW);
	margin-left: auto;
	margin-right: auto;
}


/* bg */
.bg_box{
	position: relative;
}

.bg_item{
	position: fixed;
	/* top: 0;
	bottom: 0;
	left: 0;
	right: 0; */

	height: 100vh;

	transition: 2.5s;
	opacity: 0;
}

.bg_item--main{
	opacity: 1;
}

.bgImg{
	min-width: 100vw;
	height: 100vh;
	max-width: none;
	object-fit: cover;
}





/* window = 1025px ~ 1199px */
@media screen and (min-width: 1025px) and (max-width: 1199px) {
	:root{
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1440px;
	}
}

/* window = 769px ~ 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	:root{
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1440px;
	}
}

/* window < 768px */
@media screen and (max-width: 768px) {
	:root{
		--windowMinW: none;
		--windowMaxW: 100%;
		--cntInrMaxW: 480px;
		--bigInrMaxW: 100%;
	}

	.inr{
		padding-left:  var(--commonSidePadding);
		padding-right: var(--commonSidePadding);
	}

	.inr--mid{
		padding-right: 0;
		padding-left: 0;
	}
}



/* init */

body{
	position: relative;
	overflow-x: hidden;
}



/* fade init */

.sec{
	position: relative
}



.fade.is-show,
.sec.is-show{
	animation: fadeInToTop 1s forwards;
	will-change: opacity , transform , animation;
}

/* develope */
.develope .sec,
.develope .sec img{
	opacity: 1 !important;
}


.develope .main:not(.is-active),
.develope .Gftr:not(.is-active){
	display: block !important;
}


.js-fade{
	opacity: 0;
	--y: 100%;
}

.js-fade.is-show{
	animation: fadeInToTop 1s forwards;
}



/*  ===============================
	animation & transition
===============================*/


/* clip
===============================
*/

/* .clip{
	transition: .5s cubic-bezier(0.37, 0, 0.63, 1);
	transition-property: clip-path;
}

.clipToRight{
	clip-path: inset( 0 100% 0 0 );
}

.clipToLeft{
	clip-path: inset( 0 0 0 100% );
}


	.is-show.clip,
	.is-show.clipToRight{
			clip-path: inset(0);
	} */



.clip_parent{
	overflow: hidden;
}

.clip{
	transition: .5s cubic-bezier(0.37, 0, 0.63, 1);
	/* transition-property: clip-path; */
}

.clipToRight{
	translate: -100% 0;
}

.clipToLeft{
	translate: 100% 0;
}


	.is-show.clip,
	.is-show.clipToRight{
		translate: 0;
	}





/*  ===============================
			GLOBAL
===============================
container
header
navi
footer
other
*/

/* navi
===============================
Gnavi
*/

.Gnavi{
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	top: 0;
	left: 0;
    right: 0;
	padding: 20px;
	z-index: 1;
	transition: .6s;
}

.Gnavi:not(.is-active){
	translate: 0 -100%;
}

.Gnavi_list{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: ;
}

.Gnavi_btn{
	display: none;
}

.Gnavi_item{
	font-family: var(--en);
}


@keyframes spreadLine {
	from{
		width: 0;
	}
	to{
		width: 100%;
	}
}


.Gnavi_logo{
	width: 200px;
	margin-right: auto;
}

.Gnavi_anchor{
	position: relative;
	display: block;
	padding: 1em .3em 0.7em ;
	letter-spacing: -.5px;
	font-size: 20px;
	text-align: center;
}

@media screen and (min-width:769px) {

	.Gnavi_anchor:not(:hover){
		text-shadow: 1px 1px #AAA;
	}

	.Gnavi_anchor:hover{
		color: var(--primaryColor);
		opacity: 0.7;
		transition: 1s;
	}

	.Gnavi_anchor::after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 1px;
		background-color: var(--primaryColor);
	}

	.Gnavi_anchor:hover::after{
		animation: spreadLine 1s ease forwards;
	}

}



/* footer
===============================
Gftr
*/

.Gftr{
	--verticalMargin: 6rem;
	overflow: hidden;
	position: relative;
	margin-top:    var(--verticalMargin);
	margin-bottom: var(--verticalMargin);
	font-family: var(--en);
	z-index: 1;
}
.Gftr_inr{}
.Gftr_sns{
}

.Gftr_anchor{
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

.Gftr_link{
	--verticalMargin: 5rem;
	margin-top:    var(--verticalMargin);
	margin-bottom: var(--verticalMargin);
	text-align: center;
}

.Gftr_anchor{
	transition: .3s;
}

.Gftr_anchor:hover{
	opacity: 0.8;
}


.Gftr_copy{
	text-align: center;
	font-weight: 200;
	font-size: 13px;
}





/*  ===============================
		  block , element
===============================*/

.main{
	position: relative;
	overflow: hidden;
}

/* sec
===============================
.sec
.sec_hdr
.sec_ttl
.sec_body
.sec_ftr
*/

.sec{
	overflow: hidden;
	padding-top: 12rem;
	text-align: center;
}


.sec_ttl{
	--horizontalPadding: 30px;

	padding-right: var(--horizontalPadding);
	text-align: left;
}

	.sec_ttl--right{
		padding-right: 0;
		padding-left: var(--horizontalPadding);
		text-align: right;
	}

	.sec--entry{
		padding-top: 2em;
	}

.sec_ttlImg{
	width: auto;
	margin-bottom: 2rem;
}

.sec_inr{
	margin-left: auto;
	margin-right: auto;
}




.sec_body{
	--verticalPadding: 4rem;
	padding-top:    var(--verticalPadding);
	padding-bottom: var(--verticalPadding);
}

.sec_ftr{}




/* subSec
===============================
-- share

.subSec
.subSec_inr
.subSec_hdr
.subSec_ttl
.subSec_body
.subSec_ftr

*/


.subSec{
	padding: 8rem 0;
}

.subSec_hdr{
	margin-bottom: 1rem;
}

.subSec_ttl {
	color: var(--primaryColor);
}

.subSec_body{}

.subSec_ftr{}


/* strong
===============================
*/

.strong{
	/* color: var(--primaryColor); */
}



/* centerLine
===============================
*/

.centerLine{
	display: flex;
	align-items: center;
}

	.centerLine::before,
	.centerLine::after{
		content: "";
		width: 100%;
		height: 1px;
		flex: 1 1 0;
		background-color: var(--lineColor);
	}

.centerLine_item{
	margin: 0 1em;
	color: var(--lineColor);
}



/* btn
===============================
*/

.btns{
	text-align: center;
}

.btn{
	display: inline-block;
	padding: 1.5em 2rem;
	width: 100%;
	max-width: 340px;
	line-height: 1;
	letter-spacing: .5em;
	color: #FFF;
	text-align: center;
	font-family: var(--en), var(--serif),serif;
	background-color: var(--primaryColor);
	cursor: pointer;
}

	.btn--campaign{
		letter-spacing: inherit;
	}

.btn--disable {
    color: #555;
    background: #777;
    cursor: no-drop;
}

/* label
===============================
*/

.label{
	display: inline-block;
	padding: .5em;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 1em;
}

.label--colored{
	background-color: var(--primaryColor);
}

.label--white{
	background-color: #fff;
	color: var(--primaryColor);
}



/* anchor
===============================
*/

.anchor{
	color: var(--primaryColor);
	text-decoration: underline;
}


/* obj (ryu)
===============================
*/


.obj {
	/* position: absolute; */
	width: 100vw;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	z-index: -1;
}

.obj_item{
	--y: 0;

	overflow: hidden;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200vw;
	top: calc( var(--y) * var(--docHeight) / 100);
	left: -50vw;
	z-index: 10;
}

.obj_img{
	--h: 100px;
	width: auto;
	height: var(--h);
	max-width: none;
	transition: .4s cubic-bezier(0.11, 0, 0.5, 0) .8s;
}

.obj_img:not(.is-active){}

.obj_item--right.is-active .obj_img{
	translate: 200% 0;
}

.obj_item--left.is-active .obj_img{
	translate: -200% 0;
}





/* hero , pop
===============================
*/

.hero{
	overflow: hidden;
	position: relative;
	height: 100vh;
	min-height: 100vh;
}

.hero_pic {
	overflow: hidden;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
}

.hero_img{
	width: 100%;
	object-fit: cover;
	object-position: center;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transition: 1s ease;
}



.pop{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}

.pop_item{
	opacity: 1;
	transition: .5s;
	line-height: 2;
}

.pop_ttlImg{ 
	margin-bottom: 1em;
}

.pop_lead{
	margin-left: 2.5em;
}




/* scroll guide */

.scrollGuide {
	position: absolute;
	left:   1.5em;
	bottom: 22px;
	display: flex;
	align-items: center;
	transform: rotate(-90deg);
}

.scrollGuide_text {
	width: auto;
	font-family: var(--sans-serif);
	color: #FFF;
	font-size: 14px;
}


.scrollGuide_line {
	overflow: hidden;
	display: block;
	width: 20px;
	height: 1px;
	margin-right: 3px;
	background: #FFF;
}



/* after loading animation */

.pop_ttlImg,
.pop_leadImg{
	--y: 100vh;
	opacity: 0;
}

.pop_ttlImg--01{
	--delay: .5s;
}
.pop_ttlImg--02{
	--delay: 1s;
}
.pop_leadImg{
	--delay: 1.8s;
}

.start-animate.pop_ttlImg,
.start-animate.pop_leadImg{
	animation: fadeInToTop 1s var(--delay) forwards;
}




/* release
===============================
*/

.release_ttl{
	font-size: 22px;
	font-weight: 600;
	padding: 3em 0;
}

.release_ftr{
	text-align: center;
}

.release_btn{}


/* releaseThumbs */

.releaseThumbs_list{
	margin: 8rem 0;
}

.releaseThumb_img{
	width: 100%;
}

@media screen and (min-width:769px) {

	.releaseThumbs_list{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 4%;
	}

	.releaseThumb_item{
		text-align: left;
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;
	}

	.releaseThumb_img{
		max-height: 260px;
	}

}



.releaseThumb_notes{
	font-family: var(--sans-serif);
}

.releaseThumb_note{
	font-size: 13px;
	font-weight: 300;
}

.releaseThumb_note:not(:first-child){
	margin-top: 1em;
}



.bluray_list{
	display: grid;
	gap: 0.5em;
}

@media screen and (min-width:769px) {
	.bluray_accordion{
		display: none;
	}

	.bluray{
		display: grid;
		grid-template-columns: 1fr 2fr;
	}

	.bluray_list{
		grid-template-rows: repeat(10, auto);
		grid-auto-flow: column;
		grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
	}

	.bluray_list--pc{
		display: grid;
	}

	.bluray_accordionTtl{
		display: none;
	}
}
.bluray_item{}


.bluray_accordionTtl{
	margin-top: .5em;
}


.bluray_accordion[open] .bluray_accordionTtl{
	opacity: 0;
	height: 0;
	visibility: hidden;
	transition: .5s;
	cursor: pointer;
}

.bluray_accordion .bluray_item{
	opacity: 0;
	transition: .5s
}

.bluray_accordion[open] .bluray_item{
	opacity: 1;
}

/* details disc */

.release_details{
	margin: 8rem 0;
}

.release_detail:not(:first-child){
	margin-top: 7rem;
}



.release_ftr{
	margin: 8rem 0 12rem;
}



.disc_ttl{
	margin-bottom: 20px;
	font-size: 1.5em;
	font-weight: 700;
	color: var(--primaryColor);
}

.disc_item{
	--verticalPadding: 2em;
	padding: var(--verticalPadding) 0;
	border-top: 1px solid #fff;
}
	.disc_item:last-child{
		border-bottom: 1px solid #fff;
	}

.disc_item--song{
	display: flex;
	align-items: center;
	gap: 1em;
}

.disc_songText{
	font-size: 34px;
	font-weight: 700;
}

.disc_songDetails{
	font-size: 21px;
	font-weight: 400;
	margin-left: 1em;
}

.disc_songImg{}

.disc_list{
	text-align: left;
}

.disc_texts{
	font-size: 30px;
	line-height: 1.6;
}

.disc_notes{
	margin-top: 1em;
	font-size: 1.38em;
	line-height: 1.8;
	font-family: var(--sans-serif);
}


.disc_note--indent{
	padding-left: 1.5em;
}




/* special
===============================
*/

.special{
	color: var(--darkTextColor);
	line-height: 2;
}


.special_hdr{ --lineColor: var(--primaryColor);}

.special_ttl{
	font-size: 25px;
	font-weight: bold;
}




.special_texts{
	font-weight: 700;
}

.special_notes{
	margin-top: 25px;
	letter-spacing: 0;
	font-weight: 300;
	font-size: 12px;
}

.special_list{
	margin-top: 80px;
	display: grid;
	grid-template: auto / 1fr 1fr 1fr;
	gap: 80px 70px;
}

.special_item{
	text-align: center;

	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0;
}



.special_names{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-end;

	line-height: 1.4;
}

.special_name{
	width: 100%;
	font-size: 16px;
	font-weight: 800;
	color: var(--primaryColor);
}

.special_desc{
	width: 100%;
	margin-top: 5px;
	font-size: 13px;
	font-weight: 500;
	font-family: var(--sans-serif);
}

.special_thumb{
	margin-top: 20px;
}

.special_img{
	width: 100%;
}

.special_btns{
	margin-top: 30px;
}

.special_notes--list{
	width: 100%;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 300;
	font-family: var(--sans-serif);
	text-align: left;
}

.special_note--list{
	text-indent: -1em;
	padding-left: 1em;
}


.special_ftr{
	margin-top: 80px;
}



/* privileges
===============================
*/

.privileges{
	padding-top: 140px;
	color: var(--darkTextColor)
}


/* privilegesDetail */

.privilegesDetail{
	display: grid;
	grid-template: auto / 174px 1fr;
}

.privilegesDetail_pic{
	text-align: center;
}

.privilegesDetail_img{
	max-width: 174px;
}


.privilegesDetail_caption{
	margin-top: 1em;
	font-size: 12px;
	font-family: var(--sans-serif);
	text-align: left;
}

.privilegesDetail_texts{
	margin-left: 70px;
	line-height: 2;
	text-align: left;
	font-weight: 600;
}

.privilegesDetail_text:not(:first-child){
	margin-top: 2em;
}


/* privilegesList */
@media screen and (min-width:769px) {
	.privilegesList_list{
		display: grid;
		grid-template: auto / 1fr 1fr;

		max-width: 780px;
		margin: 75px auto 0;
	}

	.privilegesList_item{
		display: grid;
		grid-template: 1fr / subgrid;
		text-align: center;
	}
}


.privilegesList_ttl{
	font-size: 18px;
	font-weight: 800;
	color: var(--primaryColor);
}

.privilegesList_texts{
	margin-top: .5em;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--sans-serif);
	line-height: 1.4;
}


.privilegesList_pic{
	margin-top: 20px;
	text-align: center;
}

.privilegesList_img{
	max-width: 306px;
}

.privileges_notes{
	margin-top: 40px;
	font-size: 12px;
}




/* campaign
===============================
*/

.campaign{
	color: var(--darkTextColor);
	line-height: 2;
	text-align: center;
}


.campaign_btn{
	font-size: 12px;
}

.campaign_ftr{
}

.campaign_pic{
	margin-top: 50px;
}

.campaign_img{
	padding: 4rem;
}


.campaign_texts{
	font-size: 16px;
	font-weight: 600;
}

.campaign_text{
	position: relative;
	line-height: 2.5;
}


.campaign_line{
	--lineColor: var(--primaryColor);
}

.campaign_lineTtl{
	color: var(--primaryColor);
	font-size: 22px;
	font-weight: bold;
}

.campagin_ftr{
	margin-top: 8rem;
}




/* entry
===============================
*/

.entry {
	padding-top: 0;
	padding-bottom: 2em;
	line-height: 1.8;
}

.entry_list {
	padding-top: 9rem;
}

.entry_item:not(:first-child){
	margin-top: 80px;
}


	.entry_item--wrap{
		display: block;
	}


.entry_texts{
	margin-top: 1em;
	font-size: 24px;
	font-weight: 700;
	line-height: 2;
}

	.entry_text--strong{
		text-decoration: underline;
		text-underline-offset: 5px;
	}

	.entry_text--end{
		text-decoration: line-through;
		color: #555;
	}


.entry_notes{
	margin-top: 20px;
	font-size: 13px;
	font-family: var(--sans-serif);
}

	.entry_note{}

	.entry_note--strong{
		font-size: 17px;
		font-weight: 500;
	}

.entry_ftr{
	margin-top: 8rem;
}




/* form
===============================
*/

.form{
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;

	padding: 1em 2em 2em;
	background-color: #fff;
	color: var(--primaryColor);
}


.form_desc{
	font-size: 22px;

}

.form_anchor{
	padding-bottom: 1px;
	border-bottom: 0.5px solid #fff; 
}

.form_note{
	margin-top: 1.5rem;
}


.form_textarea{
	width: 100%;
	height: 15em;
	margin-top: 5em;
	color: #555;
	text-align: left;
	padding: 1rem 2rem;
	font-size: 11px;
	overflow: scroll;
	border: 1px solid #555;
}

.form_textarea h3{
	margin-bottom: 1em;
	font-size: 13px;
	font-weight: 500;
}


.form_textarea .form_notes:not(:last-child){
	margin-bottom: 3rem;
}

.form_textarea .form_note{}



.form_list{
	margin-top: 3em;
	text-align: left;
	font-size: 13px;
}
.form_item:not(:first-child){
	margin-top: 2em;
}

.form_item--full{
	width: 100%;
	margin-top: 2rem;
}

.form_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form_term:not(.form_term--long){
	width: 30%;
}
.form_desc:not(.form_desc--long){
	width: 70%;
	padding-left: 1.5rem;
	text-align: left;
}

.form_term{
	font-weight: 500;
}

.entry--confirm .form_term{
	padding-top: 1rem;
}


	.form_term--long{
		margin-top: 3em;
		margin-bottom: 1em;
	}
	.form_desc--long{}



.form_btns{
	margin-top: 3em;
	font-size: 16px;
}

	.form_btns--submit{
		margin-top: 10rem;
	}

.form_btn .btn{
	font-size: 14px;
	padding: 1em 1.8rem;
}


.form_btn .btn--secondary{
	opacity: .5;
}


.form_btns form:not(:first-child) .form_btn{
	margin-top: 2rem;
}



input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="url"], textarea {
	box-shadow: 0 0 0 1px var(--primaryColor);
}


/* confirm時 */

.entry--confirm{
	margin: 5rem auto;
}


.entry--confirm .form_term,
.entry--confirm .form_desc{
	text-align: left;
}


.entry--confirm .form_term{
	font-weight: 700;
	margin-bottom: .8em;
}

.entry--confirm .form_desc{
	font-weight: 400;
}

.entry--confirm .form_desc p{
	margin-bottom: 0.8em;
}



/* step
===============================
*/

.step{
	margin-top: 10rem;
	padding: 55px 35px;
	text-align: left;
	background-color: rgba(255,255,255,.7);
}

.step_list{}


.step_item{
	position: relative;
	display: flex;
	padding: 3em 0 3em 2em;
	gap: 2em;

	border-bottom: 1px solid var(--primaryColor);
}
	.step_item--center{
		align-items: center;
	}

	.step_item:not(:last-child)::after{
		--offset: 10px;
		content: "";
		position: absolute;
		display: block;
		margin: auto;
		bottom: calc( var(--offset) * -2);
		left: calc( 50% - var(--offset));
		border: var(--offset) solid transparent;
		border-top: var(--offset) solid var(--primaryColor);
	}


.step_num{
	flex-shrink: 0;
}

.step_body{
	width: 100%;
}

.step_body--flex{
	display: flex;
	align-items: center;
	gap: 5rem;

	margin: 0;
}

.step_texts{
	margin-top: 0.3em;
	margin-bottom: 1.2em;
	font-size: 18px;
	font-weight: 700;
}

.step_text strong{
	color: var(--primaryColor);
}

.step_notes{
	font-size: 13px;
	font-family: var(--sans-serif);
}

.step_note{
	margin-top: .8em;
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 400;
}

	.step_note:first-child{
		margin-top: 0;
	}


.step_note--indent{
	margin-top: 0;
	text-indent: 0;
}


/* contact
===============================
*/

.contact_ttl{
}

.contact_texts{
	margin-top: 1em;
	font-size: 22px;
	font-weight: 700;
}

.contact_anchor{
	text-decoration: underline;
	text-underline-offset: 10px;
}

.contact_notes{
	margin-top: 2rem;
	font-size: 14px;
	padding-left: 1em;
	text-indent: -1em;
}







/* tieup
===============================
*/

.tieup_item{
	margin-bottom: 10em;
}

	.tieup_item:last-child{
		margin-bottom: 0;
	}

.tieup_hdr{
	width: 100%;
	--lineColor: #FFF;
}

.tieup_ttl{
	font-size: 1.5em;
	font-weight: 500;
}


.tieup_texts{
	margin-top: 30px;
	font-size: 22px;
	font-weight: 300;
	line-height: 2;
}

.tieup_movie{
	margin-top: 40px;
	text-align: center;
}

.tieup_ftr{
	margin-top: 65px;
}

.tieup_btns{
}

.tieupt_img{
	max-width: min(600px,100%);
}




/* sns_list
===============================
*/
.sns_list{
	display: flex;
	justify-content: space-between;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.sns_item{
	width: 4rem;
	height: 4rem;
}
	.sns_item:first-child{
		margin-left: 0;
	}

.sns_anchor{
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

.sns_anchor::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: #37BEF0; */
	transform: rotate(45deg);
	z-index: 0;
}

@media screen and (min-width:769px) {
	.sns_anchor:hover{
		opacity: .8;
	}
}

.sns_img{
	position: relative;
	z-index: 1;
	fill: #0F0F0F;
	width: auto;
}




/*  ===============================
			loading
===============================*/


/* loading (ryu)
===============================
*/


.loading{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg_afternoon.jpg) center/ cover no-repeat;
	z-index: 100;
}

.loading_body{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;

	overflow: hidden;
}

.loading_ttl{
	overflow: hidden;
	position: fixed;

	width: 100%;
	top: 50%;
	left: 50%;
	translate: -50% -50%;

	text-align: center;
}


.loading_ttlImg{
	transition: .25s;
	width: auto;
	max-height: 492px;
	opacity: 0;
}


.loading_ttl.is-active .loading_ttlImg{
	animation: fadeIn 1.5s forwards;
}




@keyframes fadeToRightAndBottom {
	0% {
		opacity: 0;
		translate: -100% -25%;
	}

	50%{
		opacity: 0;
	}

	100% {
		opacity: 1;
		translate: 0 0;
	}
}





@keyframes infinity-scroll {
	from {
	  translate: 0;
	}
	  to {
	  translate: calc( -50vw + 100vw );
	}
}


.loading_movingBorder {
	--h: 10vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
}


.loading_movingBorder--top {
	top: 0;
	translate: 0 calc( ( var(--h) / 2 ) * -3 );
}

.loading_movingBorder--bottom {
	bottom: 0;
	translate: 0 calc( ( var(--h) / 2 ) * 3 );
}



.loading_movingBorder img {
	width: auto;
	min-width: 120%;
	height: var(--h);
	min-height: 208px;
	max-width: none;
	animation: infinity-scroll 10s infinite linear 0s both;
}

	.loading_movingBorder--bottom img {
		animation-direction: reverse;
	}



/* controls */

.loading_control {
	position: fixed;
	display: flex;
	top: 1em;
	right: 2em;
	cursor: pointer;
	transition: 1.5s;
	opacity: 0;
	z-index: 1000;
}

.loading_btn {
	margin-right: 1rem;
	padding: 0.5em 0.8em;
	color: #fff;
	background: var(--darkTextColor);
}






.fixedSqareAspedctRatio_wrap{
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.fixedSqareAspedctRatio_wrap::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.fixedSqareAspedctRatio {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

