/* =============================
   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: #2d2d2d;
  background: #faf9f6;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { color: #7a5c8a; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

/* =============================
   VARIABLES
============================= */
:root {
  --wisteria: #9b72aa;
  --wisteria-dark: #7a5c8a;
  --wisteria-light: #e8d9f0;
  --green-deep: #2F5240;
  --cream: #faf9f6;
  --sand: #f0ede4;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #888;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.12);
}

/* =============================
   CONTAINER
============================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================
   SECTION COMMON
============================= */
.section { padding: 80px 0; }
.section-label {
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--wisteria);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.section-title span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid);
  margin-top: 4px;
}
.section-desc {
  color: var(--mid);
  margin-bottom: 48px;
  font-size: .95rem;
}
.section-desc small { font-size: .82rem; color: var(--light); }

/* =============================
   AOS (fade-in on scroll)
============================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   HERO
============================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,30,52,.75) 0%, rgba(30,45,35,.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  padding: 5px 18px;
  font-size: .82rem;
  letter-spacing: .12em;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-title .accent {
  color: #e8d9f0;
  font-size: 1.15em;
}
.hero-sub {
  font-size: .97rem;
  opacity: .9;
  line-height: 1.9;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 36px;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wisteria);
  color: #fff;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.hero-btn:hover {
  background: var(--wisteria-dark);
  transform: translateY(-2px);
  opacity: 1;
}

/* =============================
   POINTS
============================= */
.points-section { background: var(--cream); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.point-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.point-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.point-icon {
  width: 56px; height: 56px;
  background: var(--wisteria-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--wisteria-dark);
  margin: 28px auto 0;
}
.point-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin: 12px 24px 4px;
}
.point-lead {
  text-align: center;
  font-size: .82rem;
  color: var(--wisteria-dark);
  font-weight: 500;
  margin: 0 24px 8px;
}
.point-body {
  font-size: .88rem;
  color: var(--mid);
  margin: 0 24px 12px;
  line-height: 1.7;
}
.point-list {
  list-style: none;
  margin: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.point-list li {
  font-size: .85rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.point-list li i { color: var(--wisteria); font-size: .8rem; }
.point-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  margin-top: auto;
}

/* =============================
   TIMELINE
============================= */
.timeline-section { background: var(--sand); }
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 80px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wisteria), var(--green-deep));
}
.tl-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-icon-wrap {
  position: absolute;
  left: -65px;
  top: 0;
}
.tl-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #fff;
  border: 2px solid var(--wisteria);
  color: var(--wisteria);
  box-shadow: 0 2px 8px rgba(155,114,170,.2);
}
.tl-transport .tl-icon {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.tl-highlight .tl-icon {
  background: var(--wisteria);
  border-color: var(--wisteria);
  color: #fff;
}
.tl-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  box-shadow: var(--shadow);
}
.tl-time {
  font-size: .8rem;
  font-weight: 700;
  color: var(--wisteria-dark);
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.tl-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-body {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0;
}
.tl-img {
  height: 180px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-top: 14px;
}
.badge {
  display: inline-block;
  background: var(--wisteria);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
}

/* =============================
   SPOTS
============================= */
.spots-section { background: var(--cream); }
.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.spot-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.spot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spot-card--featured {
  border: 2px solid var(--wisteria);
  transform: scale(1.02);
}
.spot-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.spot-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.spot-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 0 0 8px 0;
  color: #fff;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}
.tag-cafe { background: #7a9c7a; }
.tag-nature { background: var(--wisteria-dark); }
.tag-sweets { background: #c47e6a; }
.spot-body { padding: 16px 20px 24px; }
.spot-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}
.spot-small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: var(--light);
}
.spot-body p {
  font-size: .86rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.spot-info { display: flex; flex-direction: column; gap: 6px; }
.info-row {
  font-size: .8rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.info-row i { color: var(--wisteria); margin-top: 3px; min-width: 14px; }
.info-row a { color: var(--wisteria-dark); text-decoration: underline; }

/* =============================
   LUNCH
============================= */
.lunch-section { background: #fff; }
.lunch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lunch-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
  color: var(--dark);
}
.lunch-sub {
  font-size: .88rem;
  color: var(--wisteria-dark);
  font-weight: 500;
  margin-bottom: 16px;
}
.lunch-desc {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 28px;
}
.lunch-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.lunch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--sand);
  border-radius: 8px;
  padding: 10px 12px;
}
.lunch-info-item i {
  color: var(--wisteria);
  margin-top: 3px;
  font-size: .95rem;
  min-width: 16px;
}
.info-label {
  display: block;
  font-size: .72rem;
  color: var(--light);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.info-val {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
}
.lunch-note {
  font-size: .78rem;
  color: var(--light);
  margin-bottom: 20px;
  padding-left: 4px;
}
.lunch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wisteria-dark);
  font-size: .88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--wisteria-dark);
  padding-bottom: 2px;
}
.lunch-images {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.lunch-img-main {
  height: 260px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.lunch-img-sub {
  height: 160px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* =============================
   TARGET
============================= */
.target-section { background: var(--sand); }
.target-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.target-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 16px;
}
.target-catch strong {
  color: var(--wisteria-dark);
  font-size: 1.6rem;
}
.target-note {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 24px;
}
.walk-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.walk-badge i { font-size: 1.5rem; color: var(--wisteria); }
.walk-badge span { font-size: .88rem; font-weight: 500; color: var(--dark); line-height: 1.6; }
.walk-badge small { display: block; font-weight: 400; color: var(--light); }
.target-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.target-item:hover { transform: translateX(4px); }
.t-icon {
  width: 42px; height: 42px;
  background: var(--wisteria-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--wisteria-dark);
  flex-shrink: 0;
}
.target-item p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
  margin: auto 0;
}

/* =============================
   SUMMARY
============================= */
.summary-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.summary-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.summary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,15,45,.82) 0%, rgba(15,35,25,.78) 100%);
}
.summary-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 100px 24px;
}
.section-label.light { color: rgba(255,255,255,.6); }
.summary-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.summary-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  opacity: .9;
}
.summary-desc {
  font-size: .95rem;
  opacity: .8;
  line-height: 2;
  margin-bottom: 28px;
}
.summary-cta {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: var(--wisteria-light);
  font-weight: 400;
}

