/* ===========================================================
   Hotel Petisser — (CRJ WEB 制作サンプル / PREMIUM プラン)
   ナチュラル × リゾート:海・緑・ベージュ
   =========================================================== */

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

:root {
  --bg: #f7f3eb;
  --bg-alt: #fefcf7;
  --bg-sand: #ece4d1;
  --bg-deep: #2a3533;
  --fg: #2a2725;
  --fg-muted: #5d564e;
  --fg-subtle: #8d857a;
  --line: #e5dcc7;
  --line-soft: #efe8d6;
  --ocean: #6e8a82;
  --ocean-deep: #3d524c;
  --sunset: #c8795c;
  --sunset-deep: #a05d44;
  --wood: #8b6f52;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.55;
}

.serif-en {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-style: italic;
}

.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sunset-deep);
}

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

/* ===========================================================
   多言語切替
   =========================================================== */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="ja"] { display: none; }
body.lang-en [data-lang="en"] { display: inline; }
body.lang-en [data-lang="en"].block,
body.lang-en .block[data-lang="en"] { display: block; }

/* ===========================================================
   固定UI
   =========================================================== */
.back-link {
  position: fixed;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--fg);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.25s ease, color 0.2s ease;
}

.back-link:hover {
  transform: translateX(-3px);
  color: var(--ocean-deep);
}

.back-link .arrow {
  transition: transform 0.25s ease;
}

.back-link:hover .arrow {
  transform: translateX(-2px);
}

.sample-badge {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #1e1e1c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.3;
  z-index: 999;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  min-width: 200px;
  text-align: left;
}

.sample-badge-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-bottom: 3px;
}

.sample-badge-bottom {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #e04a30;
}

.sample-badge .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e04a30;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lang-toggle {
  position: fixed;
  top: 92px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--fg);
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
  cursor: pointer;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s ease;
}

.lang-toggle:hover {
  border-color: var(--ocean-deep);
}

.lang-toggle .divider {
  color: var(--fg-subtle);
  font-weight: 300;
}

.lang-toggle .current-ja {
  color: var(--fg);
  font-weight: 600;
}

.lang-toggle .current-en {
  color: var(--fg-subtle);
  font-weight: 400;
}

body.lang-en .lang-toggle .current-ja {
  color: var(--fg-subtle);
  font-weight: 400;
}

body.lang-en .lang-toggle .current-en {
  color: var(--fg);
  font-weight: 600;
}

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding-top: 56px;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #fff;
}

.brand-logo-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brand-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 13px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.main-nav a:hover {
  color: #fff;
}

/* 白背景ページ用の反転スタイル(上部以外のsticky切替は不要、hero全画面なのでこのままOK) */

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 220px 40px 80px;
  color: #fff;
}

.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  animation: slowRise 1.6s 0.3s ease-out both;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(34px, 5.8vw, 72px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  color: #fff;
  max-width: 780px;
  animation: slowRise 1.8s 0.6s ease-out both;
}

.hero-sub {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 48px;
  font-weight: 300;
  animation: slowRise 1.8s 0.9s ease-out both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slowRise 1.8s 1.2s ease-out both;
}

@keyframes slowRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  background: #fff;
  color: var(--fg);
  padding: 16px 40px;
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.45s ease, color 0.45s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fff;
}

.btn-primary:hover {
  background: var(--sunset);
  border-color: var(--sunset);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.btn-ghost:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.35em;
  z-index: 3;
  animation: slowRise 1.6s 1.5s ease-out both;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.7);
  margin: 14px auto 0;
  animation: scrollLine 3s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.25); opacity: 0.3; }
}

/* ===========================================================
   Section 共通
   =========================================================== */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px;
}

.section-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sunset-deep);
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.section-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--sunset-deep);
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin-bottom: 56px;
}

.section-lead {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 2.2;
  max-width: 680px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ===========================================================
   Philosophy (私たちの想い)
   =========================================================== */
.philosophy {
  background: var(--bg-alt);
}

.philosophy-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 160px 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}

.philosophy-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--fg);
  letter-spacing: 0.03em;
}

.philosophy-text {
  font-size: 15px;
  line-height: 2.25;
  color: var(--fg-muted);
  font-weight: 300;
}

.philosophy-text p {
  margin-bottom: 24px;
}

.philosophy-text p:last-child {
  margin-bottom: 0;
}

