@charset "utf-8";
/* -------------------------下の固定部分CSS　---------------------------*/
a{
	text-decoration: none;
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
img.im-100{
  width: 100%;
  height: auto;
}
img.im-70{
  width: 40%;
  height: auto;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}
.smarls{
  margin: 2em auto;
}
.menu-list-small {
    line-height: 1.5em;
    margin-bottom: 0.5em;
}
.profile-movie , .opening-movie {
    width: 42%;
}
.profile-movie img , .opening-movie img {
    width: 100%;
	border-radius: 20px 20px 0 0;
    height: auto;
}
.boo_a {
 background: #647a85;
 border-radius: 0 0 5px 5px;
    text-align: center;
    padding: 0.5em 0.1em;
    font-size: 14px;
    color: white;

}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol, ul {
 list-style: none;
    line-height: 1.5em;

}


/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}



.fee {
	  width: 100%;
    max-width: 419px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
@media (max-width: 425px) {
  header {
    height: 65px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
  width: 30%;
}

@media (max-width: 767px) {
  .header-logo {
    width: 100%;
  }
}

.header-logo img {
  width: 75%;
}

@media (max-width: 1178px) {
  .header-logo img {
    width: 170px;
  }
}

@media (max-width: 767px) {
  .header-logo img {
    width: 92%;
    max-width: 135px;
  }
}
.header-list i{
  margin-right: 5px;
}
.header-list, .header-right, .header-left {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-list {
  padding-top: 10px;
  margin-left: 20px;
  width: 85%;
}



.header-list li {
  margin-right: 15px;
}

.header-list li a {
  color: gray;
}

.header-list li i {
  margin-left: 10px;
}

@media (max-width: 1178px) {
  .header-list {
    display: none;
  }
}

.header__mail, .header__line, .humberger {
  width: 94px;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.header__line{
  width: 70px;
}
.header__line img{
  margin-top: 20px;
    max-width: 38px;
    margin-bottom: 4px;
}
.header__mail img, .humberger img {
	margin-top: 22px;
  max-width: 38px;
  margin-bottom: 4px;
}

@media (max-width: 425px) {
  .header__mail img, .header__line img, .humberger img {
    width: 32px;
  }
}

.header__mail p, .header__line p, .humberger p {
  font-size: 12px;
  margin-top: 5px;
  color: black;
  -webkit-transform: scale(0.9);
}

@media (max-width: 425px) {
  .header__mail p, .header__line p, .humberger p {
    -webkit-transform: scale(0.8);
  }
}

@media (max-width: 425px) {
  .header__mail, .header__line, .humberger {
    width: 53px;
    height: 65px;
  }
}




.header__line i {
  color: #00B900;
  background: white;
}

#humberger {
  position: relative;
  height: 20px;
  width: 80px;
  display: inline-block;
  box-sizing: border-box;
  margin-top: 27px;
  right: 9px;
}

@media (max-width: 425px) {
  #humberger {
    width: 60px;
    margin-top: 28px;
    right: 6px;
  }
}


#humberger div {
  position: absolute;
  right: 10px;
  height: 4px;
  background-color: rgb(54, 54, 54);
  border-radius: 15px;
  display: inline-block;
  box-sizing: border-box;
}
#humberger div:nth-of-type(1) {
  width: 40px;
    bottom: 15px;
}
#humberger div:nth-of-type(2) {
  width: 33px;
    bottom: 3px;
}
#humberger div:nth-of-type(3) {
  bottom: -10px;
  width: 25px;
}
@media (max-width: 425px) {
  #humberger div:nth-of-type(1) {
    width: 38px;
    bottom: 23px;
  }
  #humberger div:nth-of-type(2) {
    width: 29px;
    bottom: 12px;
  }
  #humberger div:nth-of-type(3) {
    width: 22px;
    bottom: 0;
  }
}


.header-nav {
  background: #f5f5f5;
  padding-bottom: 20px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  overflow-y: auto; /* 縦方向のスクロールのみ */
  -ms-transform: translateX(-100vw);
  box-sizing: border-box;
  transform: translate(100vw, 0);
  transition: width 475ms ease-out, transform 450ms ease, border-radius .8s .1s ease;
  border-bottom-left-radius: 100vw;
}

