﻿@charset "UTF-8";
/*
Theme Name: kukuri-terrace
Theme URI: 
Author: 
Author URI: 
Description: kukuri-terrace theme
Version: 1.0.0
Text Domain: kukuri-terrace
*/ :root {
  --color-main: #4b6e46;
  --color-main-dark: #a5987f;
  --color-heading: #8ea868;
  --color-text: #444;
  --color-black: #444;
  --color-white: #fff;
  --color-bg: #f9f9f7;
  --color-bg-dark: #fff;
  font-size: 14px;
  @media screen and (max-width: 768px) {
    font-size: 12px;
  }
}
/* ==================================================
   Modern CSS Reset
   ================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
body {
  vertical-align: baseline;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
  font-feature-settings: "palt";
  font-family:
    "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
}
ul, ol {
  list-style: none;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  letter-spacing: 0.05em;
}
p {
  font-size: 1.25rem;
}
a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.pc {
  display: block;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.sp {
  display: none;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.inner {
  margin: 0 auto;
  @media screen and (max-width: 768px) {
    width: 100%;
    padding: 0 20px;
  }
  &.__1000 {
    max-width: 1000px;
  }
  &.__1200 {
    max-width: 1200px;
  }
  &.__1400 {
    max-width: 1400px;
  }
  &.__1470 {
    max-width: 1470px;
  }
}
header {
  display: flex;
  height: 70px;
  margin: 0 auto;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  padding-left: 20px;
  z-index: 99;
  h1 {
    margin-top: 25px;
    max-width: 250px;
    width: 30%;
    @media screen and (max-width: 768px) {
      max-width: 90px;
      margin-top: 4px;
    }
  }
  .global-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    /* nav */
    ul {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    li {
      list-style: none;
    }
    /* link */
    a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 5px;
      color: var(--color-text);
      text-decoration: none;
      font-size: clamp(.9rem, 1vw, 1rem);
      letter-spacing: .08em;
      white-space: nowrap;
      transition: .3s;
      /* line */
      &:hover::after {
        width: 100%;
      }
      /* reserve */
      &.contact {
        padding: 14px 26px;
        background: var(--color-main);
        color: #fff;
        &::after {
          display: none;
        }
      }
    }
  }
  /* =================================
TAB
================================= */
  @media screen and (max-width: 1200px) {
    .global-nav {
      gap: 24px;
      ul {
        gap: 18px;
      }
      a {
        font-size: .9rem;
      }
    }
  }
  /* =================================
SP
================================= */
  @media screen and (max-width: 768px) {
    .global-nav {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100vh;
      background: #f8f7f4;
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 100px 30px 40px;
      transform: translateX(100%);
      transition: .4s;
    }
    .global-nav.is-active {
      transform: translateX(0);
    }
    /* nav */
    .global-nav ul {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }
    .global-nav li {
      width: 100%;
      border-bottom: 1px solid #ddd;
    }
    .global-nav a {
      width: 100%;
      height: 72px;
      justify-content: space-between;
      font-size: 1rem;
    }
    /* reserve */
    .global-nav .contact {
      width: 100%;
      margin-top: 32px;
      justify-content: center;
    }
  }
  /* --------------------------------
           スマホ用ナビゲーションメニュー
           -------------------------------- */
  @media screen and (max-width: 768px) {
    .global-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--color-white);
      /* 半透明の白背景 */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
      z-index: 99;
      /* ハンバーガーボタンクリック時（開いた状態） */
      &.is-active {
        opacity: 1;
        visibility: visible;
        justify-content: flex-start;
      }
    }
  }
  /* --------------------------------
       ハンバーガーボタン
       -------------------------------- */
  .hamburger {
    display: none;
    @media screen and (max-width: 768px) {
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 60px;
      height: 60px;
      background-color: var(--color-heading);
      color: var(--color-white);
      cursor: pointer;
      position: fixed;
      top: 0;
      right: 0;
      z-index: 100;
      box-sizing: border-box;
      /* 三本線*/
      .hamburger__line {
        display: block;
        width: 28px;
        height: 2px;
        background-color: var(--color-white);
        margin-bottom: 5px;
        transition: transform 0.3s, opacity 0.3s;
        /* 3本目のマージンだけ詰める */
        &:nth-child(3) {
          margin-bottom: 3px;
        }
      }
      /* MENU の文字*/
      .hamburger__text {
        font-size: 0.714rem;
        line-height: 1;
        font-family: sans-serif;
        font-weight: bold;
        margin-top: 5px;
      }
      /* クリック時（開いた状態）の×印アニメーション */
      &.is-active {
        .hamburger__line {
          &:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
          }
          &:nth-child(2) {
            opacity: 0;
          }
          &:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
          }
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .global-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #f8f7f4;
    z-index: 999;
    padding: 100px 30px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
  }
  .global-nav.is-active {
    opacity: 1;
    visibility: visible;
  }
  /* nav */
  .global-nav ul {
    border-top: 1px solid #ddd;
  }
  .global-nav li {
    border-bottom: 1px solid #ddd;
  }
  .global-nav li a {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: .12em;
    padding: 0 10px;
  }
  /* 矢印 */
  .global-nav li a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: rotate(45deg);
    flex: 0 0 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform .3s ease;
  }
  /* スマホタップ暴走防止 */
  .global-nav li a:active::after {
    transform: rotate(45deg);
  }
  /* about */
  .global-nav .holiday {
    line-height: 1.6;
    font-size: .9rem;
  }
  /* reserve btn */
  .global-nav .contact {
    width: 100%;
    height: 60px;
    margin-top: 36px;
    border-radius: 999px;
    background: #4b6e46;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    letter-spacing: .12em;
  }
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 768px) {
    padding: 0 50px;
  }
}
/* ==================================================
   共通コンポーネント
   ================================================== */
.section-title {
  text-align: center;
  color: var(--color-text);
  margin-bottom: 60px;
  @media screen and (max-width: 768px) {
    margin-bottom: 30px;
  }
  /* 英語のサブタイトル ("Concept"など) */
  .section-title__en {
    display: block;
    font-family: sans-serif;
    font-size: 1.143rem;
    color: var(--color-text);
    /* 薄いグレー */
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
  /* 日本語のメインタイトル */
  font-size: 2.286rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 20px;
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* 中央寄せ */
    width: 100px;
    /* 線の長さ*/
    height: 1px;
    /* 線の太さ*/
    background-color: var(--color-black);
    /* 茶色 */
  }
}
section {
  padding: 0;
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}
/* ==================================================
   Concept セクション
   ================================================== */
