@charset "utf-8";
/* CSS Document */

/*---------------------------------
RESET CSS
---------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
}

ol, ul {list-style: none;}
table {border-collapse: collapse;border-spacing: 0;}
a{text-decoration:none;color: #000;transition:0.5s;}
a:hover{opacity: 0.7;transition:0.2s;}

img,iframe {
max-width: 100%;
vertical-align: bottom;
}
html { 
scroll-behavior: smooth; 
}
/*------------------------------------
common
------------------------------------*/
.flex {display: flex;}
.aic {align-items: center;}
.jcb {justify-content: space-between;}
.f_bold {font-weight: bold;}
.f_normal {font-weight: normal;}
.f_white{color: #fff;}
.sp_only {display: none;}
.ta_c{text-align: center;}
.ta_l{text-align: left;}
.fs_16 { font-size: clamp(0.9rem, 1.33vw, 1rem); } 
.fs_18{font-size: clamp(1rem, 1.5vw, 1.125rem); } 
.fs_20 { font-size: clamp(1.125rem, 1.67vw, 1.25rem); } 
.fs_30 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); } 
.mb_10 { margin-bottom: clamp(0.5rem, 0.83vw, 0.625rem); }
.mb_15 { margin-bottom: clamp(0.625rem, 1.25vw, 0.9375rem); }
.mb_20 { margin-bottom: clamp(0.75rem, 1.67vw, 1.25rem); }
.mb_30 { margin-bottom: clamp(1rem, 2.5vw, 1.875rem); }
.mb_40 { margin-bottom: clamp(1.25rem, 3.33vw, 2.5rem); }
.mb_50 { margin-bottom: clamp(1.5rem, 4.17vw, 3.125rem); }
.mb_60 { margin-bottom: clamp(1.75rem, 5vw, 3.75rem); }
.mb_70 { margin-bottom: clamp(2rem, 5.83vw, 4.375rem); }
.mb_80 { margin-bottom: clamp(2.25rem, 6.67vw, 5rem); }
.mb_90 { margin-bottom: clamp(2.5rem, 7.5vw, 5.625rem); }
.mb_100 { margin-bottom: clamp(2.75rem, 8.33vw, 6.25rem); }

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	background: #fff;
  color: #000;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
}
section{
  scroll-margin-top: 80px;
}
.sec_wrap{
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}
.title-with-image {
  position: relative; 
  display: block;
  font-size:clamp(2.5rem, 8.33vw, 6.25rem);
  font-family:"Source Sans 3", sans-serif;
  font-weight: 700;
  margin-bottom: clamp(2rem, 5.83vw, 4.375rem); 
  letter-spacing:0.1em;
}

.title-with-image::after {
  content: '';
  position: absolute;
  display: block;
  height: clamp(20px, 0.6em, 50px);
  bottom: 0;
  width: 100%;         
  max-width: 300px;  
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  transform: translateX(-50%);
}
.title-with-image.left-align {
  text-align: left; 
}

.title-with-image.left-align::after {
  left: 0;            
  transform: none; 
}
.introduction .title-with-image::after {
  background-image: url('../img/sec_ttl_01.png'); 
}
.profile .title-with-image::after {
  background-image: url('../img/sec_ttl_02.png'); 
}
.director .title-with-image::after {
  background-image: url('../img/sec_ttl_03.png'); 
}
.trailer  .title-with-image::after {
  background-image: url('../img/sec_ttl_04.png'); 
}

.js-load {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1.8s ease-out, visibility 1.8s ease-out, transform 1.8s ease-out;
}

.js-load.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.js-fade_bt {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 2s ease-out, visibility 2s ease-out, transform 2s ease-out;
}
.js-fade_left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-80px);
  transition: opacity 2s ease-out, visibility 2s ease-out, transform 2s ease-out;
}
.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


@media (max-width: 768px) {
section{
  scroll-margin-top: 120px;
}
.sp_only{
  display: block;
}
.title-with-image::after {
  bottom: -7px;
}
}
/*------------------------------------
navigation
------------------------------------*/
#nav-toggle {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 72px;  /* 最後の指定を反映 */
  height: 72px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 1000;
}

