@charset "utf-8";

/*
 *
 *  ページ用CSS
 *　index
 * 
 */

/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/
	
	

 /*--------------------------------------------------------------------------
	 オープニングアニメーション
---------------------------------------------------------------------------*/

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  background-image: url(../img/top/loading.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 3.5s forwards;
}
.loading p{
	color: var(--light);
	font-size: clamp(1.6rem, 1vw + 1rem, 3.8rem);
	font-weight: 300;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

	
/*--------------------------------------------------------------------------
   Mv
---------------------------------------------------------------------------*/
#Mv{
	position: relative;	
	line-height: 0;
}
#Mv .video{
	position: relative;
	left: 0;
	top: 0;
	z-index: 50;
	width: 100%;
	background: #FFF;
	transition: 1s;
}
#Mv .video.end{
	opacity: 0;
}
#Mv .video video{
	width: 100%;
}
#Mv .btn-skip{
	position: absolute;
	z-index: 50;
	right: 20px;
	bottom: 20px;
	padding: 10px 15px;
	border: 1px solid #FFF;
	color: #FFF;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}
#Mv .btn-skip:hover{
	background: rgba(255,255,255,.3);
}
#Mv .pic-end{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#Mv .pic-end picture{position: relative; display: block;}
#Mv .pic-end .mv_wappen{
	position: absolute;
    top: 12%;
    right: 2%;
    width: 16%;
    max-width: 250px;
	display: block;
}
#Mv .pic-end .mv_wappen img{
	filter: drop-shadow(0px 0 12px rgba(0, 0, 0, 0.7));
}
#Mv .pic-end img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#Mv .inner-lq{
	position: relative;
  padding: 0;
	/* margin: 0 var(--gap) 50px; */
}
#Mv .scene01,
#Mv .scene02,
#Mv .scene03,
#Mv .scene04{
	position: absolute;
	left: 0;
	top: 0;
  width: 100%;
	opacity: 0;
  -webkit-filter: blur(14px);
	filter: blur(14px);
	pointer-events: none;
  transition-duration: 1s;
}
#Mv .scene01{
	z-index: 5;
}
#Mv .scene02{
	z-index: 10;
}
#Mv .scene03{
	z-index: 15;
}
#Mv .scene04{
	z-index: 15;
}
#Mv .scene05{
	position: relative;
  z-index: 20;
  opacity: 0;
  -webkit-filter: blur(14px);
	filter: blur(14px);
  transition-duration: 1s;
}
#Mv .caption{
	position: absolute;
	left: 10px;
	bottom: 10px;
	line-height: 1;
}
#Mv .scene img{
 max-width: none;
 width: 100%;  
}
#Mv.start .scene01,
#Mv.start .scene02,
#Mv.start .scene03,
#Mv.start .scene04,
#Mv.start .scene05{
  opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);  
}
#Mv.start .scene01{ transition-delay: .5s;}
#Mv.start .scene02{ transition-delay: 5s;}
#Mv.start .scene03{ transition-delay: 9.5s;}
#Mv.start .scene04{ transition-delay: 14s;}
#Mv.start .scene05{ transition-delay: 18.5s;}

#Mv .btn-replay{
	position: absolute;
	right: 20px;
	bottom: 16px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition-duration: 1s;  
  transition-delay: 19.5s; 
}
.btn-replay strong{
  display: block;
  width: 120px;
	padding: 10px 5px;
	background: var(--light);
	border-radius: 100vmax;
	text-align: center;
	line-height: 1;
	font-size: 1.4rem;
	cursor: pointer;
  transition: .5s;  
}
.btn-replay span{
	position: relative;
	padding-left: 20px;
	font-weight: normal;
}
.btn-replay span::before,
.btn-replay span::after{
	position: absolute;
	left: 0;
	top: 4px;
	display: block;
	width: 15px;
	height: 12px;
	content: "";
}
.btn-replay span::before{
	background: url(../img/top/ico_replay_w.svg) no-repeat;
	background-size: 100% auto;
	opacity: 0;
	transition: .5s; 
}
.btn-replay span::after{
	background: url(../img/top/ico_replay.svg) no-repeat;
	background-size: 100% auto;
	transition: .5s; 
}
.btn-replay:hover strong{
	background: var(--dark);
	color: var(--light);
}
.btn-replay:hover span::before{
	opacity: 1;
	transform: rotate(180deg);
}
.btn-replay:hover span::after{
	opacity: 0;
	transform: rotate(180deg);
}
#Mv.start .btn-replay{
  opacity: 1;
  pointer-events: auto; 
}
.wappen{
	position: absolute;
	top: 5%; right: 5%;
	width: 12%;
	max-width: 230px;
}