.concept {
  background-color: var(--color-bg);
  margin: 0 auto;
  padding-bottom: 0;
  /* inner01: メイン画像とテキストの横並び */
  .inner01 {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 30px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 30px;
    }
  }
  .__1000 {
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 15px;
    }
    * {
      z-index: 2;
    }
    .video {
      a {
        display: block;
        position: relative;
        &::after {
          content: "";
          position: absolute;
          top: calc(50% + 10px);
          left: 50%;
          transform: translate(-50%, -50%);
          width: 84px;
          height: 84px;
          background-color: rgba(0, 0, 0, 0);
          border: 6px solid #fff;
          border-radius: 50%;
          background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
          background-repeat: no-repeat;
          background-position: center;
          background-size: 50px;
          transition: background-color 0.3s;
          pointer-events: none;
        }
        &:hover::after {
          background-color: var(--color-main);
        }
      }
      img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        display: block;
        transition: opacity 0.3s;
      }
      a:hover img {
        opacity: 0.8;
      }
    }
    dl {
      padding-top: 25px;
      max-width: 520px;
      dt {
        font-size: 1.9rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--color-heading);
      }
      dd {
        font-size: 1.25rem;
        line-height: 1.6;
      }
    }
  }
  .border-mountain {
    position: relative;
    background-color: var(--color-bg-dark);
    margin-top: 60px;
    padding-bottom: 70px;
    @media screen and (max-width: 768px) {
      margin-top: 30px;
    }
    &:before {
      display: block;
      content: "";
      position: absolute;
      top: -114px;
      left: 0;
      width: 100%;
      height: 114px;
      background-image: url("images/index/mountain.svg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      @media screen and (max-width: 768px) {
        background-image: url("images/index/mountain_sp.svg");
        top: -57px;
        height: 57px;
      }
    }
  }
  /* 右側のテキストエリア */
  .concept__text-area {
    flex: 1 1 45%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  .concept__number {
    font-family: serif;
    font-size: 4.286rem;
    line-height: 0.8;
    color: #d2b48c;
    /* 数字の色（要調整）*/
  }
  .concept__desc {
    .concept__sub-title {
      font-size: 1rem;
      color: #666;
      margin-bottom: 5px;
      letter-spacing: 0.05em;
    }
    .concept__main-title {
      font-size: 1.714rem;
      font-weight: bold;
      color: var(--color-heading);
      margin-bottom: 20px;
      line-height: 1.4;
      letter-spacing: 0.05em;
    }
    .concept__text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-text);
    }
  }
  .concept-layout {
    display: flex;
    gap: 100px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 35px;
    &:nth-child(2n) {
      justify-content: flex-end;
    }
    > div {
      max-width: 720px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      &:has(.concept-layout__text) {
        max-width: 540px;
      }
    }
    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 30px;
    }
    .concept-layout__left {
      img {
        width: 100%;
        height: auto;
      }
    }
    .concept-layout__head {
      display: flex;
      align-items: center;
      gap: 24px;
      @media screen and (max-width: 768px) {
        gap: 5px;
      }
    }
    .concept-layout__texts {
      display: flex;
      flex-direction: column;
    }
    .concept-layout__text {
      display: flex;
      gap: 15px;
      .concept-layout__num {
        font-family: "Montserrat", sans-serif;
        font-size: 4.286rem;
        line-height: 0.8;
        color: var(--color-heading);
        float: left;
        margin-right: 15px;
        @media screen and (max-width: 768px) {
          font-size: 3.5 rem;
        }
      }
      .concept-layout__desc {
        .concept-layout__sub {
          font-family: "Montserrat", sans-serif;
          font-size: 1rem;
          color: #666;
          margin-bottom: 5px;
          letter-spacing: 0.05em;
          @media screen and (max-width: 768px) {}
        }
        .concept-layout__title {
          font-size: 1.75rem;
          font-weight: bold;
          margin-bottom: 20px;
          line-height: 1.4;
          letter-spacing: 0.05em;
        }
        .concept-layout__body {
          font-size: 1.25rem;
          line-height: 1.8;
          color: var(--color-text);
        }
      }
    }
    .concept-layout__thumbs {
      display: flex;
      gap: 15px;
      img {
        width: calc(33.333% - 10px);
        height: auto;
        cursor: pointer;
        transition: opacity 0.3s;
        &:hover {
          opacity: 0.7;
        }
      }
    }
    @media screen and (max-width: 768px) {
      &.even-number {
        flex-direction: column-reverse !important;
        margin-top: 6rem;
      }
    }
  }
}
/* ==================================================
   NEWS セクション
   ================================================== */
.news {
  padding: 30px;
  .news__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
    @media screen and (max-width: 768px) {
      gap: 20px;
    }
  }
  .news__title {
    font-family: "Montserrat", sans-serif;
    color: var(--color-black);
    font-size: 2.714rem;
    font-weight: 400;
    line-height: 1;
    padding-right: 70px;
    border-right: 1px solid var(--color-text);
    @media screen and (max-width: 768px) {
      padding-right: 1rem;
      font-size: 1.714rem;
    }
  }
  .news__content {
    /* display: flex;
        align-items: center; */
  }
  .news__item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--color-text);
    @media screen and (max-width: 768px) {
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 1.1rem;
    }
  }
  .news__date {
    font-family: sans-serif;
    /* お好みに合わせて調整 */
    @media screen and (max-width: 768px) {
      font-size: 1.18rem;
    }
  }
  .news__category {
    background-color: var(--color-main-dark);
    color: var(--color-white);
    padding: 4px 12px;
    font-size: 0.857rem;
    line-height: 1;
    @media screen and (max-width: 768px) {
      padding: 4px 8px;
      font-size: 1.15rem;
    }
  }
  .news__link {
    color: var(--color-text);
    text-underline-offset: 4px;
    transition: opacity 0.3s;
    overflow: hidden;
    letter-spacing: .08em;
    @media screen and (max-width: 768px) {
      font-size: 1.3rem;
    }
    &:hover {
      text-decoration: none;
      opacity: 0.7;
    }
  }
}
/* ==================================================
   NEWS アーカイブ、シングル
   ================================================== */
