/* CSS Document */
@charset "utf-8";

.wrapper{
	padding: 0 4vw;
}

.gnav_btn a{
	width: 12vw;
	height: 15vw;
	background: none;
	border-radius: 0;
	display: block;
	position: fixed; top: 0; right: 2vw;
	z-index: 100;
}
.gnav_btn span {
	width: 8vw;
	height: 1px;
	margin: -0.5px 0 0 -4vw;
	background: #FFF;
	border-radius: 1px;
	display: block;
	position: absolute; top: 50%; left: 50%;
	transition: 0.2s;
}
.gnav_btn span:before,
.gnav_btn span:after {
	content: "";
	width: 8vw;
	height: 1px;
	background: #FFF;
	border-radius: 1px;
	display: block;
	position: absolute; top: 0; left: 0;
	transition: 0.3s;
}
.gnav_btn span:before {
	margin-top: -8px;
}
.gnav_btn span:after {
	margin-top: 8px;
}
.gnav_btn a.on span {
	background: transparent;
}
.gnav_btn a.on span:before,
.gnav_btn a.on span:after {
	margin-top: 0;
	background: #FFF;
}
.gnav_btn a.on span:before {
	transform: rotate(-20deg);
	-webkit-transform: rotate(-20deg);
}
.gnav_btn a.on span:after {
	transform: rotate(-160deg);
	-webkit-transform: rotate(-160deg);
}
.gnav_btn p{
	width: 100%;
	position: absolute; bottom: 0; left: 0;
	font-size: 3vw;
	text-align: center;	
}
.gnav_btn p + p,
.gnav_btn a.on p{
	display: none;
}
.gnav_btn a.on p + p{
	display: block;
}
.gnav{
	width: 85vw;
	height: 100%;
	padding-top: 8vw;
	background: url(../images/common/gnav_bg.svg) no-repeat left top;
	background-size: cover;
	position: fixed; top: 0; right: 0;
	display: block;
	z-index: 90;
	pointer-events: auto;
	overflow: auto;
	transform: translateX(100%);
	transition: transform 0.4s ease;
}
.gnav.on{
    transform: translateX(0);
}
.gnav .logo{
	width: 	55vw;
	margin-left: 5vw;
}
.gnav nav {
	margin-top: 6vw;
	text-align: left;
}
.gnav nav > div {
	margin-top: 0;
	border-top: 1px solid #FFF;
}
.gnav nav > div > a{
	padding: 4vw 4vw 4vw 6vw;
	display: block;
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 4.5vw;
	color: #FFF;
	text-decoration: none;
}
.gnav nav > div.no_link{
	padding: 4vw 4vw 4vw 6vw;
}
.gnav nav > div.no_link > p{
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 4.5vw;
	color: #FFF;
	text-decoration: none;
}
.gnav .inner{
	margin-top: 4vw;
	padding: 3vw;
	background: url(../images/common/gnav_inner_bg.svg) no-repeat center;
	background-size: cover;
}
.gnav .inner .title_box{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	font-family: "Noto Serif JP", serif;
	font-weight: 900;
}
.gnav .inner .title_box .title{
	font-size: 3.5vw;
}
.gnav .inner .title_box .title span{
	display: block;
	font-size: 6vw;
	text-align: center;
}
.gnav .inner .title_box .and{
	margin: 0 2vw;
	font-size: 6vw;
}
.gnav .inner .text{
	margin-top: 2vw;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
}
.gnav nav > div.no_link .caution{
	margin-top: 2vw;
	text-align: center;
}
.gnav .btn{
	margin-top: 4vw;
}
.gnav .btn a{
	height: calc(14vw - 2px);
	background: #FFF;
	border: 1px solid #707070;
	border-radius: 7vw;
	display: block;
	position: relative;
	font-size: 4.5vw;
	font-weight: 700;
	line-height: 14vw;
	color: #222;
	text-align: center;
}
.gnav .btn a::before{
	content: "";
	width: 2vw;
	height: 4vw;
	background: url(../images/common/arrow_b.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute; top: 50%; right: 4vw;
	transform: translateY(-50%);
}
.gnav .btn a img{
	width: 7vw;
	position: absolute; top: 50%; left: 2vw;
	transform: translateY(-50%);
}
.gnav .sns{
	margin-top: 5vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gnav .sns div{
	margin: 0 3.5vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gnav .sns div img{
	width: auto;
	height: 7vw;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.gnav .sns div:last-child img{
	height: 5vw;
}


/* main */

main{
}

.kv{
	position: relative;
}
.kv .video{
	width: 100vw;
	height: 100vh;
	position: fixed; top: 0; left: 0;
	z-index: -10;
	overflow: hidden;
}
.kv .video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kv .video::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.37);
	position: absolute; top: 0; left: 0;
	z-index: 1;
}

.kv .fv{
	height: 100vh;
	padding: 3vw 4vw;
	position: relative;
}
.kv .fv h1{
	width: 25%;
}
.scroll_down a{
  color: #FFF;
  font-size: 0;
  letter-spacing: 2px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: block;
  background-size: 14px auto;
  z-index: 2;
  text-decoration: none; 
  transform: translate(-50%, -50%);
}
.scroll_down a:before {
  position: absolute;
  top: calc(50% - 56px);
  left: calc(50% - 8px);
  transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid #FFF;
  border-width: 0px 0 2px 2px;
}
.scroll_down a:after {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #FFF;
  content: "";
  border-radius: 100%;
  top: calc(50% - 64px);
  left: calc(50% - 19px);
}
.scroll_down a span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 0 0 #FFF;
  opacity: 0;
  animation: circle 3s infinite;
  top: calc(50% - 63px);
  left: calc(50% - 19px);
}
@keyframes circle {
  0% { opacity: 0; }
  30% { opacity: 1; }
  60% { box-shadow: 0 0 0 40px rgba(255,255,255,.1);
        opacity: 0; }
  100% { opacity: 0; }
}
.scroll_down img{
	width: 15vw;
}

.kv .sv{
	padding: 40vw 0 110vw 0;
	position: relative;
}
.kv .sv::after{
	content: "";
	width: 100vw;
	height: 51vw;
	background: url(../images/kv/webp/acc.webp) no-repeat center bottom;
	background-size: 100% auto;
	position: absolute; bottom: 0; left: 0;
}
.kv .sv .catch{
	padding: 0 5vw;
}
.kv .sv .logo{
	margin-top: 15vw;
	padding: 0 5vw;
}
.kv .sv .text{
	margin-top: 30vw;
	padding: 0 6vw;
}

.cta_top{
	padding: 10vw 0;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	text-align: center;
}
.cta_top.cta_top_1{
	background: #000;
}
.cta_top.cta_top_2{
	background: #FFF;
	color: #000;
}
.cta_top p{
	font-size: 5vw;
}
.cta_top p big{
	font-size: 7vw;
}
.cta_top .becouse{
	margin-top: 8vw;
	font-size: 7vw;
}
.cta_top .text{
	font-size: 7.5vw;
}

.cta{
	padding: 6vw 0;
	background: url(../images/cta/webp/bg.webp) no-repeat center;
	background-size: cover;
}
.cta .title_box{
	display: flex;
	justify-content: center;
}
.cta .title_box div{
}
.cta .check_box{
	margin-top: 4vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Serif JP", serif;
}
.cta .left{
	margin-right: 2vw;
	font-size: 5vw;
}
.cta .right{
	font-size: 4vw;
}
.cta .right p{
}
.cta .right p + p{
	margin-top: 1vw;
}
.cta .right p span{
	color: #15C30B;
}
.cta .btn{
	margin-top: 6vw;
	padding: 0 2vw;
}
.cta .btn a{
	height: 16vw;
	background: #3BA80A;
	border-radius: 8vw;
	display: block;
	position: relative;
	font-size: 4vw;
	font-weight: 700;
	line-height: 16vw;
	color: #FFF;
	text-align: center;
}
.cta .btn a::before{
	content: "";
	width: 2vw;
	height: 4vw;
	background: url(../images/common/arrow_w.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute; top: 50%; right: 8vw;
	transform: translateY(-50%);
}
.cta .caution{
	margin-top: 2vw;
	text-align: center;
}

.intro{
	padding: 15vw 0 20vw 0;
	background: url(../images/intro/webp/bg.webp) no-repeat center;
	background-size: cover;
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}
.intro::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.78);
	position: absolute; top: 0; left: 0;
	z-index: 1;
}
.intro *{
	position: relative;
	z-index: 2;
}
.intro h2{
	width: 85vw;
}
.intro .box{
}
.intro .item{
	margin-top: 10vw;
}
.intro h3{
	width: 30vw;
}
.intro .inner{
}
.intro h4{
	margin: -20vw 0 0 40vw;
	font-size: 5.5vw;
	line-height: 1.7;
}
.intro .item:last-child h4{
	margin-top: -18vw;
}
.intro p{
	margin-top: 2vw;
	padding: 4vw 0 0 4vw;
	border-top: 1px solid #FFF;
	font-size: 5vw;
	line-height: 1.7;
	letter-spacing: 0.02em;
}
.intro .text{
	margin-top: 8vw;
	padding-top: 8vw;
	position: relative;
	font-size: 7vw;
	line-height: 2.5;
}
.intro .text::before{
	content: "";
	width: 100vw;
	height: 1px;
	background: #FFF;
	position: absolute; top: 0; left: -4vw;
}