.philosophy-text em {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  color: var(--fg);
  font-weight: 400;
}

.philosophy-signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--ocean-deep);
}

/* ===========================================================
   Rooms (お部屋紹介)
   =========================================================== */
.rooms {
  background: var(--bg-sand);
}

.rooms-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.room-card {
  background: var(--bg-alt);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.12) 100%);
}

.room-body {
  padding: 36px 32px 40px;
}

.room-grade {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--sunset-deep);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.room-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.room-meta {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.room-meta span strong {
  color: var(--fg);
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

.room-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 2.05;
  font-weight: 300;
}

.room-features {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.room-features li {
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--fg-muted);
  font-weight: 400;
}

/* ===========================================================
   Pricing (ご利用料金)
   =========================================================== */
.pricing-intro {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 2.1;
  max-width: 620px;
  margin-top: -40px;
  margin-bottom: 48px;
  font-weight: 300;
}

.pricing-table-wrap {
  background: var(--bg-alt);
  padding: 8px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-table thead th {
  text-align: center;
  padding: 20px 20px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  background: var(--bg-sand);
}

.pricing-table thead th:first-child {
  text-align: left;
  padding-left: 32px;
}

.pricing-table tbody th {
  text-align: left;
  padding: 20px 32px;
  font-weight: 400;
  border-top: 1px solid var(--line);
  color: var(--fg);
  font-family: 'Noto Sans JP', sans-serif;
}

.pricing-table tbody th .breed-note {
  display: block;
  font-size: 11px;
  color: var(--fg-subtle);
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.pricing-table tbody td {
  padding: 20px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-weight: 500;
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 17px;
  color: var(--fg);
}

.pricing-table tbody td .tax {
  display: block;
  font-size: 10px;
  color: var(--fg-subtle);
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.pricing-discounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.pricing-discount {
  background: var(--bg-alt);
  padding: 28px 28px 32px;
  border-left: 2px solid var(--sunset);
}

.pricing-discount-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--sunset-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-discount-rate {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  color: var(--fg);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.pricing-discount-rate .unit {
  font-size: 18px;
  color: var(--fg-muted);
}

.pricing-discount-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.9;
  font-weight: 300;
}

.pricing-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--fg-subtle);
  line-height: 2;
  font-weight: 300;
}

/* ===========================================================
   Day Schedule (一日の過ごし方)
   =========================================================== */
.schedule {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.88);
}

.schedule-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 160px 40px;
}

.schedule .section-kicker {
  color: rgba(200, 121, 92, 0.95);
}

.schedule .section-kicker::before {
  background: rgba(200, 121, 92, 0.95);
}

.schedule .section-title {
  color: #fff;
}

.schedule-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2.2;
  max-width: 680px;
  margin-bottom: 64px;
  font-weight: 300;
}

.schedule-timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 56px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.schedule-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.schedule-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.schedule-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.95;
  font-weight: 300;
}

/* ===========================================================
   Facilities (施設紹介)
   =========================================================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 64px;
  margin-top: 56px;
}

.facility-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.facility-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--ocean);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.facility-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.facility-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--fg-subtle);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.facility-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 2.05;
  font-weight: 300;
}

/* ===========================================================
   Safety (安心の理由)
   =========================================================== */
.safety {
  background: var(--bg-alt);
}

.safety-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}

.safety-item {
  padding: 36px 28px;
  background: var(--bg);
  text-align: left;
  border-top: 2px solid var(--ocean);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.safety-item:hover {
  transform: translateY(-4px);
}

.safety-icon {
  color: var(--ocean-deep);
  margin-bottom: 24px;
}

.safety-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.2;
}

.safety-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  /* 1行見出しと2行見出しの高さを揃える */
  min-height: calc(2em * 1.5);
}

.safety-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 2.05;
  font-weight: 300;
}

/* ===========================================================
   Owner
   =========================================================== */
.owner {
  background: var(--bg-sand);
}

.owner-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.owner-visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.owner-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.owner-visual span {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 90px;
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 48px;
  letter-spacing: 0.05em;
}

.owner-content .section-kicker {
  margin-bottom: 10px;
}

.owner-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.owner-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--fg-subtle);
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}

.owner-title {
  font-size: 11px;
  color: var(--sunset-deep);
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 32px;
}

.owner-text {
  font-size: 15px;
  line-height: 2.25;
  color: var(--fg-muted);
  font-weight: 300;
}

