@charset "UTF-8";
/* =================================================
   全体
================================================= */
.container,
.inr {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 16px;
}

section {
  padding: 100px 0;
}

@media (max-width: 767px) {
  section {
    padding-block: 40px;
  }
}

.t-center {
  text-align: center;
}
.t-jus {
  text-align: justify;
}
.t-grey {
  color: var(--color-text-light);
}
.cap {
  font-size: 1.6rem;
  color: var(--color-text-light);
}
/* =================================================
   PCとSPの表示切替
================================================= */
.br_sp {
  display: none;
}
@media (max-width: 767px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: inline;
  }
}
/* 予期せぬ改行を防ぐ */
span.nowrap {
  white-space: nowrap;
}

/* =================================================
   余白
================================================= */
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb120 {
  margin-bottom: 120px;
}
.mt20 {
  margin-top: 20px;
}
.mt40 {
  margin-top: 40px;
}
.mt60 {
  margin-top: 60px;
}
.pt60 {
  padding-top: 60px;
}
/* =================================================
  背景色
================================================= */
.bg-green {
  background-color: var(--color-bg-green);
}

/* =================================================
   ヘッダー、ナビゲーション
================================================= */
.wrapper {
  position: relative;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header {
  background: rgba(250, 248, 244, 0.95);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.header-inner {
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  max-width: 1400px;
  margin-inline: auto;
}

.font_logo {
  font-size: 2rem;
  line-height: 6rem;
}

.logo_image {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  width: 17%;
}

.logo_image a {
  color: var(--color-text);
}

.global-nav-wrap {
  flex: 1 0 auto;
  min-width: 0;
}

.navi-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px 15px;
  min-width: 0;
}

.navi-top li a {
  font-size: 1.6rem;
  white-space: nowrap;
}

.navi-top li a:hover {
  color: var(--color-accent-dark);
}

.navi-top .navi-cta {
  display: inline-block;
  background: var(--color-accent-dark);
  color: var(--color-white);
  padding: 6px 14px;
}
.navi-top .navi-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

@media (max-width: 1050px) {
  .logo_image {
    width: 44%;
  }
}

/* Instagramアイコン */
.nav_insta-logo {
  display: none;
}

header .insta-logo {
  width: 2rem;
  margin: 16px 7px 16px 9px;
}

header a.insta-logo img {
  width: 30px;
  height: 30px;
}
@media (max-width: 1050px) {
  .nav_insta-logo {
    display: block;
  }

  header .insta-logo {
    display: none;
  }

  .main-nav ul li a.nav_insta-logo {
    width: 3rem;
    border-bottom: none;
  }
}

/* =================================================
   ハンバーガーメニュー
================================================= */
.slide-menu-btn {
  display: none;
}

#slide-menu-check {
  display: none;
}

.slide-menu {
  display: none;
}

@media (max-width: 1050px) {
  .navi-top {
    display: none;
  }

  .slide-menu-btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 210;
    cursor: pointer;
  }

  .bdr-box {
    width: 32px;
    height: 24px;
    position: relative;
    margin: 4% auto;
  }

  .bdr-box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
  }

  .bdr-box span:nth-child(1) {
    top: 0;
  }
  .bdr-box span:nth-child(2) {
    top: 11px;
  }
  .bdr-box span:nth-child(3) {
    top: 22px;
  }

  .slide-menu {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(242, 241, 233, 0.85);
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 200;
  }

  #slide-menu-check:checked ~ .slide-menu {
    transform: translateX(0);
  }

  #slide-menu-check:checked ~ .slide-menu-btn .bdr-box span {
    background: var(--color-border);
  }

  .main-nav ul li {
    margin-bottom: 10px;
  }
  .main-nav ul li a {
    display: block;
    padding: 5px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
  }

  .slide-btn {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .button01,
  .button02 {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 1.6rem;
    flex: 1;
  }

  .button01 {
    background: var(--color-accent-dark);
    color: #fff;
  }

  .button02 {
    border: 1px solid var(--color-text);
    color: var(--color-text);
  }

  .sns-box {
    margin-top: 24px;
    font-size: 1.8rem;
    color: #fff;
  }

  .header-inner {
    justify-content: center;
  }

  /* 透明なナビゲーション枠がスペースを占有して中央からズレるのを防ぐ */
  .global-nav-wrap {
    display: none;
  }
}

