@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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: "Libre Baskerville", serif;
  overflow-y: auto;
  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: 200px;
  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: 200px;
  top: 0;
  left: 5px;
  z-index: 3;
}
.detail-header .detail-header-logo {
  width: 100%;
  max-width: 200px;
  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: 180px;
  }
  .detail-header .detail-header-logo {
    max-width: 180px;
  }
}
/* タブレット横・小型PC（〜1023px） */
@media (max-width: 1023px) {
  .detail-header {
    max-width: 150px;
  }
  .detail-header .detail-header-logo {
    max-width: 150px;
  }
  .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: 130px;
  }
  .detail-header .detail-header-logo {
    max-width: 130px;
  }
  .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: 100px;
  }
  .detail-header .detail-header-logo {
    max-width: 100px;
  }
  .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;
}

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

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .page-contents {
    padding-bottom: 0;
  }
  .detailpage-contents {
    padding-bottom: 0;
  }
}
/*---------------------
動画背景
----------------------*/
.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.6)), to(rgba(0, 0, 0, 0.85)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
  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;
  }
}
.fixed-tel-smp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 70%;
  max-width: 300px;
  margin: 0 auto;
  z-index: 5;
}
.fixed-tel-smp img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* スマホ大・タブレット縦（〜767px） */
@media (min-width: 768px) {
  .fixed-tel-smp {
    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: 30px 0;
  margin-bottom: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#3a0006), color-stop(50%, #9b0101), to(#3a0006));
  background: linear-gradient(to right, #3a0006 0%, #9b0101 50%, #3a0006 100%);
}

.attention-wrap::before,
.attention-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#926f24), color-stop(50%, #ffd372), to(#926f24));
  background: linear-gradient(to right, #926f24 0%, #ffd372 50%, #926f24 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 p {
  font-size: 1.2rem;
  color: #fff;
  font-family: "Zen Old Mincho", 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;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
}

.info-item {
  padding: 16px 0;
  position: relative;
}

.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(#000000), color-stop(#926f24), to(#000000));
  background: linear-gradient(to right, #000000, #926f24, #000000);
  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;
  font-family: "Libre Baskerville", serif;
}

.info-category {
  background: #e4b144;
  color: #111;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 8px;
  font-family: "Libre Baskerville", serif;
}

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

.info-text a {
  color: #fff6e3;
  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 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 {
  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;
  padding-bottom: 20px;
}
.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.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: 100px;
  z-index: 3;
}
.companion-wrap a.cast-inner img.i-update {
  position: absolute;
  top: 0;
  right: 5px;
  display: block;
  width: 100%;
  max-width: 80px;
  z-index: 3;
}
.companion-wrap a:hover.cast-inner img.cast-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);
}

/* 表示されたらアニメーション */
.cast.show_cast {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .companion-wrap a.cast-inner img.i-newface {
    width: 100%;
    max-width: 90px;
  }
  .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(-25deg);
  transform: skewX(-25deg);
}
.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;
  background: -webkit-gradient(linear, left top, left bottom, from(#111), to(#111));
  background: linear-gradient(to bottom, #111, #111);
  width: 100%;
  padding-bottom: 15px;
  z-index: 3;
}
.cast .cast-bottom-inner {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#222), color-stop(30%, #111), to(#111));
  background: linear-gradient(to bottom, #222 0%, #111 30%, #111);
  border-top: 2px solid #b3882d;
  width: 100%;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cast .cast-name {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
.cast .cast-name span.name-en {
  display: block;
  font-size: 0.7rem;
  color: #dac089;
  letter-spacing: 0.2rem;
  font-family: "Libre Baskerville", serif;
}
.cast .cast-size {
  margin-top: 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  font-family: "Libre Baskerville", serif;
}
.cast .cast-size span {
  font-size: 0.65rem;
}
.cast .cast-sche {
  color: #dac089;
  text-align: center;
  font-size: 0.8rem;
  font-family: "Libre Baskerville", 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;
}

/*---------------------
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: 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;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.profile .prof dl {
  padding-top: 20px;
  line-height: 1.2;
  margin: 0 0 20px;
  font-family: "Zen Old Mincho", serif;
}
.profile .prof dt {
  clear: both;
  float: left;
  width: 150px;
  height: 45px;
  line-height: 45px;
  color: #fde1a3;
}
.profile .prof dd {
  float: left;
  width: calc(100% - 152px);
  height: 45px;
  line-height: 45px;
  overflow: hidden;
}
.profile .prof dt {
  border-bottom: 1px dotted #b3882d;
}
.profile .prof dd {
  border-bottom: 1px solid #926f24;
}
.profile .prof:after {
  content: "";
  display: block;
  clear: both;
}

.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: 20px;
  border: 1px solid #926f24;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
}
.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: 200px;
  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;
  }
}
.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 #926f24;
}

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

.detail-sche-row dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
  padding: 10px 12px;
  background: rgba(51, 38, 10, 0.6);
  text-align: center;
}

.detail-sche-row dd {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin: 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.6);
}

.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: #b3882d;
  border: 1px solid #926f24;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-family: "Zen Old Mincho", serif;
}

#detail-viewmore-btn:hover {
  background: #c59734;
}

.blue {
  color: rgb(113, 134, 228);
}

.red {
  color: rgb(224, 134, 134);
}

@media (max-width: 768px) {
  .detail-sche-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail-sche-row dt {
    text-align: left;
    border-bottom: 1px dotted #926f24;
  }
  .detail-sche-row dt,
  .detail-sche-row dd {
    padding: 8px;
    font-size: 14px;
  }
}
.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;
  margin-bottom: 20px;
}

.detail-link-box a span.icon {
  color: #e4b144;
}
.detail-link-box a:hover span.icon {
  color: #fccc66;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.detail-link-box a:hover span.text {
  color: #e4b144;
}

.animated-link {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #e4b144;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-size: 1.1rem;
}

.animated-link:hover {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.border-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 16px;
  gap: 0.5em;
  color: #fff;
}

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

.animated-link::before {
  top: 0;
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

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

/* 縦線 */
.border-text::before,
.border-text::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0%;
  background: #e4b144;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.border-text::before {
  bottom: 0;
  left: 0;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.border-text::after {
  top: 0;
  right: 0;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

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

.animated-link:hover .border-text::before,
.animated-link:hover .border-text::after {
  height: 100%;
}

/* ▶ アイコン */
.border-text .icon {
  color: #e4b144;
  font-size: 1rem;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.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-yoyaku-detail {
  position: relative;
  clear: both;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 90px;
  z-index: 10;
}

.btn-yoyaku-detail 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-yoyaku-detail a:hover {
  background: #ca9b34;
  color: #fff;
}

/*---------------------
schedule
----------------------*/
.day select {
  background-color: #111;
  color: #e4e4e4;
  border: 1px solid #444;
  padding: 10px 40px 10px 14px; /* ← 右側の余白を拡大 */
  font-size: 1rem;
  border-radius: 6px;
  -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%;
  min-width: 240px;
  max-width: 400px; /* ← 少し横幅広げるとバランス良くなります */
  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: #e4b144;
  color: #fff;
  background-color: #1a1a1a;
  -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;
}

/*---------------------
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%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .system-detail-wrap {
    margin-top: 30px;
  }
}
.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: 800px;
  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: 800px;
}

.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-qr {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.7))), url(../img/common/button_bg.png);
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url(../img/common/button_bg.png);
  background-position: center center;
  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;
  padding: 10px 10px;
  border: 1px solid #926f24;
  text-align: center;
  color: #fff !important;
}
.recruit-qr .qrimg-txt {
  width: calc(60% - 10px);
  text-align: center !important;
}
.recruit-qr .qrimg-txt > p {
  font-size: 1.5rem;
}
.recruit-qr .qrimg-txt .qr-arrow img {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  margin-top: 10px;
  padding-left: 10px;
}
.recruit-qr .qrimg {
  width: 40%;
}
.recruit-qr .qrimg img {
  display: block;
  width: 100%;
  max-width: 200px;
}
.recruit-qr .qrimg img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media screen and (max-width: 767px) {
  .recruit-qr .qrimg-txt {
    width: calc(50% - 10px);
  }
  .recruit-qr .qrimg-txt > p {
    font-size: 1.2rem;
  }
}
.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%;
  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;
}
.recruit p {
  color: #fff;
  line-height: 1.5;
}
.recruit p span {
  color: #ffd986;
}
.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 {
  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;
}
.recruit p.recruit-head i {
  font-size: 1.3rem;
  color: #b3882d;
  margin-right: 0.4rem;
}

/*---------------------
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: #fde1a3;
  border-bottom: 1px dotted #b3882d;
}
.recruit-table .r-table dd {
  border-bottom: 1px solid #926f24;
}
.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: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recruit-table .r-table dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 1.5em;
  overflow-wrap: break-word;
}
.recruit-table .r-table-nobd {
  border-bottom: none !important;
}
@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
----------------------*/
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: 30px 20px 120px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0.8))), url(../img/common/footer_bg.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url(../img/common/footer_bg.jpg);
  background-size: cover;
  background-position: center center;
}
.footer-contents .footer-logo {
  display: block;
  width: 100%;
  text-align: center;
}
.footer-contents .footer-logo img {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .footer-contents {
    padding: 30px 20px 60px;
  }
}
.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 {
  margin: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: -0.025em;
}
.footer-menu a {
  color: #999;
}
.footer-menu a:hover {
  color: #ebba53;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer-menu span {
  color: #999;
}

/* スマホ大・タブレット縦（〜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 */
}/*# sourceMappingURL=style.css.map */