.news.archive, .news.single {
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }
}
ul.news_list {
  font-size: 1.25rem;
  padding: 1rem;
  @media screen and (max-width: 768px) {
    text-align: center;
  }
}
span.cate {
  margin-left: 1rem;
}
.news.single:not(.date) {
  font-size: 1.25rem;
}
.news.single .lower-hero {
  height: unset;
}
.news.single .title, .news.single .news_list {
  text-align: center;
}
.news.single .news_list {
  margin: 80px auto;
  @media screen and (max-width: 768px) {
    margin: 40px auto;
  }
}
.news.single h2.btm_stripe {
  padding: 15px 0 25px;
  margin-bottom: 55px;
  font-size: 2.4rem;
}
footer {
  display: flex;
  flex-flow: column;
  background-color: var(--color-main);
  color: var(--color-white);
  text-align: center;
  /* padding-top: 60px; */
  .logo {
    margin: 0 auto 30px;
    max-width: 300px;
  }
  .footer__info {
    margin-bottom: 40px;
    .site-name {
      font-size: 1.286rem;
      margin-bottom: 10px;
      letter-spacing: 0.1em;
    }
  }
  .footer-logo {
    margin-top: 4rem;
  }
  .address, .mail {
    font-size: 1.143rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    @media screen and (max-width: 768px) {
      font-size: 1.2rem;
    }
  }
  .sns-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    font-size: 4.286rem;
    @media screen and (max-width: 768px) {
      font-size: 3.571rem;
      margin-bottom: 25px;
    }
    a {
      transition: opacity 0.3s;
      &:hover {
        opacity: 0.7;
      }
    }
  }
  .link {
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    @media screen and (max-width: 768px) {
      padding: 0 20px;
    }
    li {
      flex: 1 1 45%;
      border: 1px solid var(--color-white);
      border-radius: 40px;
      overflow: hidden;
      width: 250px;
      @media screen and (max-width: 768px) {
        /* flex: 1 1 225px; */
        width: 225px;
      }
      a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 10px 10px;
        transition: all 0.3s;
        position: relative;
        ion-icon {
          font-size: 1.714rem;
        }
        &:hover {
          background-color: var(--color-white);
          color: var(--color-main);
          text-decoration: none;
        }
        @media screen and (max-width: 768px) {
          font-size: 1.17rem;
        }
      }
      &.reserve {
        background-color: var(--color-white);
        color: var(--color-main);
        a {
          .chevron {
            position: absolute;
            right: 25px;
            font-size: 1.286rem;
          }
          &:hover {
            background-color: var(--color-main);
            color: var(--color-white);
          }
        }
      }
    }
  }
  nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 40px 20px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    @media screen and (max-width: 768px) {
      padding: 20px 0 30px;
    }
    ul {
      display: flex;
      gap: 40px;
      @media screen and (max-width: 768px) {
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
    }
    a {
      font-size: 1.143rem;
      letter-spacing: 0.05em;
      transition: opacity 0.3s;
      position: relative;
      &::before {
        display: none;
      }
      &:hover {
        text-decoration: none;
        opacity: 0.7;
      }
    }
  }
  .copyright {
    background-color: var(--color-heading);
    padding: 15px 0;
    font-size: 0.786rem;
    letter-spacing: 0.05em;
  }
  /* フッターリゾグラ */
  #resort-rg {
    background: var(--color-bg-dark);
    padding: 3rem 0 40px;
  }
  .rg_group h2, .rg_group .section-title__en {
    color: var(--color-black);
    font-size: 1.5rem;
  }
  .rg_group h2 {
    margin-bottom: 40px;
  }
  .rg_group h4.rg_group {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0;
    color: var(--color-black);
  }
  .rg_group .box {
    display: flex;
    flex-direction: column;
  }
  .rg_group .box ul {
    display: flex;
    -webkit-flex-wrap: wrap;
    /* Safari etc. */
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
  }
  @media screen and (max-width:896px) {
    .rg_group .box ul {
      flex-direction: column;
    }
  }
  .rg_group .box p.type {
    text-align: center;
    padding: 8px 0;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
  }
  .rg_group .box li {
    display: flex;
    margin-left: 8px;
    width: 32%;
  }
  @media screen and (max-width:896px) {
    .rg_group .box li {
      width: 100%;
      margin-left: 0;
    }
  }
  .rg_group .photo {
    padding: unset;
    background: none;
    @media screen and (max-width: 896px) {
      padding: 1rem;
    }
  }
  .rg_group .box li section {
    object-fit: cover;
    display: block;
    width: 80px !important;
    background-size: 80px 80px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    align-self: flex-start !important;
  }
  @media screen and (max-width:896px) {
    .rg_group .box li section {
      width: 80px !important;
      height: 80px !important;
      object-fit: cover !important;
    }
  }
  .rg_group .box li .txt {
    padding: 18px 0 0 10px;
    width: 100%;
  }
  .rg_group .box li .txt p {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #fff;
  }
  .rg_group .box li .txt h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
  }
  .rg_group .rg_details {
    display: flex;
    padding-left: 10px;
  }
  @media screen and (max-width:896px) {
    .rg_group .rg_details {
      flex-direction: column;
    }
  }
  .rg_group .rg_details dl {
    float: left;
    padding-right: 3%;
    width: 35%;
    font-size: 14px;
    line-height: 1.5;
  }
  @media screen and (max-width:896px) {
    .rg_group .rg_details dl {
      width: 100%;
    }
  }
  .rg_group .rg_details dl:last-child {
    padding-right: 0;
  }
  .rg_group .rg_details dt {
    height: 1.6em;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 10px;
    font-size: 16px;
    text-decoration-line: underline;
    color: var(--color-black);
  }
  @media screen and (max-width:896px) {
    .rg_group .rg_details dt {
      text-align: left;
    }
  }
  .rg_group .rg_details dd {
    margin-top: 2rem;
    text-align: left;
    color: var(--color-black);
  }
}
/* ==================================================
   Room セクション
   ================================================== */
