@charset "utf-8";



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

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


img{
	width: auto;
}


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

	/* js */
	--documentHeight: ;

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

	--primaryColor: #FCE744;
	--textColor: #fff;
	--darkTextColor: #000;

	font-size: 10px;

}

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

	background-color: #2E2723;
}


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;
}







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

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

/* 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{
	opacity: 0;
}
.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;
}






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


/* clip-to-bottom
===============================
*/


.clip-to-bottom{
    clip-path: inset(100% 0 0 0);
    transition: .5s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

	.mv .clip-to-bottom{
		transition-delay: .3s;
	}


	.mv.is-active .clip-to-bottom,
	.sec.is-show .clip-to-bottom{
			clip-path: inset(0);
	}




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


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

.Gftr{
	--verticalPadding: 6rem;
	/* position: relative; */
	overflow: hidden;
	padding-top:    var(--verticalPadding);
	padding-bottom: var(--verticalPadding);
	color: var(--darkTextColor);
	font-family: 'Oswald' , sans-serif;
	background: url(../images/bg_ftr.jpg) center /auto 100% repeat;
	z-index: 1;
}
.Gftr_inr{
	/* position: relative; */
	z-index: 0;
}
.Gftr_sns{
}

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

.Gftr_link{
	margin-top: 1rem;
	text-align: center;
}

.Gftr_copy{
	margin-top: 3rem;
	text-align: center;
	font-size: 13px;
}





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

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

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

.sec{
	overflow: hidden;
	padding: 10rem 0;
	text-align: center;
}

	.sec:first-child{
		padding-top: 15rem;
	}

	.sec:last-child{
		padding-bottom: 15rem;
	}




.sec_hdr{
	text-align: center;
}

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

.sec_ttl{
}

	.sec_ttlImg{
		width: auto;
		margin-bottom: 2rem;
		transform: rotate( -4deg );
	}

	.sec:nth-of-type(even) .sec_ttlImg{
		transform: rotate( 8deg );
	}

.sec_body{
}
.sec_ftr{}


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

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

*/


.subSec{
	padding: 8rem 0;
	text-align: left;
}

.subSec_hdr{
	margin-bottom: 1rem;
	text-align: center;
}

.subSec_ttl {
	--lh: 1.5em;
	display: inline;

	color: var(--primaryColor);
	line-height: calc(var(--lh) + 1em);
	text-align: center;
	letter-spacing: 2px;
	font-weight: 800;
	font-size: 2.75em;
}

.subSec_body{
	text-align: left;
}

.subSec_ftr{}




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

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



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

.btns{
	text-align: center;
}

.btn{
	display: inline-block;
	padding: 1.5em 2rem;
	width: 100%;
	max-width: 340px;
	color: #0F0F0F;
	font-weight: 300;
	background: url(../images/btn_bg.png) no-repeat center /cover;
	cursor: pointer;
}

.btn--long{
}


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

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

.label{
	display: inline-block;
	flex: 0 0 auto;
	margin-right: 2em;
	padding: .7em 1.5em;
	color: #000;
	line-height: 1.8;
	font-weight: 600;
	background: url(../images/bg_entry_ttl.svg) center/auto 100% repeat;

	/* for ios bug */
	filter:blur(0);
}



/* marker
===============================
*/

.marker {
	padding-bottom: calc(var(--lh) * 1.25);
	background: url(../images/text_underDot.svg) center/ auto 10px repeat-x;
}



/* notes
===============================
*/

.notes{
	padding: 2rem 0;
	font-size: 14px;
	font-weight: 100;
	line-height: 2;
}

.note_anchor{
	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;
}





/* mv , pop
===============================
*/

.mv{
	position: relative;
	height: 100svh;
}

.mv_img{
	width: 100%;
	object-fit: cover;
	object-position: top center;
	max-width: 100%;
	height: 100svh;
	transition: 1s ease;
}



.pop{
	position: absolute;
	left: 5vw;
	bottom: 4rem;
	font-size: 24px;
	font-weight: 300;
	color: var(--primaryColor);
}

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





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

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

.release_ftr{
	text-align: center;
}

.release_btn{}




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

.campaign{
	line-height: 2;
}


.campaign_texts{
	text-align: left;
}

.campaign_btn{
	font-size: 12px;
}

.campaign_ftr{
	text-align: center;
}

.campaign_pic{
	text-align: center;
}

.campaign_img{
	padding: 4rem;
}


.campaign_texts{
	position: relative;
	/* margin-top: 40px; */
	z-index: 15;
	font-size: 16px;
	font-weight: 600;
}

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


.campagin_ftr{
	margin-top: 8rem;
}







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

.entry {
	line-height: 1.8;
}

.entry_list {
	padding-top: 9rem;
}

.entry_item ,
.contact_list{
	display:flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 3rem;
}

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

	.entry_item--wrap{
		display: block;
	}


.entry_texts{
	font-size: 22px;
	font-weight: 600;
}

	.entry_text--long{
		text-align: left;
	}

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


.entry_notes{
	width: 100%;
	margin-top: 1em;
	padding-bottom: 0;
}

	.entry_note{
		padding-bottom: 0;
	}

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

.entry_ftr{
	margin-top: 8rem;
}



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

.step{
	margin-top: 10rem;
}

.step_list{
	padding: 2em 0;
}

.step_item{
	display: flex;
	padding: 2em 0;
	gap: 2em;
}

.step_num{
	flex-shrink: 0;
}

.step_body{
	display: flex;
	flex-flow: column;
}

.step_body--01{
	display: flex;
	gap: 5rem;
	width: 100%;
}

.step_texts{
	font-size: 17px;
	font-weight: 200;
}

.step_note--indent{
	padding-left: 1em;
}






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

.contact_term{
	align-items: flex-start;
}


.contact_ttl{}

.contact_notes{
	margin-top: 2rem;
	font-size: 14px;
}


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

.form{
	/* padding: 4rem 0; */
	/* text-align: left; */
}

.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: 10em;
	margin-top: 5em;
	color: #CCC;
	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
===============================
*/

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

.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: .8;
}