/* .activeクラスでメニューが画面内に表示されるように設定 */
.header-nav.active {
  transform: translate(0, 0);
  border-radius: 0;
}
.herd_mna {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央に配置 */
  box-sizing: border-box; /* パディングが含まれるようにボックスサイズを調整 */
  width: 100%;
}


@media (max-width: 425px) {
  .header-nav {
    padding-bottom: 0;
  }

}
/* スマホ表示用のスタイル（768px以下の画面幅を想定） */
@media (max-width: 768px) {
  .herd_mna {
    position: static; /* 通常の位置に戻す */
    top: auto;
    left: auto;
    transform: none; /* 中央配置を解除 */
    width: auto;     /* 必要に応じて幅を調整 */
  }
}
.active {
  transform: none;
  border-bottom-left-radius: 0;
}

.logo-close {
  display: flex;
  justify-content: space-between;
  margin: 10px;
  width: 98%;
  max-width: 600px;
  align-items: center;
}

.nav-logo img {
  width: 130px;
}

.nav-contents {
  margin: 0 auto;
  margin-top: 90px;
  text-align: center;
  width: 470px;
}

@media (max-width: 425px) {
  .nav-contents {
    width: 100vw;
  }
}

.search-movie {
  display: flex;
  justify-content: center;
  margin-left: -10px;
  margin-bottom: 17px;
}

@media (max-width: 425px) {
  .search-movie {
    justify-content: space-between;
    margin-left: 0;
  }
  .search-movie img {
    width: 90%;
  }
.boo_a {
    width: 90%;
    margin-left: 5%;
}
}

.opening-movie {
  margin-right: 10px;
}

.fee {
  margin-bottom: 25px;
}

.feea {
     color: white;
     border: 2px solid white;
     padding: 10px 2px;
     font-size: 11px;
    margin: 0 1%;
    width: 31%;
}
.fee a {
     color: white;
}

.fee a:first-child {
  margin-left: 0;
}

@media (max-width: 425px) {
  .fee a {
    margin-left: 5px;
  }
.opening-movie {
  margin-right: 0;
}
.profile-movie, .opening-movie{
    width: 50%;
}
}



.menu-list-wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.menu-list-wrapper a {
  color: white;
  margin-bottom: 20px;
}

@media (max-width: 425px) {
  .menu-list-wrapper {
    margin-bottom: 0;
    margin-top: 25px;
  }
}

.menu-list li {
  width: 150px;
}

.menu-list li a {
  display: flex;
  justify-content: space-between;
}

.menu-list:first-child {
  margin-right: 50px;
}

@media (max-width: 425px) {
  .menu-list:first-child {
    margin-right: 10px;
  }
}

.menu-list-small a {
  color: rgb(78, 78, 78);
  font-size: 12px;
}

.menu-list-small a i {
  margin-left: 10px;
  margin-right: 10px;
}

.menu-list-1st {
  margin-bottom: 10px;
}

.menu-list-2nd {
  margin-bottom: 50px;
}

@media (max-width: 425px) {
  .menu-list-2nd {
    margin-bottom: 30px;
  }
}

.production-request {
  color: rgb(41, 41, 41);
  margin: 0em auto
}

.production-request a {
  color: rgb(41, 41, 41);
  padding: 8px 26px;
  border: solid 1px #2d2d2d52;
  border-radius: 20px;
  margin-left: 20px;
}

.production-request a:first-child {
  margin-left: 0;
}

.production-request p {
  margin-top: 30px !important;
}


.sp_menu_logo_wrapper {
  color: #242424;
  font-size: 15px;
  margin: 20px 0;
}

.sp_menu_logo_wrapper img {
  width: 55%;
  margin-bottom: 20px;
}

.sp_menu_logo_wrapper p {
  margin-bottom: 10px;
}

.sp_menu_logo_wrapper a {
  color: #242424;
}

@media (max-width: 425px) {
  .sp_menu_logo_wrapper {
    padding: 20px 0;
    background-color: #fff;
    margin: 0;
  }
}