.owner-text p {
  margin-bottom: 20px;
}

.owner-text p:last-child {
  margin-bottom: 0;
}

.owner-career {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--fg-subtle);
  line-height: 2.2;
}

.owner-note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--fg-subtle);
  line-height: 1.8;
}

/* ===========================================================
   Availability (空室カレンダー)
   =========================================================== */
.availability {
  background: var(--bg);
}

.availability-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px;
}

.calendar-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.calendar {
  background: var(--bg-alt);
  padding: 32px 28px 28px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.calendar-month {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.calendar-month-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--fg-subtle);
  letter-spacing: 0.15em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.calendar-dow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-subtle);
  text-align: center;
  padding: 10px 0 12px;
  font-weight: 500;
}

.calendar-dow.sun { color: var(--sunset); }

.calendar-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--fg);
  position: relative;
  padding: 4px;
}

.calendar-cell.empty {
  opacity: 0;
}

.calendar-cell.sun {
  color: var(--sunset);
}

.calendar-cell .status {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
  font-weight: 500;
}

.calendar-cell.available .status { color: var(--ocean-deep); }
.calendar-cell.limited .status { color: var(--sunset); }
.calendar-cell.full .status { color: var(--fg-subtle); }

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend .mark {
  font-size: 17px;
  line-height: 1;
}

.calendar-legend .available .mark { color: var(--ocean-deep); }
.calendar-legend .limited .mark { color: var(--sunset); }
.calendar-legend .full .mark { color: var(--fg-subtle); }

.availability-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--fg-subtle);
  line-height: 2;
  text-align: center;
  font-weight: 300;
}

/* ===========================================================
   Contact (ご予約)
   =========================================================== */
.contact {
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 140px 40px;
}

.contact-head {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.contact-lead {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 2.15;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.contact-tel-bar {
  display: flex;
  justify-content: center;
  padding: 24px 32px;
  background: var(--bg-sand);
  margin: 0 auto 48px;
  max-width: 580px;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-tel-bar .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--sunset-deep);
  font-weight: 500;
}

.contact-tel-bar .num {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.03em;
}

.contact-tel-bar .note {
  font-size: 11px;
  color: var(--fg-subtle);
  width: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.form-row.stack {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.form-row.double {
  grid-template-columns: 180px minmax(0, 1fr) 1fr;
  gap: 16px;
}

.form-row label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--fg-subtle);
  font-weight: 500;
  padding-top: 14px;
  text-transform: uppercase;
}

.form-row.stack label {
  padding-top: 0;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 4px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--fg);
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--ocean-deep);
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  background: var(--fg);
  color: #fff;
  padding: 18px 52px;
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.25s ease;
  margin-top: 20px;
  align-self: center;
}

.form-submit:hover {
  background: var(--sunset-deep);
  transform: translateY(-2px);
}

.contact-disclaimer {
  margin-top: 28px;
  font-size: 11px;
  color: var(--fg-subtle);
  line-height: 1.95;
  text-align: center;
  font-weight: 300;
}

/* ===========================================================
   ABOUT THIS SAMPLE
   =========================================================== */
.about-sample {
  background: #1e1e1c;
  color: #fff;
  padding: 120px 40px;
}

.about-sample-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.about-sample-kicker {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #e04a30;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.about-sample-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #e04a30;
}

.about-sample-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.02em;
}

.about-sample-title .brand {
  color: #e04a30;
  font-weight: 500;
}

.about-sample-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.15;
  max-width: 740px;
  margin-bottom: 56px;
  font-weight: 300;
}

.about-sample-diff {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.diff-card-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #e04a30;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.diff-card-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #e04a30;
}

.diff-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.diff-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.95;
  font-weight: 300;
}

.diff-card-example {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.about-sample-cross {
  background: rgba(224, 74, 48, 0.08);
  border-left: 2px solid #e04a30;
  padding: 24px 28px;
  margin-bottom: 48px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2.05;
  font-weight: 300;
}

.about-sample-cross strong {
  color: #e04a30;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-right: 6px;
}

.about-sample-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 48px;
}

.about-sample-price-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #e04a30;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-sample-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.about-sample-price .pre,
.about-sample-price .unit {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.about-sample-tax {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.about-sample-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-sample-specs li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.about-sample-specs .label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding-top: 4px;
  font-weight: 600;
}

.about-sample-feat-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #e04a30;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-sample-feat-list {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.about-sample-feat-list li {
  position: relative;
  padding-left: 24px;
}

