body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f5f1ea;
  color: #333;
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Bodoni+Moda:opsz@6..96&family=Zen+Maru+Gothic&display=swap');

/* 共通ヘッダー */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(31, 36, 40, 0.85);
  color: #fff;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  color: #fff;
  text-decoration: none;
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

/* 言語切り替えボタン */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.lang-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* ヒーロー */
.hero-wrapper {
  height: 250vh;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  background: url("https://res.cloudinary.com/dlbkklzyo/image/upload/f_auto,q_auto/retvil/required/nasu") center/cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 2.6rem;
  color: #1a1a1a;
  text-shadow: 0 0 28px rgba(255,255,255,0.9), 0 0 10px rgba(255,255,255,0.6);
  z-index: 2;
  white-space: nowrap;
}

.hero-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(200px);
  margin: 0;
  opacity: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  color: #1a1a1a;
  text-align: center;
  z-index: 2;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(300px);
  opacity: 0;
  z-index: 2;
}

.hero-logo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* 背景ぼかし */
.hero-fade-bg {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  z-index: 0;
}

/* サブページ共通コンテンツ */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

/* 写真ページ */
.photo-section {
  margin-bottom: 64px;
}

.photo-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.photo-line {
  width: 40px;
  height: 2px;
  background: #999;
  margin-bottom: 20px;
}

/* カルーセル */
.carousel {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: #e8e4dc;
  border-radius: 12px;
}

.carousel-item {
  position: absolute;
  top: 0;
  height: 100%;
  left: 17.5%;
  width: 65%;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: left 0.45s ease, width 0.45s ease, opacity 0.45s ease;
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-item.active {
  left: 17.5%;
  width: 65%;
  opacity: 1;
  z-index: 3;
}

.carousel-item.prev {
  left: -20%;
  width: 32%;
  opacity: 0.65;
  z-index: 2;
  cursor: pointer;
}

.carousel-item.next {
  left: 88%;
  width: 32%;
  opacity: 0.65;
  z-index: 2;
  cursor: pointer;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(31, 36, 40, 0.65);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  line-height: 1;
}

.carousel-btn:hover {
  background: rgba(31, 36, 40, 0.9);
}

.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: #5a4a3a;
  transform: scale(1.3);
}

/* 予約CTAボタン */
.cta-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: rgba(31, 36, 40, 0.92);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  border-left: 5px solid #c8a87a;
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, border 0.3s ease;
}

.cta-float.minimized {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border-left: none;
  border: 3px solid #c8a87a;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.cta-float.minimized .cta-link {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cta-float.minimized .cta-text { display: none; }
.cta-float.minimized .cta-minimize { display: none; }

.cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  text-decoration: none;
  color: #fff;
}

.cta-link:hover {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
}

.cta-icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.cta-text {
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}

.cta-minimize {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.cta-minimize:hover {
  background: rgba(255,255,255,0.28);
}

/* ── Lightbox ────────────────────────────────────────────── */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#lb-overlay.lb-open { display: flex; }

#lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  user-select: none;
  display: block;
}

#lb-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
#lb-close:hover { opacity: 1; }

#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 6px;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  user-select: none;
  line-height: 1;
}
#lb-prev:hover, #lb-next:hover { opacity: 1; background: rgba(255,255,255,0.22); }
#lb-prev { left: 14px; }
#lb-next { right: 14px; }

/* クリックできる写真にカーソル変更 */
.facility-photo-row img,
.house-rule-photo-row img,
.carousel-item img {
  cursor: zoom-in;
}

/* アクセスページ */
.access-address-card {
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #c8a87a;
  padding: 24px 28px;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.access-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  color: #1a1a1a;
  padding-bottom: 12px;
  border-bottom: 1px solid #ede9e1;
}

.access-address-row {
  display: flex;
  gap: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #444;
  align-items: flex-start;
}

.access-address-label {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: #c8a87a;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-top: 2px;
  min-width: 52px;
}

.access-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.access-map iframe {
  display: block;
}

/* 館内設備ページ */
.checkinout-bar {
  display: inline-flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  border-top: 3px solid #c8a87a;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  margin: 24px 0 36px;
  overflow: hidden;
}

.cio-item {
  padding: 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cio-item--right {
  border-top: 1px solid #ede9e1;
}

.cio-label {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 0.68rem;
  color: #c8a87a;
  letter-spacing: 0.2em;
}

.cio-time {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  line-height: 1;
}

.facility-section {
  margin-bottom: 40px;
}

.facility-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8a87a;
}

.facility-with-photos {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.facility-info {
  flex: 1;
  min-width: 0;
}

.facility-info ul {
  padding-left: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.88rem;
  line-height: 2;
  color: #444;
  margin: 0 0 10px;
}

.facility-photo-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  width: 220px;
}

.facility-photo-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.house-rule-photo-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}

.house-rule-photo-row img {
  flex: 1 1 160px;
  max-width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
}