/* =================================================
   Swiper pagination (override default blue theme)
================================================= */
.swiper {
  --swiper-theme-color: var(--color-text);
  --swiper-pagination-bullet-inactive-color: var(--color-border);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-navigation-color: var(--color-text);
  --swiper-navigation-size: 24px;
}

@media (max-width: 900px) {
  #main .top_slid .swiper {
    height: 420px;
  }
}

/* =================================================
   Hero / mv slider (Swiper)
================================================= */
.top_under img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

@media (max-width: 767px) {
  .top_under--overlay img {
    aspect-ratio: 3 / 2;
    min-height: 280px;
  }
}

.top_under--overlay {
  position: relative;
}

.top_under--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.top_slider {
  width: 100%;
  aspect-ratio: 16 / 7;
}

.top_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_slid {
  position: relative;
}

.slid_msg {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  background: rgba(47, 43, 36, 0.2);
  pointer-events: none;
  text-align: center;
  padding: 16px;
}

@media (max-width: 767px) {
  .slid_msg {
    font-size: 1.8rem;
    text-align: left;
    padding: 80% 26% 0 0;
  }
}

/* =================================================
   タイトル title
================================================= */
.under_main_title {
  margin: 100px auto 20px auto;
  text-align: center;
  padding: 0 0 20px;
  position: relative;
}
.under_main_title::before,
.under_main_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 51px;
  height: 4px;
}

.under_main_title::before {
  left: 50%;
  margin-left: -51px;
}

.under_main_title::after {
  right: 50%;
  margin-right: -51px;
}

.under_main_title.green::before {
  background: var(--color-accent);
}

.under_main_title.green::after {
  background: var(--color-accent-green);
}

.under_main_title.blue::before {
  background: var(--color-accent2);
}

.under_main_title.blue::after {
  background: var(--color-accent-blue);
}

.section_title {
  text-align: center;
  color: var(--color-text-blue);
  margin: 0px auto 50px;
}

.section_title.en {
  font-size: 3.2rem;
}

.section_title.white {
  color: var(--color-white);
}

.section_title.black {
  color: var(--color-text);
}

.section_sub_title {
  color: var(--color-accent-dark);
  font-size: 2.2rem;
  line-height: 3.4rem;
  margin-bottom: 22px;
}
.section_sub_title span {
  font-size: 1.6rem;
}
.item-title {
  text-align: center;
  margin-bottom: 16px;
}

.section_sub_title_under {
  text-align: left;
  border-bottom: 1px solid var(--color-accent-blue);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section_sub_title {
    text-align: left;
  }
}

/* =================================================
   下層ページ　mv
================================================= */
.top_under--overlay .page-title {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-title h1 {
  font-size: 3.4rem;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.1em;
}

.page-title h2 {
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin-top: 16px;
  font-size: 1.6rem;
  text-align: center;
}

@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2.4rem;
  }

  .page-title h2 {
    font-size: 1.6rem;
  }
}

.hx-type1 {
  font-size: 2.8rem;
}

.hx-type2 {
  font-size: 2.4rem;
}

.hx-type3 .sub,
.hx-type3 {
  font-size: 2.1rem;
}

.hx-type3 .sub {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .hx-type1 {
    font-size: 2.5rem;
  }
}

.h_bar,
h2.h_bar,
h3.h_bar {
  text-align: center;
}