.room {
  background: var(--color-bg);
  padding: 0 0 80px;
  @media screen and (max-width: 768px) {
    padding: 0 0 60px;
  }
}
.room-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  @media screen and (max-width: 768px) {
    padding: 15px;
  }
}
.room-card__top {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.room-card__gallery {
  flex: 1 1 50%;
  max-width: 500px;
}
.room-card__gallery .js-gallery-main-wrapper {
  margin-bottom: 15px;
}
.room-card__gallery .js-gallery-main-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 250px;
  }
}
.room-card__thumbs {
  display: flex;
  gap: 15px;
}
.room-card__thumbs img {
  width: calc(33.333% - 10px);
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 70px;
  }
}
.room-card__info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.room-card__title {
  color: var(--color-heading);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    font-size: 1.9rem;
  }
}
.room-card__desc {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 30px;
  @media screen and (max-width: 768px) {
    margin-bottom: 0;
    font-size: 1.3rem;
  }
}
.room-card__eqpmnt {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  @media screen and (max-width: 768px) {
    display: none;
  }
  .room-card__eqpmnt-title {
    width: 100%;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--color-text);
  }
  dl {
    display: flex;
    justify-content: space-between;
    width: 40%;
    dt {
      font-weight: bold;
    }
  }
  p {
    font-size: 1.2rem;
  }
}
.room-card__btn-wrap {
  margin-top: auto;
  text-align: center;
}
.room-card__btn-wrap.is-pc {
  display: block;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.room-card__btn-wrap.is-sp {
  display: none;
  margin-top: 40px;
  text-align: center;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.room-card__point {
  background-color: #f7f5f2;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  margin-top: 50px;
  @media screen and (max-width: 768px) {
    padding: 30px 20px;
    margin-top: 0px;
    border-radius: 0 0 8px 8px;
  }
}
.room-card__point-header {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-main-dark);
  color: var(--color-white);
  padding: 8px 40px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  @media screen and (max-width: 768px) {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin: -30px -20px 30px -20px;
    padding: 12px;
    font-size: 1.3rem;
  }
}
.room-card__point-content {
  display: flex;
  gap: 30px;
  align-items: center;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    text-align: center;
  }
}
.room-card__point-images {
  display: flex;
  gap: 10px;
  flex: 1 1 50%;
}
.room-card__point-images img {
  width: calc(50% - 5px);
  border-radius: 4px;
  object-fit: cover;
  height: 160px;
  @media screen and (max-width: 768px) {
    height: 120px;
  }
}
.room-card__point-info {
  flex: 1 1 50%;
}
.room-card__point-title {
  color: var(--color-heading);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem;
  }
}
.room-card__point-desc {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.6;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem;
    text-align: left;
  }
}
/* ==================================================
   ボタン共通スタイル
   ================================================== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #4b6e46;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, opacity 0.3s;
  text-align: center;
  @media screen and (max-width: 768px) {
    font-size: 1.17rem;
  }
}
.btn:hover {
  background-color: #2d4b29;
  color: var(--color-white);
  opacity: 0.9;
}
.btn--room {
  width: 100%;
  max-width: 300px;
  position: relative;
  font-size: 1.17rem;
}
.btn--room .arrow-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}
/* ==================================================
   Meal セクション
   ================================================== */
.meal {
  background-color: var(--color-white);
  padding: 0 0 80px;
  @media screen and (max-width: 768px) {
    padding: 0 0 40px;
  }
}
.meal-card {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
  background-color: var(--color-white);
  padding: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  @media screen and (max-width: 768px) {
    flex-direction: column-reverse;
    padding: 15px;
    gap: 40px;
  }
}
.meal-card__info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.meal-card__label {
  display: inline-block;
  border: 1px solid #333;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 20px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  align-self: flex-start;
  @media screen and (max-width: 768px) {
    font-size: 1.15rem;
  }
}
.meal-card__title {
  color: var(--color-heading);
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
.meal-card__desc {
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.meal-card__menu {
  background-color: #f7f7f7;
  padding: 30px;
  margin-bottom: 40px;
}
.meal-card__menu-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem;
  }
}
.meal-card__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.meal-card__menu-list li {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 2;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem;
  }
}
.meal-card__btn-wrap {
  text-align: left;
  @media screen and (max-width: 768px) {
    text-align: center;
  }
}
.meal-card__gallery {
  flex: 1 1 50%;
  width: 100%;
}
.meal-card__gallery .js-gallery-main-wrapper {
  margin-bottom: 15px;
}
.meal-card__gallery .js-gallery-main-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 250px;
  }
}
.meal-card__thumbs {
  display: flex;
  gap: 15px;
}
.meal-card__thumbs img {
  width: calc(33.333% - 10px);
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 70px;
  }
}
.meal-card__thumbs img:hover {
  opacity: 0.7;
}
/* ==================================================
   Photo セクション
   ================================================== */
.photo {
  padding: 80px 0;
  background: var(--color-bg);
  @media screen and (max-width: 768px) {
    padding: 40px 0;
  }
}
.photo__wrap {
  position: relative;
  overflow: hidden;
}
.photo__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.photo__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  @media screen and (max-width: 768px) {
    height: 150px;
  }
}
.photo__fadeout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  @media screen and (max-width: 768px) {
    height: 120px;
    padding-bottom: 10px;
  }
}
.photo__btn {
  width: 260px;
  height: 56px;
  margin: 40px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: #4b6e46;
  border: 1px solid #4b6e46;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: .3s;
}
@media screen and (max-width: 768px) {
  .photo__btn {
    font-size: 1.17rem;
  }
}
.photo__btn:hover {
  background-color: var(--color-white);
  color: var(--color-heading);
}
.photo__btn:hover .arrow-down {
  border-color: var(--color-white);
}
.photo__btn .arrow-down {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
/* ==================================================
   Photo セクション (もっと見る開閉機能の追加スタイル)
   ================================================== */
.photo__wrap {
  /* 初期状態：高さを制限して隠す */
  max-height: 380px;
  /* PCの場合は約1.5行分隠れる高さ、デザインに応じて調整 */
  transition: max-height 0.8s ease;
  @media screen and (max-width: 768px) {
    max-height: 250px;
    /* SPの場合は約1.5行分隠れる高さ */
  }
  &.is-open {
    max-height: 2000px;
    /* 全ての画像が表示される十分な高さ */
    .photo__fadeout {
      /* 開いている時はフェードグラデーションを消し、ボタンだけをパディング付きで残す */
      background: transparent;
      height: auto;
      position: relative;
      padding-top: 40px;
      padding-bottom: 0;
      .arrow-down {
        transform: rotate(-135deg);
        /* 矢印を上向きに */
        margin-top: 4px;
      }
    }
  }
}
/* ==================================================
   Photo セクション (もっと見る開閉機能の追加スタイル)
   ================================================== */
.photo__wrap {
  max-height: 480px;
  transition: max-height 0.8s ease;
}
@media screen and (max-width: 768px) {
  .photo__wrap {
    max-height: 350px;
  }
}
.photo__wrap.is-open {
  max-height: 2000px;
}
.photo__wrap.is-open .photo__fadeout {
  background: transparent;
  height: auto;
  position: relative;
  padding-top: 40px;
  padding-bottom: 0;
}
.photo__wrap.is-open .photo__fadeout .arrow-down {
  transform: rotate(-135deg);
  margin-top: 4px;
}
/* ==================================================
   QA セクション
   ================================================== */
.qa {
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    padding: 60px 0;
  }
}
.qa_link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 100px;
  gap: 1rem;
  @media screen and (max-width: 896px) {
    gap: unset;
    margin-bottom: 30px;
  }
}
.btn_qp {
  position: relative;
}
.btn_link p a.btn_qp {
  font-size: 1.4rem;
  text-decoration: none !important;
  background-color: var(--color-heading);
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  color: var(--color-bg);
  @media screen and (max-width: 896px) {
    font-size: 1.35rem;
    width: 110px;
    margin-bottom: 10px;
  }
}
.qa_bk h3 {
  font-size: 1.4rem;
  padding: 3.5rem 2rem 0;
  @media screen and (max-width: 896px) {
    font-size: 1.5rem;
  }
}
a.anchor {
  display: block;
  padding-top: 110px;
  margin-top: -110px;
}
.qa_timg {
  object-position: 50% 70%;
}
.qa_bk ul {
  padding: 1rem 0;
  background: #fff;
}
.qa_bk li {
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #CBCBCB;
}
.faq_list p {
  font-size: 1.2rem;
  position: relative;
  padding: 2rem 1rem 1rem 4.5rem;
  @media screen and (max-width: 896px) {
    font-size: 1.3rem;
  }
}
.qa_bk dt span, .qa_bk dt span {
  font-weight: 500;
}
.qa_bk dd span {
  font-size: 1.4rem;
}
.qa_bk dt span, .qa_bk dd span {
  display: inline-block;
  margin-left: 34px;
  margin-top: 5px;
  line-height: 1.6;
}
.qa_bk dt::before {
  content: "Q";
  display: inline-block;
  font-size: 3rem;
  padding-right: 10px;
  color: var(--color-heading);
  position: absolute;
}
.qa_bk dd::before {
  content: "A";
  display: inline-block;
  font-size: 3rem;
  padding-right: 10px;
  color: #999;
  position: absolute;
}
.qa_dl {
  font-size: 1.6rem;
  line-height: 1.7em;
  margin-bottom: 50px;
}
.qa_dl dd {
  text-indent: 1em;
}
@media screen and (max-width:896px) {
  .qa_dl dd {
    text-indent: 0;
  }
}
.qa_green_text {
  color: #595757;
  font-size: 2.0rem;
  font-weight: bold;
}
.qa_orange_text {
  color: #b4b5b5;
  font-size: 2.0rem;
  font-weight: bold;
}
.qa_mb {
  margin-bottom: 20px;
}
/*PC*/
@media screen and (min-width: 897px) {}
/*END*/
/*Smartphone*/
@media screen and (max-width:896px) {
  .qa_bk li {
    padding: 20px 0 20px 0;
  }
}
/* 折りたたむ仕様 */
.faq_list .q_wrap {
  position: relative;
}
.faq_list .q_wrap::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 0;
  transition: 0.3s ease-in-out;
}
.faq_list .q_wrap.active::after {
  transform: rotate(-180deg);
  margin-bottom: 1rem;
}
@media screen and (max-width:896px) {
  .faq_list .question {
    padding: 1rem 2rem 1rem 4.5rem;
  }
}
/*END*/
/* ==================================================
   汎用コンポーネント：2カラム分割ボックス (.split-box)
   ================================================== */
