/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARS ===== */
:root {
  --green:      #2a5c3f;
  --green-mid:  #3d7a56;
  --green-lite: #6aab82;
  --green-pale: #e6f0e9;
  --green-bg:   #f2f7f4;
  --gold:       #b8935a;
  --cream:      #faf8f3;
  --sand:       #e8e2d6;
  --text:       #2c2c2c;
  --text-mid:   #555;
  --text-lite:  #888;
  --white:      #fff;
  --serif:      'Noto Serif JP', serif;
  --sans:       'Noto Sans JP', sans-serif;
  --en:         'EB Garamond', serif;
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.float-btn {
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: opacity 0.2s;
  cursor: pointer;
}
.float-btn:hover { opacity: 0.85; }
.float-btn.tel  { background: var(--green); }
.float-btn.form { background: var(--gold); }
.float-btn .f-icon {
  width: 18px;
  height: 18px;
  writing-mode: horizontal-tb;
  flex-shrink: 0;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--sand);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}
.h-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.h-logo-en {
  font-family: var(--sans);
  font-style: italic;
  font-size: 18px;
  color: var(--green);
  letter-spacing: 0.06em;
  line-height: 1;
}
.h-logo-ja {
  font-size: 10px;
  color: var(--text-lite);
  letter-spacing: 0.12em;
}

.h-nav-inner {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.h-nav {
  display: flex;
  gap: 0;
  margin-left: auto;
  list-style: none;
}
.h-nav a {
  display: block;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  line-height: 60px;
  border-left: 1px solid var(--sand);
  transition: background 0.2s, color 0.2s;
}
.h-nav a:hover { background: var(--green-pale); color: var(--green); }
.h-tel {
  font-family: var(--sans);
  font-size: 20px;
  color: var(--green);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 0 0 16px;
  line-height: 1.4;
}

.h-nav a:last-of-type {
  border-right: 1px solid var(--sand);
}

.h-tel small {
  font-family: var(--sans);
  font-size: 10px;
  display: block;
  color: var(--text-lite);
  letter-spacing: 0.1em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: calc(87vh - 52px);
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  margin-top: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.22) 100%),
    url('./img/hero_img.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,92,63,0.32) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  text-align: center;
  display: inline-block;
  padding: 35px 10px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-style: italic;
  border-radius: 80px;
  width: 140px;
  height: 140px;
}
.hero-badge.accent { 
  background: var(--gold); 
  border-color: var(--gold); 
}
.accent_white {
  background: var(--green); 
  border-color: var(--green); 
  color: var(--white);
}

.hero-en {
  font-family: var(--sans);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--white);
  line-height: 1.45;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: normal;
  color: #c8e8d4;
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  gap: 8px;
}
.btn-primary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.8); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.5);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SUMMARY BAR ===== */
.summary-bar {
  background: var(--green);
  padding: 0;
}
.summary-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.summary-item {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}
.summary-item:last-child { border-right: none; }
.summary-num {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.summary-num sup { font-size: 16px; vertical-align: top; margin-top: 6px; }
.summary-num sub { font-size: 14px; }
.summary-label { font-size: 11px; letter-spacing: 0.1em; opacity: 0.8; }

/* ===== SECTION BASE ===== */
.sec { padding: 100px 0; }
.sec-narrow { padding: 80px 0; }
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}

/* セクションタイトル共通 */
.sec-head { margin-bottom: 60px; }
.sec-en {
  font-family: var(--sans);
  font-style: italic;
  font-size: 13px;
  color: var(--green-lite);
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.sec-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--gold);
}
.sec-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
}

.concept-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  font-size: 14px;
  color: var(--green);
  line-height: 1.8;
}
.concept-note strong { font-weight: 600; }

/* ===== CONCEPT ===== */
.concept-sec { background: var(--cream); }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.concept-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.concept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.concept-img:hover img { transform: scale(1.04); }
.concept-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=800&q=80') center/cover;
}
.concept-body {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.concept-label {
  font-family: var(--sans);
  font-style: italic;
  font-size: 13px;
  color: var(--green-lite);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.concept-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.7;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand);
}
.concept-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2.2;
}
.concept-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .concept-body {
    padding: 40px 30px;
  }
  .area_wrap .concept-grid {
    margin-bottom: 50px!important;
  }
  .area_wrap .concept-body {
    padding: 40px 10px;
  }
  .top_btn {
    text-align: center;
  }
}