#nav-toggle > div {
  position: relative;
  width: 36px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#nav-toggle span {
  width: 100%;
  height: 7%; 
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}

#nav-toggle span:nth-child(1) { top: 0; }
#nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
#nav-toggle span:nth-child(3) {top: 100%; transform: translateY(-100%); }

#nav-toggle:hover span:nth-child(1) { top: 10%; }
#nav-toggle:hover span:nth-child(3) { top: 90%; }

.open #nav-toggle span {
  background: #000;
}

.open #nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  opacity: 0; 
}

.open #nav-toggle span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

#container {
  z-index: 900;
}

#gloval-nav {
  background: rgba(255, 255, 255, 0.98);
  padding: 0 20px;
  color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
  overflow-y: auto;
}

#gloval-nav a {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.6s ease;
}

#gloval-nav a:hover {
  color: #666;
}

#gloval-nav ul {
  list-style: none;
}

#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
}

#gloval-nav ul li:nth-child(2) { transition-delay: 0.15s; }
#gloval-nav ul li:nth-child(3) { transition-delay: 0.3s; }
#gloval-nav ul li:nth-child(4) { transition-delay: 0.45s; }
#gloval-nav ul li:nth-child(5) { transition-delay: 0.6s; }
#gloval-nav ul li:nth-child(6) { transition-delay: 0.75s; }
#gloval-nav ul li:nth-child(7) { transition-delay: 0.9s; margin-bottom: 20px; }
#gloval-nav ul li:nth-child(8) { transition-delay: 0.1s; }

#gloval-nav .nav_logo img {
  width: 95%;
  max-width: 100%;
  height: auto;
}

#gloval-nav .nav_sns {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gloval-nav .nav_sns i {
  color: #fff;
}

.open {
  overflow: hidden;
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}

.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
  font-family: "Source Sans 3", sans-serif;
  font-weight: bold;
}

.header-icons {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 20px;
  z-index: 30;
  align-items: center;
}

.sns-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  cursor: pointer;
  background: #000000;
  color: #fff;
  position: relative;
  left: 100px;
  z-index: 40;
  top: 5px;
  border: 1px solid #fff;
}
.sns-icon:hover{
  opacity: 1;  
  transition: none; 
}

@media (max-width: 600px) {
  #nav-toggle {
    width: 50px;
    height: 50px;
  }

  #nav-toggle > div {
    width: 24px;
    height: 24px;
  }

  #nav-toggle span {
    height: 6%; 
  }

  .header-icons .sns-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 70px;
  }
  #gloval-nav nav{
    margin-top: 13%;
  }
}


/*------------------------------------
video-popup
------------------------------------*/
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-popup iframe {
  width: 90%;
  height: 80%;
  border: none;
  border-radius: 10px;
  /* margin-top: 100px; */
}

.close-video {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 60;
}

.close-video span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  background: #fff;
  border-radius: 1px;
  transform-origin: center;
  transition: all 0.3s ease;
}

.close-video span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-video span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 768px) {
.video-popup iframe{
  margin-top: 0;
}
.close-video {
  width: 30px;
  height: 30px;
  top: 30px;
  right: 20px;
}
.close-video span {
  width: 40px;
}
}
/*------------------------------------
main_image
------------------------------------*/
.main_image .wrapper {
  display: flex;
  height: auto; 
  position: relative;
}