.subttl {
  display: block;
  font-size: 1.6rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

.text-green {
  color: var(--color-accent-dark);
}

/* =================================================
   Column box (alternating image / text)
================================================= */
.etc_text {
  font-size: 1.4rem;
  color: var(--color-gray);
  text-align: left;
  font-weight: bold;
}

.column-box {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  margin-bottom: 60px;
}

.intro_box {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
}

.column-box:nth-child(even) {
  flex-direction: row-reverse;
}

.column-box .img-box,
.column-box .txt-box,
.intro_box .img-box,
.intro_box .txt-box {
  flex: 1 1 50%;
}

@media (max-width: 767px) {
  .intro_box,
  .column-box {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 0;
  }

  .column-box:nth-child(even) {
    flex-direction: column;
  }

  .column-box .img-box,
  .column-box .txt-box,
  .intro_box .img-box,
  .intro_box .txt-box {
    flex: 1 1 100%;
  }
}

/* =================================================
   TOP こだわり
================================================= */
.kodawari-box {
  background: var(--color-bg);
  background: var(--color-bg-green);
  background: var(--color-bg-blue);
  padding-block: 90px 100px;
}

.kodawari-box .inr {
  max-width: 1500px;
}

.kodawari-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}

.kodawari-list li {
  width: 23.5%;
  max-width: 500px;
  height: 600px;
  position: relative;
}

.kodawari-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kodawari-list li p {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: #fff;
  position: absolute;
  bottom: 8px;
  left: 14px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
  .kodawari-box {
    padding-block: 50px 30px;
  }

  .kodawari-list {
    justify-content: space-evenly;
  }

  .kodawari-list li {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    margin-bottom: 16px;
  }
}

/* =================================================
   魅力 (charm / highlight) slider section
================================================= */
.charm-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.charm-item {
  display: flex;
  align-items: center;
  min-height: 560px;
  margin-top: 3%;
}

.charm-item:nth-child(even) {
  flex-direction: row-reverse;
}

.charm-item__media {
  flex: 0 0 56%;
  min-width: 0;
}