.sp_sns {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

@media (max-width: 425px) {
	.fee {
	    width: 98%;
}
  .sp_sns {
    background-color: #fff;
  }
}

.line_icon {
  color: #00B900;
}

.nav-line {
  border-radius: 100%;
  width: 30px !important;
  height: 30px;
  margin-top: 6px;
}

.mail_icon {
  color: #94caf1;
}

.youtube_icon {
  color: red;
}

.insta_btn {
  display: inline-block;
  text-align: center;
  /*中央揃え*/
  color: #2e6ca5;
  /*文字色*/
  font-size: 20px;
  /*文字サイズ*/
  text-decoration: none;
  /*下線消す*/
}

.insta_btn:hover {
  /*ホバー時*/
  color: #668ad8;
  /*文字色*/
  transition: .5s;
  /*ゆっくり変化*/
}

.insta_btn .insta {
  /*アイコンの背景*/
  position: relative;
  /*相対配置*/
  display: inline-block;
  width: 43px;
  /*幅*/
  height: 43px;
  /*高さ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  border-radius: 100px;
  /*角丸に*/
  margin-left: 7px;
}

.insta_btn .insta:before {
  /*グラデーションを重ねるため*/
  content: '';
  position: absolute;
  /*絶対配置*/
  top: 23px;
  /*ずらす*/
  left: -18px;
  /*ずらす*/
  width: 60px;
  /*グラデーションカバーの幅*/
  height: 60px;
  /*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.insta_btn .fa-instagram {
  /*アイコン*/
  color: #FFF;
  /*白に*/
  position: relative;
  /*z-indexを使うため*/
  z-index: 2;
  /*グラデーションより前に*/
  font-size: 35px;
  /*アイコンサイズ*/
  line-height: 43px;
  /*高さと合わせる*/
}

.icon_color {
  color: white;
}

.batsu {
  display: block;
  width: 25px;
  height: 26px;
  position: relative;
  margin-right: 8px;
  margin-top: 2px;
}

.batsu::before, .batsu::after {
  content: "";
  display: block;
  width: 100%;
  /*バツ線の長さ*/
  height: 5px;
  /*バツ線の太さ*/
  background: #363636;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}

.batsu::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 14%;
}

#sp-close {
  display: none;
  background-color: #363636;
  color: #ffffff;
  padding: 10px 0;
  margin-bottom: 50px;
}

@media (max-width: 425px) {
  #sp-close {
    text-align: center;
    display: block;
  }
}

.spheader {
	width: 100%;
}
.sp_smll{
	width: 33%;
	height: auto;
	display: flex;
}
.spheader {
    display: none;
}
@media (max-width: 11700px) {
  .spheader {
    display: block;
    margin-top: 81px;
  }

  .sp_smll , .sp_smll_b{
    width: 33%;
    height: auto;
    border: 0.5px solid #cfcfcf;
    font-size: 11px;
    margin: 0 auto;
    padding: 1em 0;
    text-align: center;
    position: relative;
  }
  .sp_smll a, .sp_smll_b a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  .bac {
      width: 100%;
      height: auto;
    display: flex;
  }

    .sp_smll a , .sp_smll_b a{color: rgb(43, 43, 43);text-align: center;margin: 0 auto;}
}
@media (max-width: 425px) {
  .spheader {
    margin-top: 66px;
  }
}
img.line_under {
	margin-top: 6px;
}
.webcharter {
	margin: 1em auto;
	width: 100%;
	height: auto;
}
.webcharter img {
	width: 100%;
	height: auto;
}
.webNew {
	color: #ffee00;
	font-size: 12px;
}
@media (max-width: 420px) {
  .webcharter {
    margin: 0 auto;
  }
}
i.fas.fa-chevron-right {
  margin-top: 4px;
}
a.btn_blue {
  display: block;
  max-width:453px;
  width: 98%;
  margin: 1em auto;
  padding: 1.5rem 3.0rem;
  background-color: #2ea59b;
box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
}
a.btn_blue span.bl__text {
  display: block;
  position: relative;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding-left: 30px;
}
a.btn_blue span.bl__text:before {
  content: '';
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
a.btn_blue span.bl__text:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #9cb4d6;
  border-right: 3px solid #9cb4d6;
box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
a.btn_blue:hover {
  background-color: #2ea59b;
}
a.btn_blue:hover span.bl__text:after {
  border-top: 3px solid #01b5d0;
  border-right: 3px solid #01b5d0;
}
@media (max-width: 736px) {
  a.btn_blue {
      width: 90%;
      padding: 1.5rem 2.0rem;
  }
  a.btn_blue span.bl__text {
      font-size: 14px;
  }
}
@media (max-width: 350px) {

  a.btn_blue span.bl__text {
      font-size: 12px;
  }
}

.cart_moivie{
  margin: 2em auto;
  width: 100%;
}
.cart_mo {
  width: 100%;
  font-size: 16px; /* 読みやすいサイズに調整 */
  padding: 15px 6px; /* バランスの取れたパディング */
  background: linear-gradient(45deg, #FF7F50, #FF4500); /* コーラルオレンジ → 濃いオレンジ */
  border-radius: 25px; /* 少し小さい丸み */
  text-align: center;
  color: white;
  border: none;
  font-weight: bold; /* 文字を強調 */
  cursor: pointer; /* ポインタを表示 */
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.15)); /* 柔らかい影 */
  transition: all 0.3s ease; /* アニメーションを追加 */
}