.left-box {
  flex: 0 0 42.8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.small-image {
width: 100%; 
height: auto;
padding: 0 40px;
}

.small-image img {
  width: 100%;
  display: block;
}

.right-image {
  flex: 0 0 57.2%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.right-image img {
width: 100%; 
display: block; 
position: relative; 
z-index: 5;
}

.main_footer-bar {
  height: 150px;
  background: #38c0ff;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: -55px;
}

@media (max-width: 768px) {
  .main_footer-bar {
    height: 100px;
  }
  .wrapper {
    flex-direction: column;
    margin-top: 100px;
  }
  .left-box, .right-image {
    flex: 1 0 100%;
    text-align: center;
  }
  .right-image img {
    max-width: 90%;
    bottom: -20px;
  }
  .small-image {
    padding: 0 20px;
    }
}

/*------------------------------------
introduction
------------------------------------*/
.introduction {
  background-color: #38c0ff;
  position: relative;
  overflow: visible;
  width: 100%;
}
.intro_txt_wrap{
  max-width: 1035px;
}
.intro_sub{
  line-height: 1.8;
}
.intro_txt{
  line-height: 2.5;
  font-weight: 500;
  margin-bottom: clamp(1.25rem, 3.33vw, 2.5rem); 
}

.img-wrap {
  position: relative;
  margin-right: clamp(20px, 10vw, 200px); 
  z-index: 3;
}
.img-wrap img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 4; 
}

.introduction::after {
  content: "";
  position: absolute;
  left: 0;    
  top: calc(100% - 80px);
  width: 100%; 
  height: 80px;
  background: #fff;
  z-index: 1;
}
@media (max-width: 768px) {
.intro_txt{
  line-height: 1.7;
  font-size: 14px;
}
}
@media (max-width: 520px) {
  .intro_txt{
    font-size: 14px;
  }
}

/*------------------------------------
profile
------------------------------------*/
.profile{
margin-bottom: 170px;
}
.stage{
  position: relative;
  /* min-height: 100vh; */
  overflow: hidden;
  display: flex;
  align-items: center; 
}

.image-area{
  position: relative;
  flex: 1 1 65%;
  min-height: 90vh;
  margin-left: 300px;
  background:url(../img/profile_bg.png) no-repeat;
  background-size:cover;
  background-position:right;
  display: flex;
  align-items: center; 
}

.image-area::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#bfbfbf; 
  z-index:-1;
}

.text-panel{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 61.11%;
  max-width: 1100px;
  background:#000;
  padding: clamp(20px, 5vw, 60px);
  z-index:5;
}

.text-panel .profile_logo {
  width: 100%;
  padding-top: 12%; 
  background: url(../img/profile_logo.png) no-repeat left;
  background-size: contain;
}

.profile_logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.text-panel p{
  margin-bottom:18px;
  color:#fff;
  line-height: 2.5;
}

.member_list_wrap{
  background-color: #f8f8f8;
  background-image: url(../img/profile_member_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding: clamp(2.75rem, 8.33vw, 6.25rem) 0;
}

.member_list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 60px;
}

.member_list li {
  width: calc(33.333% - 26px);
}

.member_list li img {
  width: 100%;
  height: auto;
  display: block;
}

.band_member_name {
  text-align: center;
  line-height: 1.5;
}

.band_member_name span {
}