/* ===== AREA ===== */
.area-sec { background: var(--white); }
.area-photos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  margin-bottom: 60px;
  border-radius: 4px;
  overflow: hidden;
}
.area-sec .concept-grid {
  margin-bottom: 80px;
}

.area-sec .concept-img-placeholder {
  background: url(./img/suzuka_img.jpg) center / cover;
  min-height: 500px;
}

.area-sec .wrap .concept-grid:first-of-type .concept-img-placeholder {
  background: url(./img/access_img01.jpg) center / cover;
}

.area-sec .concept-grid:nth-of-type(2) .concept-img-placeholder {
  background: url(./img/access_img02.jpg) center / cover;
}

.area-photo {
  overflow: hidden;
  position: relative;
}
.area-photo:first-child { grid-row: 1 / 3; }
.area-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.area-photo:hover .area-photo-img { transform: scale(1.06); }
.area-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.area-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2.2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.top_btn a {
  background: var(--white);
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    padding: 16px 52px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: all 0.25s;
    display: inline-block;
    margin-top: 40px;
    border-radius: 50px;
}



/* ===== POINTS ===== */
.points-sec { background: var(--green-bg); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.point-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 3px solid var(--green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,92,63,0.12);
}
.point-num {
  font-family: var(--sans);
  font-size: 48px;
  font-weight: 400;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.point-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sand);
  letter-spacing: 0.04em;
}
.point-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
}

/* ===== KUKAKU ===== */
.kukaku-sec { background: var(--cream); }
.kukaku-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.kukaku-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.kukaku-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kukaku-photo:hover img { transform: scale(1.05); }
.kukaku-map-wrap {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.kukaku-map-placeholder {
  width: 100%;
  aspect-ratio: 21/8;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-mid);
  padding: 20px;
  text-align: center;
}
.kukaku-map-placeholder svg { opacity: 0.4; }
.kukaku-map-placeholder p { font-size: 13px; color: var(--text-lite); letter-spacing: 0.06em; }
.kukaku-caption {
  font-size: 12px;
  color: var(--text-lite);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

/* 価格テーブル */
.price-wrap {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
}
.price-head {
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-head-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.price-head-range {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.price-head-range span { font-size: 12px; margin-left: 4px; font-family: var(--sans); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table th {
  background: var(--green-bg);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  text-align: center;
  border-bottom: 1px solid var(--sand);
}
.price-table td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid #f0ece4;
  color: var(--text-mid);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--green-bg); }
.price-num {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--green);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.price-note {
  padding: 16px 24px;
  font-size: 12px;
  color: var(--text-lite);
  line-height: 2;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}

/* ===== ACCESS ===== */
.access-sec { background: var(--white); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.access-map {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-mid);
  border: 1px solid var(--sand);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.access-navitext {
  font-size: 16px;
  color: var(--text-lite);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.access-cats {}
.access-cat-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--green);
  padding: 18px 0 8px;
  border-bottom: 2px solid var(--green-pale);
  margin-bottom: 0;
}
.access-cat-title:first-child { padding-top: 0; }
.access-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f0ece4;
  gap: 12px;
}
.access-name { font-size: 13px; color: var(--text); }
.access-dist {
  font-size: 12px;
  color: var(--text-mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.access-dist strong {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--green);
  margin-right: 3px;
}


/* ===== OVERVIEW ===== */
.overview-sec { background: var(--green-bg); }
.overview-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--sand);
  font-size: 14px;
}
.overview-table th {
  width: 180px;
  padding: 16px 20px;
  background: var(--cream);
  color: var(--text-mid);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: left;
  border-bottom: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  vertical-align: top;
}
.overview-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--sand);
  color: var(--text);
  line-height: 1.9;
}
.overview-table tr:last-child th,
.overview-table tr:last-child td { border-bottom: none; }