.cart_mo:hover {
  background: linear-gradient(45deg, #FF6347, #FF4500); /* トマト色 → オレンジレッド */
  transform: scale(1.02); /* 少し拡大 */
  filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.25)); /* 影を強調 */
}
.cart_mo1 {
  width: 100%;
  font-size: 1em;
  padding: 1em 1.5em;
  background-color: #4daf8f;
  border-radius: 30px;
  text-align: center;
  color: white;
  border: none;
}
.cart_moivie3 {
  max-width: 350px;
  width: 100%;
  margin: 0em auto;
}
.cart_mo .fas.fa-shopping-cart{
  padding: 0 0.5em;
}
.cart_mo a, .cart_mo1 a {color: white;}
.bottom_movie {
  display: none;
  position: fixed;
  margin-left: auto;
  margin-right: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  max-width: 500px;
}
.bottomfre {
  display: flex;
  margin-bottom: 1em;
  align-items: center;
}
.bottom_name{
  font-family: serif;
  width: 100%;
  margin-top: 0.2em;
  font-size: 1.3em;
  padding-left: 0.5em;
  text-align: center;
}
.bottom_system{
  font-family: serif;
  width: 100%;
  padding-left: 1em;
  margin-bottom: 0.2em;
  text-align: center;
}
.cart_moivie2 {
  max-width: 400px;
  width: 100%;
  margin: 0.2em auto;
}
.bottom_system p{
  line-height: 1.5em;
}
.bottom_system p span {
  font-size: 80%;
}
#footer {
  overflow: hidden;
  position: fixed;
  width: 100%;
  bottom: 0;
}
#slide {
  background: #555;
  color: #fff;
  width: 100%;
}
#slide-in {
  padding: 20px;
}
#footer a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
    @media (max-width: 1024px) {
      .bottom_movie {
        width: 100%;
        max-width: 1100px;
      }
      .fottre_space {
        height: 130px;
        width: 100%;
      }
    }
  /* imgのみ */
  .index_top_frex {
    display: flex;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 1300px;
    margin: 1.5em auto 0.5em auto;
  }
  .slider_fre_in {
    width: 40%;
    height: auto;
    padding: 1em;
    margin: auto 0;
  }
  .slider_fre_in img {
    width: 100%;
    height: auto;
  }
  .inner-block {
    width: 100%;
    height: auto;
    position:relative;
  }
  .container {
    width: 58%;
    aspect-ratio: 16/9;
    z-index: 1;
    text-align: center;
    padding: 1%;
    position: relative;
  }
  .container img{
    position: absolute;
    width: 130px;
    height: auto;
    top: 9px;
    left: 12px;
  }
  .container iframe{
    width: 98%;
    height: 100%;
    max-height: 350px;
  }
  .container p {
    color: rgb(145, 145, 145);
    text-align: center;
    font-size: 14px;
    padding: 0.8em 0 0 0;
    margin: 1em auto;
  }
  .container p a{color: rgb(145, 145, 145);}
  .container p span {
    background-color: #7cd790;
    color: white;
    padding: 0.5em;
    font-size: 11px;
    border-radius: 5px;
    margin: 0 0.7em;
  }
  .no1 {
    position: absolute;
    z-index: 11;
    width: 10%;
    margin: 1em;
  }
  .no1 img {
    width: 100%;
    height: auto;
  }
  .fade-img-box {
    margin-left: auto;
    margin-top: 10px;
    position:relative;
  }
  .fade-img-box img {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit:cover;
  }
  .slick-next:before, .slick-prev:before{
    color: #bac6cd !important;
  }
  @media (max-width: 1024px) {
    .no1 {
      width: 15%;
    }
    .container img{
      width: 100px;

    }
  }
  @media (max-width: 700px) {
    .index_top_frex{
      display: block;
      height: auto;
    }
    .slider_fre_in {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
      height: auto;
    }
    .no1 {
      width: 25%;
      right: 0;
    }
    .container{
      width: 100%;
    }
    .container img{
      width: 100px;
      height: auto;
      top: 0px;
      left: 0px;
    }

  }
  @media (max-width: 587px) {
    .no1 {
      width: 30%;
  }
 }

 div#date-under-check {
  line-height: 2em;
  font-size: 14px;
  margin: 1em auto;
}