.facility-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

.facility-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.78rem;
  color: #999;
  line-height: 1.8;
  margin: 0;
}

.ac-list {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e3db;
  background: #fff;
}

.ac-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #f0ebe3;
}

.ac-item:last-child {
  border-bottom: none;
}

.ac-count {
  margin-left: auto;
  color: #888;
  font-size: 0.85rem;
}

.parking-info {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.9;
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  border-left: 4px solid #c8a87a;
  display: flex;
  align-items: center;
  gap: 20px;
}

.parking-count {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 2.4rem;
  color: #c8a87a;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .checkinout-grid { flex-direction: column; }
  .facility-with-photos { flex-direction: column; }
  .facility-photo-row {
    flex-direction: row;
    width: 100%;
  }
  .facility-photo-row img { flex: 1; width: 0; }
}

/* 魅力ページ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  border-left: 4px solid #c8a87a;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
}

.feature-card.open .feature-header {
  margin-bottom: 2px;
}

.feature-num {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 1.3rem;
  color: #c8a87a;
  line-height: 1;
  min-width: 32px;
}

.feature-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.feature-title {
  font-size: 0.97rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.feature-subtitle {
  font-size: 0.75rem;
  color: #999;
  margin: 0;
}

.feature-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  padding-top: 20px;
}

.feature-card.open .feature-body {
  max-height: 4000px;
}

.feature-chevron {
  flex-shrink: 0;
  margin-left: auto;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #c8a87a;
  border-bottom: 2px solid #c8a87a;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
}

.feature-card.open .feature-chevron {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.feature-body p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 12px;
}

.feature-detail-group {
  margin-top: 20px;
  border-top: 1px solid #ede9e1;
  padding-top: 16px;
}

.feature-detail-label {
  font-size: 0.78rem;
  font-weight: bold;
  color: #5a4a3a;
  letter-spacing: 0.05em;
  margin: 16px 0 6px;
}

.feature-detail-label:first-child {
  margin-top: 0;
}

.feature-detail-list {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.84rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.feature-note {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.8;
  margin-top: 16px !important;
}

.bedroom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
  border-top: 1px solid #ede9e1;
  padding-top: 16px;
}

.bedroom-item {
  background: #faf8f4;
  border-radius: 8px;
  padding: 14px 18px;
}

.bedroom-label {
  font-size: 0.82rem;
  font-weight: bold;
  color: #5a4a3a;
  margin-bottom: 8px;
}

.bedroom-item ul {
  margin: 0;
  padding-left: 16px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .feature-card {
    padding: 24px 20px;
  }
  .bedroom-grid {
    grid-template-columns: 1fr;
  }
}

/* オーナー紹介 */
.owner-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
  margin-top: 32px;
}

.owner-grid .owner-card {
  flex: 1 1 0;
  min-width: 0;
}

.owner-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.owner-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.owner-name {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.owner-bio {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  text-align: left;
  margin: 0;
}

@media (max-width: 640px) {
  .owner-grid {
    flex-direction: column;
    gap: 48px;
  }
}

/* リンク集 */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0dbd3;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s, transform 0.2s;
}

.link-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.link-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(31,36,40,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-icon svg {
  width: 16px;
  height: 16px;
  color: #1f2428;
}

.link-body {
  flex: 1;
}

.link-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 2px;
}

.link-desc {
  font-size: 0.82rem;
  color: #777;
}

.link-arrow {
  font-size: 1.4rem;
  color: #bbb;
}

/* フッター */
.footer {
  background: rgba(31, 36, 40, 0.92);
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
}

.footer-logo {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
}

/* 魅力ページ intro */
.feature-intro {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
  border-top: 3px solid #c8a87a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.feature-tagline {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  color: #5a4a3a;
  margin: 0 0 10px;
}

.feature-overview-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.87rem;
  line-height: 1.9;
  color: #555;
  margin: 0 0 16px;
}

.feature-bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 24px;
}

.feature-bullets li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.84rem;
  color: #444;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.7;
}

.feature-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c8a87a;
  font-size: 0.78rem;
  top: 0.1em;
}

/* feature-body リスト */
.feature-body ul {
  padding-left: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.87rem;
  line-height: 2;
  color: #444;
  margin: 0 0 8px;
}

.feature-body ul li {
  margin: 0;
}

/* アクセスページ 追加 */
.access-stat-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}

.access-stat-card {
  flex: 1;
  min-width: 130px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border-top: 3px solid #c8a87a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.access-stat-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.68rem;
  color: #c8a87a;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.access-stat-value {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: 0.02em;
}

.access-stat-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.72rem;
  color: #999;
}

.access-shop-section {
  margin-bottom: 32px;
}

.access-section-heading {
  font-size: 0.95rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c8a87a;
}

.access-shop-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
  margin: 0 0 14px;
}

.access-license {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.75rem;
  color: #bbb;
  text-align: right;
  margin: 16px 0 0;
}

