/* ========== ベース（明るく親しみやすいデザイン） ========== */
:root {
  --c-base: #ffffff;          /* 白 - 清潔感 */
  --c-base-2: #f5f9fc;        /* 淡いブルー - 涼やか */
  --c-base-3: #eef4f9;        /* もう少し濃いブルー */
  --c-ink: #2b3a4a;           /* ダークブルーグレー - 重すぎない */
  --c-ink-soft: #5a6e80;
  --c-accent: #3a8fb7;        /* やわらかい青 - 信頼感 */
  --c-accent-deep: #2a6f93;
  --c-warm: #f0a04a;          /* 温かみあるオレンジ - 親しみ */
  --c-warm-deep: #d68333;
  --c-line: #dde6ee;
  --c-error: #d9534f;
  --c-success: #5cb85c;

  --ff-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --ff-display: "Poppins", "Noto Sans JP", sans-serif;
  --ff-accent: "Quicksand", "Noto Sans JP", sans-serif;

  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(43, 58, 74, 0.06);
  --shadow-md: 0 6px 20px rgba(43, 58, 74, 0.08);
  --shadow-lg: 0 15px 40px rgba(43, 58, 74, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-base);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .3s; }
a:hover { opacity: .8; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ========== ヘッダー ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-jp {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-ink);
  letter-spacing: 0.05em;
}
.logo-en {
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--c-accent);
  margin-top: 3px;
  font-weight: 500;
}

.gnav { display: flex; align-items: center; gap: 28px; }
.gnav ul { display: flex; gap: 24px; }
.gnav ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
}
.gnav ul a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px; background: var(--c-accent);
  transition: all .3s var(--ease);
  border-radius: 2px;
}
.gnav ul a:hover { opacity: 1; color: var(--c-accent); }
.gnav ul a:hover::after { left: 0; width: 100%; }

.lang-switch { display: flex; gap: 6px; padding-left: 20px; border-left: 1px solid var(--c-line); }
.lang-switch a {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink-soft);
  padding: 4px 8px;
  border-radius: 4px;
}
.lang-switch a.active { color: var(--c-accent); background: var(--c-base-2); }

.reserve-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--c-warm);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(240, 160, 74, 0.3);
}
.reserve-btn:hover {
  background: var(--c-warm-deep);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 160, 74, 0.4);
}

.hamburger {
  display: none; background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .gnav, .reserve-btn { display: none; }
  .hamburger { display: flex; }
  .gnav.open {
    display: flex; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--c-base); flex-direction: column; padding: 24px; gap: 16px;
    border-top: 1px solid var(--c-line); box-shadow: var(--shadow-md);
  }
  .gnav.open ul { flex-direction: column; gap: 16px; width: 100%; }
  .lang-switch { padding-left: 0; border-left: none; border-top: 1px solid var(--c-line); padding-top: 12px; width: 100%; justify-content: center; }
}

/* ========== ヒーロー ========== */
.hero {
  position: relative; height: 88vh; min-height: 600px; overflow: hidden;
  color: var(--c-ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.svg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(255, 255, 255, 0.4) 100%);
}
.hero-bg::after { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.45) 40%,
    rgba(255, 255, 255, 0.25) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-sub {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-accent);
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  display: inline-block;
  align-self: flex-start;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-title {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: clamp(36px, 6.5vw, 72px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--c-ink);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}
.hero-title span {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .9s var(--ease) forwards;
}
.hero-title span:nth-child(1) { animation-delay: .5s; }
.hero-title span:nth-child(2) {
  animation-delay: .8s;
  color: var(--c-warm-deep);
}
.hero-desc {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--c-ink);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6);
}
.hero-cta {
  display: flex; gap: 14px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.4s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--c-warm);
  color: #fff !important;
  border-color: var(--c-warm);
  box-shadow: 0 6px 16px rgba(240, 160, 74, 0.3);
}
.btn-primary:hover {
  background: var(--c-warm-deep);
  border-color: var(--c-warm-deep);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(240, 160, 74, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-ink) !important;
  border-color: var(--c-line);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--c-accent);
  color: var(--c-accent) !important;
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--c-ink-soft);
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.scroll-hint::after {
  content: "";
  display: block;
  width: 1px; height: 50px;
  background: var(--c-ink-soft);
  margin: 8px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== セクション共通 ========== */
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-en {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-warm);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.section-jp {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  color: var(--c-ink);
}
.section-jp::after {
  content: "";
  display: block;
  width: 50px; height: 3px;
  background: var(--c-warm);
  margin: 18px auto 0;
  border-radius: 2px;
}
.section-lead {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 2;
}
.section-head.light .section-en { color: var(--c-warm); }
.section-head.light .section-jp { color: var(--c-ink); }
.section-head.light .section-lead { color: var(--c-ink-soft); }

/* ========== ホテル紹介 ========== */
.about { background: var(--c-base); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.about-text h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 24px;
  line-height: 1.5;
  color: var(--c-ink);
}
.about-text p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 18px;
  color: var(--c-ink-soft);
}
.about-photo { position: relative; }
.photo-frame {
  position: relative;
  padding: 0;
  background: var(--c-base);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}