.menu_fre{
  display: flex;
  width: 95%;
  margin: 0 auto 11px auto;
  max-width: 355px;
}
.menu_fre_in, .menu_fre_in2 {
  width: 50%;
  border-radius: 20px;
  padding: 0 0.7rem;
  margin: 10px 1%;
  height: auto;
  color: white;
  font-size: 16px;
  text-align: justify;
  position: relative;
  max-width: 170px;
  color: #7c7c7c;
}

.menu_fre_in a, .menu_fre_in2  a {
  color: rgb(14, 14, 14);
}

.menu_fre_in3 {
  width: 48%;
  background-color: #86a6ad;
  border-radius: 5px;
  padding: 0.7rem;
  margin: 0 1%;
  height: auto;
  color: white;
  font-size: 14px;
}
.menu_fre_in3 a {
  color: white;
}


.menu_fre_in i.fas.fa-chevron-right, .menu_fre_in2 i.fas.fa-chevron-right{
  position: absolute;
    top: -4px;
    color: #657174;
    right: 8px;
}

.mitumori_pen {
  text-align: center;
  line-height: 1.5em;
  margin: 1em auto;
}


.check_box_index{
  display: none;
}

/* 通常時表示されるテキスト */
.label_box_index{
  color: #000;
  text-align: center;
  border-top: solid 1px #c6c6c6;
  border-bottom: solid 1px #c6c6c6;
  display: block;
  align-items: center;
  padding: 1.5em 0;
  max-width: 750px;
  width: 95%;
  margin: 3em auto;
  max-width: 500px;
  position: relative;
}
.label_box_index i.fa-solid.fa-angle-right {
  right: 21px;
  position: absolute;
}

/* クリック時に表示されるテキスト */
.text_box_index{
  align-items: center;
  margin-bottom: 10px;
  /*通常時は見えなくする*/
  overflow: hidden;
  /*  通常時は高さ0を指定  */
  height: 0;
  transition: 0.5s;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
font-size: 14px;
}

/* クリック時のスタイル */
.check_box_index:checked + .label_box_index + .text_box_index{
  height: auto;
}


.header__mail {
  position: relative;
}

.cart_num_maru {
  position: absolute;
  top: 11px;
  right: 5px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background-color: #52b2aa;
  border-radius: 50%;
  text-align: center;
}
.cart_num_maru p{
  color: #ffffff;
  margin: 2px !important;
}

@media (min-width: 500px) {
  .cart_num_maru {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
}


div#player {
 width: 100%;
}

.fadeIn_item.offs, .offs .fadeIn_item {
  opacity: 0;
  transform: translateY(5px);
}
.fadeIn_item.ons, .ons .fadeIn_item {
  transition: all 1s cubic-bezier(0, 0, 0.13, 0.79);
  opacity: 1;
  transform: translateY(0);
}