/* お買い物リスト（共通） */
.shop-list {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.shop-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 24px;
  border-bottom: 1px solid #f0ebe3;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.88rem;
  color: #444;
}

.shop-item:last-child {
  border-bottom: none;
}

.shop-item small {
  font-size: 0.75rem;
  color: #aaa;
  display: block;
  margin-top: 2px;
}

.shop-type {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #c8a87a;
  font-weight: bold;
  letter-spacing: 0.04em;
  min-width: 88px;
}

.shop-name {
  flex: 1;
  line-height: 1.5;
}

.shop-time {
  flex-shrink: 0;
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 0.82rem;
  color: #aaa;
  white-space: nowrap;
}

/* 周辺施設ページ */
.around-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.84rem;
  color: #888;
  line-height: 1.8;
  margin: 0 0 28px;
}

.spot-section {
  margin-bottom: 48px;
}

.spot-section h3 {
  font-size: 0.95rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c8a87a;
}

.spot-section .around-note {
  margin: 0 0 14px;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spot-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spot-distance-badge {
  display: inline-block;
  background: #f5f1ea;
  border: 1px solid #c8a87a;
  border-radius: 20px;
  padding: 2px 12px;
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-size: 0.78rem;
  color: #c8a87a;
  letter-spacing: 0.04em;
  width: fit-content;
}

.spot-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  color: #1a1a1a;
}

.spot-desc {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .feature-bullets { grid-template-columns: 1fr; }
  .feature-intro { padding: 20px; }
  .spot-grid { grid-template-columns: 1fr; }
  .shop-item { padding: 12px 16px; }
  .shop-type { min-width: 72px; }
}

/* =============================
   ハンバーガーボタン
   ============================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルナビ（初期は非表示） */
.mobile-nav {
  display: none;
}

/* =============================
   モバイル共通 (max-width: 768px)
   ============================= */
@media (max-width: 768px) {
  /* デスクトップナビ → ハンバーガーに切り替え */
  .nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }

  /* モバイルドロップダウンナビ */
  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
    background: rgba(20, 24, 28, 0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-nav.open {
    max-height: 600px;
  }
  .mobile-nav a {
    display: block;
    padding: 13px 24px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  .mobile-nav a:hover,
  .mobile-nav a:active {
    background: rgba(200, 168, 122, 0.15);
    color: #c8a87a;
  }

  /* ヒーロータイトル */
  .hero-title {
    font-size: 2rem;
  }

  /* コンテンツ余白 */
  .content {
    padding: 90px 16px 48px;
  }
}

/* =============================
   スマホ (max-width: 640px)
   ============================= */
@media (max-width: 640px) {
  /* カルーセル高さ縮小 */
  .carousel {
    height: 240px;
    border-radius: 8px;
  }

  /* カルーセル：スマホはフル幅スライダー */
  .carousel-item {
    left: 100%;
    width: 100%;
    border-radius: 8px;
  }
  .carousel-item.active {
    left: 0;
    width: 100%;
  }
  .carousel-item.prev {
    left: -100%;
    width: 100%;
  }
  .carousel-item.next {
    left: 100%;
    width: 100%;
  }

  /* Google マップ高さ */
  .access-map iframe {
    height: 300px;
  }

  /* アクセス stat → 2×2 グリッド（grid に切り替えて padding overflow を防ぐ） */
  .access-stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .access-stat-card {
    min-width: 0;
    padding: 14px 16px;
  }

  /* フッターナビ折り返し */
  .footer-nav a {
    margin: 3px 7px;
    font-size: 0.78rem;
  }

  /* CTA ボタン位置調整 */
  .cta-float {
    bottom: 16px;
    right: 16px;
  }

  /* オーナー画像サイズ */
  .owner-avatar {
    width: 140px;
    height: 140px;
  }

  /* checkinout バー横並び表示 */
  .checkinout-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    box-sizing: border-box;
  }
  .cio-item {
    flex: 1;
    padding: 14px 20px;
  }
  .cio-item--right {
    border-top: none;
    border-left: 1px solid #ede9e1;
  }

  /* アクセスカード余白を縮小 */
  .access-address-card {
    padding: 18px 18px;
    gap: 10px;
  }

  /* ページタイトル h2 */
  .content h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  /* リンクカード */
  .link-card {
    padding: 16px 18px;
    gap: 12px;
  }

  /* フッター余白 */
  .footer {
    padding: 28px 16px;
  }
  .footer-logo {
    font-size: 1.4rem;
  }

  /* 写真セクション余白 */
  .photo-section {
    margin-bottom: 40px;
  }

  /* spot カード */
  .spot-card {
    padding: 16px;
  }

  /* 施設写真の高さを縮小 */
  .facility-photo-row img {
    height: 120px;
  }

  /* iOS テキスト自動拡大防止 */
  body {
    -webkit-text-size-adjust: 100%;
  }
}