.split-box {
  display: flex;
  background-color: var(--color-main-dark);
}
@media screen and (max-width: 768px) {
  .split-box {
    flex-direction: column;
  }
}
.split-box__img {
  flex: 1 1 50%;
}
.split-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .split-box__img img {
    height: 250px;
  }
}
.split-box__content {
  flex: 1 1 50%;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .split-box__content {
    padding: 10px;
  }
}
.split-box__content-inner {
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .split-box__content-inner {
    padding: 40px 20px;
  }
}
.split-box__title {
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  font-weight: normal;
}
.split-box__desc {
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 40px;
  text-align: left;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}
.split-box__desc a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 2px;
}
.split-box__desc a:hover {
  opacity: 0.8;
  text-decoration: none;
}
/* ==================================================
   汎用コンポーネント：黒ベースボタン (.btn--dark)
   ================================================== */
.btn--dark {
  width: 100%;
  max-width: 300px;
  position: relative;
  padding: 18px 40px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 4px;
}
.btn--dark .arrow-right {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}
/* ==================================================
   Access セクション
   ================================================== */
.access {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 40px 0;
  }
}
.access__info {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .access__info {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.access__map {
  flex: 1 1 50%;
  min-height: 400px;
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .access__map {
    min-height: 300px;
  }
}
.access__text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .access__text {
    gap: 20px;
  }
}
.access__block {
  display: flex;
  flex-direction: column;
}
.access__heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-heading);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  @media screen and (max-width: 768px) {
    font-size: 1.25rem;
  }
}
.access__desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem
  }
}
.access__route {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
  @media screen and (max-width: 768px) {
    font-size: 1.3rem;
  }
}
.access__route dt {
  font-weight: normal;
  white-space: nowrap;
}
.access__block .btn--dark {
  max-width: none;
  /* 幅いっぱいに広げる場合 */
  width: 100%;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.95rem;
  background-color: #4b6e46;
  /* ボタンの少し薄い黒 */
  @media screen and (max-width: 768px) {
    font-size: 1.17rem;
  }
}
/* アイコン類 (仮でCSSで正方形のプレースホルダーとして作成するか、フォントアイコンを想定) */
.access__block .icon-pin, .access__block .icon-train, .access__block .icon-car {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--color-white);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin-right: 5px;
  vertical-align: middle;
}
.access__group {
  @media screen and (max-width: 768px) {
    margin-top: 6.5rem;
  }
}
/* グループ施設見出し */
.access__group-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-heading);
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  @media screen and (max-width: 768px) {
    font-size: 1.9rem;
  }
}
/* ==================================================
   下層ページ共通
   ================================================== */
