@charset "UTF-8";
/* ===================================================================
 special.css - 特設ページ用スタイル
 ベージュ、ホワイト、ダークブラウン/ブラック基調
=================================================================== */

/* 特設一覧ページ */
.special_list {
  margin-top: 1.5em;
  list-style: none;
  padding: 0;
}
.special_list li {
  margin-bottom: 0.5em;
}
.special_list a {
  color: #2e1d15;
  text-decoration: underline;
}
.special_list a:hover {
  color: #8b6914;
}

/* SPIRIT WORLD 特設ページ */
.spiritworld {
  background: #f9f9f9;
}

/* 1. ヒーロー */
.spiritworld_hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.spiritworld_hero .photo {
  margin: 0;
  line-height: 0;
}
.spiritworld_hero .photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.spiritworld_hero .hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 29, 21, 0.2);
}
.spiritworld_hero .hero_overlay h2 {
  margin: 0;
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.2em;
  font-family: "Spinnaker", sans-serif;
}
@media only screen and (max-width: 767px) {
  .spiritworld_hero .hero_overlay h2 {
    font-size: 2em;
    letter-spacing: 0.1em;
  }
}

/* 2. イントロ（ベージュ背景） */
.spiritworld_intro {
  background: #ebe8e2;
  padding: 60px 0;
}
.spiritworld_intro .btn_detail {
  margin-top: 1.5em;
  text-align: center;
}
.spiritworld_intro .btn_detail a {
  display: inline-block;
  padding: 12px 40px;
  background: #2e1d15;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.spiritworld_intro .btn_detail a:hover {
  background: #4a3528;
}

/* 3. 映画について */
.con_spiritworld {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 5%;
  color: #242522;
}
.spiritworld_movie {
  background: #f9f9f9;
}
.con_spiritworld .con_info {
  margin-bottom: 40px;
  text-align: center;
}
.con_spiritworld .con_info h3 {
  font-size: 114%;
  font-weight: normal;
}
.con_spiritworld .con_info h3 em {
  display: block;
  letter-spacing: 0.24em;
  font-size: 175%;
  margin: 12px 0 6px;
  color: #2e1d15;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "游明朝", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.con_spiritworld .con_info h3 span {
  display: block;
  letter-spacing: 0.35em;
  color: #d1c0a6;
  font-family: "Spinnaker", sans-serif;
}
/* セクション間の余白 */
.con_spiritworld + .con_spiritworld {
  padding-top: 50px;
}
.con_spiritworld .box_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.con_spiritworld .box_inner.reverse {
  flex-direction: row-reverse;
}
/* 映画について: 左60% 動画 / 右40% 映画概要（gap考慮） */
.spiritworld_movie .box_movie_video {
  flex: 0 0 calc(60% - 20px);
  min-width: 280px;
}
.spiritworld_movie .box_movie_info {
  flex: 0 0 calc(40% - 20px);
  min-width: 260px;
}
.con_spiritworld .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.con_spiritworld .youtube iframe {
  width: 100%;
  height: 100%;
}
/* 見出し（spa の「高崎の街並みを一望できる男性SKYSPA」と同じデザイン） */
.con_spiritworld .box_det .title,
.con_spiritworld .box_movie_info .title {
  margin-top: 0;
  padding-top: 0;
  font-size: 26px;
  line-height: 1.4230769231;
  color: #c99d57;
  margin-bottom: 20px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "游明朝", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia, serif;
  font-weight: normal;
  position: relative;
}
.con_spiritworld .box_det .sub-title,
.con_spiritworld .box_movie_info .sub-title {
  position: absolute;
  top: -1.5em;
  left: 0;
  font-size: 16px;
}
/* 表（spa の tbl_basic と同じデザイン） */
.con_spiritworld .box_tbl {
  margin-bottom: 40px;
}
.con_spiritworld table.tbl_basic {
  width: 100%;
  table-layout: fixed;
}
.con_spiritworld table.tbl_basic tr:first-child {
  border-top: 1px dashed #242522;
}
.con_spiritworld table.tbl_basic tr {
  border-bottom: 1px dashed #242522;
}
.con_spiritworld table.tbl_basic th {
  display: table-cell;
  font-weight: normal;
  padding: 12px 12px 12px 0;
  box-sizing: border-box;
  vertical-align: top;
  width: 26.862745098%;
  text-align: left;
  font-size: 16px;
}
.con_spiritworld table.tbl_basic td {
  display: table-cell;
  padding: 12px 0 12px 12px;
  position: relative;
  box-sizing: border-box;
  vertical-align: top;
  width: 73.137254902%;
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .con_spiritworld table.tbl_basic td {
    padding: 12px 0 12px 0;
  }
}
.con_spiritworld table.tbl_basic td:before {
  content: none;
}
.con_spiritworld table.tbl_basic td span {
  display: block;
  text-indent: -15px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .con_spiritworld table.tbl_basic td span {
    text-indent: -17px;
    margin-left: 17px;
  }
}
.con_spiritworld .btn_detail {
  margin-top: 1em;
}
.con_spiritworld .btn_detail a {
  display: inline-block;
  padding: 10px 30px;
  background: #c97a3d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.con_spiritworld .btn_detail a:hover {
  background: #a8652e;
}
.con_spiritworld .btn_detail a .fa-angle-right {
  margin-left: 0.3em;
}