.mv_slick {
  width: 100%;
}

.mv_slick img {
  width: 100%;
  object-fit: cover;
}



@media screen and (max-width: 768px) {
	#Mv{margin-top: 0px;}
	#Mv .btn-skip{
		right: 10px;
		bottom: 10px;
		padding: 6px 10px;
		font-size: 1.3rem;
	}
	.wappen{
		position: absolute;
		top: auto;
		right: 5%;
		bottom: 13%;
		width: 27%;
		max-width: 120px;
	}
	#Mv .pic-end .mv_wappen{
	    position: absolute;
        top: 36%;
        right: 6%;
        width: 31%;
        max-width: 116px;
        display: block;
}
#Mv .pic-end .mv_wappen img{
	filter: drop-shadow(0px 0 2px rgba(0, 0, 0, 0.7));
}
}

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* obi
-----------------------------------------------------------------*/
.obi{
	background: url(../img/common/bg_dot.svg), var(--gra_blue2);
	margin-top: -8px;
	padding: 24px 0 20px;
}
.obi img{width: 100svw; max-width: 90%;}
.obi p{
	text-align: center;
	max-width: 800px;
	margin: auto;
}
/* price_obi
-----------------------------------------------------------------*/

.price_obi{
	background: #D0000F;
	background: linear-gradient(180deg, rgba(208, 0, 15, 1) 0%, rgba(116, 0, 3, 1) 100%);
	padding: 24px 0 24px;
	position: relative;
	overflow: hidden;
}
.price_obi::before{
	content: '';
	display: block;
	background-image: url(../../asset/img/top/obi_icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0; left: 3%;
	width: 100%; height: 100%;
}
.price_img{
	text-align: center;
	max-width: 800px;
	width: 80%;
	margin: auto;
	position: relative;
	z-index: 1;
}



/* intro
-----------------------------------------------------------------*/
.intro{
	padding: 4% 0;
	background-color: var(--light);
	    transform: rotate(0.05deg);
}
.intro h2{
}
.intro h2 span{
	text-align: center;
	display: block;
	font-weight: 700;
}
.intro h2 .txt{
	color: var(--dark);
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.6;
	display: block;
	margin-top: 8px;
}

.intro h2 .img{
	max-width: 900px;
	margin: auto;
	padding: 0 50px;
	padding-bottom: 32px;
	border-bottom: 1px solid #000;
}
.intro h2 .img img{width: 100svw;}
.intro h2 .red{
	font-size: 7.0rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--red);
	transform: rotate(0.05deg);
}
.intro_btn{
	max-width: 520px;
	margin: auto;
	padding-top: 24px;
}
.intro_btn a{
	display: block;
	text-align: center;
	background: url(../img/common/bg_dot.svg), var(--gra_orange2);
	color: var(--light);
	font-weight: 800;
	font-size: 4.8rem;
	line-height: 1;
	padding: 18px 16px;
	border-radius: 50px;
	position: relative;
	transition: .3s;
}
.intro_btn a:hover{
	background: var(--dark);
}


/* css矢印 */

/* .intro_btn a::before, .intro_btn a::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    border-radius: 9999px;
    background-color: var(--light);
    width: 16px;
    right: 32px;
    height: 4px;
    transform-origin: calc(100% - 2px) 50%;
}
.intro_btn a::before {
    transform: rotate(45deg);
}
.intro_btn a::after {
    transform: rotate(-45deg);
} */