.pankuzu {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 8px 0 8px 5px;
  font-size: 1rem;
  margin-top: 80px;
  @media screen and (max-width: 896px) {
    margin-top: 60px;
  }
}
.lower-hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: 0 auto 60px;
  @media screen and (max-width: 768px) {
    height: 240px;
  }
}
.lower-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
.lower {
  background-color: var(--color-bg);
  padding: 80px 0;
}
.lower-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  @media screen and (max-width: 768px) {
    padding: 30px;
  }
}
.lower-card__top {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.lower-card__gallery {
  flex: 1 1 50%;
  max-width: 500px;
}
.lower-card__gallery .js-gallery-main-wrapper {
  margin-bottom: 15px;
}
.lower-card__gallery .js-gallery-main-wrapper img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 250px;
  }
}
.lower-card__thumbs {
  display: flex;
  gap: 15px;
}
.lower-card__thumbs img {
  width: calc(33.333% - 10px);
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  @media screen and (max-width: 768px) {
    height: 70px;
  }
}
.lower-card__info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}
.lower-card__label {
  display: inline-block;
  border: 1px solid #333;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 20px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  align-self: flex-start;
  @media screen and (max-width: 768px) {
    font-size: 1.15rem;
  }
}
.lower-card__title {
  color: var(--color-heading);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    font-size: 1.9rem;
  }
}
.lower-card__desc {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 30px;
  @media screen and (max-width: 768px) {
    margin-bottom: 0;
    font-size: 1.3rem;
  }
}
.lower-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lower-card__list li {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 2;
}
.lower-card__eqpmnt {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  @media screen and (max-width: 768px) {
    display: none;
  }
  .lower-card__eqpmnt-title {
    width: 100%;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--color-text);
  }
  dl {
    display: flex;
    justify-content: space-between;
    width: 40%;
    dt {
      font-weight: bold;
    }
  }
  p {
    font-size: 1.2rem;
  }
}
.lower-card__btn-wrap {
  margin-top: auto;
  text-align: center;
}
.lower-card__btn-wrap.is-pc {
  display: block;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.lower-card__btn-wrap.is-sp {
  display: none;
  margin-top: 40px;
  text-align: center;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.lower-card__point {
  background-color: #f7f5f2;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  margin-top: 50px;
  @media screen and (max-width: 768px) {
    padding: 30px 20px;
    margin-top: 0px;
    border-radius: 0 0 8px 8px;
  }
}
.lower-card__point-header {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-main-dark);
  color: var(--color-white);
  padding: 8px 40px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  @media screen and (max-width: 768px) {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin: -30px -20px 30px -20px;
    padding: 12px;
  }
}
.lower-card__point-content {
  display: flex;
  gap: 30px;
  align-items: center;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    text-align: center;
  }
}
.lower-card__point-images {
  display: flex;
  gap: 10px;
  flex: 1 1 50%;
}
.lower-card__point-images img {
  width: calc(50% - 5px);
  border-radius: 4px;
  object-fit: cover;
  height: 160px;
  @media screen and (max-width: 768px) {
    height: 120px;
  }
}
.lower-card__point-info {
  flex: 1 1 50%;
}
.lower-card__point-title {
  color: var(--color-heading);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.lower-card__point-desc {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.6;
}
/* スライダー選択画像 */
.lower-card__gallery [id^="n2-ss-"] .n2-ss-slider-1, .lower-card__gallery [id^="n2-ss-"] .n2-ss-canvas, .lower-card__gallery [id^="n2-ss-"] .n2-ss-slide-background {
  border-radius: 4px !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* Safari対策 */
}
/* ==================================================
   食事ページ
   ================================================== */
.meal .lower-hero__img {
  object-position: 0% 46%;
}
/* ==================================================
   20260520追加
   ================================================== */
.top_slid {
  position: relative;
}
.top_slid h2 {
  color: #fff;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: bold;
  font-size: 40px;
  text-shadow: 2px 2px 3px #333;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 3;
  letter-spacing: 3px;
}
.top_slid h2 img {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width:896px) {
  .top_slid h2 img {
    width: 160px;
  }
}
.top_slid h2 span.subtitle {
  font-size: 22px;
  letter-spacing: 1px;
}
.top_slid h2 span.openday {
  font-family: 'Kaushan Script', cursive;
  font-size: 38px;
  padding-right: 10px;
}
@media screen and (max-width:896px) {
  .top_slid {
    padding-top: 0;
  }
  .top_slid h2 {
    top: 60%;
    font-size: 20px;
  }
  .top_slid h2 span.sazanami {
    font-size: 14px;
  }
  .top_slid h2 span.openday {
    font-size: 18px;
  }
}
.top_slider {
  width: 100%;
  height: 100%;
}
.top_slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.top_slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width:896px) {
  .top_slider {
    margin-top: 60px;
  }
  .top_slider .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }
}
.concept-modern {
  width: min(1470px, 92%);
  margin: 0 auto;
  padding: 50px 0 180px;
}
.concept-modern__head {
  margin-bottom: 80px;
}
.concept-modern__en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  letter-spacing: .15em;
  color: #8ea868;
  margin-left: 10px;
  @media screen and (max-width: 768px) {
    margin-left: 0px;
  }
}
.concept-modern__title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.5;
  font-weight: 500;
  color: #444;
}
.concept-modern__main {
  margin-bottom: 100px;
}
.concept-modern__main img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}
.concept-modern__bottom {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.concept-modern__lead {
  font-size: 2rem;
  letter-spacing: .2em;
  margin-bottom: 30px;
  color: #444;
}
.concept-modern__desc {
  line-height: 2.0;
  color: #666;
  letter-spacing: .08em;
}
.concept-modern__subimages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.concept-modern__subimages img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
/* =================================
SP
================================= */
@media screen and (max-width: 768px) {
  .concept-modern {
    width: 90%;
    padding: 20px 0 100px;
  }
  .concept-modern__head {
    margin-bottom: 40px;
  }
  .concept-modern__title {
    font-size: 2rem;
  }
  .concept-modern__main {
    margin-bottom: 50px;
  }
  .concept-modern__main img {
    height: 250px;
  }
  .concept-modern__bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .concept-modern__subimages {
    gap: 12px;
  }
  .concept-modern__subimages img {
    height: 180px;
  }
  .concept-modern__desc {
    line-height: 2.4;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s ease, transform 1.2s ease;
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) {
  transition-delay: .1s;
}
.fade-up:nth-child(2) {
  transition-delay: .3s;
}
.fade-up:nth-child(3) {
  transition-delay: .5s;
}
/* ------------------------------
 about
------------------------------ */
.about {
  overflow: hidden;
  color: var(--color-text);
  padding: 0 0 80px;
  @media screen and (max-width: 768px) {
    padding: 0 0 60px;
  }
}
/* ======================
nav
====================== */
.about-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 100px auto;
}
.about-nav__link {
  position: relative;
  color: #444;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .22em;
  transition: .3s;
  font-family: "Montserrat", sans-serif;
}
.about-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: #444;
  transition: .3s;
}
.about-nav__link:hover::after {
  width: 100%;
}
ｘ .about-nav__slash {
  color: #bbb;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .about-nav {
    gap: 18px;
    margin: 20px auto;
  }
  .about-nav__link {
    font-size: 1.5rem;
    letter-spacing: .14em;
  }
}
/* ======================
stay
====================== */
.stay {
  margin: 0 auto 100px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.stay_reverse {
  flex-direction: row-reverse;
}
.stay_img {
  width: 58%;
}
.stay_img img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  display: block;
}
.stay_content {
  width: 42%;
  padding: 30px;
}
.stay_content span {
  display: block;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1.3rem;
  letter-spacing: .2em;
  color: #8ea868;
  margin-left: 10px;
}
.stay_content h3 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.stay_content p {
  line-height: 2.4;
  color: #555;
  margin-bottom: 50px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.stay_btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #444;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: .18em;
  transition: .3s;
}
.stay_btn__circle {
  width: 42px;
  height: 42px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  position: relative;
  transition: .3s;
  margin-bottom: 0 !important;
}
.stay_btn__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  transform:
    translate(-60%, -50%) rotate(45deg);
  transition: .3s;
}
.stay_btn:hover {
  gap: 20px;
}
.stay_btn:hover .stay_btn__circle {
  border-color: #444;
  transform: translateX(5px);
}
@media screen and (max-width: 1000px) {
  .about_hero {
    min-height: auto;
    height: 90vh;
  }
  .about_hero_inner {
    left: 6%;
    right: 6%;
    bottom: 8%;
  }
  .about_hero h2 {
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .about_lead {
    font-size: 1.25rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .about_intro {
    padding: 80px 0;
  }
  .about_nav {
    flex-direction: column;
    align-items: center;
    margin-bottom: 90px;
  }
  .about_nav a {
    width: 88%;
  }
  .stay, .stay_reverse {
    flex-direction: column;
    gap: 45px;
    margin-bottom: 0px;
  }
  .stay_img, .stay_content {
    width: 100%;
  }
  .stay_img img {
    height: 250px;
  }
  .stay_content {
    padding: 0 4%;
    box-sizing: border-box;
  }
  .stay_btn {
    width: 100%;
  }
}
.ct-minimal {
  margin-top: 60px;
}
.ct-minimal__main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.ct-minimal__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.ct-minimal__images {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ct-minimal__sub img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.ct-minimal__title {
  font-size: 2rem;
  line-height: 1.8;
  color: #444;
  font-weight: 700;
  margin-bottom: 10px;
}
.ct-minimal__desc {
  line-height: 2.4;
  color: #666;
  margin-bottom: 10px;
}
.ct-minimal__spec {
  margin-bottom: 40px;
}
.ct-minimal__spec dl {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  font-size: .9rem;
}
.ct-minimal__spec dt {
  min-width: 140px;
  color: #777;
}
.ct-minimal__spec dd {
  color: #444;
}
.ct-minimal__btn {
  width: 260px;
  height: 56px;
  border: 1px solid #4b6e46;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: #4b6e46;
  text-decoration: none;
  transition: .3s;
  margin: 40px auto 0;
}
.ct-minimal__btn:hover {
  background: #4b6e46;
  color: #fff;
}
.ct-minimal__arrow {
  width: 26px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.ct-minimal__arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.ct-minimal__label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .85rem;
  letter-spacing: .25em;
  color: #9ab15a;
}
@media screen and (max-width: 768px) {
  .ct-minimal__main img {
    height: 280px;
  }
  .ct-minimal__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }
  .ct-minimal__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ct-minimal__content {
    width: 100%;
  }
  .ct-minimal__title {
    font-size: 1.5rem;
  }
  .ct-minimal__btn {
    width: 100%;
  }
}
.tl-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 90px;
}
.tl-heading__en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 9vw, 5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
}
.tl-heading__jp {
  margin-top: 14px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .35em;
  color: #777;
}
@media screen and (max-width: 768px) {
  .tl-heading {
    margin-bottom: 20px;
  }
}
/* =================================
LOWER HERO
================================= */
.lower-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 420px;
  max-width: none;
  overflow: hidden;
}
.lower-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lower-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}
.lower-hero__content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}
.lower-hero__en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lower-hero__jp {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .3em;
  margin-left: 10px;
}
/* =================================
SP
================================= */
@media screen and (max-width: 768px) {
  .lower-hero {
    height: 20vh;
    min-height: 200px;
  }
  .lower-hero__content {
    left: 5%;
  }
  .lower-hero__en {
    font-size: 2rem;
    letter-spacing: .12em;
    margin-bottom: 12px;
  }
  .lower-hero__jp {
    font-size: .9rem;
    letter-spacing: .2em;
  }
}
/* =================================
STAY DETAIL
================================= */
.stay-detail {
  padding: 100px 0;
  font-size: 1.25rem;
  line-height: 1.8;
}
/* =================================
TOP
================================= */
.stay-detail__top {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 120px;
}
.stay-detail__top.reverse {
  grid-template-columns: .85fr 1.15fr;
  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}