.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 #555 inset;
}


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




/* lyric
===============================
*/

.lyric{
	font-size: 16px;
	font-weight: 300;
	line-height: 2;
}
.lyric_texts{
	text-align: center;
}

.lyric_text{
	margin-bottom: 2rem;
	text-align: center;
}





/* accordion */


.rim1_accordionUi{
	--accordionColor: var(--primaryColor);
	--accordionBgColor: transparent;
	--hoverColor: #fff;
	--hoverBgColor: #37BEF0;

	position: relative;
	margin-left: auto;
	margin-right: auto;
	color: var(--accordionColor);
	background-color: var(--accordionBgColor);
	font-size: 14px;
	font-weight: 100;
	transition: .5s;
	display: flex;
	flex-direction: column;
	max-width: 350px;
	cursor: pointer;
}

	.rim1_accordionUi::before{
		content: "・・・";
		display: inline-block;
		line-height: 1;
		color: var(--accordionColor);
	}


	.rim1_accordionUi::after{
		content: "";
		position: absolute;
		display: inline-block;
		width: 4rem;
		height: 1px;
		left: 0;
		right: 0;
		margin: auto;
		bottom: 1px;
		box-shadow: 0 1px 0 0 var(--accordionColor);
		transition: .5s;
	}

@media screen and (min-width:769px) {
	.rim1_accordionUi:hover{
		color: var(--hoverColor);
		background-color: var(--hoverBgColor);
		padding: 1rem 2rem;
	}

	.rim1_accordionUi:hover::before{ color: var(--hoverColor)}
	.rim1_accordionUi:hover::after{ box-shadow: none}
}


	.rim1_accordionUi.is-active,
	.rim1_accordionUi.is-active::before,
	.rim1_accordionUi.is-active::after{
		display: block;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		transition: all 1s, max-height 1s ease-out .8s;
	}


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

.tieup{}

.tieup_pic{
	text-align: center;
}

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




/* sns_list
===============================
*/
.sns_list{
	display: flex;
	justify-content: center;
}
.sns_item{
	width: 4rem;
	height: 4rem;
	margin-left: 5.5rem;
}
	.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)
===============================
*/

/* init */
/* 読み込み用svg */
.svg_group{
	display: none;
}

.main:not(.is-active){
	display: none;
}

/* op 0 */
/* init anime */
.loading{
	opacity: 1;
}

.loading img{
	opacity: 1;
}



.loading{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/bg_loading.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{
	position: fixed;

	width: 100%;

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

	overflow: hidden;
	text-align: center;
}


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


.loading_ttl.is-active .loading_ttlImg{
	animation: fadeToRightAndBottom 1s 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: 1s;
	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;
}