.charm-item__slider {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.charm-item__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charm-item__thumbs {
  width: 100%;
  padding: 0 16px;
  display: flex;
  gap: 10px;
  margin-top: 3%;
  justify-content: center;
}

.charm-item__thumbs img {
  width: 20%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.charm-item__thumbs img.is-active {
  opacity: 1;
}

.charm-item__text {
  flex: 0 0 44%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: var(--color-bg-white);
  background: var(--color-bg-green);
  background: var(--color-bg-blue);
  /* 背景カードの下に影を落とす */
  box-shadow: 0 20px 40px rgba(47, 43, 36, 0.15);
  position: relative;
  z-index: 1;
  margin: 0 0 6% 0;
}

@media (max-width: 900px) {
  .charm-item,
  .charm-item:nth-child(even) {
    flex-direction: column;
    min-height: 0;
  }

  .charm-item__media,
  .charm-item__text {
    flex: 0 0 auto;
    width: 100%;
  }

  .charm-item__text {
    margin: 20px auto;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(47, 43, 36, 0.12);
  }
}

.box-blue,
.box-green {
  padding-block: 70px;
}

.box-blue:nth-of-type(odd) {
  background: var(--color-bg-blue);
}

.box-green:nth-of-type(odd) {
  background: var(--color-bg-green);
}

.room-list {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 60px;
}

.room-list .thum_img {
  width: 100%;
}

.room-list .room_slider {
  width: 100%;
  margin-bottom: 12px;
}

.room-list .room_slider img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.room-list .thumbnail {
  display: flex;
  gap: 10px;
}

.room-list .thumbnail img {
  width: 18%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.room-list .thumbnail img.is-active {
  opacity: 1;
}

.room-list .list-inr {
  width: 100%;
}

@media (max-width: 767px) {
  .room-list {
    grid-template-columns: 1fr;
  }
  .pc_display {
    display: none;
  }
  .sp_display {
    display: block;
    font-size: 1.6rem;
    margin: 4% auto 0 auto;
    line-height: 3rem;
    width: 98%;
  }
}

.room_table_s,
.room_table {
  width: 100%;
}

.room_table_s th,
.room_table_s td,
.room_table th,
.room_table td {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  font-size: 1.6rem;
}

.room_table_s th,
.room_table th {
  width: 160px;
  background: var(--color-accent-blue);
}

/* SP用のスタイル */
@media (max-width: 767px) {
  .room-list {
    grid-template-columns: 1fr;
  }

  .room_table_s th,
  .room_table_s td,
  .room_table th,
  .room_table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .room_table_s th,
  .room_table th {
    border-bottom: none;
  }
}

.more_link_btn {
  margin: 0 auto;
}
.button-il a,
.more_link_btn a {
  text-align: center;
  display: block;
  margin: 40px auto 0;
  width: fit-content;
  padding: 10px 30px;
  background: linear-gradient(45deg, #3b664c 0%, #599971 100%);
  color: var(--color-white);
  font-size: 1.6rem;
}

.back_btn {
  margin: 100px auto 0;
  text-align: center;
}

.back_btn a {
  position: relative;
  text-align: center;
  display: inline-block;
  width: fit-content;
  font-size: 1.6rem;
}

.back_btn a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--color-accent-green);
  border-radius: 50%;
  top: -3px;
  left: -12px;
  z-index: -1;
}

.more_link_btn.white a {
  background: var(--color-white);
  border: 1px solid var(--color-accent);
  color: var(--color-text);
}

.button-il a:hover,
.more_link_btn a:hover {
  background: linear-gradient(45deg, #599971 0%, #76cc97 100%);
  color: #fff;
}

.more_link_btn.white a:hover {
  background: var(--color-accent);
}

.tabl_txt {
  font-weight: 600;
  font-size: 1.6rem;
}

.table_img {
  display: flex;
  gap: 32px;
}

.table_imgbox {
  flex: 1 1 25%;
}

.table_box {
  flex: 1 1 70%;
}

@media (max-width: 767px) {
  .table_img {
    flex-direction: column;
  }
}

/* =================================================
   Card style components (faci / spa / chef)
================================================= */
.faci_expl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faci_box {
  display: flex;
  flex-direction: column;
}

.spa_img_content {
  display: flex;
  margin: 0 0 4% 0;
}

.spa_img_content .inr {
  padding-top: 7%;
}

.spa_content {
  display: block;
}

.spa_img_content:nth-child(even) {
  flex-direction: row-reverse;
}

.fac_img img {
  display: block;
  width: 100%;
  height: auto;
}

.fac_txt {
  background: var(--color-white);
  padding: 30px;
  margin: -40px auto 0;
  width: calc(100% - 40px);
  position: relative;
  z-index: 1;
}

.fac_txt.green {
  background: var(--color-bg-green);
}

.fac_txt.blue {
  background: var(--color-bg-blue);
}

.fac_txt.green .item-title,
.fac_txt.blue .item-title {
  font-size: 2rem;
}

.fac_img img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .faci_expl {
    grid-template-columns: 1fr;
  }
  .spa .intro_box .img-box img {
    width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像下の不要な余白を消す */
  }

  .spa_img_content {
    display: block;
  }
}

.post_img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.post_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post_title {
  font-size: 1.6rem;
  padding-bottom: 20px;
  text-align: left;
}

/* =================================================
   ドッグホテル＿一覧表
================================================= */
.dog_hotel_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  border: 1px solid #d7d7d7;
  margin-bottom: 1%;
}

.dog_hotel_table th,
.dog_hotel_table td {
  border: 2px solid #d9d9d9;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.dog_hotel_table th {
  width: 25%;
  background-color: #9b9b9b;
  font-weight: normal;
  white-space: nowrap;
  color: #ffff;
}

.dog_hotel_table td {
  background-color: #eff2e9;
  line-height: 1.6;
}
.etc_red {
  font-weight: bold;
  color: #b13333;
}

/* 料金部分の文字間隔 */
.dog_hotel_table tr:nth-child(2) td {
  letter-spacing: 0.1em;
}

/* 犬向けサービスの一覧レイアウト */
.dog_hotel_table .service-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─── レスポンシブ対応 (画面幅768px以下) ─── */
@media screen and (max-width: 768px) {
  .dog_hotel_table,
  .dog_hotel_table tbody,
  .dog_hotel_table tr,
  .dog_hotel_table th,
  .dog_hotel_table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  /* 行ごとの下境界線を調整 */
  .dog_hotel_table tr {
    border-bottom: 1px solid #d7d7d7;
  }
  .dog_hotel_table tr:last-child {
    border-bottom: none;
  }

  /* セル個別の枠線をリセット */
  .dog_hotel_table th,
  .dog_hotel_table td {
    border: none;
  }

  /* 見出し（左側だったセル）の設定 */
  .dog_hotel_table th {
    background-color: #807f7a; /* スマホ時に見やすくなるよう薄いグレーに変更 */
    font-weight: bold;
    padding-bottom: 6px;
  }

  /* データ（右側だったセル）の設定 */
  .dog_hotel_table td {
    padding-top: 6px;
    padding-bottom: 16px;
  }

  /* スマホでの犬向けサービスの横間隔を少し狭める */
  .dog_hotel_table .service-list {
    gap: 16px;
  }
}

/* =================================================
   フッター　いぬやどリスト
================================================= */
.inuyado-list {
  background: var(--color-bg-green);
  padding: 60px 0;
}

.inuyado-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.inuyado-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(30% - 10px);
  background: #fff;
}