.about-sample-feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e04a30;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l3 3 5-5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.about-sample-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-sample-cta .btn-primary {
  background: #e04a30;
  color: #fff;
  padding: 16px 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: none;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-sample-cta .btn-primary:hover {
  background: #c13d26;
  color: #fff;
  transform: translateY(-2px);
}

.about-sample-cta .btn-ghost {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.about-sample-cta .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.about-sample-note {
  margin-top: 32px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
  line-height: 1.95;
  font-weight: 300;
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 40px 32px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand-logo-main {
  color: #fff;
  font-size: 22px;
}

.footer-brand .brand-logo-sub {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand-desc {
  margin-top: 20px;
  font-size: 12px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.55);
  max-width: 290px;
  font-weight: 300;
}

.footer-license {
  margin-top: 18px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  transition: color 0.25s ease;
  font-weight: 300;
}

.footer-list a:hover {
  color: var(--sunset);
}

.footer-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.05;
  font-weight: 300;
}

.footer-brand-gl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.footer-brand-gl:hover {
  color: var(--sunset);
}

.footer-bottom {
  max-width: 1240px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  font-weight: 300;
}

.footer-sample-note {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
}

.footer-sample-note a {
  color: var(--sunset);
  font-weight: 500;
}

/* ===========================================================
   fade-up
   =========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.15s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.3s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.45s; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1000px) {
  .hero-title { font-size: 42px; }
  .section-title { margin-bottom: 40px; }
}

@media (max-width: 900px) {
  .back-link {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .sample-badge {
    top: 12px;
    right: 12px;
    padding: 8px 14px;
    min-width: auto;
    border-radius: 12px;
  }

  .sample-badge-top {
    font-size: 9px;
  }

  .sample-badge-bottom {
    font-size: 11px;
  }

  .lang-toggle {
    top: 82px;
    right: 12px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .site-header {
    padding-top: 48px;
  }

  .header-inner {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

  .main-nav ul {
    gap: 18px;
    font-size: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand-logo-main {
    font-size: 20px;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero-content {
    padding: 180px 20px 100px;
  }

  .hero-title {
    font-size: 30px;
  }

  .section,
  .philosophy-inner,
  .rooms-inner,
  .schedule-inner,
  .safety-inner,
  .owner-inner,
  .availability-inner,
  .contact-inner {
    padding: 80px 20px;
  }

  .about-sample {
    padding: 80px 20px;
  }

  .philosophy-inner,
  .owner-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .rooms-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .pricing-table thead th,
  .pricing-table tbody th,
  .pricing-table tbody td {
    padding: 14px 12px;
    font-size: 12px;
  }

  .pricing-table tbody th {
    padding-left: 16px;
  }

  .pricing-discounts {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .schedule-timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .facility-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .facility-item {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 20px;
  }

  .facility-num {
    font-size: 46px;
  }

  .safety-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
  }

  .safety-item {
    padding: 28px 20px;
  }

  .calendar-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .form-row,
  .form-row.double {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .form-row label {
    padding-top: 0;
  }

  .about-sample-diff {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .about-sample-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .about-sample-feat-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .safety-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .contact-tel-bar { flex-direction: column; gap: 6px; text-align: center; }
  .contact-tel-bar .num { font-size: 22px; }
}

/* ===========================================================
   日本語禁則処理:単語途中での改行を防ぐ(本文 + 見出し)
   =========================================================== */
p,
li,
dd,
h1,
h2,
h3,
h4,
.hero-title,
.hero-sub,
.section-title,
.section-lead,
.philosophy-title,
.philosophy-text p,
.about-text p,
.staff-desc,
.facility-name,
.facility-desc,
.puppy-card-desc,
.breed-desc,
.process-desc,
.schedule-desc,
.safety-title,
.safety-desc,
.aftercare-desc,
.gallery-comment,
.journal-excerpt,
.rep-text p,
.fv-desc,
.menu-note,
.owner-text p,
.room-name,
.room-desc,
.aside-note,
.contact-lead {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

/* ===========================================================
   320px 最狭 (iPhone SE第1世代) の安全マージン
   =========================================================== */
@media (max-width: 360px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  body > *, body > * > * {
    max-width: 100%;
    box-sizing: border-box;
  }
  h1, h2, h3, p, li {
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 100%;
  }
}