.movie{
	padding: 15vw 0;
	background: url(../images/movie/webp/bg.webp) no-repeat center;
	background-size: cover;
	position: relative;
}
.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.39);
	position: absolute; top: 0; left: 0;
	z-index: 1;
}
.movie *{
	position: relative;
	z-index: 2;
}
.movie h2{
	display: flex;
	justify-content: center;
}
.movie h2 img{
	width: 65%;
}
.movie .youtube {
  position: relative;
  width: 100%;
  margin-top: 8vw;
  padding-top: 56.25%;
}
.movie .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.profile{
	padding: 15vw 0 12vw 0;
	background: #080404;
}
.profile h2{
	width: 90%;
}
.profile .band{
	margin-top: 10vw;
}
.profile .box{
	padding-top: 4vw;
}
.profile .item{
	margin-top: 8vw;
	background: url(../images/profile/webp/bg_sp.webp) no-repeat center;
	background-size: cover;
}
.profile .thum{
	position: relative;
}
.profile .thum::before{
	content: "";
	width: 34vw;
	height: 26vw;
	background: url(../images/profile/acc.svg) no-repeat;
	background-size: cover;
	position: absolute; bottom: 0; left: 0;
}
.profile .inner{
	position: relative;
}
.profile .chara{
	position: absolute;
}
.profile .item:nth-child(1) .chara{
	width: 25vw;
	top: -26vw; left: 2vw;
}
.profile .item:nth-child(2) .chara{
	width: 30vw;
	top: -22vw; left: 1vw;
}
.profile .item:nth-child(3) .chara{
	width: 33vw;
	top: -22vw; left: 2vw;
}
.profile .item:nth-child(4) .chara{
	width: 22vw;
	top: -22vw; left: 4vw;
}
.profile .item:nth-child(5) .chara{
	width: 24vw;
	top: -20vw; left: 3vw;
}
.profile .name{
	padding-right: 5vw;
	position: relative;
	z-index: 1;
	font-size: 5vw;
	font-weight: 700;
	text-align: right;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.71);
}
.profile p{
	padding: 2vw 4vw 6vw 4vw;
	font-size: 4.5vw;
	line-height: 1.8;
}

