@charset "UTF-8";
/* CSS Document */
/*---------------------
HTML BODY初期設定
----------------------*/
:root {
  --vh: auto !important;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background: #000;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: "Libre Baskerville", serif;
  color: white;
}

body {
  position: relative;
}

body.loading {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
}

.wrapper {
  z-index: 2;
}

/*---------------------
header
----------------------*/
.header {
  position: relative;
  width: 100%;
  background: none;
  z-index: 1;
}
.header .header-logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .header-logo a {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .header-logo a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .header-logo img {
  width: 100%;
}

@media (max-width: 767px) {
  .header .header-logo {
    max-width: 150px;
  }
}
/*---------------------
detail header
----------------------*/
.detail-header {
  position: absolute;
  width: 100%;
  max-width: 400px;
  top: 0;
  left: 5px;
  z-index: 3;
}
.detail-header .detail-header-logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 5px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.detail-header .detail-header-logo a {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.detail-header .detail-header-logo a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.detail-header .detail-header-logo img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* ノートPC〜デスクトップ標準（〜1279px） */
@media (max-width: 1279px) {
  .detail-header {
    max-width: 270px;
  }
  .detail-header .detail-header-logo {
    max-width: 270px;
  }
  .detail-header .detail-header-logo img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}
/* タブレット横・小型PC（〜1023px） */
@media (max-width: 1023px) {
  .detail-header {
    max-width: 220px;
  }
  .detail-header .detail-header-logo {
    max-width: 220px;
  }
  .detail-header .detail-header-logo img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}
@media (max-width: 767px) {
  .detail-header {
    max-width: 200px;
  }
  .detail-header .detail-header-logo {
    max-width: 200px;
  }
  .detail-header .detail-header-logo img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}
@media (max-width: 479px) {
  .detail-header {
    max-width: 180px;
  }
  .detail-header .detail-header-logo {
    max-width: 180px;
  }
  .detail-header .detail-header-logo img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}
main {
  position: relative;
  z-index: 1;
}

.toppage-contents {
  position: relative;
  width: 100%;
  z-index: 1;
  padding-bottom: 100px;
}

.page-contents {
  position: relative;
  width: 100%;
  z-index: 1;
  padding-bottom: 100px;
  padding-top: 80px;
}

/* =====================================
   詳細ページ：PCでは右カラムのみスクロール
===================================== */
.detailpage-contents {
  display: grid;
  grid-template-columns: 65fr 35fr;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 左側：スライドショー */
.detailpage-contents__main {
  min-width: 0;
  height: 100vh;
  overflow: hidden;
}

/* 右側：プロフィール情報 */
.detailpage-contents__side {
  min-width: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .swiper-container {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) {
  .swiper-container {
    width: 100%;
    height: 100vh;
  }
  .swiper-wrapper,
  .swiper-slide {
    height: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 1280px) {
  /* 親要素の100vh固定と非表示処理を解除 */
  .detailpage-contents {
    grid-template-columns: 1fr;
    height: auto; /* ← これを追加 */
    overflow: visible; /* ← これを追加 */
    gap: 20px;
  }
  .detailpage-contents__main,
  .detailpage-contents__side {
    width: 100%;
    height: auto;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  .detailpage-contents {
    display: block;
    height: auto;
    overflow: visible;
  }
  .detailpage-contents__main,
  .detailpage-contents__side {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .swiper-container {
    height: 100vh;
  }
}
/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .page-contents {
    padding-bottom: 0;
  }
  .detailpage-contents {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/*---------------------
動画背景
----------------------*/
.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -2;
}

.video-wrapper-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65));
  z-index: -1;
  pointer-events: none;
}

.fixed-tel {
  display: none; /* 最初は非表示 */
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 5;
}
.fixed-tel img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .fixed-tel {
    display: none;
  }
}
/*---------------------
top page
----------------------*/
.top-swiper {
  width: 100%;
  position: relative;
  margin-bottom: 0 !important;
}

.top-swiper .swiper-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-swiper .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.top-swiper .swiper-button-prev,
.top-swiper .swiper-button-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff; /* 矢印色（必要に応じて） */
  z-index: 10;
}

.top-swiper .swiper-button-prev,
.top-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.top-swiper .swiper-button-prev,
.top-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 10;
}

/* ::afterで矢印表示 */
.top-swiper .swiper-button-prev::after,
.top-swiper .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #b3882d;
  border-right: 2px solid #b3882d;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* 左矢印だけ左右反転（上下位置は共通） */
.top-swiper .swiper-button-prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.top-swiper .swiper-button-prev:hover::after,
.top-swiper .swiper-button-next:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(45deg);
          transform: translate(-50%, -50%) scale(1.1) rotate(45deg); /* 拡大＋回転 */
  border-color: #a88331; /* 矢印の色変更 */
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* 左矢印だけ角度調整 */
.top-swiper .swiper-button-prev:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(-135deg);
          transform: translate(-50%, -50%) scale(1.1) rotate(-135deg);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* スマホ・タブレット調整（任意） */
@media (max-width: 768px) {
  .top-swiper,
  .top-swiper .swiper-slide {
    height: 100%; /* スマホでは少し浅めに */
  }
  .top-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}
.ch-top-attention {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.attention-wrap {
  position: relative;
  padding: 60px 0;
  margin-bottom: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#000f2e), color-stop(50%, #011641), to(#000f2e));
  background: linear-gradient(to right, #000f2e 0%, #011641 50%, #000f2e 100%);
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .attention-wrap {
    padding: 30px 0;
  }
}
.attention-wrap::before,
.attention-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#ffd471), color-stop(26%, #b8954b), color-stop(77%, #ffde91), to(#b8954b));
  background: linear-gradient(to right, #ffd471 0%, #b8954b 26%, #ffde91 77%, #b8954b 100%);
  border-radius: 2px;
}

.attention-wrap::before {
  top: 0;
}

.attention-wrap::after {
  bottom: 0;
}

.top-attention {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-attention .attention-date {
  font-size: 0.9em;
  letter-spacing: 0.025em;
  color: #ffd471;
  font-family: "Cinzel", serif;
}
.top-attention h3 {
  margin: 20px 0;
  font-weight: 600;
  font-size: 1.6rem;
}
.top-attention p {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.ch-top-information {
  margin-bottom: 20px !important;
}

.top-information {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #926f24;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.top-information-head img,
.top-information-bottom img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.top-information-bottom {
  margin-bottom: 50px;
}

/* スマホ大・タブレット縦（〜767px） */
.info-list {
  max-width: 800px;
  height: auto;
  max-height: 400px;
  overflow-y: auto;
  color: #fff;
  /* 標準のスクロールバー設定（Firefox用） */
  scrollbar-width: thin; /* バーの幅を細く */
  scrollbar-color: #10449b #02193f; /* つまみ（紫） / 背景（ダークグレー） */
}

/* Chrome, Safari, Edge用の詳細カスタマイズ */
/* 1. スクロールバー全体の幅 */
.info-list::-webkit-scrollbar {
  width: 8px; /* 横スクロールがある場合は height: 8px; */
}

/* 2. スクロールバーの背景（トラック） */
.info-list::-webkit-scrollbar-track {
  background: #02193f; /* リスト背景や全体のトーンに合わせた暗めの色 */
  border-radius: 4px;
}

/* 3. 動くツマミ部分（ハンドル） */
.info-list::-webkit-scrollbar-thumb {
  background: #10449b; /* 上品で少し落ち着いたパープル */
  border-radius: 4px; /* 角を丸めてモダンな印象に */
}

/* 4. マウスホバー時のツマミの色（インタラクション） */
.info-list::-webkit-scrollbar-thumb:hover {
  background: #1958c5; /* ホバー時に少し明るいパープルにして反応を返す */
}

.info-item {
  padding: 20px 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

.info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#00225c), color-stop(#053fa1), to(#00225c));
  background: linear-gradient(to right, #00225c, #053fa1, #00225c);
  border-radius: 2px;
}

.info-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.info-date {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  font-family: "Cinzel", serif;
}

.info-category-update {
  background: #10449b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 8px;
  font-family: "Cinzel", serif;
}

.info-category-contents {
  background: #b2882f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 8px;
  font-family: "Cinzel", serif;
}

.info-text {
  font-size: 1rem;
  line-height: 1.6;
}

.info-text a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.info-text a:hover {
  opacity: 0.7;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .info-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
}
.top-companion {
  margin-bottom: 70px;
}

/*---------------------
top column
----------------------*/
.top-column-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.top-column-left {
  width: 100%;
  max-width: 500px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.top-column-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1279px) {
  .top-column-left {
    width: 100%;
    max-width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media (max-width: 1024px) {
  .top-column-left {
    width: 100%;
    max-width: 300px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media (max-width: 768px) {
  .top-column-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .top-column-left {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
  }
  .top-column-right {
    width: 100%;
  }
}
/*---------------------
TOPICS
----------------------*/
.topics-txt {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.topics-txt .topics-date {
  font-size: 0.9em;
  letter-spacing: 0.025em;
  color: #ffd471;
  font-family: "Cinzel", serif;
}
.topics-txt h3 {
  margin: 20px 0;
  font-weight: 600;
  font-size: 1.6rem;
}
.topics-txt p {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

/*---------------------
top history
----------------------*/
.top-history-wrap {
  margin-top: 40px;
}

.history-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 16px;
  background-color: #001e43;
  background-image: url(../img/common/bg_history.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #bf9d3e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 左側：写真エリア（全体の4割） */
.history-photo {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  aspect-ratio: 3/4;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.history-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 右側：コンテンツエリア（全体の6割） */
.history-content {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  min-width: 0;
  padding-top: 4px; /* 上部の微調整 */
}

/* 各テキスト要素（スマホでの見やすさを考慮して少しフォントサイズを微調整しています） */
.history-date {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  font-family: "Cinzel", serif;
}

.history-title {
  color: #ffffff;
  font-size: 1.3rem; /* スマホ用に少し縮小 */
  font-weight: 500;
  margin: 0 0 2px 0;
  letter-spacing: 0.1em;
}

.history-subtitle {
  color: #bf9d3e;
  font-size: 0.9rem; /* スマホ用に少し縮小 */
  font-weight: 500;
  margin: 0 0 5px 0;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
}

.history-text {
  color: #ffffff;
  font-size: 0.85rem; /* スマホ用に少し縮小 */
  line-height: 1.5;
  margin: 0 0 24px 0; /* リンクとの余白 */
  letter-spacing: 0.05em;
  font-family: "Cinzel", serif;
}

/* 右下：プロフィールリンク */
.history-link {
  color: #bf9d3e;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.1em;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto; /* 常に右下に固定 */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.history-link:hover {
  opacity: 0.8;
}

/* ==========================================
   PC・タブレットサイズでの微調整（画面幅 768px 以上）
   ========================================== */
@media (min-width: 768px) {
  .history-box {
    gap: 40px; /* PC時は固定の余白に */
  }
  .history-content {
    padding-top: 12px;
  }
  .history-date {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .history-title {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  .history-subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .history-text {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .history-link {
    font-size: 0.9rem;
  }
}
/*---------------------
top update / news
----------------------*/
/* 2つのカラムを包む親要素 */
.top-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* デフォルト（スマホ）は縦並び */
  gap: 50px;
  width: 100%;
}

/* 各カラムの基本設定（可変） */
.top-update,
.top-news {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

/* タブレット・PCサイズ（画面幅 768px 以上）での設定 */
@media (min-width: 768px) {
  .top-info-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /* 横並び（2カラム）に切り替え */
  }
}
/*---------------------
top banner
----------------------*/
.top-bottom-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top-btm-bnimg {
  width: calc(50% - 10px);
  border: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #926f24, #ffd372, #926f24) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#926f24), color-stop(#ffd372), to(#926f24)) 1;
     border-image: linear-gradient(to right, #926f24, #ffd372, #926f24) 1;
  border-radius: 6px;
  overflow: hidden;
}
.top-btm-bnimg a, .top-btm-bnimg img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-btm-bnimg:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 768px) {
  .top-btm-bnimg {
    width: 100%;
  }
}
/*---------------------
companion
----------------------*/
.companion-wrap {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 20px;
}
.companion-wrap .cast {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.8s ease, transform 0.6s ease;
  transition: opacity 0.8s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  background: url(../img/common/bg_companion.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 20px;
  margin-bottom: 20px;
}
.companion-wrap .cast img.i-classbar {
  position: absolute;
  top: -10px;
  left: 0;
  display: block;
  width: 100%;
  z-index: 1;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.companion-wrap a.cast-inner {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  color: #fff;
}
.companion-wrap a.cast-inner img.cast-base {
  display: block;
  width: 100%;
  z-index: 1;
}
.companion-wrap a.cast-inner img.kazari-left {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 100px;
  z-index: 1;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.companion-wrap a.cast-inner img.kazari-right {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  max-width: 100px;
  z-index: 1;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.companion-wrap a.cast-inner img.campaign-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 2;
}
.companion-wrap a.cast-inner img.i-ranking {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 3;
}
.companion-wrap a.cast-inner img.i-newface {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 60px;
  z-index: 4;
  -webkit-animation: blinkNew 1.2s ease-in-out infinite;
          animation: blinkNew 1.2s ease-in-out infinite;
}
.companion-wrap a.cast-inner img.i-photo {
  position: absolute;
  top: 50px;
  left: 0;
  display: block;
  width: 100%;
  max-width: 60px;
  z-index: 3;
}
.companion-wrap a.cast-inner .thumb-msg1 {
  position: absolute;
  display: block;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  font-size: 1.8rem;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 0;
  z-index: 2;
  font-family: "Cinzel", serif;
}
.companion-wrap a.cast-inner .thumb-msg1 span {
  font-size: 0.8rem;
}
.companion-wrap a.cast-inner .thumb-msg2 {
  position: absolute;
  display: block;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  font-size: 1.8rem;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 1;
  z-index: 2;
  font-family: "Cinzel", serif;
}
.companion-wrap a.cast-inner .thumb-msg2 span {
  font-size: 0.8rem;
}
.companion-wrap a:hover.cast-inner img.cast-base {
  -webkit-transform: rotate(-2deg) scale(1.11);
          transform: rotate(-2deg) scale(1.11);
  -webkit-transition: all 0.6s cubic-bezier(0.6, 0.2, 0.2, 0.6);
  transition: all 0.6s cubic-bezier(0.6, 0.2, 0.2, 0.6);
}
.companion-wrap a:hover.cast-inner .thumb-msg1 {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@-webkit-keyframes blinkNew {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes blinkNew {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.heading-sapphire {
  background: -webkit-gradient(linear, right top, left top, from(#6fc7ff), color-stop(25%, #228bfc), color-stop(50%, #6fc7ff), color-stop(75%, #228bfc), to(#6fc7ff));
  background: linear-gradient(to left, #6fc7ff 0%, #228bfc 25%, #6fc7ff 50%, #228bfc 75%, #6fc7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.heading-sapphire-anime {
  background: -webkit-gradient(linear, right top, left top, from(#6fc7ff), color-stop(25%, #228bfc), color-stop(50%, #6fc7ff), color-stop(75%, #228bfc), to(#6fc7ff));
  background: linear-gradient(to left, #6fc7ff 0%, #228bfc 25%, #6fc7ff 50%, #228bfc 75%, #6fc7ff 100%);
  background-size: 200% 100%;
  -webkit-animation: sapphireText 4s linear infinite;
          animation: sapphireText 4s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@-webkit-keyframes sapphireText {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes sapphireText {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
/* 表示されたらアニメーション */
.cast.show_cast {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .companion-wrap .cast img.i-classbar {
    top: 0px;
  }
  .companion-wrap a.cast-inner img.i-newface {
    width: 100%;
    max-width: 60px;
  }
  .companion-wrap a.cast-inner img.i-update {
    width: 100%;
    max-width: 60px;
  }
}
/* スマホ（〜479px） */
@media (max-width: 479px) {
  .companion-wrap a.cast-inner img.i-newface {
    width: 100%;
    max-width: 70px;
  }
  .companion-wrap a.cast-inner img.i-update {
    width: 100%;
    right: 5px;
    max-width: 50px;
  }
}
.cast figure {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.cast figure::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.cast figure:hover::before {
  -webkit-animation: shine 0.6s;
  animation: shine 0.6s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.cast p {
  margin: 5px 0;
}
.cast .cast-bottom {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  margin-top: -50px;
  z-index: 3;
}
.cast .cast-bottom-inner {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cast .cast-name {
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.5;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
.cast .cast-name span.name-en {
  display: block;
  font-size: 1rem;
  color: #fed36f;
  letter-spacing: 0.1rem;
  font-family: "Cinzel", serif;
}
.cast .cast-size {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  font-family: "Cinzel", serif;
}
.cast .cast-size span {
  font-size: 0.65rem;
}
.cast .cast-sche {
  color: #dac089;
  text-align: center;
  font-size: 0.8rem;
  font-family: "Cinzel", serif;
}
.cast .cast-sche span {
  margin-left: 0.5rem;
  color: #fff;
}
.cast .cast-bottom-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* レスポンシブで折り返す */
}
.cast .icon-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
.cast .icon-link img {
  display: inline-block;
  width: 100%;
  max-width: 30px;
  border-radius: 5px;
}
.cast .icon-link img.castpage-icon {
  display: inline-block;
  width: 100%;
  max-width: 40px;
  border-radius: 5px;
}
.cast .icon-link:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #b3882d; /* 任意のホバー色 */
}
@media (max-width: 600px) {
  .cast .icon-link {
    font-size: 1.6rem;
  }
}

/* ノートPC〜デスクトップ標準（〜1279px） */
@media (max-width: 1279px) {
  /* 小〜中型ノートPC */
  .companion-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .companion-wrap .cast .cast-bottom-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .companion-wrap .cast .icon-link {
    font-size: 1.1rem;
  }
  .companion-wrap .cast .cast-size,
  .companion-wrap .cast .cast-sche {
    font-size: 0.7rem;
  }
  .companion-wrap::after {
    display: block;
    content: "";
    width: calc(25% - 15px);
  }
}
/* タブレット横・小型PC（〜1023px） */
@media (max-width: 1023px) {
  .companion-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .companion-wrap::after {
    display: block;
    content: "";
    width: calc(33.3333333333% - 15px);
  }
}
/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .companion-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
  }
  .companion-wrap .cast {
    margin-bottom: 10px;
  }
  .companion-wrap::after {
    display: block;
    content: "";
    width: calc(50% - 10px);
  }
  .cast .icon-link {
    font-size: 1rem;
  }
}
/* スマホ（〜479px） */
@media (max-width: 479px) {
  .companion-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .companion-wrap .cast .cast-bottom-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .companion-wrap .cast .icon-link {
    font-size: 1.1rem;
  }
  .companion-wrap .cast .cast-size,
  .companion-wrap .cast .cast-sche {
    font-size: 0.6rem;
  }
  .companion-wrap::after {
    display: block;
    content: "";
    width: calc(50% - 5px);
  }
}
.schedule-bar {
  padding: 8px 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3882d), color-stop(30%, #a87f27), to(#946f20));
  background: linear-gradient(to bottom, #b3882d 0%, #a87f27 30%, #946f20);
  color: #fff;
  text-align: center;
}

.sokuhime-bar {
  padding: 8px 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#d7080a), color-stop(30%, #a80003), to(#7b0001));
  background: linear-gradient(to bottom, #d7080a 0%, #a80003 30%, #7b0001);
  color: #fff;
  text-align: center;
}

.schedule-bar,
.sokuhime-bar {
  font-size: 0.85rem;
  font-family: "Zen Old Mincho", serif;
}

.ranking-cast-bottom {
  margin-top: -5px !important;
}

/*---------------------
cast detail
----------------------*/
.detail-contents {
  padding: 40px 0;
}
.detail-contents .detail-contents-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* タブレット横・小型PC（〜1023px） */
@media (max-width: 1023px) {
  /* iPad Pro横やChromebook対応 */
  .detail-contents .detail-contents-inner {
    width: 100%;
    max-width: 800px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
}
.profile-head .detail-cast-name {
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
.profile-head .detail-cast-name span.name-en {
  display: block;
  font-size: 1.2rem;
  color: #dac089;
  letter-spacing: 0.2rem;
  font-family: "Libre Baskerville", serif;
}
.profile-head .detail-cast-size {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  font-family: "Libre Baskerville", serif;
}
.profile-head .detail-cast-size span {
  font-size: 0.65rem;
}
.profile-head .detail-cast-feature {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  font-family: "Zen Old Mincho", serif;
}
.profile-head .detail-cast-feature span {
  font-size: 0.65rem;
}

.profile-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* レスポンシブで折り返す */
  margin-top: 30px;
  margin-bottom: 40px;
}
.profile-sns .icon-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
.profile-sns .icon-link img {
  display: inline-block;
  width: 100%;
  max-width: 30px;
  border-radius: 5px;
}
.profile-sns .icon-link img.castpage-icon {
  display: inline-block;
  width: 100%;
  max-width: 50px;
  border-radius: 5px;
}
.profile-sns .icon-link:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #b3882d; /* 任意のホバー色 */
}
@media (max-width: 600px) {
  .profile-sns .icon-link {
    font-size: 1.6rem;
  }
}

.profile {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.profile dl {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  padding-top: 20px;
  margin: 0 0 20px;
  font-family: "Zen Old Mincho", serif;
}

.profile dt,
.profile dd {
  min-height: 65px;
  margin: 0;
  padding: 8px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #053fa1;
}

.profile dt {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(124, 217, 240, 0.25)), to(rgba(0, 68, 165, 0.25)));
  background: linear-gradient(90deg, rgba(124, 217, 240, 0.25) 0%, rgba(0, 68, 165, 0.25) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.profile dd {
  min-width: 0;
}

.profile-comment1 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.profile-comment1 p {
  font-size: 1.2rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}

.profile-comment2 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 25px 20px 30px;
  border-radius: 3px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border: 1px solid #053fa1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url(../img/common/bg_companion_long.jpg) no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/common/bg_companion_long.jpg) no-repeat;
}
.profile-comment2 p {
  font-size: 1.2rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}

.profile-comment2-head img,
.profile-comment2-bottom img {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.profile-comment2-bottom {
  margin-bottom: 40px;
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .profile-comment2 {
    padding: 15px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
/* 親要素：タグを並べるコンテナ */
.tag-cloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* 横幅がいっぱいになったら自動で折り返す */
  gap: 8px 10px; /* タグ同士の間隔（上下8px, 左右10px） */
}

/* 各タグのスタイル */
.tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(-45deg, rgba(124, 217, 240, 0.45) 0%, rgba(71, 148, 211, 0.45) 100%);
  border-radius: 20px; /* 角を丸くしてカプセル型に */
  line-height: 1.4;
  /* テキストの選択をしやすくする（お好みで） */
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.detail-sche-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 60px;
  font-family: "Zen Old Mincho", serif;
}

.detail-sche-list {
  margin: 0;
  padding: 0;
  border: 1px solid #053fa1;
}

.detail-sche-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #053fa1;
}

.detail-sche-row dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 12px;
  background: linear-gradient(-45deg, rgba(124, 217, 240, 0.25) 0%, rgba(71, 148, 211, 0.25) 100%);
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
}

.detail-sche-row dd {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin: 0;
  padding: 15px 12px;
  background: rgba(0, 0, 0, 0.2);
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
}

.detail-sche-accordion {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.6s ease;
  transition: max-height 0.6s ease;
}

.detail-sche-row:last-child {
  border-bottom: none;
}

.detail-sche-accordion.open {
  max-height: 1000px;
}

#detail-viewmore-btn {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#4989ce), color-stop(#053fa1), to(#4989ce));
  background: linear-gradient(to right, #4989ce, #053fa1, #4989ce);
  border: 1px solid #4989ce;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  letter-spacing: 0.025em;
  font-family: "Cinzel", serif;
}

#detail-viewmore-btn:hover {
  background: #053fa1;
  border-color: #4989ce;
}

.blue {
  color: rgb(55, 165, 255);
}

.red {
  color: rgb(255, 104, 104);
}

@media (max-width: 768px) {
  .detail-sche-row dt {
    text-align: left;
    border-bottom: 1px dotted #926f24;
  }
  .detail-sche-row dt,
  .detail-sche-row dd {
    padding: 14px;
    font-size: 16px;
  }
}
.iFrameWrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.iFrameWrap iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}
.iFrameWrap .spButton {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#4989ce), color-stop(#053fa1), to(#4989ce));
  background: linear-gradient(to right, #4989ce, #053fa1, #4989ce);
  border: 1px solid #4989ce;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  letter-spacing: 0.025em;
  font-family: "Cinzel", serif;
  text-align: center;
}
.iFrameWrap .spButton a {
  color: #fff;
}

@media (max-width: 767px) {
  .iFrameWrap iframe {
    min-height: 300px;
  }
}
.detail-common-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}
.detail-common-box a {
  display: block;
  opacity: 1;
}
.detail-common-box a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.detail-common-box figure img {
  display: block;
  width: 100%;
}

.bg-white {
  background: #fff;
}

.detail-banner-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}
.detail-banner-box a {
  display: block;
  opacity: 1;
}
.detail-banner-box a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.detail-banner-box figure img {
  display: block;
  width: 100%;
}

/* === 画像バナーの枠線 === */
.banner-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.banner-link img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.border-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.border-img::before,
.border-img::after {
  content: "";
  position: absolute;
  background-color: #e4b144;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}

/* 上下線 */
.banner-link::before,
.banner-link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background-color: #e4b144;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.banner-link::before {
  top: 0;
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.banner-link::after {
  bottom: 0;
  right: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform-origin: right;
          transform-origin: right;
}

/* 左右線 */
.border-img::before {
  width: 2px;
  height: 0%;
  left: 0;
  bottom: 0;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.border-img::after {
  width: 2px;
  height: 0%;
  right: 0;
  top: 0;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transform-origin: top;
          transform-origin: top;
}

/* hover時 */
.banner-link:hover::before,
.banner-link:hover::after {
  width: 100%;
}

.banner-link:hover .border-img::before,
.banner-link:hover .border-img::after {
  height: 100%;
}

/* === テキストリンク用 === */
.detail-link-wrapper {
  margin-bottom: 40px;
}

.detail-link-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* リンク本体 */
.animated-link {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff; /* 基本の文字色（ネイビー） */
  background: -webkit-gradient(linear, left top, right top, from(#00225c), color-stop(#053fa1), to(#00225c));
  background: linear-gradient(to right, #00225c, #053fa1, #00225c);
  border: 1px solid #00225c; /* ネイビーの枠線 */
  overflow: hidden;
  font-size: 1.1rem;
  border-radius: 4px; /* ほんのり角丸 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ホバーで伸びる背景アニメーション（擬似要素） */
.animated-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1456c9; /* ホバー時の背景（ネイビー） */
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.animated-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* テキスト＆アイコンのコンテンツ枠 */
.border-text {
  position: relative;
  z-index: 2; /* 背景アニメーションより前に表示 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px;
  gap: 0.8em;
  color: #fff; /* 基本のテキスト色 */
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* ホバー時に文字とアイコンを白く＆右に少しスライド */
.animated-link:hover .border-text {
  color: #ffffff;
}

/* ▶ アイコン */
.border-text .icon {
  color: #053fa1;
  font-size: 0.9rem;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

/* ホバー時：アイコンを白にしつつ右へ動かす */
.animated-link:hover .icon {
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.btn-back-castpage {
  position: relative;
  clear: both;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 40px;
  z-index: 10;
}

.btn-back-castpage a {
  margin: 10px;
  background: #a07926;
  padding: 0.9em 2.5em;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}

.btn-back-castpage a:hover {
  background: #ca9b34;
  color: #fff;
}

.btn-gradation {
  position: relative;
  clear: both;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 90px;
  z-index: 10;
}

.btn-gradation a {
  margin: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#4989ce), color-stop(#053fa1), to(#4989ce));
  background: linear-gradient(to right, #4989ce, #053fa1, #4989ce);
  padding: 0.9em 2.5em;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}

.btn-gradation a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#5093db), color-stop(#1557c9), to(#5093db));
  background: linear-gradient(to right, #5093db, #1557c9, #5093db);
  color: #fff;
  -webkit-box-shadow: 0 0 -10px #000f2e;
          box-shadow: 0 0 -10px #000f2e;
}

.btn-gold {
  position: relative;
  clear: both;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 90px;
  z-index: 10;
}

.btn-gold a,
.btn-gold button {
  display: inline-block;
  margin: 10px;
  padding: 0.9em 2.5em;
  background: -webkit-gradient(linear, left top, right top, from(#caa045), color-stop(#94732c), to(#caa045));
  background: linear-gradient(to right, #caa045, #94732c, #caa045);
  border: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}

.btn-gold a:hover,
.btn-gold button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#daad4c), color-stop(#ac8634), to(#daad4c));
  background: linear-gradient(to right, #daad4c, #ac8634, #daad4c);
  color: #fff;
}

.form-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 70px;
  margin-bottom: 90px;
}

.btn-form-gold,
.btn-form-gray {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.btn-form-gold {
  position: relative;
  clear: both;
  text-align: center;
  z-index: 10;
}

.btn-form-gold a,
.btn-form-gold button {
  display: inline-block;
  margin: 10px;
  padding: 0.9em 2.5em;
  background: -webkit-gradient(linear, left top, right top, from(#caa045), color-stop(#94732c), to(#caa045));
  background: linear-gradient(to right, #caa045, #94732c, #caa045);
  border: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}

.btn-form-gold a:hover,
.btn-form-gold button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#daad4c), color-stop(#ac8634), to(#daad4c));
  background: linear-gradient(to right, #daad4c, #ac8634, #daad4c);
  color: #fff;
}

.btn-form-gray {
  position: relative;
  clear: both;
  text-align: center;
  z-index: 10;
}

.btn-form-gray a,
.btn-form-gray button {
  display: inline-block;
  margin: 10px;
  padding: 0.9em 2.5em;
  background: -webkit-gradient(linear, left top, right top, from(#8f8f8f), color-stop(#5f5f5f), to(#8f8f8f));
  background: linear-gradient(to right, #8f8f8f, #5f5f5f, #8f8f8f);
  border: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}

.btn-form-gray a:hover,
.btn-form-gray button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#a7a7a7), color-stop(#737373), to(#a7a7a7));
  background: linear-gradient(to right, #a7a7a7, #737373, #a7a7a7);
  color: #fff;
}

/* スマホ */
@media (max-width: 767px) {
  .form-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .btn-form-gold,
  .btn-form-gray {
    width: 100%;
  }
  .btn-form-gold a,
  .btn-form-gold button,
  .btn-form-gray a,
  .btn-form-gray button {
    width: 100%;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/*---------------------
schedule
----------------------*/
.day select {
  background-color: #02245f;
  color: #e4e4e4;
  border: 1px solid #2863c9;
  padding: 12px 40px 12px 14px; /* ← 右側の余白を拡大 */
  font-size: 1rem;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 500px; /* ← 少し横幅広げるとバランス良くなります */
  min-width: 270px;
  font-family: "Segoe UI", sans-serif;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e4e4e4' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center; /* ← 少し内側に調整 */
  background-size: 12px;
}

.day select:hover {
  border-color: #4469e4;
  color: #fff;
  background-color: #053fa1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.day-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
  margin-bottom: 40px;
}

/*---------------------
ranking
----------------------*/
.ranking-list {
  margin-bottom: 90px;
}

.ch-ranking-wrap {
  position: relative;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
  margin-top: 70px;
  box-sizing: border-box;
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .ranking-list {
    margin-bottom: 70px;
  }
  .ch-ranking-wrap {
    position: relative;
    padding: 0 10px;
    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.ch-ranking {
  position: relative;
  padding: 3px 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: linear-gradient(-225deg, #634a14 0%, #bb933d 29%, #c49d4b 67%, #634a14 100%);
}
.ch-ranking .ranking-head {
  position: absolute;
  top: -48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.ch-ranking .ranking-head img {
  display: block;
  width: 100%;
}
.ch-ranking .ch-ranking-inner {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url(../img/ch_ranking_bg.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/ch_ranking_bg.jpg);
  background-position: center center;
  background-size: cover;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.ch-ranking .ch-ranking-inner h3 {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
}

/*---------------------
movie / interview / gravure
----------------------*/
.banner-wrap {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 40px;
}
.banner-wrap .list-banner {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.8s ease, transform 0.6s ease;
  transition: opacity 0.8s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  background: #111;
}
.banner-wrap a.banner-inner {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.banner-wrap a.banner-inner img.banner-base {
  display: block;
  width: 100%;
  z-index: 1;
}
.banner-wrap a:hover.banner-inner img.banner-base {
  -webkit-transform: rotate(0deg) scale(1.03);
          transform: rotate(0deg) scale(1.03);
  -webkit-transition: all 0.6s cubic-bezier(0.6, 0.2, 0.2, 0.6);
  transition: all 0.6s cubic-bezier(0.6, 0.2, 0.2, 0.6);
}

/* ノートPC〜デスクトップ標準（〜1279px） */
@media (max-width: 1279px) {
  .banner-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* タブレット横・小型PC（〜1023px） */
@media (max-width: 1023px) {
  .banner-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .banner-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* slide-up 共通の初期状態（非表示） */
.slide-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 表示時（任意のクラスと組み合わせて使えるように） */
.slide-up.show_banner,
.slide-up.show_box {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* fade in 共通の初期状態（非表示） */
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.9s ease;
  transition: opacity 0.9s ease;
}

.fade-in.show_box {
  opacity: 1;
}

.list-banner figure {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.list-banner figure::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.list-banner figure:hover::before {
  -webkit-animation: shine2 0.6s;
  animation: shine2 0.6s;
}

@-webkit-keyframes shine2 {
  100% {
    left: 125%;
  }
}
@keyframes shine2 {
  100% {
    left: 125%;
  }
}
/*---------------------
movie detail
----------------------*/
.movie-detail {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#movie-image video {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.movie-contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #926f24;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
}

.movie-contents-head img,
.movie-contents-bottom img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.movie-contents-bottom {
  margin-bottom: 40px;
}

.movie-cast-name {
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
.movie-cast-name span.name-en {
  display: block;
  font-size: 0.7rem;
  color: #dac089;
  letter-spacing: 0.2rem;
  font-family: "Libre Baskerville", serif;
}

.movie-cast-size {
  margin-top: 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  font-family: "Libre Baskerville", serif;
}
.movie-cast-size span {
  font-size: 0.65rem;
}

/*---------------------
system
----------------------*/
.system-wrap {
  position: relative;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 90px;
}

.system-wrap2 {
  position: relative;
  background: url(../img/shop/shop_image_bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .system-wrap {
    margin-top: 60px;
  }
  .system-wrap2 {
    margin-top: 50px;
  }
}
.shop-movie-wrap {
  position: relative;
}

#shop-movie {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#shop-movie .overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 100%;
  pointer-events: none;
}

#shop-movie video {
  width: 95%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* --- Swiper 全体 --- */
.swiper-system-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.swiper-system-wrapper .swiper-system {
  width: 100%;
}
.swiper-system-wrapper .swiper-system .swiper-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.swiper-system-wrapper .swiper-system .swiper-slide {
  width: 90%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.swiper-system-wrapper .swiper-system .swiper-slide.fade-in {
  opacity: 1;
  pointer-events: auto;
}
.swiper-system-wrapper .swiper-system .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- Swiper本体 --- */
.swiper-system {
  width: 100%;
  height: auto;
}

/* --- ナビゲーション（左右ボタン） --- */
.swiper-button-prev-system,
.swiper-button-next-system {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3882d), to(#b3882d));
  background: linear-gradient(to bottom, #b3882d, #b3882d);
  color: #fff;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.swiper-button-prev-system.swiper-button-prev-system,
.swiper-button-next-system.swiper-button-prev-system {
  left: 10px;
}
.swiper-button-prev-system.swiper-button-next-system,
.swiper-button-next-system.swiper-button-next-system {
  right: 10px;
}

.swiper-button-prev-system:hover,
.swiper-button-next-system:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#81611b), to(#81611b));
  background: linear-gradient(to bottom, #81611b, #81611b);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* --- ページネーション --- */
.swiper-pagination-system {
  text-align: center;
  margin-top: 10px;
}
.swiper-pagination-system .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  margin: 0 4px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.swiper-pagination-system .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333;
  opacity: 1;
}

.system-detail-wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.system-detail-inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.system-detail-inner2 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .system-detail-wrap {
    margin-top: 30px;
  }
}
.bg-system-box {
  background: url(../img/common/bg_system.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px;
  width: 100%;
}

.bg-system-box2 {
  background: url(../img/common/bg_system2.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px;
  width: 100%;
}

.bg-system-box3 {
  background: url(../img/common/bg_system3.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px;
  width: 100%;
}

.bg-system-box4 {
  background: url(../img/common/bg_system4.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px;
  width: 100%;
}

/* 1項目 */
.system-box-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  width: 100%;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 47, 112, 0.3);
}

.system-box-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#002f70), color-stop(50%, #7cd9f0), to(#002f70));
  background: linear-gradient(90deg, #002f70 0%, #7cd9f0 50%, #002f70 100%);
}

.system-box-row:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0px;
}

/* 左側：タイトルボックス */
.system-box-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(40% - 25px);
          flex: 0 0 calc(40% - 25px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 右側：詳細ボックス */
.system-box-detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(60% - 25px);
          flex: 0 0 calc(60% - 25px);
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .system-box-row {
    gap: 30px;
  }
  .system-box-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(40% - 15px);
            flex: 0 0 calc(40% - 15px);
    text-align: left;
  }
  /* 右側：詳細ボックス */
  .system-box-detail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(60% - 15px);
            flex: 0 0 calc(60% - 15px);
    text-align: left;
  }
}
/* 各ボックス内の見出し */
.system-box-headline {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

/* 下段：横幅いっぱい */
.system-box-bottom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.system-box-mg20 {
  margin-top: 20px;
}

.system-info {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
}
.system-info dl {
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", serif;
}
.system-info dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1em;
}
.system-info dl div dt, .system-info dl div dd {
  font-size: 1.1rem;
  padding-bottom: 15px;
}
.system-info dl div dt {
  width: 30%;
  font-weight: bold;
  color: #fde1a3;
  border-bottom: 1px solid #b3882d;
}
.system-info dl div dd {
  width: 70%;
  margin: 0;
  color: #fff;
  border-bottom: 1px dotted #b3882d;
}
.system-info dl div.full dt {
  width: 100%;
}
.system-info dl div:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .system-info dl div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .system-info dl div dt,
  .system-info dl div dd {
    width: 100%;
  }
  .system-info dl div dt {
    margin-bottom: 0.3em;
    border-bottom: none;
  }
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .system-info {
    margin-top: 20px;
  }
}
.bdm-none {
  border-bottom: 0 !important;
}

.system-tel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #222 url(../img/shop/shop_image_bg.jpg) no-repeat;
  background-size: cover;
  border: 2px solid #b3882d;
  text-align: center;
}
.system-tel .tel-txt {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.system-tel .tel-number {
  font-size: 1.8rem;
  color: #fff;
  font-family: "Libre Baskerville", serif;
}
.system-tel .tel-number a {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.system-tel .tel-number a:hover {
  color: #e6c06e;
}
.system-tel .tel-number a:active {
  color: #fff;
}
.system-tel .tel-number a:visited {
  color: #fff;
}
.system-tel .tel-number i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}

.system-map {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(to right, #f4eade 0%, #e1cfb8 50%, #f4eade 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#f4eade), color-stop(50%, #e1cfb8), to(#f4eade));
     border-image: linear-gradient(to right, #f4eade 0%, #e1cfb8 50%, #f4eade 100%);
  border-image-slice: 1;
}
.system-map iframe {
  display: block;
  width: 100%;
  max-width: 1200px;
}

.system-attention {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #000000;
}
.system-attention p {
  color: #fff;
  line-height: 1.5;
}
.system-attention ul.gold {
  color: #ffd986;
  margin: 10px 0;
}
.system-attention ul.gold li {
  font-size: 1.3rem;
  list-style-type: none;
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px dotted #b3882d;
}
.system-attention ul.gold li span {
  color: #cc9f3f;
}
.system-attention p.attention-head {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.system-attention p.attention-head i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}

/*---------------------
campaign
----------------------*/
.campaign-img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.campaign-img img {
  display: block;
  width: 100%;
}

.campaign {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #000000;
  font-family: "Zen Old Mincho", serif;
}
.campaign p {
  color: #fff;
  line-height: 1.5;
}
.campaign p span {
  color: #ffd986;
}
.campaign p span.answer {
  color: #b3882d;
}
.campaign p span.answer i {
  font-size: 1.2rem;
}
.campaign ul.gold {
  color: #fff;
  margin: 10px 0;
}
.campaign ul.gold li {
  font-size: 1rem;
  list-style-type: none;
  line-height: 1.5;
  padding: 5px 0;
}
.campaign ul.gold li span {
  color: #ffd986;
  font-size: 1.15rem;
}
.campaign p.campaign-headline {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd986;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.campaign p.campaign-headline i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}
.campaign p.campaign-head {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.campaign p.campaign-head i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}

/*---------------------
beginners
----------------------*/
.beginners {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #000000;
  font-family: "Zen Old Mincho", serif;
}
.beginners p {
  color: #fff;
  line-height: 1.5;
}
.beginners p span {
  color: #ffd986;
}
.beginners p span.answer {
  color: #b3882d;
}
.beginners p span.answer i {
  font-size: 1.2rem;
}
.beginners ul.gold {
  color: #fff;
  margin: 10px 0;
}
.beginners ul.gold li {
  font-size: 1rem;
  list-style-type: none;
  line-height: 1.5;
  padding: 5px 0;
}
.beginners ul.gold li span {
  color: #ffd986;
  font-size: 1.15rem;
}
.beginners p.beginners-head {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.beginners p.beginners-head i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}

/*---------------------
recruit
----------------------*/
.recruit-head {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.recruit-head img {
  display: block;
  width: 100%;
}

.ch-recruit {
  color: #ffd986;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.ch-recruit-bottom {
  display: block;
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}
.ch-recruit-bottom img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ch-recruit {
    text-align: left;
  }
  .ch-recruit br {
    display: none;
  }
}
.recruit {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Zen Old Mincho", serif;
}
.recruit p {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.6;
}
.recruit p span {
  color: #7cd9f0;
}
.recruit p span.answer {
  color: #b3882d;
}
.recruit p span.answer i {
  font-size: 1.2rem;
}
.recruit ul.gold {
  color: #fff;
  margin: 10px 0;
}
.recruit ul.gold li {
  font-size: 1rem;
  list-style-type: none;
  line-height: 1.5;
  padding: 5px 0 8px;
  border-bottom: 1px dotted #b3882d;
}
.recruit ul.gold li span {
  color: #ffd986;
  font-size: 1.15rem;
}
.recruit ul.gold li::first-letter {
  font-size: 1.2rem;
  color: #ffd986;
}
.recruit p.recruit-head {
  position: relative;
  display: block;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
}
.recruit p.recruit-head i {
  font-size: 1.3rem;
  margin-right: 0.4rem;
}
.recruit p.recruit-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#002f70), color-stop(50%, #7cd9f0), to(#002f70));
  background: linear-gradient(90deg, #002f70 0%, #7cd9f0 50%, #002f70 100%);
}

@media screen and (max-width: 767px) {
  .recruit {
    padding: 0;
  }
  .recruit p {
    font-size: 1.2rem;
  }
}
/*---------------------
お問い合わせフォーム
----------------------*/
.contact-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-form .form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  width: 260px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 9px;
}
.contact-form .form-status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.contact-form .form-status.required {
  color: #fff;
  background: #d95a57;
}
.contact-form .form-status.optional {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.contact-form .form-title {
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.6;
}
.contact-form .form-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.contact-form .form-field b {
  position: relative;
  display: inline-block;
  min-width: 70px;
}
.contact-form .form-field br {
  display: block;
  margin-bottom: 10px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=date]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}
.contact-form select#tall,
.contact-form select#bust,
.contact-form select#cup,
.contact-form select#waist,
.contact-form select#hip {
  width: 100%;
  max-width: 200px;
}
.contact-form select#form-name {
  width: 100%;
  max-width: 200px;
}
.contact-form .form-date-select {
  width: 100%;
  max-width: 200px;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.contact-form select option {
  color: #111;
  background: #fff;
}
.contact-form .name-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form .choice-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 10px;
}
.contact-form .choice-group.choice-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.contact-form .choice-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
}
.contact-form .choice-item input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #169de0;
  cursor: pointer;
}
.contact-form .form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
}
.contact-form .form-submit button {
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 60px;
  padding: 15px 30px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.contact-form .form-submit button:hover {
  color: #111;
  background: #fff;
  border-color: #fff;
}
.contact-form .confirm-txt {
  line-height: 1rem;
  font-size: 1rem;
  padding-top: 12px;
}
@media (max-width: 767px) {
  .contact-form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }
  .contact-form .form-label {
    width: 100%;
    padding-top: 0;
    gap: 10px;
  }
  .contact-form .form-title {
    font-size: 14px;
  }
  .contact-form .form-field {
    width: 100%;
  }
  .contact-form .name-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form input[type=date],
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
  .contact-form .choice-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
  .contact-form .form-submit {
    padding-top: 35px;
  }
  .contact-form .form-submit button {
    max-width: 100%;
  }
}

.complete-txt-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  margin: 40px auto 80px auto;
}

.complete-txt {
  display: block;
  width: 100%;
  line-height: 1.9rem;
  font-size: 1.1rem;
  padding-top: 12px;
  word-break: break-all;
}

.recruit-cta {
  width: 100%;
  padding: 80px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.recruit-cta .recruit-cta-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.recruit-cta .recruit-cta-box {
  text-align: center;
  min-width: 0;
}
.recruit-cta .recruit-cta-title {
  margin: 0 0 20px;
  color: #7cd9f0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.recruit-cta .recruit-cta-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
}
.recruit-cta .recruit-cta-image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.recruit-cta .recruit-cta-image:hover {
  border-color: rgba(218, 173, 76, 0.9);
}
.recruit-cta .recruit-cta-image:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.recruit-cta .recruit-cta-text {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .recruit-cta {
    padding: 50px 20px;
  }
  .recruit-cta .recruit-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .recruit-cta .recruit-cta-title {
    margin-bottom: 15px;
  }
  .recruit-cta .recruit-cta-text {
    margin-top: 12px;
    font-size: 13px;
    text-align: left;
  }
}

/*---------------------
Q&A
----------------------*/
.qa-wrap {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
}
.qa-wrap button {
  font-family: "Zen Old Mincho", serif;
}

.qa-item {
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 8px;
}

.qa-item:last-child {
  border-bottom: none;
}

.qa-question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 10px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}
.qa-question .qa-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
.qa-question .qa-text span {
  color: #ffd986;
}
.qa-question .qa-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #ffd986;
}
.qa-question.active .qa-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0 16px;
}
.qa-answer p {
  margin: 10px 0;
  line-height: 1.6;
  color: #fff;
}
.qa-answer p span {
  color: #fca7c0;
}
.qa-answer.active {
  opacity: 1;
  padding-bottom: 16px;
}

.recruit-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Zen Old Mincho", serif;
}
.recruit-table .r-table dl {
  margin: 0 0;
}
.recruit-table .r-table dt,
.recruit-table .r-table dd {
  padding: 12px 0;
}
.recruit-table .r-table dt {
  color: #7cd9f0;
  border-bottom: 1px solid rgba(163, 205, 253, 0.6);
}
.recruit-table .r-table dd {
  border-bottom: 1px solid rgba(163, 205, 253, 0.6);
}
.recruit-table .r-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recruit-table .r-table dt {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.2rem;
}
.recruit-table .r-table dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 1.5em;
  overflow-wrap: break-word;
  font-size: 1.2rem;
}
.recruit-table .r-table-nobd {
  border-bottom: none !important;
}
.recruit-table .recruit-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.recruit-table .recruit-tags span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 14px 6px;
  border: 1px solid rgba(163, 205, 253, 0.6);
  border-radius: 3px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
  background: rgba(36, 65, 146, 0.5);
}
@media (max-width: 767px) {
  .recruit-table .r-table dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-table .r-table dt {
    padding: 8px 0 0;
  }
  .recruit-table .r-table dd {
    padding: 8px 0 12px;
  }
  .recruit-table .r-table dt {
    width: 100%;
    border-bottom: none;
  }
  .recruit-table .r-table dd {
    width: 100%;
  }
}

.form-guide-txt {
  padding: 10px 10px;
  border: 1px solid #926f24;
  text-align: center;
  color: #fff !important;
}
.form-guide-txt span {
  color: #fde1a3;
}

.form-end-txt {
  padding: 10px 10px;
  text-align: center;
  color: #fff !important;
}
.form-end-txt span {
  color: #fde1a3;
}

@media (max-width: 767px) {
  .form-guide-txt {
    text-align: left;
  }
  .form-end-txt {
    text-align: left;
  }
}
.audition-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
}
.audition-form .audition-form-section {
  margin-bottom: 32px;
}
.audition-form .audition-form-section dt {
  font-weight: bold;
  padding: 10px 0 12px;
  color: #ffd986;
  border-top: 1px dotted #926f24;
}
.audition-form .audition-form-section dt sup {
  margin-left: 5px;
  font-size: 0.8rem;
  color: #ff6363;
}
.audition-form .audition-form-section dt:first-child {
  border-top: none;
}
.audition-form .audition-form-section dd {
  margin: 0 0 20px;
}
.audition-form .audition-form-section dd input[type=text],
.audition-form .audition-form-section dd select,
.audition-form .audition-form-section dd textarea {
  width: 100%;
  max-width: 300px;
  padding: 5px 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.audition-form .audition-form-section dd textarea {
  resize: vertical;
  min-height: 120px;
}
.audition-form .audition-form-section dd .form-textarea {
  width: 100% !important;
  max-width: 400px;
}
.audition-form .audition-form-section dd .form-note {
  font-size: 0.85rem;
  color: #fff;
  margin-top: 4px;
}
.audition-form .audition-form-section dd label {
  margin-right: 12px;
}
.audition-form .input-height {
  width: 80px !important;
}
.audition-form .audition-sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.audition-form .audition-sizes .size-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  gap: 4px;
}
.audition-form .audition-sizes .size-label input {
  width: 60px;
  padding: 6px;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
}
.audition-form .audition-experience {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.audition-form .audition-experience label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #e4b144;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
.audition-form .audition-experience label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #e4b144;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
}
.audition-form .audition-experience label input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #e4b144;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.audition-form .audition-experience label:hover {
  background: rgba(228, 177, 68, 0.1);
}
.audition-form .input-age {
  width: 80px !important;
  min-width: 70px;
  padding: 6px 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
}
.audition-form .audition-form-subnote {
  font-size: 0.95rem;
  color: #ffd986;
  margin-bottom: 20px;
}
.audition-form .audition-form-submit {
  text-align: center;
  margin-top: 50px;
}
.audition-form .audition-form-submit input[type=submit] {
  background: #a07926;
  padding: 9px 15px;
  min-width: 200px;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  border: none;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}
.audition-form .audition-form-submit input[type=submit]:hover {
  background: #ca9b34;
  color: #fff;
}
@media (max-width: 767px) {
  .audition-form .audition-form-section dd input[type=text],
  .audition-form .audition-form-section dd select,
  .audition-form .audition-form-section dd textarea {
    width: 100%;
    max-width: 100%;
  }
  .audition-form .audition-form-submit input[type=submit] {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.confirm-txt {
  font-size: 1.1rem;
  color: #fff;
}

.form-submit-back {
  margin-top: 30px;
  background: #666 !important;
}

.mens-recruit-banner {
  width: 100%;
}
.mens-recruit-banner img {
  display: block;
  width: 100%;
}

.bdb-none {
  border-bottom: none !important;
}

.recruit-table-mens {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Zen Old Mincho", serif;
}
.recruit-table-mens .r-table dl {
  margin: 0 0;
}
.recruit-table-mens .r-table dt,
.recruit-table-mens .r-table dd {
  padding: 12px 0;
}
.recruit-table-mens .r-table dt {
  color: #fde1a3;
  border-bottom: 1px dotted #b3882d;
}
.recruit-table-mens .r-table dd {
  border-bottom: 1px solid #926f24;
}
.recruit-table-mens .r-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recruit-table-mens .r-table dt {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recruit-table-mens .r-table dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 1.5em;
  overflow-wrap: break-word;
}
.recruit-table-mens .r-table-nobd {
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .recruit-table-mens .r-table dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-table-mens .r-table dt {
    padding: 8px 0 0;
  }
  .recruit-table-mens .r-table dd {
    padding: 8px 0 12px;
  }
  .recruit-table-mens .r-table dt {
    width: 100%;
    border-bottom: none;
  }
  .recruit-table-mens .r-table dd {
    width: 100%;
  }
}

.mens-r-txt {
  font-size: 1rem;
}
.mens-r-txt span {
  font-size: 0.85rem;
  color: #eee0c2 !important;
}

/*---------------------
mail magazine
----------------------*/
.mailmagazine {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #000000;
  font-family: "Zen Old Mincho", serif;
}
.mailmagazine p {
  color: #fff;
  line-height: 1.5;
}
.mailmagazine ul.gold {
  color: #ffd986;
  margin: 10px 0;
}
.mailmagazine ul.gold li {
  font-size: 1rem;
  list-style-type: none;
  line-height: 1.5;
  padding: 5px 0;
}
.mailmagazine ul.gold li span {
  color: #cc9f3f;
}
.mailmagazine p.mailmagazine-head {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px dotted #6e5520;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.mailmagazine p.mailmagazine-head i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}

.mail-maga {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.input-magazine input[type=text],
.input-magazine input[type=email],
.input-magazine input[name="form[mail]"] {
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid #b3882d;
  background-color: #222;
  color: #fff;
  outline: none;
  width: 100%;
  max-width: 300px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.input-magazine input:focus {
  border-color: #fff;
}

.mail-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.mail-submit input[type=submit] {
  background-color: #725518;
  color: #fff;
  border: 2px solid #b3882d;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Zen Old Mincho", serif;
}

.mail-submit input[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b3882d;
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mail-submit input[type=submit]:hover::before {
  left: 0;
}

.mail-submit input[type=submit]:hover {
  color: #fff;
  background-color: #b3882d;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .mail-maga {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .mail-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-submit input[type=submit] {
    width: 100%;
  }
}
/*---------------------
footer
----------------------*/
.detail-footer .footer-contents {
  padding-bottom: 40px;
  background: none;
}

footer {
  width: 100%;
}

.ft-top {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.ft-top img {
  display: block;
  width: 100%;
}

.footer-contents {
  position: relative;
  width: 100%;
  padding: 50px 20px 10px;
  background: #0a1019;
  background-size: cover;
  background-position: center center;
}
.footer-contents .footer-inner {
  position: relative;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}
.footer-contents .footer-logo {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}
.footer-contents .footer-logo img {
  display: block;
  width: 100%;
  max-width: 200px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.footer-contents .footer-biglogotype {
  display: block;
}
.footer-contents .footer-biglogotype img {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 1024px) {
  .footer-contents .footer-logo img {
    width: 30%;
    max-width: 180px;
  }
}
/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .footer-contents {
    padding: 30px 20px 60px;
  }
  .footer-contents .footer-logo img {
    margin: 0 auto;
  }
}
.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #ebba53;
  margin: 15px 0 10px;
}

.openclose {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
}
.openclose span {
  padding: 3px;
  background: #222;
  color: #ebba53;
}

.footer-menu {
  position: absolute;
  right: -20px;
  top: 50px;
  width: 100%;
  max-width: 600px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: "Cinzel", serif;
  letter-spacing: 0.025em;
}
.footer-menu a {
  color: #c0c0c4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer-menu a:hover {
  color: #7fb4ff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer-menu span {
  color: #999;
}

@media (max-width: 1024px) {
  .footer-menu {
    max-width: 500px;
    font-size: 1.2rem;
  }
}
/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .footer-menu {
    display: none;
  }
}
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  z-index: 999;
}
.pagetop img {
  display: block;
  width: 100%;
  max-width: 60px;
}

.btn-back-page {
  position: relative;
  clear: both;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  z-index: 10;
}

.btn-back-page a {
  margin: 10px;
  background: #a07926;
  padding: 0.9em 2.5em;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  -webkit-transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
  transition: all 0.3s cubic-bezier(0.88, 0.006, 0.09, 0.99);
}

.btn-back-page a:hover {
  background: #ca9b34;
  color: #fff;
}

/* スマホ（〜479px） */
@media (max-width: 479px) {
  /* 小型スマホ向け */
}
/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  /* 標準スマホ〜小型タブレット */
}
/* タブレット横・小型PC（〜1023px） */
@media (max-width: 1023px) {
  /* iPad Pro横やChromebook対応 */
}
/* ノートPC〜デスクトップ標準（〜1279px） */
@media (max-width: 1279px) {
  /* 小〜中型ノートPC */
}
/* フルHD未満（〜1919px） */
@media (max-width: 1919px) {
  /* 標準デスクトップや高解像度ノートPC */
}
.js-fadeup {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fadeup.is-fadeup-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-delay-1 {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.js-delay-2 {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.js-delay-3 {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.js-delay-4 {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}/*# sourceMappingURL=style.css.map */