.intro_btn a::after {
    content: '';
	display: block;
	background-image: url(../img/common/btn_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 32px; top: 30px;
	width: 16px; height: 22px;
}


.intro_txt{
	transform: rotate(0.05deg);
	text-align: center;
	font-size: 2rem;
	line-height: 1.6;
	font-weight: 500;
	margin-top: 24px;
}


/* merit
-----------------------------------------------------------------*/

.merit{
	padding: 1% 0;
	background: url(../img/common/bg_dot.svg), var(--gra_blue2);
}
.merit_wrap{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.merit_wrap li{
	flex-basis: 25%;
	line-height: 1;
	padding: 8px 0;
	margin-top: 24px;
}
.merit_wrap li:nth-of-type(1),
.merit_wrap li:nth-of-type(2),
.merit_wrap li:nth-of-type(3),
.merit_wrap li:nth-of-type(5),
.merit_wrap li:nth-of-type(6),
.merit_wrap li:nth-of-type(7){
	border-right: 1px solid var(--light);
}
.merit_wrap li:nth-of-type(1) img,
.merit_wrap li:nth-of-type(2) img,
.merit_wrap li:nth-of-type(3) img,
.merit_wrap li:nth-of-type(4) img,
.merit_wrap li:nth-of-type(5) img,
.merit_wrap li:nth-of-type(6) img,
.merit_wrap li:nth-of-type(7) img,
.merit_wrap li:nth-of-type(8) img{}
.merit_item{
	text-align: center;
	margin: auto;
	max-width: 90%;
}
.merit_wrap li img{width: 100svw;}



/* concept
-----------------------------------------------------------------*/

.concept{
	padding: 8% 0 6%;
	position: relative;
	background-image: url(../img/top/concept_bg.webp);
	background-size: cover;
	background-position: top left;
	z-index: 2;

}
.concept_img2{
	position: absolute;
    z-index: -1;
    bottom: -357px;
    right: -65px;
    width: 66%;
    max-width: 1100px;
    height: 100%;
    text-align: right;
}

/* .concept::before{
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	bottom: -140px; right: 0;
	width: 80%;
	max-width: 1400px;
	height: 100%;
	background-image: url(../img/top/concept_img02_pc.webp);
	background-size: 80%;
	background-position: bottom right;
	background-repeat: no-repeat;
	padding-top: 40px;

} */
.concept .txt_area{
}
.concept .txt_area .concept_img{
	margin: 0 auto 56px;
	text-align: center;
	max-width: 460px;
}
.concept .txt_area .concept_img img{width: 100svw;}
.concept_txt_wrap{
	transform: rotate(0.05deg);
}
.concept .txt_area .concept_txt{
	text-align: left;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.2;
	margin-bottom: 8px;
	    transform: rotate(0.05deg);
}
.concept .txt_area .concept_txt span{
	color: var(--red);
}

@media screen and (max-width: 1280px) {
.concept .txt_area .concept_txt{
	font-size: 1.6rem;
	width: 60%;
}
.concept_img2 {

}
}



/* contents_link_area
-----------------------------------------------------------------*/

.contents_link_area{
	padding: 18% 0 4%;
}
.contents_link_area h4{
	max-width: 600px;
	margin: auto;
	position: relative;
}
.contents_link_area h4::before{
	content: '';
	display: block;
	position: absolute;
	bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 160px;
	height: 8px;
	background: var(--dark);
}
.contents_link_area h4 img{width: 100svw;}

.contents_link_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 8%;
}

.contents_link_box::before{
    display: block;
    content: "";
    flex-basis: 23.5%;
    order: 1;
}
.contents_link_box::after{
	display: block;
    content: "";
    flex-basis: 23.5%;
}

.contents_link_box li{
	margin-top: 2%;
}
.contents_link_box li:nth-of-type(1),
.contents_link_box li:nth-of-type(2),
.contents_link_box li:nth-of-type(5),
.contents_link_box li:nth-of-type(6),
.contents_link_box li:nth-of-type(7),
.contents_link_box li:nth-of-type(8),
.contents_link_box li:nth-of-type(9),
.contents_link_box li:nth-of-type(10){
	flex-basis: 23.5%;
}
.contents_link_box li:nth-of-type(3),
.contents_link_box li:nth-of-type(4){
	flex-basis: 49%;
}
.contents_link_box li a{transition: .3s; position: relative;}

/* line_wrap
-----------------------------------------------------------------*/

.line_wrap{
	max-width: 900px;
	margin: 5% auto 0;
	border: 4px solid #00A65A;
	border-radius: 24px;
	overflow: hidden;
}
.line_ttl{
	background: #00A65A;
	color: var(--light);
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	transform: rotate(0.05deg);
	padding: 8px;
}
.line_contents{
	background: var(--light);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
}
.line_contents li:nth-of-type(1){
	flex-basis: 43%;
}
.line_contents li:nth-of-type(2){
	flex-basis: 28%;
}
.line_contents li:nth-of-type(3){
	flex-basis: 17%;
}
.line_contents .addess{
	text-align: center;
	transform: rotate(0.05deg);
	font-size: 1.3rem;
	font-weight: 600;
	padding-bottom: 8px;
	text-align: center;
}


.movie_play_wrap{
	max-width: 800px;
	margin: 8% auto 0;
}


/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

/*--------------------------------------------------------------------------
   Mv
---------------------------------------------------------------------------*/
	#Mv .inner-lq{
		margin-bottom: 15px;
	}
	#Mv .scene03 .caption,
	#Mv .scene04 .caption{
		left: auto;
		right: 10px;
	}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* obi