.inuyado-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  width: 100%;
}

.inuyado-list__img {
  width: 80px;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inuyado-list__name {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .inuyado-list li {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .inuyado-list li {
    width: 100%;
  }
}

/* =================================================
   TOPページ：周辺観光スライダー（3件以上でスライド可能）
================================================= */
.post_slider {
  padding-inline: 40px;
  text-align: left;
}

.post_slider .swiper-pagination {
  position: static;
  margin-top: 16px;
}

.post_slider .swiper-wrapper .swiper-slide {
  position: relative;
}

.post_slider .swiper-wrapper .swiper-slide .post_title {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 10px;
  background: rgba(231, 237, 241, 0.8);
  border: 1px solid var(--color-border);
  width: 100%;
  font-size: 18px;
  color: var(--color-text);
}

@media (max-width: 767px) {
  /* スマホ画面の時に比率を 1025 : 1200 に変更 */
  .top_slider {
    aspect-ratio: 1025 / 1200;
  }

  /* 既存の固定高さ（420px）を解除して比率を優先 */
  #main .top_slid .swiper {
    height: auto;
  }
}

/* =================================================
   FAQ
================================================= */
.top_faq_box {
  margin-bottom: 100px;
  padding: 0;
}
.faq-box {
  background: var(--color-bg-green);
}

.faq-wrap {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding-block: 130px;
  text-align: center;
}

.faq-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 43, 36, 0.55);
}

.faq-wrap h2,
.faq-wrap p,
.faq-wrap .more_link_btn {
  position: relative;
  z-index: 1;
}

.faq-wrap h2,
.faq-wrap p {
  color: #fff;
}

.faq-box .tit {
  font-size: 1.9rem;
}

.faq-list {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--color-border);
}

.faq-txt {
  font-size: 1.6rem;
}

.faq-txt.qes,
.faq-txt.ans {
  padding-left: 3em;
  position: relative;
  text-align: left;
}

.faq-txt.qes::after,
.faq-txt.ans::after {
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 2.9rem;
  position: absolute;
  top: -14px;
  left: 0;
}

.faq-txt.qes::after {
  content: "Q";
  color: var(--color-accent-dark);
}

.faq-txt.ans::after {
  content: "A";
  color: var(--color-accent-dark);
}

@media (max-width: 767px) {
  .faq-box {
    padding-block: 40px;
  }

  .faq-wrap {
    padding-block: 64px;
  }

  .faq-list {
    padding: 15px;
  }

  .faq-txt {
    font-size: 1.6rem;
  }

  .faq-txt.qes,
  .faq-txt.ans {
    padding-left: 2em;
  }

  .faq-txt.qes::after,
  .faq-txt.ans::after {
    font-size: 2rem;
    top: -7px;
  }
}

/* =================================================
   Full width tinted sections / access / room-box
================================================= */
.top_area_bg {
  background: var(--color-bg-blue);
}

/* =================================================
   Access
================================================= */
.top_access {
  padding: 40px 0 30px;
}

.top_access .g_map {
  width: 94%;
  margin: 0 auto 40px;
}

