@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
:root {
  --paper:#F1EBDD; /* 港町の陽に灼けた紙 */
  --paper-2:#FCFAF6; /* 面・カード（オフホワイト） */
  --ink:#241F17; /* 温かみのある黒 */
  --ink-soft:#6A6152; /* 補助テキスト */
  --jade:#3d6fad; /* メインカラー（主役アクセント） */
  --jade-deep:#2c5688; /* hover・濃色 */
  --jade-tint:#e5ecf5; /* 淡い面 */
  --doro:#4A3327; /* 大島紬 泥染めブラウン（濃色帯・フッター） */
  --doro-soft:#6E4B39;
  --sun:#cfb13a; /* サブカラー（星・小アクセント） */
  --line:#D8CFBD; /* 罫・境界 */
  --line-soft:#E7E0D0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--paper-2);
  color: var(--ink);
  line-height: 1.9;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
}

::-moz-selection {
  background: var(--jade);
  color: #fff;
}

::selection {
  background: var(--jade);
  color: #fff;
}

a {
  color: var(--jade);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--paper-2);
}

/* ---------- セクション枠 ---------- */
section {
  padding: 56px 44px;
  border-bottom: 1px solid var(--line-soft);
}

section:last-of-type {
  border-bottom: none;
}

section.spacious {
  padding: 64px 44px;
}

.center {
  text-align: center;
}

.mt {
  margin-top: 18px;
}

/* ---------- タイポ ---------- */
h1, h2, h3 {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.sec-head {
  margin-bottom: 34px;
}

.sec-head .en {
  display: block;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--jade);
  margin-bottom: 8px;
}

.sec-head h2 {
  font-size: 27px;
  font-weight: 700;
}

.sec-head.center {
  text-align: center;
}

.sec-head.center .en::after {
  content: "";
  display: block;
  width: 46px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2048%2012%27%3E%3Cpath%20d%3D%27M2%207%20q5.5%20-5%2011%200%20t11%200%20t11%200%20t11%200%27%20fill%3D%27none%27%20stroke%3D%27%23CFB13A%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
  margin: 11px auto 0;
}

h2.sec-ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: relative;
}

h2.sec-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 4px;
  border-radius: 3px;
  background: var(--sun);
}

.lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 2.05;
  color: #38322a;
}

.sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.95;
}

/* ---------- 画像プレースホルダ（カンプ用に意図的な意匠に） ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background: repeating-linear-gradient(135deg, rgba(74, 51, 39, 0.03) 0 2px, transparent 2px 11px), linear-gradient(140deg, #F1ECE1, #ECE7DA);
  box-shadow: inset 0 0 0 1px var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--doro-soft);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 14px;
}

.ph::before {
  content: "PHOTO";
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(74, 51, 39, 0.5);
  border: 1px solid rgba(74, 51, 39, 0.28);
  padding: 2px 8px;
  border-radius: 999px;
}

.ph.hero {
  height: 450px;
  background: radial-gradient(120% 120% at 78% 12%, rgba(216, 154, 68, 0.35), transparent 46%), linear-gradient(125deg, #215F52 0%, #2C6E5E 42%, #6E4B39 100%);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.ph.hero::before {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.ph.wide {
  height: 300px;
}

.ph.sq {
  height: 240px;
}

.ph.thumb {
  height: 190px;
  font-size: 11px;
}

.ph.map {
  height: 320px;
  background: repeating-linear-gradient(0deg, rgba(28, 107, 91, 0.06) 0 1px, transparent 1px 26px), repeating-linear-gradient(90deg, rgba(28, 107, 91, 0.06) 0 1px, transparent 1px 26px), linear-gradient(160deg, #EAF0EC, #E4EDE7);
  color: var(--jade);
}

.ph.logo {
  display: none;
} /* ワードマークに置換 */
/* ---------- ブランド（ロゴ枠の置換） ---------- */
.brand {
  line-height: 1.1;
}

.brand-en {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--ink);
  display: block;
}

.brand-jp {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--jade);
  display: block;
  margin-top: 4px;
}

.footer .brand-en {
  font-size: 15px;
}

.footer .brand-jp {
  color: var(--doro-soft);
}

/* ---------- グリッド ---------- */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---------- カード ---------- */
.card {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 13px;
  padding: 18px;
  transition: 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(74, 51, 39, 0.09);
  border-color: var(--jade);
}

.card .ph {
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  margin: 4px 0 10px;
  letter-spacing: 0.02em;
}