/* =============================
   INFO
============================= */
.info-section { background: #fff; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.info-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--wisteria);
}
.info-card-icon {
  font-size: 1.4rem;
  color: var(--wisteria);
  margin-bottom: 12px;
}
.info-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card li {
  font-size: .86rem;
  color: var(--mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.7;
}
.info-card li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--wisteria);
}
.info-card li a { color: var(--wisteria-dark); text-decoration: underline; }

/* =============================
   FOOTER
============================= */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-title {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-info {
  font-size: .85rem;
  line-height: 1.8;
}
.footer-copy {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  padding: 20px 24px;
}
.footer-copy a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* =============================
   SCROLL TO TOP
============================= */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px; height: 48px;
  background: var(--wisteria);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(155,114,170,.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--wisteria-dark); }

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
  .points-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .spots-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .spot-card--featured { transform: none; }
  .lunch-inner { grid-template-columns: 1fr; gap: 32px; }
  .target-inner { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 60px; }
  .tl-icon-wrap { left: -50px; }
  .timeline::before { left: 20px; }
  .tl-icon { width: 36px; height: 36px; font-size: .88rem; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
  .points-grid, .spots-grid { max-width: 100%; }
  .lunch-info-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .summary-content { padding: 80px 20px; }
  .timeline { padding-left: 48px; }
  .tl-icon-wrap { left: -42px; }
  .timeline::before { left: 16px; }
  .tl-icon { width: 30px; height: 30px; font-size: .78rem; }
  .tl-content { padding: 14px 16px; }
}