.member_list li p {
  line-height: 1.8;
}
.marquee-responsive {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-responsive .track {
  display: flex;
  width: max-content; 
  animation: scrollRight 40s linear infinite;
  will-change: transform;
}

.marquee-responsive img {
  display: block;
  height: auto;     
  width: auto;
  max-height: 270px; 
  flex-shrink: 0;
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@media (max-width: 1024px) {
  .stage {
    flex-direction: column-reverse;
  }

  .image-area {
    width: 100%;
    flex: unset;
    margin-left: 0;
    min-height: 50vh;
  }

  .text-panel {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 80%;
    margin: -60px auto 0;
  }
  .marquee-responsive img {
    max-height: 200px; 
  }
}
@media (max-width: 768px) {
  .profile{
    margin-bottom: 40px;
  }
  .image-area {
    min-height: 40vh;
    background-position: right;
  }
  .text-panel p {
    line-height: 1.5;
  }
  .text-panel .profile_logo{
    background-position: center;
  }
  .member_list {
    flex-direction: column;
    gap: 32px;
  }

  .member_list li {
    width: 80%;
    margin: auto;
  }
  .member_list li img{
    width: 70%;
    margin: auto;
  }
  .marquee-responsive img {
    max-height: 150px;
  }
}
@media (max-width: 520px) {
  .member_list li {
    width: 90%;
  }
.text-panel p{
  font-size: 14px;
}
.member_list li p{
  line-height: 1.5;
}
}

/*------------------------------------
director
------------------------------------*/
.director{
  position: relative;
  background-color: #38c0ff;
  padding-bottom: 130px;
  margin-bottom: 130px;
  overflow: hidden;
}

.director::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55vw;
  background-image: url('../img/director_bg.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover; 
  z-index: 0;
}

.director::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(1.2rem, 3vw, 2.8rem);
  background: #fff;
  z-index: 0;
}
.director > * {
  position: relative;
  z-index: 1;
}
.director .title-with-image {
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-block;
  position: relative;
}

.director_box{
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
.director_box img{
  max-width:360px;
  width: 100%;
}
.director_txt{
  max-width: 770px;
}
.director p{
  line-height: 2;
}

.accordion-box {
	position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  padding: clamp(1rem, 5.83vw, 4.375rem);
  overflow: hidden;
}
.accordion-box label {
	height: 180px; 
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	position: absolute;
	bottom: 0;
  left: 0;
	width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 60%);
}

.accordion-box label:after {
	content: "続きを読む"; 
	letter-spacing: .05em;
	line-height: 2rem;
	position: absolute;
	bottom: 50px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	color: #fff;
	background-color: #000;
	width:200px;
  max-width: 100%;
}
.accordion-box label:before {
	content: "▼";
	font-weight: 700;
  font-size: 10px;
	position: absolute;
	bottom: 60px;
  left: 50%;
  transform: translateX(3rem); 
  color: #fff;
	z-index: 1;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	/* width: 20px;
	height: 20px;
	line-height: 20px; */
}
.accordion-box input {
	display: none;
}
.accordion-box .accordion-container {
	overflow: hidden;
	height: 380px; 
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.accordion-box input:checked + label:after {
	content: "閉じる";
}
.accordion-box input:checked + label:before {
	content: "▲";
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
	padding-bottom: 80px; 
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
@media (max-width: 768px) {
  .director{
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .director::after {
  height: 100vw;
  }
  .director_box{
    display: block;
  }
  .director_box img{
    /* margin-bottom: 20px; */
    width: 60%;
    margin: 0 auto 5px;
    display: block;
  }
  .director_name{
    text-align: center;
  }
  .accordion-box label:after{
    bottom: 20px;
  }
  .accordion-box label:before{
    bottom: 30px;
  }
}
/*------------------------------------
trailer
------------------------------------*/
.trailer .movie-wrap {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}
.trailer .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
.trailer .movie-wrap{
  width: 90%;
    margin: auto;
}
}

/*------------------------------------
credit
------------------------------------*/
.credit{
  padding: 140px 0;
  background-image: url(../img/credit_bg.png);
background-repeat: no-repeat;
background-position: 0 50px; 
background-color: #fff;
background-size: cover;
}
.credit_wrap{
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 1158px;
  padding: 50px 40px;
}
.credit_wrap p{
  line-height: 1.5;
}
.sns_share{
  padding: 2vw 0;
  width: 100%;
  height: auto;
  margin: 0;
}
.sns_share ul {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sns_share ul li{
  width: 140px;
    height: 20px;
    margin: 0 3px;
    padding: 0;
    display: flex;
    justify-content: center;
}
.sns_share ul li.tw {
  background: #000;
  color: #fff;
  text-align: center;
  align-items: center;
}
.sns_share ul li.tw a {
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; 
  width: 100%;
  /* height: 20px; */
  font-size: 12px;
}
.sns_share ul li.tw i {
  font-size: 12px;
  line-height: 1;
}
.sns_share ul li.checkin {
background: #10519D;
}
.sns_share ul li.filmarks {
  background: #FFE100;
  text-align: center;
}
.sns_share ul li.filmarks img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sns_share ul li a{
  display: flex;
}
.pc_space {
  display: inline; 
}
@media (max-width: 800px) {
  .sns_share ul li {
      width: 160px;
      height: 20px;
      margin: 5px;
      padding: 3px 0;
      display: flex;
      justify-content: center;
  }
  .credit{
    padding: 60px 0 30px;
    background-position: bottom;
  }
  .credit_wrap{
    padding: 30px 20px;
  }
  .credits{
    font-size: 14px;
  }
  .pc_space {
    display: none;
  }
}
/*------------------------------------
footer
------------------------------------*/
footer{
  background-color: #000;
  color: #fff;
  padding: 15px 0;
  font-size: 12px;
}