.photo-img-1 {
  background-image: url('images/hotel-exterior.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-img-1::before {
  content: none;
}.photo-tag {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  background: var(--c-warm);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.photo-tag span {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.photo-tag strong {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-list li {
  padding: 32px 24px;
  background: var(--c-base-2);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.feature-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.feature-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-warm);
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(240, 160, 74, 0.12);
  border-radius: 30px;
  line-height: 1;
}
.feature-list h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--c-ink);
}
.feature-list p {
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.8;
}

/* ========== 客室 ========== */
.rooms { background: var(--c-base-2); }
.room-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  position: relative;
}
.room-img-single {
  background-image: url('images/room-single.jpg');
  background-size: cover;
  background-position: center;
}.room-img-twin {
  background-image: url('images/room-twin.jpg');
  background-size: cover;
  background-position: center;
}
.room-img-triple {
  background-image: url('images/room-triple.jpg');
  background-size: cover;
  background-position: center;
}.room-img::after {
  content: none;
}
.room-body { padding: 28px 24px; }
.room-en {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--c-warm);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.room-body h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.room-desc {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.9;
  margin-bottom: 20px;
}
.room-spec { border-top: 1px dashed var(--c-line); padding-top: 4px; }
.room-spec li {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 13px;
  color: var(--c-ink);
}
.room-spec li:last-child { border-bottom: none; }
.room-spec li span {
  width: 60px;
  color: var(--c-accent);
  font-weight: 600;
}

/* ========== 料金・サービス ========== */
.facility { background: var(--c-base); }
.price-table-wrap { margin-bottom: 60px; }
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table th, .price-table td {
  padding: 20px;
  text-align: center;
}
.price-table thead th {
  background: var(--c-accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.price-table tbody th {
  background: var(--c-base-2);
  font-weight: 600;
  color: var(--c-ink);
  text-align: left;
  padding-left: 24px;
}
.price-table tbody td {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-warm-deep);
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.price-table tbody tr:last-child td,
.price-table tbody tr:last-child th { border-bottom: none; }
.note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--c-ink-soft);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}
.service-ico {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
}
.service-item h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.service-item p {
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.7;
}
.service-item p strong {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-warm-deep);
  letter-spacing: 0.02em;
}

/* ========== アクセス ========== */
.access { background: var(--c-base-2); }
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.access-map {
  aspect-ratio: 16 / 11;
  background: var(--c-base);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.access-map iframe { width: 100%; height: 100%; border: 0; }
.access-info {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.access-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px 24px;
}
.access-info dt {
  font-weight: 700;
  color: var(--c-accent);
  font-size: 13px;
  padding-top: 4px;
}
.access-info dd {
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px dashed var(--c-line);
  padding-bottom: 14px;
  color: var(--c-ink);
}
.access-info a { color: var(--c-warm-deep); font-weight: 600; }

/* ========== お知らせ ========== */
.news { background: var(--c-base); }
.news-list {
  max-width: 800px;
  margin: 0 auto;
}
.news-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--c-base-2);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  flex-wrap: wrap;
  transition: all .3s;
}
.news-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.news-list time {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-accent);
  min-width: 90px;
}
.news-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-warm);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 30px;
}
.news-list p {
  flex: 1;
  font-size: 14px;
  min-width: 200px;
  color: var(--c-ink);
}

/* ========== ご予約フォーム ========== */
.booking {
  background:
    linear-gradient(135deg, #f5f9fc 0%, #eaf3fa 50%, #fff5e6 100%);
  position: relative;
}
.booking::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(58, 143, 183, 0.1), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(240, 160, 74, 0.1), transparent 50%);
  pointer-events: none;
}
.booking .container { position: relative; z-index: 1; }

.booking-wrap {
  background: #fff;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .booking-wrap { padding: 24px 16px; }
}

#tallyEmbedFrame {
  display: block;
  background: transparent;
  border: none;
  min-height: 800px;
  width: 100%;
}
@media (max-width: 768px) {
  #tallyEmbedFrame { min-height: 1000px; }
}

/* 電話受付の案内 */
.phone-fallback {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 24px 32px;
  background: #fff;
  border-radius: var(--radius);
  border: 2px dashed var(--c-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.phone-fallback p {
  color: var(--c-ink);
  font-weight: 600;
  font-size: 14px;
}
.phone-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--c-ink);
  text-decoration: none;
}
.phone-link:hover { opacity: 1; }
.phone-link .phone-en {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-warm);
  letter-spacing: 0.2em;
}
.phone-link .phone-num {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-warm-deep);
}
.phone-link .phone-hours {
  font-size: 12px;
  color: var(--c-ink-soft);
}

/* ========== お問合せセクション ========== */
.contact { background: var(--c-base); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-card {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border: 2px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-ink);
  transition: all .3s var(--ease);
}
.contact-card:hover {
  background: var(--c-base-2);
  transform: translateY(-4px);
  border-color: var(--c-warm);
  opacity: 1;
  box-shadow: var(--shadow-md);
}
.contact-en {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-warm);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.contact-num {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.contact-sub {
  font-size: 13px;
  color: var(--c-ink-soft);
}

/* ========== フッター ========== */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-jp {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
  color: #fff;
}
.footer-logo-en {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-warm);
  margin-bottom: 16px;
}
.footer-brand address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-nav a:hover { color: var(--c-warm); opacity: 1; }
.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: var(--ff-display);
  letter-spacing: 0.15em;
}

/* ========== レスポンシブ ========== */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .room-list { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .feature-list { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 12px 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .access-info dl { grid-template-columns: 80px 1fr; gap: 12px 16px; }
  .photo-tag { width: 80px; height: 80px; bottom: -16px; right: -8px; }
  .photo-tag strong { font-size: 22px; }
  .phone-fallback { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }
}

/* ========== スクロール表示 ========== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