.stay-detail__top.reverse .stay-detail__gallery {
  order: 2;
  @media screen and (max-width: 768px) {
    order: 1;
  }
}
.stay-detail__top.reverse .stay-detail__info {
  order: 1;
  @media screen and (max-width: 768px) {
    order: 2;
  }
}
/* =================================
GALLERY
================================= */
.stay-detail__gallery {
  overflow: hidden;
}
/* =================================
INFO
================================= */
.stay-detail__label {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: .2em;
  color: #8ea868;
}
.stay-detail__title {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 28px;
  font-weight: 500;
}
.stay-detail__desc {
  color: #444;
  margin-bottom: 20px;
}
/* =================================
EQUIPMENT
================================= */
.stay-detail__equipment {
  margin-bottom: 20px;
}
.stay-detail__equipment-block + .stay-detail__equipment-block {
  margin-top: 10px;
}
.stay-detail__equipment-title {
  color: var(--color-heading);
  font-weight: 700;
}
.stay-detail__equipment dl {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.stay-detail__equipment dt {
  min-width: 150px;
}
.stay-detail__equipment dd {
  color: var(--color-text);
}
/* =================================
BUTTON
================================= */
.stay-detail__btn {
  width: 280px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border: 1px solid #8ea868;
  border-radius: 999px;
  color: #8ea868;
  text-decoration: none;
  transition: .3s;
}
.stay-detail__btn:hover {
  background: #8ea868;
  color: #fff;
}
.stay-detail__arrow {
  background: currentColor;
  position: relative;
}
.stay-detail__arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
/* =================================
BASIC INFO
================================= */
.stay-detail__basic {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid #e5e5e5;
}
.stay-detail__basic-head {
  margin-bottom: 50px;
}
.stay-detail__basic-en {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: .2em;
  color: #8ea868;
}
.stay-detail__basic-title {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 28px;
  font-weight: 500;
}
/* table */
.stay-detail__table {
  border-top: 1px solid #ddd;
}
.stay-detail__table dl {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
.stay-detail__table dt {
  width: 220px;
  color: #777;
  flex-shrink: 0;
}
.stay-detail__table dd {
  color: var(--color-text);
  line-height: 2;
}
.stay-intro {
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}
.stay-intro__heading {
  position: relative;
  margin-bottom: 3rem;
}
.stay-intro__bg-text {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(142, 168, 104, 0.05);
  white-space: nowrap;
  pointer-events: none;
}
.stay-intro__title {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #444;
  font-weight: 500;
}
.stay-intro__desc {
  font-size: 1.25rem;
  line-height: 2.3;
  margin: 0 auto;
}
/* =================================
SP
================================= */
@media screen and (max-width: 768px) {
  .stay-detail {
    padding: 70px 0;
  }
  .stay-detail__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stay-detail__title {
    font-size: 2rem;
  }
  .stay-detail__desc {
    line-height: 2.2;
    margin-bottom: 36px;
  }
  .stay-detail__btn {
    width: 100%;
  }
  .stay-detail__basic {
    margin-top: 80px;
    padding-top: 60px;
  }
  .stay-detail__basic-title {
    font-size: 1.6rem;
  }
  .stay-detail__table dl {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
  .stay-detail__table dt {
    width: 100%;
  }
}
/* =================================
MENU LIST
================================= */
.stay-detail__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stay-detail__menu li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  line-height: 1.8;
}
.stay-detail__menu li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8ea868;
}
.n2-style-30b1665ece2fe787cb6d282cce0bcdd4-dot {
  border-radius: 0px !important;
}
/* =================================
周辺観光
================================= */
.around-list {
  padding: 10rem 5%;
}
.around-list__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8rem 4rem;
}
.around-card {
  list-style: none;
}
.around-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.around-card__image {
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #f5f5f5;
}
.around-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.around-card:hover .around-card__image img {
  transform: scale(1.05);
}
.around-card__content {
  position: relative;
  text-align: center;
  padding-top: 2rem;
}
.around-card__title, .around-card__text, .around-card__distance {
  position: relative;
  z-index: 1;
}
.around-card__title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
}
.around-card__text {
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  line-height: 2;
  color: #666;
  text-align: left;
}
.around-card__distance {
  display: inline-block;
  position: relative;
  padding-top: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: .15em;
  color: #999;
}
.around-card__distance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 1px;
  background: #ddd;
  transform: translateX(-50%);
}
.around-card__empty {
  grid-column: 1 / -1;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .around-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .around-list {
    padding: 6rem 0;
  }
  .around-list__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .around-card__title {
    font-size: 1.9rem;
  }
  .around-card__content::before {
    font-size: 5rem;
  }
}
.spot-detail {
  padding: 100px 5%;
}
.spot-detail__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.spot-detail__header {
  text-align: center;
  margin-bottom: 60px;
}
.spot-detail__label {
  display: block;
  font-size: 12px;
  letter-spacing: .3em;
  color: #999;
  margin-bottom: 15px;
}
.spot-detail__title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: .05em;
  font-size: clamp(3rem, 9vw, 5rem);
}
.spot-detail__distance {
  margin-top: 25px;
  font-size: 13px;
  color: #888;
  letter-spacing: .15em;
}
.spot-detail__distance::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #ddd;
  margin: 0 auto 12px;
}
.spot-detail__image {
  margin-bottom: 60px;
}
.spot-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}
.spot-detail__content {
  margin: 0 auto;
  line-height: 2.2;
  color: #444;
}
.spot-detail__content p {
  margin-bottom: 24px;
}
.spot-detail__note {
  color: #999;
  font-size: 12px;
  margin: 50px 0 80px;
}
.spot-info {
  border-top: 1px solid #ececec;
}
.spot-info__row {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid #ececec;
}
.spot-info__row dt {
  width: 180px;
  color: #888;
  flex-shrink: 0;
}
.spot-info__row dd {
  flex: 1;
  line-height: 2;
}
.spot-info__row a {
  color: inherit;
  word-break: break-all;
}
.spot-detail__map {
  margin-top: 80px;
}
.spot-detail__map iframe {
  width: 100%;
  height: 500px;
  display: block;
}
@media(max-width:768px) {
  .spot-detail {
    padding: 0;
  }
  .spot-detail__header {
    margin-bottom: 40px;
  }
  .spot-detail__title {
    font-size: 30px;
  }
  .spot-info__row {
    display: block;
  }
  .spot-info__row dt {
    width: auto;
    margin-bottom: 8px;
  }
  .spot-detail__map iframe {
    height: 320px;
  }
}
/* =================================
ドッグラン
================================= */
/* =====================================================
   DOG PAGE ONLY
===================================================== */
.page-dog {
  background: #f8f8f5;
  color: #222;
}
/* =====================================================
     CONCEPT
  ===================================================== */