-----------------------------------------------------------------*/
	.obi{
		padding: 16px 0;
	}
	.obi p{
		max-width: 360px;
	}

/* price_obi
-----------------------------------------------------------------*/

.price_obi{
	padding: 16px 0;
}
.price_img {
    width: 90%;
}
.price_obi::before {
    left: -6%;
}


/* intro
-----------------------------------------------------------------*/
	.intro{
		padding: 5% 0 0;
	}
	.intro h2 .dark{
		font-size: 2.2rem;
		line-height: 1.5;
	}
	.intro h2 .red{
		font-size: 3.0rem;
		line-height: 1;
		padding: 32px 12px 32px;
		background: var(--red);
		color: var(--light);
		margin-left: calc((-100vw - -100%) / 2);
			margin-right: calc((-100vw - -100%) / 2);
		margin-top: 16px;
	}
	.intro h2 .txt{
	color: var(--light);
	font-size: 1.3rem;
	margin-top: 16px;
}
	.intro.bottom h2 .red{
		margin-left: auto;
			margin-right:auto;
		background: none;
		color: var(--red);
		font-size: 4.0rem;
		line-height: 1.3;
		padding: 0 0 8px;
	}
	.intro_btn{
		max-width: 300px;
		padding-top: 24px;
	}
	.intro_btn a{
		font-size: 3.2rem;
		padding: 14px 8px;
	}
	.intro_btn a::after{
		    right: 24px;
    top: 19px;
    width: 12px;
    height: 21px;
	}
	.red .intro_btn{
		padding-top: 16px;
	}
	.intro h2 .img {
			max-width: 800px;
			margin: auto;
			padding: 0 0 8px;
			border-bottom: none;
	}
	.intro_txt{
		transform: rotate(0.05deg);
		text-align: center;
		font-size: 1.6rem;
		line-height: 1.6;
		font-weight: 600;
		margin-top: 16px;
	}



/* merit
-----------------------------------------------------------------*/

.merit{
	padding: 5% 0;
}
.merit_wrap li{
	flex-basis: 50%;
	padding: 3px;
	margin-top: 12px;
}
.merit_wrap li:nth-of-type(2),
.merit_wrap li:nth-of-type(6){
	border: none;
}



/* concept
-----------------------------------------------------------------*/