/* ===== CONTACT ===== */
.contact-sec {
  background: var(--green);
  padding: 80px 0 60px;
}
.contact-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}
.contact-en {
  font-family: var(--sans);
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}
.contact-title {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 56px;
}
.contact-tel-box { margin-bottom: 40px; }
.contact-tel-label {
  font-size: 16px;
  color: #ffffff99;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.contact-tel {
  font-family: var(--sans);
  font-size: 50px;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
  transition: opacity 0.2s;
}
.contact-tel:hover { opacity: 0.8; }
.contact-tel-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  letter-spacing: 0.08em;
}
.contact-or {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.contact-or::before, .contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.btn-white {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
  padding: 16px 52px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  border-radius: 50px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-white:hover {
  background: var(--green-pale);
  border-color: var(--green-pale);
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
  font-size: 12px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
}
.footer-logo-en {
  font-family: var(--sans);
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.footer-company { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 8px; }
.footer-addr { line-height: 2; font-size: 14px;}
.footer-license { line-height: 2.2; text-align: right; }
.footer-copy {
  max-width: 1160px;
  margin: 32px auto 0;
  padding: 20px 60px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ===== FADE IN ===== */
.fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade-d1 { transition-delay: 0.1s; }
.fade-d2 { transition-delay: 0.2s; }
.fade-d3 { transition-delay: 0.3s; }

/* ===== DECO ===== */
.deco-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand) 20%, var(--sand) 80%, transparent);
  margin: 0;
}
.bg-en-deco {
  position: absolute;
  font-family: var(--sans);
  font-style: italic;
  font-size: 100px;
  color: rgba(42,92,63,0.04);
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .wrap { padding: 0 32px; }
  .hero-content { padding: 0 32px; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-img { min-height: 280px; }
  .area-photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .area-photo:first-child { grid-row: auto; grid-column: 1 / 3; }
  .points-grid { grid-template-columns: 1fr; gap: 16px; }
  .kukaku-photo-row { grid-template-columns: 1fr 1fr; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-license { text-align: left; }
  .summary-inner { grid-template-columns: repeat(2, 1fr); }
  .float-cta { display: none; }
  .h-nav { display: none; }
}
@media (max-width: 600px) {
  .sec { padding: 64px 0; }
  .hero-title { font-size: 30px; }
  .contact-tel { font-size: 38px; }
  .kukaku-photo-row { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 24px; }
  .wrap { padding: 0 24px; }
  .hero-content { 
    padding: 0 24px;
    position: initial; 
}
}

.access_iframe iframe {
  width: 100%;
}

.google_box {
  text-align: center;
}

.google_btn a {
    max-width: 300px;
    width: 100%;
    display: flex;
    margin: 30px auto;
    justify-content: center;
    align-items: center;
    border: 1px solid #b8935a;
    border-radius: 45px;
    background: #fff;
    min-height: 65px;
    text-decoration: none;
    text-align: center;
    padding: 5px 20px 5px 0;
    position: relative;
}

.google_btn a:hover {
  opacity: 0.6;
  transition: 0.7s;
}

.google_box p span {
    margin: 7px auto 7px;
    padding: 5px 40px 7px;
    background-color: #EEE;
    border-radius: 5px;
    font-size: 125%;
    font-weight: 500;
    text-align: left;
    display: inline-block;
    box-sizing: border-box;
}

.google_btn a i {
  position: absolute;
  right: 10px;
  color: #b8935a;
}

.pc_only {
  display: block;
}
.sp_only {
  display: none;
}

.loca_blk {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.loca_img {
  width: 30%;
  text-align: center;
  margin-bottom: 35px;
}

.loca_img img {
  width: 100%;
  margin-bottom: 10px;
}

.access_img {
  width: 70%;
  margin: 0 auto 60px;
}

.access_img img {
  width: 100%;
}

.access_inner .concept-title h2 { 
    font-weight: 300;
    font-size: 32px;
}

.access_box {
  width: 35%;
  margin: 0 auto 80px;
}

.access_text {
  margin-bottom: 40px;
}

.access_text p span {
  font-size: 16px;
  display: block;
}

.access_text p {
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.access_text p strong {
  font-size: 40px;
}

.access_blk {
  display: flex;
  justify-content: space-between;
}

.access_blk h3 {
  font-weight: 400;
  font-size: 22px;
}

.access_blk .access_img {
  width: 40%;
}

.access_blk_box {
  width: 52%;
}

.access_blk.access_pb {
  padding-bottom: 30px;
}

p.access_explanation {
  font-weight: 500;
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.5;
}

.access_text small {
  font-size: 16px;
}

#access .access_inner:last-of-type {
  margin-top: 80px;
}

.access-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: sans-serif;
}

.destination-box {
  border: 1px solid #333;
  padding: 6px 30px;
  font-size: 24px;
  background-color: #fff;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.timeline {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 25px; 
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background-color: #333;
  z-index: 1;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1; 
  z-index: 2; 
}

.circle {
  width: 50px;
  height: 50px;
  background-color: var(--green);
  border-radius: 50%;
  margin-bottom: 15px;
}

.text {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  header {
    height: 65px;
    padding: 0px 10px;
  }
  .hero-badge {
      padding: 27px 5px;
      font-size: 14px;
      width: 110px;
      height: 110px;
  }
  .hero-scroll {
      right: 30px;
  }
  .hero-badges {
    margin-bottom: 65px;
    position: absolute;
    top: 20px;
  }
  .hero-en {
    font-size: 14px;
  }
  .hero {
      margin-top: 65px;
      padding-bottom: 30px;
  }
  .summary-item {
      padding: 12px;
  }
  .summary-num {
    font-size: 32px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .access_blk {
    display: block;
  }
  .access_blk .access_img {
    width: 100%;
    margin: 0 auto 20px;
  }
  .access_blk_box {
    width: 100%;
  }
  .access_box {
    width: 100%;
    margin-bottom: 60px;
  }
  .access_blk.access_pb {
    padding-bottom: 40px;
  }
  .table-wrap {
    overflow-x: scroll;
  }
  .table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
  }
    .price-table th {
      font-size: 14px;
  }
  .loca_blk {
      display: block;
  }
  .loca_img {
    width: 100%;
  }
  .google_box p span {
      padding: 5px 20px 7px;
      font-size: 115%;
  }
  .access_img {
      width: 100%;
  }
  .access_text p {
      font-size: 22px;
      line-height: 1.4;
  }
  .access_text p strong {
      font-size: 28px;
  }
  .access_blk h3 {
      font-size: 18px;
  }
  #access .access_inner:last-of-type {
    margin-top: 50px;
  }
  p.access_explanation {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
  }
  .access_text {
      margin-bottom: 25px;
  }
  .overview-table th {
      width: 100%;
      display: block;
  }
  .overview-table td {
      display: block;
  }
  .contact-inner {
      padding: 0 10px;
  }
  .btn-white {
      padding: 16px 35px;
  }
  .flex {
    display: block;
  }
  .footer_box {
    margin-bottom: 35px;
  }
  .btn {
    padding: 14px 15px;
    width: 70%;
  }
}

/* =========================================
   スマートフォン表示時の調整（縦並び＋文字右横）
   ========================================= */
@media (max-width: 600px) {
  .destination-box {
      font-size: 20px;
  }
  .access-diagram {
      padding: 15px 20px;
  }
  .destination-box {
    margin-bottom: 30px; 
  }
  .timeline {
    flex-direction: column; 
    align-items: flex-start;
    gap: 50px;
    max-width: 320px; 
    margin: 0 auto; 
  }
  .timeline::before {
    top: 25px; 
    bottom: 25px; 
    left: 20px; 
    right: auto;
    width: 1px; 
    height: auto; 
    transform: none; 
  }
  .timeline-node {
    flex-direction: row;
    align-items: center; 
    flex: none; 
    width: 100%;
    z-index: 2; 
  }
  .circle {
    width: 40px; 
    height: 40px;
    margin-bottom: 0; 
    margin-right: 20px;
  }
  .text {
    text-align: left; 
  }
}