.top_access .g_map iframe {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.top_access ul {
  width: 94%;
  margin: 0 auto 20px;
}

.top_access li {
  display: flex;
  color: var(--color-text);
  padding: 20px 0 0;
  border-top: 1px solid var(--color-border);
}

.top_access li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.top_access li h3 {
  font-size: 1.8rem;
  font-weight: 500;
  width: 26%;
  flex: 0 0 26%;
  padding: 0 15px;
}

.top_access li p {
  width: 100%;
  padding: 16px 14px;
}

.top_access li p span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
}

.top_access .checkin_box {
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top_access address {
  font-size: 1.6rem;
  margin-top: 1em;
  text-align: center;
  font-style: normal;
}

.top_access .checkin_ttl {
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 896px) {
  .top_access {
    padding: 10% 0;
  }

  .top_access .g_map,
  .top_access ul {
    width: 100%;
  }

  .top_access li {
    flex-direction: column;
    padding: 26px 0 14px;
  }

  .top_access li h3 {
    width: 100%;
    flex-basis: auto;
  }
}

/* =================================================
   ROOM teaser grid (room-box)
================================================= */
.room-box .room-head {
  padding-bottom: 60px;
}

.room-box .room-head .inr {
  max-width: 1250px;
}

.room-box .room-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.room-box .room-nav li.lg {
  width: 31.5%;
  position: relative;
  margin: 5px;
}

.room-box .room-nav li img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: auto;
  background: rgba(242, 242, 242, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.textbox p {
  font-size: 1.6rem;
  padding: 12px 18px;
  margin: 0;
}

.vertical {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  display: block;
}

.vertical-text-class {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

@media (max-width: 896px) {
  .room-box .room-head {
    padding-bottom: 30px;
  }

  .room-box .room-nav {
    padding-bottom: 30px;
  }

  .room-box .room-nav li.lg {
    width: 100%;
    margin-bottom: 8px;
  }

  .room-box .room-nav li img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

.top_news ul {
  max-width: 800px;
  margin-inline: auto;
}

.top_news .news-scroll {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 50px;
  max-height: 190px;
  overflow-y: auto;
}

.top_news .news-scroll ul {
  max-width: none;
}

.top_news li {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.6rem;
}

.top_news time {
  white-space: nowrap;
}

.top_news li a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* =================================================
   シングルページ（single-○○○.php）
================================================= */
.news-content__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-content p {
  margin-bottom: 1.6em;
}

.news-content img {
  margin-block: 24px;
}

.single-detail {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  border: 1px dotted var(--color-border);
}

.single-detail:first-of-type {
  border: 1px solid var(--color-border);
}

.single-detail:last-child {
  border: 1px solid var(--color-border);
}
.single-detail dt,
.single-detail dd {
  padding: 10px;
}
.single-detail dt {
  width: 190px;
  background: var(--color-accent-blue);
}

.single-detail dd {
  width: calc(100% - 190px);
}

.googlemap {
  margin: 30px auto;
}

.googlemap iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 896px) {
  .single-detail {
    font-size: 1.3rem;
    border: none;
  }
  .single-detail:first-of-type,
  .single-detail:last-child {
    border: none;
  }

  .single-detail dt {
    width: 100%;
  }

  .single-detail dd {
    width: 100%;
  }

  .googlemap iframe {
    width: 100%;
    height: 250px;
  }
}

/* =================================================
   Buttons
================================================= */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--color-accent-dark);
  color: var(--color-accent-dark);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn.primary {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn.primary:hover {
  opacity: 0.85;
}

.btn-row {
  text-align: center;
  margin-top: 32px;
}

/* =================================================
   Breadcrumbs
================================================= */
.pankuzu {
  padding-block: 16px;
}

.breadcrumbs {
  font-size: 1.6rem;
  color: var(--color-text-light);
}

.breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: underline;
}

/* =================================================
   Footer
================================================= */
footer {
  background: var(--color-bg-dark);
  padding-block: 40px 20px;
}
.footer_logo {
  text-align: center;
  margin: 6% 0 0 12%;
}
.ftr_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.f-logo {
  width: 45%;
}

.f_menu {
  width: 47%;
}

.f-logo > p:first-child a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
}

.f-logo .checkin {
  color: #fff;
  font-size: 1.6rem;
  opacity: 0.85;
  line-height: 3.4rem;
}

.f-logo a {
  color: #fff;
}

.f-logo .linkbar a {
  border: 1px solid #fff;
  width: 300px;
  max-width: 100%;
  display: inline-block;
  padding: 10px;
  text-align: center;
}

.f-logo .link2 a {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 12px 30px;
  background: #fff;
  color: #333;
  text-align: center;
}

.f_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.f_menu a {
  color: #fff;
  font-size: 1.6rem;
  opacity: 0.9;
}

.f_menu a:hover {
  opacity: 1;
  text-decoration: underline;
}

.company {
  margin-top: 40px;
  font-size: 1.6rem;
  opacity: 0.6;
  text-align: center;
}

.tel {
  font-size: 2.6rem;
}

.mail {
  font-size: 2rem;
}
/* snsアイコン */
.sns_icon_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.sns_icon_item img {
  width: 100%;
  height: auto;
}

.p-mb-contact {
  display: none;
}

@media (max-width: 767px) {
  .f-logo {
    width: 100%;
  }

  .f_menu {
    width: 100%;
  }

  .f_menu ul {
    width: fit-content;
    margin: 0 auto;
  }

  .f-logo p {
    text-align: center;
  }
  .footer_logo {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sns_icon_box {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .p-mb-contact {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
  }

  .p-mb-contact__link,
  .p-mb-contact__link2 {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 1.6rem;
  }

  .p-mb-contact__link {
    background: var(--color-accent-dark);
    color: #fff;
  }

  .p-mb-contact__link2 {
    background: var(--color-bg-alt);
  }
}

/* Back to top button */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-green);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.page-top.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .page-top {
    bottom: 80px;
  }
}

/*お問い合わせフォーム*/
/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
.confirmation {
  background-color: #faf8f5;
}

.inquiry {
  margin: 0 auto 42px auto;
}

.inquiry tr {
  width: 75%;
  margin: 0 auto;
}

.inquiry th,
.inquiry td {
  display: block !important;
  width: 80%;
  border-top: none !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  padding: 1rem;
  background: #fff;
}

/* 必須・任意のサイズ調整 */
.inquiry .haveto,
.inquiry .any {
  font-size: 1.2rem;
}

/*見出し欄*/
.inquiry th {
  text-align: left;
  font-size: 1.6rem;
  color: #444;
  padding-right: 5px;
  vertical-align: top;
  position: relative;
}

/*通常欄*/
.inquiry td {
  font-size: 1.6rem;
}

.inquiry_etc_text {
  text-align: center;
}

/*横の行とテーブル全体*/
max .entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #ededed;
}

