@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP",YuGothic, "Yu Gothic medium", "Hiragino Sans",sans-serif!important;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  background: url("../../images/bg_line_01_season2.webp") no-repeat top left /100% auto,url("../../images/grid_white.webp") repeat top left /15px 15px ;
  /*background: url("../../images/bg_line_01_season2.webp") no-repeat top left /100% auto,url("../../images/bg_line_02_season2.webp") no-repeat bottom right /100% auto,url("../images/grid_white.webp") repeat top left /15px 15px ;*/
  background-attachment: fixed;
  background-color: #000c23;
  line-height: 150%;
  color: #fff;
}
.copy {
  text-align: center;
  font-size: 12px;
}
h1 {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 40px;
	line-height: 160%;
	color: #ff5d41;
}
h1 span{
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
	font-size: 40px;
	color: #fff;
	letter-spacing: 3px;
}
main .h1_logo {
  text-align: center;
}
main .h1_logo img {
  width: 100px;
  padding: 30px 0;
}
.home {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal;
  font-weight: bold;
  position: relative;
  font-size: 25px;
}
.home a {
  display: inline-block;
  position: fixed;
  left: 30px;
  top: 30px;
}
.pankuzu {
  position: fixed;
  left: 30px;
  top: 65px;
  font-size: 10px;
  font-weight: 400;
}
.home_btn{
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.home_btn:hover{
  letter-spacing: 5px;
}

/* ---------------------------------------
キャストリスト
-----------------------------------------*/
.cast_list {
  text-align: center;
  width: 1000px;
  margin: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
	position: relative;
  z-index: 555;
  /*position: sticky;
  top: 0;
  backdrop-filter: blur(3px);*/
}
.list_name {
  font-size: 20px;
  line-height: 180%;
  font-weight: 500;
  transition: .5s;
	margin-right: 40px;
}
.list_name:last-of-type{
  margin-right: 0;
}
.list_name.line a {
  padding: 0 5px ;
  position: relative; 
	pointer-events: all;
}
.list_name.line a::before {
  background: #ff5639;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.list_name.line a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

/* ---------------------------------------
アコーディオン
-----------------------------------------*/
.accordion_list {
  max-width: 1000px;
  margin: auto;
}
.accordion {
  position: relative;
  margin-bottom: 80px;
}
#cast01::before,#cast02::before,#cast03::before,
#cast04::before,#cast05::before,#cast06::before,
#cast07::before,#offshot::before{
  content: "";
  margin-top: -120px;
  padding-top: 120px;
  display: block;
  visibility: hidden;
}
/* ボタン */
.accordion-btn {
  background-color: #ff5639;
  border: 1px solid #ff5639;
  bottom: 0;
  color: #000c23;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  left: 0;
  margin: auto;
  padding: 5px 15px 7px;;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all .5s;
  width: fit-content;
  z-index: 1;
}
/* 続きを読むボタンの表記 */
.accordion-btn::after {
  content: "続きを読む";
}
/* ボタンhover時のスタイル */
.accordion-btn:hover {
  background-color: #000c23;
  color: #ff5639;
}
.accordion-text {
  overflow: hidden; /* テキストを隠す */
  position: relative;
}
/* 最初に見えてるテキストエリアの高さ */
.accordion-text.is-hide {
  height: 300px;
}
/* テキストをグラデーションで隠す */
.accordion-text::before {
  background: -webkit-linear-gradient(top, rgba(0,12,35,0) 0%, rgba(0,12,35,.5) 50%, rgba(0,12,35,0.9) 100%);
  background: linear-gradient(top,  rgba(0,12,35,0) 0%, rgba(0,12,35,.5) 50%, rgba(0,12,35,0.9) 100%);
  bottom:0;
  content: "";
  height: 80px; /* グラデーションで隠す高さ */
  position: absolute;
  width: 100%;
}
/* 閉じるボタンの位置 */
.accordion-btn.is-show {
  bottom: -4em;
}
/* 閉じるボタンの表記 */
.accordion-btn.is-show::after {
  content: "閉じる";
}
/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.accordion-btn.is-show + .accordion-text::before {
  display: none;
}
.comment_mem {
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ff5639; 
  margin-bottom: 15px;
  font-weight: 700;
}
.comment_mem:nth-of-type(n+2){
  padding-top: 50px;
}
.comment_flex {

}
.comment_im {
  width: 200px;
  padding: 0 15px 0 0;
  float: left;
}
.accordion-text::after {
  content: "";
  display: block;
  clear: both;
}
/* ----------------------------------------------
コメント
------------------------------------------------*/
.comment {
  font-weight: 400;
  font-size: 16px;
}
.comment li {
  padding-bottom: 15px;
}
.comment li.com_title {
  color: #ff5639;
}
.comment li p span.question {
  color: #ff5d41;
	font-weight: bold;
}

/* ---------------------------------------
PAGE TOPボタン
-----------------------------------------*/
.totop a {
 display: none;
}
#totop_btn {
 width: 110px;
}
#totop_btn.is-fixed {
 position: fixed;
 right: 15px;
 bottom: 10px;
 z-index: 1001;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#nav-drawer {
  position: relative;
}
.nav-unshown {
  display:none;/*チェックボックス等は非表示に*/
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 60px;
  height:60px;
  right: 20px;
  top: 20px;
  z-index: 99999;
	background-color: #ff5d41;
	border-radius: 100%;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 4px;/*線の太さ*/
  width: 25px;/*長さ*/
  background:  #000c23;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  border-radius: 20px;
}
#nav-open span:before {
  bottom: 10px;
}
#nav-open span:after {
  top: 10px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#nav-input:checked ~ #nav-open span {
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span::before {
  bottom: 0;
  transform: rotate(225deg);
}
#nav-input:checked ~ #nav-open span::after {
  top: 0;
  transform: rotate(-225deg);
}  
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000c23;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 300px;
  height: 100vh;
  background:#ff5d41;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li{
	border-bottom:1px dashed #000c23;
	padding-bottom: 15px;
	margin: 0 0 15px;
}
.nav_item li:last-of-type{
	border-bottom:0 dashed #000c23;
}
.nav_item li a {
  display: block;
  
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
	
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
	height: 100vh;
}
.header_menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px){
.wrapper::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../../images/bg_line_01_sp_season2.webp") no-repeat top left /100% auto,url("../../images/bg_line_02_sp_season2.webp") no-repeat bottom left /100% auto, url("../../images/grid_white.webp") repeat top left /15px 15px #000c23;
}
body {
  font-family: Optima, Segoe,"Zen Kaku Gothic New", "Noto Sans JP",YuGothic, "Yu Gothic medium", "Hiragino Sans",sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
}
main {
  background: none;
}
h1 {
  font-size: 18px;
  margin-bottom: 20px;
}
h1 span {
  font-size: 24px;
}
main .h1_logo img {
  width: 60px;
  padding-bottom: 15px;
}
.home {
  position: relative;
  font-size: 20px;
}
.home a {
  display: inline-block;
  position: fixed;
  left: 15px;
  top: 20px;
}
.home_btn {
  z-index: 555;
}