.concept{
	padding: 10% 0 0;
	position: relative;
	background-image: url(../img/top/concept_bg.webp);
	background-size: cover;
	background-position: top center;
	z-index: 2;
	margin-bottom: 0;

}
.concept_img2{
	position: unset;
	width: 100%;
	margin: auto;
	text-align: center;
	overflow: hidden;
}
.concept_img2 img{
	display: block;
	max-width: none;
	width: 120%;
	transform: translateX(-15%);
}
.concept .txt_area{
	padding-left: 0;
	max-width: 100%;
}
.concept .txt_area .concept_img{
	max-width: 90%;
	margin: 0 auto 24px;
}
.concept .txt_area .concept_txt{
	font-size: 1.25rem;
	text-align: center;
	line-height: 2;
	letter-spacing: .5px;
	width: 100%;
}


/* contents_link_area
-----------------------------------------------------------------*/

.contents_link_area{
	padding: 16% 0 8%;
}
.contents_link_area h4{
	max-width: 80%;
}
.contents_link_area h4::before{
	bottom: -16px;
	width: 80px;
	height: 6px;
}
.contents_link_area h4 img{width: 100svw;}

.contents_link_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 16%;
}
.contents_link_box li{
	/* margin-top: -5%; */
}
.contents_link_box li.soon_wrap {
	margin-top: 2%;
}
.contents_link_box li:nth-of-type(1),
.contents_link_box li:nth-of-type(2),
.contents_link_box li:nth-of-type(5),
.contents_link_box li:nth-of-type(6),
.contents_link_box li:nth-of-type(7),
.contents_link_box li:nth-of-type(8),
.contents_link_box li:nth-of-type(9),
.contents_link_box li:nth-of-type(10){
	flex-basis: 49%;
}
.contents_link_box li:nth-of-type(3),
.contents_link_box li:nth-of-type(4){
	flex-basis: 100%;
}

/* line_wrap
-----------------------------------------------------------------*/

.line_wrap{
	margin: 16% auto 0;
	border-radius: 8px;
}
.line_ttl{
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 600;
	transform: rotate(0.05deg);
	padding: 8px;
}
.line_contents{
	background: var(--light);
	display: block;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
}
.line_contents li:nth-of-type(2){
	flex-basis: 28%;
}
.line_contents li:nth-of-type(3){
	flex-basis: 17%;
}
.line_contents .addess{
	margin-top: 16px;
}


}


/* information追加 */

.info{
	padding: 5% 0;
    background: url(../img/common/bg_dot.svg), var(--lgray);
}
.info_box{
	background: rgba(255,255,255,.6);
	padding: 4.8rem 3.2rem;
	max-width: 1000px;
	margin: auto;
}
.info_box .ttl{
	text-align: center;
	font-size: 3.2rem;
	font-weight: 800;
	transform: rotate(0.05deg);
	margin-bottom: 3.2rem;
}
.info_box dl{
	border-bottom: 1px solid var(--gray);
	display: flex;
	gap:  5%;
	align-items: center;
	margin-bottom: 2.4rem;
	padding-bottom: .8rem;
}
.info_box .days{
	font-size: 1.4rem;
	font-weight: 600;
	transform: rotate(0.05deg);
}
.info_box .txt{
	font-size: 1.6rem;
	transform: rotate(0.05deg);
}
.info_box .txt a{
	border-bottom: 1px solid var(--dark);
	transition: .3s;
	font-weight: 600;
}
@media (hover: hover){
	.info_box .txt a:hover{
	border-bottom: 1px solid var(--red);
	color: var(--red);
	transition: .3s;
}
}


@media screen and (max-width: 768px) {
	
.info{
	padding: 8% 0;
}
.info_box{
	padding: 3.2rem 2.4rem;
}
.info_box .ttl{
	font-size: 2.4rem;
	margin-bottom: 2.4rem;
}
.info_box dl{
	display: block;
	margin-bottom: 1.6rem;
	padding-bottom: .8rem;
}
.info_box .days{
	font-size: 1.2rem;
}
.info_box .txt{
	font-size: 1.3rem;
}
.info_box .txt a{
	border-bottom: 1px solid var(--red);
	color: var(--red);
}
}