.card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  background: var(--jade);
  border: 1.5px solid var(--jade);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  padding: 13px 30px;
  border-radius: 999px;
  text-align: center;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--jade-deep);
  border-color: var(--jade-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(44, 86, 136, 0.22);
}

.btn.ghost {
  background: transparent;
  color: var(--jade);
}

.btn.ghost:hover {
  background: var(--jade);
  color: #fff;
}

.btn.block {
  display: block;
}

.btn.invert {
  background: var(--paper-2);
  color: var(--jade-deep);
  border-color: var(--paper-2);
}

.btn.invert:hover {
  background: #fff;
  color: var(--jade-deep);
}

.btn.wline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.btn.wline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

/* ---------- グローバルナビ ---------- */
.gnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 44px;
  background: rgba(252, 250, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.gnav a.logo-link {
  text-decoration: none;
}

/* ハンバーガーボタン（SPのみ表示） */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.gnav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 14.5px;
}

.gnav ul li a {
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.03em;
  padding-bottom: 3px;
  transition: 0.15s;
}

.gnav ul li a:hover {
  color: var(--jade);
}

.gnav ul li a.active {
  color: var(--jade);
  font-weight: 700;
}

.gnav .right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gtrans {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--jade);
  border-radius: 999px;
  font-size: 14.5px;
  padding: 11px 22px;
  color: var(--jade);
  letter-spacing: 0.04em;
  background: #fff;
  cursor: pointer;
  transition: 0.18s;
}

.gtrans::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18 15 15 0 0 1 0-18'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18 15 15 0 0 1 0-18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gtrans:hover {
  background: var(--sun);
  color: #fff;
  border-color: var(--sun);
}

/* ---------- ヒーロー ---------- */
.hero-sec {
  padding: 0;
  border-bottom: 1px solid var(--line-soft);
}

.hero-sec .ph.hero {
  border-radius: 0;
}

.hero-sec .center {
  padding: 46px 32px 50px;
}

.hero-ttl {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 6vw, 34px);
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 100%;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0 0 16px;
  color: var(--ink);
}

.hero-sec .sub {
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- テーブル（施設情報） ---------- */
table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--line);
}

table.spec th, table.spec td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

table.spec tr:last-child th, table.spec tr:last-child td {
  border-bottom: none;
}

table.spec th {
  background: var(--jade-tint);
  color: var(--jade-deep);
  font-weight: 700;
  width: 32%;
  letter-spacing: 0.03em;
}

table.spec td {
  color: #3d372e;
  background: var(--paper-2);
}

/* ---------- フォーム ---------- */
.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 14.5px;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.field {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: 0.15s;
}

.field:hover {
  border-color: var(--jade);
}

.field.area {
  height: 120px;
}

.field.short {
  width: 50%;
}

/* ---------- パンくず・ページヒーロー ---------- */
.breadcrumb {
  font-size: 11.5px;
  color: var(--ink-soft);
  padding: 12px 44px;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--jade);
}

.pagehero {
  padding: 0;
}

.pagehero .ph.wide {
  border-radius: 0;
  box-shadow: none;
  height: 240px;
}

/* ---------- 章内アンカーチップ（まちのこと） ---------- */
.anchor-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.anchor-row .chip {
  border: 1px solid var(--jade);
  color: var(--jade);
  border-radius: 999px;
  font-size: 14.5px;
  padding: 8px 18px;
  text-decoration: none;
  transition: 0.18s;
  letter-spacing: 0.03em;
}

.anchor-row .chip:hover {
  background: var(--jade);
  color: #fff;
}

/* ---------- 口コミ ---------- */
.review {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.review::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  color: var(--sun);
  opacity: 0.26;
  pointer-events: none;
}

.review .stars {
  letter-spacing: 3px;
  color: var(--sun);
  font-size: 15px;
}

.flag {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10.5px;
  padding: 2px 10px;
  color: var(--ink-soft);
  margin: 8px 0 0;
  letter-spacing: 0.06em;
}