.web_sekli_menu {
  width: 48%;
  padding: 0.7rem;
  margin: 2em auto;
  height: auto;
  color: white;
  font-size: 14px;
  text-align: center;
  border: solid 1px #2d2d2d52;
  position: relative;
  max-width: 178px;
}
.web_sekli_menu i {
  position: absolute;
  top: 8px;
  right: 10px;
}
.web_sekli_menu a{
  color: rgb(0, 0, 0);
}
.movie_naiyou {
  text-align: justify;
  max-width: 480px;
  font-weight: normal;
  width: 98%;
  line-height: 1.5rem;
  font-size: 15px;
  color: rgb(114, 114, 114);
  margin: 0 auto;
  padding: 1em;
  border-top: solid 1px #ebebeb;
  border-bottom: solid 1px #ebebeb;
}
.movie_naiyou h3{font-weight: normal;}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

button.submit_movie{
  width: 90%;
  max-width: 500px;
  height: auto;
  padding: 1em 0.8em;
  font-size: 1em;
  background-color: #2ea59b;
  color: white;
  border: none;
  position: relative;
  z-index: 10;
}
button.submit_movie i{
  position: absolute;
  top: 19px;
  right: 23px;
}
.menu_list{
  margin: 2em auto;
  width: 100%;
  height: auto;
  text-align: left;
  padding: 0 1em;
  color: #2e3c45;
}
.menu_fre_in i{
  margin-left: 6px;
}
.title-border {
  display: flex;
  align-items: center;
}
.title-border:before,
.title-border:after {
border-top: 1px solid;
content: "";
flex-grow: 1;
}
.title-border:before {
margin-right: 1rem;
}
.title-border:after {
margin-left: 1rem;
}


.title-border{
  color: #0a0a0a;
}

.hayawair_setumei {
  text-align: center;
  font-size: 14px;
  color: #3c3c3c;
}


.saitn_text{
  max-width: 500px;
  width: 95%;
  height: auto;
  text-align: center;
  margin: 1em auto;
  line-height: 1.3em;
  font-size: 1rem;
}
.saitn_text span {
  font-size: 70%;
}
.saitan{
  display: flex;
  width: 95%;
  max-width: 500px;
  margin: 1em auto;
}
.saitan div{
  width: 48%;
  margin: 1%;
  height: auto;
  text-align: center;
  border: solid 1px #c8c8c8;
  padding: 0.5em;
  line-height: 1.7rem;
}
.saitan div p span{
  font-size: 1.3em;
}


/* POINT＿CSS */

.moviepage_point{
  width: 95%;
  margin: 0 auto;
  max-width: 500px;
  line-height: 2em;
  display: flex;
  align-items: center;
}
.moviepage_point p {
  background-color: #f9f9f9;
  color: #bbbbbb;
  border: solid 1px #dedede;
  padding: 0px 6px;
  border-radius: 5px;
  max-width: 61px;
  font-size: 12px;
  text-align: center;
}
.moviepage_point h2{
  font-family: ibm-plex-sans-jp, sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 24px;
}
.movie_page_point_title{
  padding: 5px 10px;
}

.cart_out{
  text-align: center;
  width: 100%;
  background-color: #f7f7f7;
  border-top: 0.5px solid #cfcfcf;
  border-bottom: 0.5px solid #cfcfcf;
  padding: 0.5em 0;
  line-height: 1.5em;
  font-size: 14px;
}
.cart_out span{
  color: red;
  font-weight: bold;
  font-size: 15px;
}
.cart_out_box{
  background-color: #305881;
  padding: 0.5em;
  width: 100%;
  max-width: 260px;
  margin: 0.5em auto;
  text-align: center;
  position: relative;
}
.cart_out_box a{color: white;}
.cart_out_box i{
  position: absolute;
  top: 11px;
  right: 8px;
}
.cart_out_setumei{
  margin: 1em auto;
  max-width: 600px;
  width: 95%;
  font-size: 14px;
  line-height: 1.21em;
  text-align: justify;
  color: #525252;
}

.index_top_camp{
  text-align: center;
  margin: 0.5em auto;
}
.index_top_camp h1{
  font-weight: normal;
  line-height: 1.5em;
}