/*必須の調整*/
.haveto {
  font-size: 1.2rem;
  padding: 4px 12px;
  background: #b66d6d;
  color: #fff;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 36px;
}

/*任意の調整*/
.any {
  font-size: 1.2rem;
  padding: 5px 12px;
  background: #17283f;
  color: #fff;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 48px;
}

/*送信ボタンのデザイン変更*/
#formbtn2 {
  display: block;
  padding: 10px;
  width: 300px;
  font-size: 1.5rem;
  margin: 60px auto 0;
  border: 1px solid #95a7be;
}

#formbtn {
  display: block;
  padding: 10px;
  width: 300px;
  font-size: 1.5rem;
  margin: 0 auto 0;
  border: 1px solid #95a7be;
}

/*送信ボタンマウスホバー時*/
#formbtn:hover {
  background: #fff;
  color: #95a7be;
  border: 1px solid #95a7be;
}

.wpcf7-form-control {
  width: 60%;
  margin: 0 auto;
  width: 96%;
  height: 50px;
  border-radius: 2px;
  padding-left: 10px;
  border: 1px solid #eee;
}

.cont_fl {
  width: 96%;
  height: 50px;
  border-radius: 2px;
  padding-left: 10px;
  border: 1px solid #eee;
}

.cont_fl2 {
  width: 94%;
  border: 0;
  border-radius: 5px;
  padding: 10px;
}