.slide{
	padding: 8vw 0 15vw 0;
	background: url(../images/slide/webp/bg.webp) no-repeat center;
	background-size: cover;
	position: relative;
}
.slide::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.79);
	position: absolute; top: 0; left: 0;
	z-index: 1;
}
.slide *{
	position: relative;
	z-index: 2;
}
.slide h2{
}
.slide .bottom{
	margin-top: 10vw;
	padding: 0 6vw;
}
.embla {
	margin-top: 8vw;
	position: relative;
	overflow: hidden;
	width: 100%;
}
.embla__viewport {
	overflow: hidden;
}
.embla__container {
	display: flex;
}
.embla__slide {
	flex: 0 0 100%;
	margin-right: 20px;
}
.video-wrap {
	position: relative;
	width: 100%;
	padding-top: 150%;
}
.video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: auto;
}
.embla__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4vw;
	margin-top: 6vw;
}
.embla__dots {
	display: flex;
	justify-content: center;
	gap: 3vw;
}
.embla__dot {
	width: 3vw;
	height: 3vw;
	border-radius: 50%;
	background: #AFAFAF;
	border: none;
	cursor: pointer;
	padding: 0;
}
.embla__dot.is-selected {
	background: #980000;
}
.embla__prev,
.embla__next {
	width: 15vw;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.embla__next img {
	transform: scale(-1,1);
}

.voice{
	padding: 15vw 0 25vw 0;
	background: url(../images/voice/webp/bg_sp.webp) no-repeat center bottom;
	background-size: cover;
	position: relative;
}
.voice::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.74);
	position: absolute; top: 0; left: 0;
	z-index: 1;
}
.voice *{
	position: relative;
	z-index: 2;
}
.voice h2{
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 8vw;
	text-align: center;
}
.voice h2 small{
	display: block;
	font-size: 5vw;
}
.voice .image{
	margin-top: 6vw;
}