.video_wrapper {
  position: relative;
}
.video_wrapper:not(.js_active)::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.video_wrapper:not(.js_active)::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
  background-image: url(../img/load.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.video_wrapper > video {
  width: 100%;
}
@media (max-width: 700px) {
  .index_top_camp{
    text-align: center;
    margin: 0.5em auto 0 auto;
    font-size: 13px;
  }
}

/*
  新メニューCSS
*/

.main_menu{
  margin: 10px auto 0 auto;
  max-width: 600px;
  width: 98%;
}
.main_menu_ic_fre{
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.main_menu_ic_fre a{
  width: 48%;
  margin: 1%;
  height: auto;
  border: solid 2px #c7c7c7;
  color: #343434;
  font-size: 13px;
  text-align: center;
  padding: 1em 0;
  border-radius: 10px;
}
.main_menu_ic_fre a img{
  width: 100%;
  height: auto;
  max-width: 37px;
  margin-bottom: 10px;
}
.fre_wasou_yous{
  text-align: center;
  width: 100%;
  display: flex;
  margin: 0 0 0.5em 0;
  flex-wrap: wrap;
}
.fre_wasou_yous a{
  display: flex;
  align-items: center;
  width: 48%;
  margin: 1%;
  border: solid 1px#343434;
  color: #343434;
  font-size: 13px;
  text-align: justify;
  padding: 1em 2em;
  line-height: 17px;
  justify-content: center
}
.fre_wasou_yous a img{
  width: 100%;
  height: auto;
  max-width: 35px;
  display: flex;
  margin: 0 auto;
}
.fre_wasou_yous a span2, .fre_wasou_yous a span3{
  font-size: 15px;
  font-weight: bold;
}
.fre_wasou_yous a span2{
  color: #b63d3d;
}
.fre_wasou_yous a span3{
  color: #3da876;
}
@media (max-width: 700px) {
  .fre_wasou_yous a span2, .fre_wasou_yous a span3{
    font-size: 14px;
  }
  .fre_wasou_yous a{
    font-size: 12px;
    line-height: 16px;
    padding: 1em 0;
  }
}

.fredaasa_cet{
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.new_menu_fre{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1em auto;
  font-size: 14px;
}
.new_menu_fre_in{
  width: 48%;
  height: auto;
  margin: 1em 1%;
}
.new_menu_fre_in div{
  color: #343434;
  margin: 25px 0;
  padding-left: 5px;
  position: relative;
}
.new_menu_fre_in a{
  color: #343434;
}
.new_menu_fre_in i{
  position: absolute;
  top: 0px;
  right:7px;
  color: #929496;
}

.white_menu_fre_in{
  width: 100%;
  height: auto;
  padding: 1em;
  background-color: white;
  line-height: none !important;
  margin: 0 auto 10px auto !important;
  position: relative;
}
.white_menu_fre_in span{
  font-size: 12px;
  color: red;
  font-weight: bold;
}
.white_menu_fre_in a{
  color: #0d1836 !important;
  display: block;         /* aタグをブロック要素にして枠全体に拡張 */
  width: 100%;            /* 親の幅いっぱいに広げる */
  height: 100%;           /* 親の高さいっぱいに広げる */
  text-decoration: none;  /* テキスト装飾をなくす */
  color: inherit;         /* 親の色に合わせる */
  box-sizing: border-box; /* パディングを含めたサイズにする */
}

.white_menu_fre_in i{
  top: 15px !important;
  color: #0d1836 !important;
}
.my_menu_nai{
  width: 40px;
  text-align: center;
  height: 30px;
  position: absolute;
  right: 70px;
  top: 17px;
}
.my_movie_mita{
  position: absolute;
  width: 52px;
  text-align: center;
  height: 30px;
  right: 122px;
  top: 17px;
}

.my_menu_nai img,.my_movie_mita img{
  width: 32px;
  height: auto;
  margin-bottom: 4px;
}
.my_menu_nai a, .my_movie_mita a{
  color: #333;
  font-size: 8px;
}



/* モーダルのスタイル */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.custom-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 5px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.custom-modal-header {
  font-size: 15px;
  font-weight: bold;
  margin: 1em auto;
  letter-spacing: 2px;
  line-height: 22px;
}
.custom-modal-header span{
  color: #535353;
  font-size: 14px;
  letter-spacing: 0;
}

.custom-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: black;
  cursor: pointer;
}
img.wish_addres{
  width: 100%;
  height: auto;
  max-width: 71px;
}

.adres_fre{
  display: flex;
  width: 100%;
  margin: 1em auto;
}
.adres_fre a{
  width: 31%;
  margin: 1%;
  font-size: 13px;
  color: #006ebc;
}
.adres_fre img{
  margin-bottom: 12px;
}
.margad p {
  margin: 1em auto;
  text-align: left;
  padding: 0 1em;
  line-height: 24px;
  color: #242424;
  font-size: 15px;
}
.margad p span{
  color: #585858;
}


/* ボタンのスタイル */
.online_soudan {
  display: inline-block;
  position: relative;
  background: #4a79a7; /* ボタンの色 */
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
  width: 80%;
  margin: 1em auto;
}

.online_soudan:hover {
  background: #365c89; /* ホバー時の色 */
}

/* 上の小さいラベル */
.online_soudan::before {
  content: "今なら限定特典あり！";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #dce5f1; /* ラベルの背景色 */
  color: #4a79a7; /* 文字色 */
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 10px;
  white-space: nowrap;
}


.movie_under_menu{
  width: 100%;
  height: auto;
  display: flex;
  margin: 1em auto 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.movie_under_menu a{
  color: #353535;
  width: 31%;
  margin: 1%;
  font-size: 13px;
  text-align: center;
  background: #e4e4e4;
  line-height: 28px;
  border-radius: 150px;
  padding: 3px 0;
}
.movie_under_menu {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%; /* 均等な間隔を設定 */
}

.movie_under_menu a {
  color: #353535;
  flex-grow: 1; /* 均等な幅を確保 */
  width: 30%;
  font-size: 13px;
  text-align: center;
  background: #e4e4e4;
  line-height: 28px;
  border-radius: 150px;
  padding: 3px 10px;
  transition: all 0.3s ease-in-out; /* ホバー時のアニメーション */
}

.movie_under_menu a:hover {
  background: #d0d0d0; /* ホバー時に少し暗くする */
}




/* アコーディオン全体 */
.simple-accordion {
  width: 95%;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* 各アコーディオン項目 */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

/* ヘッダー部分 */
.accordion-header {
  width: 100%;
  background: #ffffff;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 15px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ヘッダーのホバー時 */
.accordion-header:hover {
  background: #e4e4e4;
}

/* 矢印のデザイン */
.arrow {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

/* 矢印が下向きになる（開いた時） */
.accordion-item.active .arrow {
  transform: rotate(90deg);
}

/* コンテンツ（初期は非表示） */
.accordion-content {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

/* リストのデザイン */
.accordion-content li {
  padding: 10px 15px;
  border-top: 1px solid #ddd;
  position: relative;
}

/* リンクデザイン */
.accordion-content a {
  display: block;
  font-size: 14px;
  color: #383838;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* ホバー時 */
.accordion-content a:hover {
  text-decoration: underline;
}
.accordion-content li i{
  position: absolute;
  top: 15px;
  right: 17px;
}
.menu_box_undex_wish {
  text-align: center;
  background: white;
  width: 95%;
  margin: 1em auto;
  padding: 1em 0;
  border-radius: 15px;
}
.menu_box_undex_wish_fre{
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu_box_undex_wish_fre .custom-modal-header{
  margin: 1%;
  font-size: 17px;
}
.menu_box_undex_wish_fre img{
  width: 77%;
}
img.im-70-menu{
  width: 31%;
}

@media (max-width: 700px) {
  img.im-70-menu{
    width: 40%;
  }
}
.cast_undex{
  text-align: center;
  margin: 1em auto;
  font-weight: bold;
  color: #ff4a08;
  font-size: 15px;
}

.btn-consultation {
  display: inline-block;
  text-decoration: none;
  background-color: #1cb4a7;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 13px 12px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.btn-consultation:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.clear {
  clear: both;
  height: 0;
}
.menu_bana_erabu{
  width: 95%;
  border-radius: 10px;
  height: auto;
  margin: 1em auto;
}
.menu_bana_erabu img{
  width: 100%;
  height: auto;
  border-radius: 10px;
}