/* 4. 登場シーン紹介 */
.spiritworld_scene {
  background: #f9f9f9;
  padding-bottom: 120px;
}
/* 左60% テキスト / 右40% 写真 */
/* 写真は動画コンテンツと同じ幅（60%） */
.spiritworld_scene .box_photo {
  flex: 0 0 calc(60% - 20px);
  min-width: 280px;
}
.spiritworld_scene .box_det {
  flex: 0 0 calc(40% - 20px);
  min-width: 260px;
}
/* spiritworld_scene / spiritworld_plan の box_det は上記 .box_det .title を継承 */
.spiritworld_scene .box_photo .photo {
  margin: 0;
  line-height: 0;
  overflow: hidden;
}
.spiritworld_scene .box_photo .photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: cover;
}
.con_spiritworld .box_det .txt,
.con_spiritworld .box_movie_info .txt {
  font-size: 16px;
  line-height: 1.6875;
}
.spiritworld_scene .box_det .txt {
  margin: 0 0 1em;
}
.spiritworld_scene .box_det .txt:last-of-type {
  margin-bottom: 0;
}
.spiritworld_scene .txt_note {
  margin: 1em 0 0;
  font-size: 0.9em;
  color: #666;
}

/* 5. 登場人物とロケ地（3列グリッド） */
.con_spiritworld.spiritworld_characters {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}
.spiritworld_characters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #ebe8e2;
  z-index: -1;
}
.spiritworld_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
}
.spiritworld_grid li .photo {
  margin: 0 0 30px;
  overflow: hidden;
}
.spiritworld_grid li .photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
/* 見出し・文章（spa のロウリュウサウナと同じデザイン） */
.spiritworld_grid li .list_title {
  font-size: 26px;
  letter-spacing: 0.11em;
  line-height: 1;
  margin: 0 0 20px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "游明朝", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia, serif;
  color: #2e1d15;
}
.spiritworld_grid li .list_txt {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6875;
  color: #2e1d15;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .spiritworld_movie .box_movie_video,
  .spiritworld_movie .box_movie_info,
  .spiritworld_scene .box_det,
  .spiritworld_scene .box_photo,
  .spiritworld_plan .box_photo,
  .spiritworld_plan .box_det {
    flex: 1 1 100%;
  }
  .spiritworld_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .con_spiritworld .box_det .title,
  .con_spiritworld .box_movie_info .title {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .con_spiritworld .box_det .sub-title,
  .con_spiritworld .box_movie_info .sub-title {
    top: -1.3em;
    font-size: 13px;
  }
  .con_spiritworld table.tbl_basic th {
    width: 117px;
    max-width: 100%;
    padding: 14px 14px 14px 0;
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .con_spiritworld table.tbl_basic td {
    padding: 14px 0 14px 0;
    font-size: 14px;
    line-height: 1.5714285714;
  }
}
@media only screen and (max-width: 480px) {
  .spiritworld_grid {
    grid-template-columns: 1fr;
  }
}
.spiritworld_characters .box_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.spiritworld_characters .box_btn li {
  float: none;
}

/* 6. ロケ地巡り宿泊プラン（非表示） */
.con_spiritworld.spiritworld_plan {
  display: none;
}
.spiritworld_plan .box_photo {
  flex: 0 0 calc(60% - 20px);
  min-width: 280px;
}
.spiritworld_plan .box_det {
  flex: 0 0 calc(40% - 20px);
  min-width: 260px;
}
.spiritworld_plan .box_photo .photo {
  margin: 0;
  line-height: 0;
  overflow: hidden;
}
.spiritworld_plan .box_photo .photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: cover;
}
.spiritworld_plan .box_det .txt {
  margin: 0 0 1em;
}
.spiritworld_plan .plan_benefits {
  margin: 1em 0 1.5em;
  padding-left: 1.5em;
  list-style: disc;
}
.spiritworld_plan .plan_benefits li {
  margin-bottom: 0.3em;
}
/* box_btn / btn_ame（rooms.css と同じデザイン） */
.con_spiritworld .box_btn {
  list-style: none;
  margin: 1em 0 0;
  padding: 0;
  overflow: visible;
}
.con_spiritworld.spiritworld_characters .box_btn {
  margin-top: 5em;
}
.con_spiritworld .box_btn::after {
  content: "";
  display: block;
  clear: both;
}
.con_spiritworld .box_btn li {
  width: 202px;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .con_spiritworld .box_btn li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 93%;
    width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .con_spiritworld .box_btn li {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    float: none;
  }
}
.con_spiritworld .box_btn li.btn_ame {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .con_spiritworld .box_btn li.btn_ame {
    margin-bottom: 5%;
  }
}
.con_spiritworld .box_btn li.btn_ame a {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, "游明朝", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia, serif;
  padding: 0.8em 0;
  color: #2e1d15;
  background: #c99d57;
  border: 1px solid #2e1d15;
  -moz-box-shadow: 0 0 0 2px #c99d57;
  -webkit-box-shadow: 0 0 0 2px #c99d57;
  box-shadow: 0 0 0 2px #c99d57;
  -moz-transition: background 0.8s, color 0.8s;
  -o-transition: background 0.8s, color 0.8s;
  -webkit-transition: background 0.8s, color 0.8s;
  transition: background 0.8s, color 0.8s;
}
.con_spiritworld .box_btn li.btn_ame a::after {
  content: "▷";
  position: absolute;
  top: 50%;
  right: 5%;
  line-height: 1;
  -moz-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  font-size: 72%;
}
.con_spiritworld .box_btn li.btn_ame a:hover {
  background: #c99d57;
  color: #2e1d15;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .con_spiritworld .box_btn li.btn_ame a::after {
    font-size: 60%;
  }
}