.dog-concept {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 140px 0 180px;
  position: relative;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    padding: 80px 0 120px;
  }
  &__gallery {
    position: relative;
    width: 58%;
    min-height: 780px;
    @media screen and (max-width: 768px) {
      width: 100%;
      min-height: 520px;
      margin-bottom: 80px;
    }
  }
  &__img {
    position: absolute;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: 1.2s ease;
    }
    &:hover img {
      transform: scale(1.05);
    }
    &.img01 {
      top: 0;
      left: 0;
      width: 82%;
      aspect-ratio: 4 / 3;
      z-index: 1;
    }
    &.img02 {
      left: 6%;
      bottom: 0;
      width: 36%;
      aspect-ratio: 1 / 1;
      z-index: 2;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }
    &.img03 {
      right: 0;
      bottom: 80px;
      width: 34%;
      aspect-ratio: 4 / 5;
      z-index: 3;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }
  }
  &__content {
    width: 34%;
    padding-top: 40px;
    @media screen and (max-width: 768px) {
      width: 100%;
      padding-top: 0;
    }
  }
  &__en {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .35em;
    color: #8a8a8a;
    margin-bottom: 28px;
  }
  &__title {
    font-size: 42px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 42px;
    color: #222;
    @media screen and (max-width: 768px) {
      font-size: 30px;
    }
  }
  &__lead {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 38px;
    color: #444;
    @media screen and (max-width: 768px) {
      font-size: 18px;
    }
  }
  &__text {
    font-size: 15px;
    line-height: 2.5;
    color: #666;
    margin-bottom: 26px;
  }
}
/* =====================================================
     NAV
  ===================================================== */
.dog-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 180px;
  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 100px;
  }
  &__item {
    position: relative;
    overflow: hidden;
    display: block;
    background: #000;
    img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
      transition: 1s ease;
      opacity: .9;
    }
    &:hover img {
      transform: scale(1.08);
      opacity: .75;
    }
    &:hover .dog-nav__content {
      transform: translateY(-6px);
    }
  }
  &__content {
    position: absolute;
    left: 40px;
    bottom: 36px;
    color: #fff;
    z-index: 2;
    transition: .4s ease;
    span {
      display: block;
      font-size: 12px;
      letter-spacing: .3em;
      margin-bottom: 14px;
      opacity: .8;
    }
    h3 {
      font-size: 28px;
      line-height: 1.5;
      font-weight: 500;
    }
  }
}