/* ---------------------------------------
キャストリスト
-----------------------------------------*/
.cast_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  position: static;
  backdrop-filter: none;
  padding-top: 5px;
}
.list_name {
  font-size: 18px;
  line-height: 180%;
  transition: .5s;
  padding: 2px;
	width:35%;
	margin-right: 2%;
}
.list_name:nth-of-type(2n) {
	margin-right: 0;
}
.list_name span {
  font-size: 12px;
}
.list_name.line a {
  padding: 0 5px ;
  position: relative; 
}
.list_name.line a::before {
  display: none;
}
/* ---------------------------------------
アコーディオン
-----------------------------------------*/
.accordion_list {
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
.accordion {
  position: relative;
  margin-bottom: 30px;
  /*background-color:  rgba(255,255,255,.1);*/
  padding: 10px;
}
.accordion:last-of-type {
  margin-bottom: 40px;
}
#cast01::before,#cast02::before,#cast03::before,
#cast04::before,#cast05::before,#cast06::before,
#cast07::before,#offshot::before{
  content: "";
  margin-top: 0;
  padding-top: 0;
}

/* ボタン */
.accordion-btn {
  bottom: 20px;
  font-size: 12px;
  margin: auto;
  padding: 5px 15px 7px;;
}
/* 最初に見えてるテキストエリアの高さ */
.accordion-text.is-hide {
  height: 500px;
}
/* テキストをグラデーションで隠す */
.accordion-text::before {
  height: 100px; /* グラデーションで隠す高さ */
  position: absolute;
  width: 100%;
}
/* 閉じるボタンの位置 */
.accordion-btn.is-show {
  bottom: -3em;
}
.comment_mem {
  font-size: 22px;
  padding-bottom:10px;
  margin-bottom: 10px;
  }
.comment_mem:nth-of-type(n+2){
  padding-top: 0;
}
.comment_im {
  width: 40%;
  padding: 0 15px 0 0 ;
  float: left;
}
.accordion-text::after {
  content: "";
  display: block;
  clear: both;
}
/* ----------------------------------------------
コメント
------------------------------------------------*/
.comment {
  font-size: 14px;
}
/* ---------------------------------------
PAGE TOPボタン
-----------------------------------------*/
.totop a {
 display: none!important;
}
#totop_btn {
 width: 80px;
}
#totop_btn.is-fixed {
 position: fixed;
 right: 5px;
 bottom: 10px;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
/*アイコンのスペース*/
#nav-open {
  width: 40px;
  height:40px;
  right: 15px;
  top: 15px;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  height: 2px;/*線の太さ*/
  width: 16px;/*長さ*/
}
#nav-open span:before {
  bottom: 7px;
}
#nav-open span:after {
  top: 7px;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 60px 20px 0;
  position: relative;
}
}

/* ----------------------------------------------------------------------------------------
812px以下の固定css
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
    
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
 }
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
/*PCフッター813*/
.footer_fix {
  margin: 2% auto;
}
.lp_cta_fixed .lp_fv_cta_btn {
  width: min(44vw, 450px);
}
.home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
}
}