.live{
	padding: 15vw 0 20vw 0;
	background: url(../images/live/webp/bg_sp.webp) no-repeat center bottom;
	background-size: cover;
	position: relative;
}
.live::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(21,21,21,0.62);
	position: absolute; top: 0; left: 0;
	z-index: 1;
}
.live *{
	position: relative;
	z-index: 2;
}
.live h2{
	font-weight: 400;
	font-size: 8vw;
	text-align: center;
}
.live .box{
}
.live .item{
	margin-top: 6vw;
}
.live .item + .item{
	margin-top: 12vw;
}
.live .thum_box{
	position: relative;
}
.live .thum_box .thum{
	position: relative;
}
.live .thum_box .thum::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.61);
	position: absolute; top: 0; left: 0;
	z-index: 3;
}
.live .thum_box .title_box{
	width: 100%;
	position: absolute; top: 28%; left: 0;
	text-align: center;
}
.live .thum_box h3{
	font-weight: 700;
	font-size: 4.5vw;
}
.live .thum_box h4{
	margin-top: 4vw;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 4.5vw;
}
.live .thum_box .inner{
	width: 100%;
	padding: 2vw;
	background: #731425;
	position: absolute; bottom: 0; left: 0;
	font-weight: 700;
	font-size: 4vw;
}
.live .thum_box .inner p{
}
.live .thum_box .inner p + p{
	margin-top: 1vw;
}
.live .detail_box{
}
.live .detail_box h3{
	padding: 4vw 1vw 2vw 1vw;
	font-weight: 700;
	font-size: 4.5vw;
}
.live .detail_box .inner{
	border-bottom: 1px dotted #9D9D9D;
}
.live .detail_box .inner div{
	padding: 4vw 17vw 4vw 1vw;
	border-top: 1px dotted #9D9D9D;
	font-size: 4vw;
	line-height: 1.8;
}
.live .detail_box .btn{
	margin-top: 6vw;
}
.live .detail_box .btn a{
	height: calc(16vw - 2px);
	background: #FFF;
	border: 1px solid #707070;
	border-radius: 8vw;
	display: block;
	position: relative;
	font-size: 5vw;
	font-weight: 700;
	line-height: 16vw;
	color: #222;
	text-align: center;
}
.live .detail_box .btn a::before{
	content: "";
	width: 2vw;
	height: 4vw;
	background: url(../images/common/arrow_b.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute; top: 50%; right: 8vw;
	transform: translateY(-50%);
}
.live .bottom_text{
	margin-top: 15vw;
	font-size: 5vw;
	line-height: 1.8;
	text-align: center;
}
.live .bottom_text span{
	font-size: 4.5vw;
}
.live .bottom_btn{
	margin-top: 6vw;
}
.live .bottom_btn a{
	height: 16vw;
	background: #3BA80A;
	border-radius: 8vw;
	display: block;
	position: relative;
	font-size: 4.5vw;
	font-weight: 700;
	line-height: 16vw;
	color: #FFF;
	text-align: center;
}
.live .bottom_btn a::before{
	content: "";
	width: 2vw;
	height: 4vw;
	background: url(../images/common/arrow_w.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute; top: 50%; right: 8vw;
	transform: translateY(-50%);
}

.about{
	padding: 10vw 0 30vw 0;
	background: url(../images/about/bg.svg) no-repeat center bottom;
	background-size: cover;
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 3;
	text-align: center;
}
.about .title{
	font-size: 4.5vw;
}
.about p{
	margin-top: 6vw;
	font-size: 4vw;
}

.rule{
	padding: 10vw 0 25vw 0;
}
.rule h2{
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 8.5vw;
	text-align: center;
}
.rule .text{
	width: 50%;
	margin: 12vw auto 0 auto;
}

.lv{
	padding: 10vw 0 70vw 0;
}
.lv .catch{
}


/* footer */

footer{
	padding-top: 15vw;
	background: #FFF;
	position: relative;
}
footer::before{
	content: "";
	width: 140vw;
	height: 45vw;
	background: url(../images/footer/webp/acc.webp) no-repeat center bottom;
	background-size: 100% 100%;
	position: absolute; top: -45vw; left: -20vw;
}
footer .logo{
	width: 70vw;
	margin: 0 auto;
}
footer .banner{
	margin-top: 12vw;
}
footer .sns{
	margin-top: 15vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .sns div{
	margin: 0 3.5vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .sns div img{
	width: auto;
	height: 7vw;
}
footer .sns div:last-child img{
	height: 5vw;
}
footer .copy{
	margin-top: 8vw;
	padding: 4vw 0;
	background: #000;
	font-size: 3.5vw;
	color: #FFF;
	text-align: center;
}
footer .top_marker{
	width: 12vw;
	position: fixed; bottom: 5vw; right: 2vw;
	display: none;
}