.cont_t {
  margin-top: 5px;
}

.cont_b {
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.line_h {
  line-height: 1.2;
}

.case_bd {
  width: 87%;
  margin-left: 6%;
  border-bottom: solid #d7d7f4 1px;
}

.bigfont {
  font-size: 24px;
  letter-spacing: 2px;
  padding: 10px;
}

.form.inr {
  max-width: 1330px;
  margin: 0 auto;
}

.form.inr img {
  width: 75%;
  margin: 0 auto;
}

.first-box img {
  width: 100%;
  object-fit: cover;
}

/*PC*/
@media screen and (min-width: 897px) {
  .inquiry {
    max-width: 1330px;
    width: -moz-available;
    width: -webkit-fill-available;
  }

  .inquiry tr {
    display: flex;
  }

  .inquiry th {
    width: 30%;
    padding: 38px 3% 20px 5%;
  }

  .inquiry td {
    width: 70%;
    padding: 25px 30px 33px 25px;
  }
}

/*END*/
@media screen and (max-width: 897px) {
  .inquiry {
    width: 100%;
    max-width: 100%;
  }

  .inquiry th,
  .inquiry td {
    width: 100%;
  }

  .inquiry .pt_40 {
    padding-top: 0 !important;
  }

  /*必須の調整*/
  .haveto {
    right: auto;
    top: 8px;
    margin-left: 10px;
  }

  /*任意の調整*/
  .any {
    right: auto;
    top: 8px;
    margin-left: 10px;
  }

  .form.inr img {
    width: 99%;
    margin: 0 auto;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  font-size: 16px;
}

.more-btn {
  text-align: center;
  margin-top: 20px;
}

.more-btn > button {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  padding: 12px 15px;
  background: #888;
  border: 1px solid #888;
  transition: 0.3s;
}

.more-btn > button:hover {
  background: #fff;
  color: #888;
}

/*イベントバナー*/
.top_bnr {
  overflow: hidden;
  margin: 3% 0 0 0;
}
.bnr_container {
  width: 96%;
  margin: 0 auto;
}
.top_bnr .bnr_container a {
  margin: 0 auto;
  width: 100%;
}
.top_bnr .bnr_container img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.top_bnr .bnr_container li {
  padding: 0 5px;
  width: 56%;
}
.top_bnr ul {
  display: flex;
  justify-content: center;
}
.top_bnr .bnr_container .slick-list {
  max-width: none;
}
.top_bnr .bnr_container .slick-arrow {
  top: 36px;
}

@media screen and (max-width: 896px) {
  .top_bnr {
    padding: 20px;
  }
  .top_bnr_slider .slick-slide {
    margin: 0 5px;
  }
  .top_bnr_slider {
    margin: 0 -5px;
  }
  .top_bnr_slider button.slick-next {
    display: block !important;
  }
  .top_bnr_slider button.slick-prev {
    display: block !important;
  }
  .top_bnr .bnr_container li {
    width: 96%;
  }
}
/*アクティビティ横幅調整*/
.top_area_bg .post_slider .faci_box {
  width: 100% !important; /* スライドの枠にピッタリ収める */
  margin: 0 !important; /* 元の不要な余白をリセット */
  box-sizing: border-box;
}
.top_area_bg .post_slider a {
  display: block;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .top_area_bg .post_slider .swiper-slide {
    /* スライド間の余白を 40px に設定（デザインに合わせて調整してください） */
    margin-right: 40px !important;

    /* 3つ並べるため、全体の幅から余白分(40px × 2ヶ所 = 80px)を引いて3で割る */
    width: calc((100% - 80px) / 3) !important;
  }
}

@media screen and (max-width: 767px) {
  .top_area_bg .post_slider .swiper-slide {
    margin-right: 20px !important; /* スマホ時の余白 */
    width: 85% !important; /* 画面幅の85%にして、右に次のカードがチラ見えするようにする */
  }
}