/* ---------- CTA帯（泥染めブラウン） ---------- */
.cta-band {
  background: var(--jade-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: none;
}

.cta-band h2, .cta-band h2.sec-ttl {
  color: #fff;
}

.cta-band h2.sec-ttl::after {
  background: var(--sun);
}

.cta-band .sub {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .en {
  color: var(--sun) !important;
}

.cta-band .sec-ttl {
  color: #fff;
}

/* ---------- お知らせ ---------- */
.news ul {
  list-style: none;
  font-size: 15px;
}

.news li {
  border-bottom: 1px solid var(--line-soft) !important;
  padding: 14px 0 !important;
  color: #3d372e;
  display: flex;
  gap: 16px;
}

/* ---------- フッター ---------- */
.footer {
  background: #1b2e46;
  color: #ddd6ca;
  padding: 52px 44px 0;
}

.footer .grid3 {
  gap: 32px;
  align-items: start;
}

.footer .brand-en {
  color: #fff;
}

.footer .sub {
  color: #cec6b7;
}

.footer p {
  font-size: 12px;
  color: #b2a999 !important;
}

.footer ul {
  list-style: none;
  font-size: 12.5px;
}

.footer ul li {
  margin: 9px 0;
  color: #cec6b7;
}

.footer ul li a {
  color: #cec6b7;
  text-decoration: none;
  transition: 0.15s;
}

.footer ul li a:hover {
  color: var(--sun);
}

.footer .btn {
  margin-top: 6px;
}

.copy {
  text-align: center;
  font-size: 11px;
  color: #9a9182;
  padding: 22px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.05em;
}

/* ---------- レスポンシブ ---------- */
/* ヘッダー：ナビ＋ボタンが1行に収まらなくなる幅でハンバーガー化（グリッドとは別ブレークポイント） */
@media (max-width: 1100px) {
  .gnav {
    flex-wrap: wrap;
    padding: 14px 22px;
  }
  .nav-toggle {
    display: flex;
  }
  /* 通常はメニュー非表示、ハンバーガーで開く */
  .gnav ul,
  .gnav .right {
    display: none;
  }
  /* 開いたメニューを画面いっぱいに（ロゴ上・リンク中央・ボタン下に配置） */
  .gnav.nav-open {
    min-height: 100vh;
    min-height: 100dvh;
    align-content: space-between;
  }
  .gnav.nav-open ul {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
  }
  .gnav.nav-open ul li a {
    display: block;
    text-align: center;
    padding: 13px 12px;
  }
  /* 翻訳・空室ボタンを縦並び（翻訳を下に） */
  .gnav.nav-open .right {
    display: flex;
    order: 4;
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
    padding: 12px 0 28px;
  }
  /* 翻訳の言語メニューは上向きに開いて画面内に収める */
  .gnav.nav-open #gtransMenu {
    top: auto;
    bottom: calc(100% + 8px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  /* ハンバーガー → ×（オープン時） */
  .gnav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .gnav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .gnav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 900px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 40px 24px;
  }
  section.spacious {
    padding: 56px 22px;
  }
  .breadcrumb, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 560px) {
  .grid3, .grid4 {
    grid-template-columns: 1fr;
  }
  .ph.hero {
    height: 270px;
  }
  .sec-head h2 {
    font-size: 23px;
  }
  .gnav ul {
    gap: 12px;
    font-size: 12.5px;
  }
  .btn-row {
    gap: 10px;
  }
}
/* ---------- ロゴ画像（公式ロゴ差し替え） ---------- */
.logo-img {
  height: 55px;
  width: auto;
  display: block;
}

.footer .logo-img-foot {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

@media (max-width: 560px) {
  .logo-img {
    height: 45px;
  }
  .footer .logo-img-foot {
    height: 40px;
  }
}
/* ---------- Googleマップ埋め込み ---------- */
.map-embed {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 12px;
  display: block;
  box-shadow: inset 0 0 0 1px var(--line);
}

@media (max-width: 560px) {
  .map-embed {
    height: 280px;
  }
}
/* ---------- ヒーロー実画像 ---------- */
.hero-media {
  position: relative;
  margin: 0;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background: var(--paper-2);
}

/* MVスライド：クロスフェード＋ズームアウト（1枚6秒） */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 58%;
     object-position: center 58%;
  display: block;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroZoomOut 6s ease-out forwards;
}

@keyframes heroZoomOut {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
  .hero-slide.is-active {
    animation: none;
    transform: scale(1);
  }
}

@media (max-width: 560px) {
  .hero-media {
    height: 68vh;
  }
}
/* ---------- 写真枠に実画像を流し込み ---------- */
.ph.filled {
  padding: 0;
  background: var(--paper-2);
}

.ph.filled::before {
  display: none;
}

.ph.filled img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center 40%;
     object-position: center 40%;
}

/* ---------- アクセス地図（スクショ静止画・仮） ---------- */
.map-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px var(--line);
}