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

  :root {
    --cream: #F5F0E6;
    --cream-dark: #EDE5D8;
    --warm-beige: #E2D5C3;
    --brown-deep: #3A2517;
    --brown-mid: #7A5C42;
    --brown-light: #B08B6E;
    --terracotta: #C4705A;
    --green-moss: #4A5E3A;
    --green-sage: #7A8F6A;
    --airbnb: #FF5A5F;
    --booking: #003580;
    --agoda: #5C2D91;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--cream);
    color: var(--brown-deep);
    font-size: 14px;
    line-height: 1.8;
  }

  /* ──────────── HEADER / NAV ──────────── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245,240,230,0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--warm-beige);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .logo-kanji {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--brown-deep);
    letter-spacing: 4px;
  }
  .logo-sub {
    font-size: 10px;
    color: var(--brown-mid);
    letter-spacing: 1px;
    line-height: 1.4;
  }
  .logo-sub span { display: block; }

  nav { display: flex; align-items: center; gap: 28px; }
  nav a {
    font-size: 12px;
    color: var(--brown-mid);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--terracotta); }

  .btn-reserve {
    background: var(--brown-deep);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px !important;
    letter-spacing: 1px;
    transition: background 0.2s !important;
  }
  .btn-reserve:hover { background: var(--terracotta) !important; color: #fff !important; }

  /* ──────────── HERO ──────────── */
  .hero {
    min-height: 100vh;
    padding-top: 64px;
    display: grid;
    grid-template-columns: 30% 70%;
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }

  .hero-left {
    padding: 80px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--brown-deep);
    letter-spacing: 2px;
    margin-bottom: 32px;
  }

  .hero-desc {
    font-size: 13px;
    color: var(--brown-mid);
    line-height: 2;
    max-width: 300px;
    margin-bottom: 40px;
  }

  .hero-illust {
    display: flex;
    gap: 12px;
    align-items: flex-end;
  }

  /* SVG illust placeholder */
  .illust-family {
  width: 150px;
  height: auto;
  align-self: flex-end;
}


  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	  
  }

  /* Wavy bottom mask on hero image */
  .hero-right::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -10%;
  width: 120%;
  height: 180px;
  background: var(--cream);
  /*clip-path: ellipse(60% 100% at 50% 100%);*/
  }

  .badge-circle {
    position: absolute;
    bottom: 200px;
    right: 40px;
    width: 180px;
    height: 180px;
    background: rgba(245,240,230,0.92);
    border-radius: 50%;
    border: 1px solid var(--warm-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    z-index: 3;
  }
  .badge-circle p { font-size: 14px; line-height: 1.7; color: var(--brown-deep); }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--brown-light);
    z-index: 5;
  }
  .scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brown-light), transparent);
    margin: 0 auto;
  }

  /* ──────────── SECTION COMMON ──────────── */
  section { padding: 80px 60px; position: relative; }

  .section-number {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .section-body {
    font-size: 13px;
    color: var(--brown-mid);
    line-height: 2;
    max-width: 340px;
    margin-bottom: 28px;
  }

  .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--brown-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--brown-light);
    padding-bottom: 2px;
    letter-spacing: 1px;
    transition: color 0.2s;
  }
  .btn-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
  .btn-link::after { content: '→'; }

  /* ──────────── SECTION 1: ABOUT ──────────── */
  .about {
    background: var(--warm-beige);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .photo-grid img, .photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
  }

  .photo-placeholder {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-light);
    font-size: 11px;
    text-align: center;
  }

.illust-about{
  width: 220px;
  display: block;
  margin-top: 30px;
  margin-left: auto;
  margin-right: 40px;
}

  /* ──────────── SECTION 2: ROOMS ──────────── */
  .rooms {
  background: var(--cream-dark);
  padding: 90px 60px;
}

.rooms-heading {
  max-width: 520px;
  margin-bottom: 40px;
}

.room-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.room-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.room-card-text {
  padding: 28px;
}

.room-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brown-light);
  margin-bottom: 8px;
}

.room-card-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.room-card-text p {
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 2;
}

.room-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.room-sub-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
}

.room-sub-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.room-sub-card-content {
  padding: 20px;
}

.room-sub-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.room-sub-card p {
  font-size: 12px;
  color: var(--brown-mid);
  line-height: 1.8;
}

.room-guide {
  margin-top: 70px;
}

.sub-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.room-map {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}

.room-map img {
  width: 100%;
  display: block;
}

.facility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.facility-map {
  background: transparent;
padding: 0;
}
.facility-map img {
  border-radius: 10px;
}
.facility-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.facility-photos img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0px;
}
@media (max-width: 900px) {
  .facility-layout {
    grid-template-columns: 1fr;
  }

  .facility-photos {
    grid-template-columns: 1fr 1fr;
  }

  .facility-photos img {
    height: 160px;
  }
}

.shared-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.shared-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

  .speech-bubble {
    background: var(--cream);
    border: 1px solid var(--warm-beige);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 11px;
    color: var(--brown-mid);
    line-height: 1.8;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 4;
  }
  .speech-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    border-right: 8px solid var(--cream);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  /* ──────────── SECTION 3: ACTIVITIES ──────────── */
  .activities {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .activity-item {
    text-align: center;
  }
  .activity-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.activity-icon img{
  width: 100px;
  height: 100px;
  object-fit: contain;
}

 
  .activity-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 6px;
  }
  .activity-desc {
    font-size: 11px;
    color: var(--brown-mid);
    line-height: 1.8;
  }

  .activity-photo {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .activity-photo img {
    width: 100%;
    height: 420px;
	
    object-fit: cover;
    display: block;
  }

.activity-title a {
  color: inherit;
  text-decoration: none;
}

.activity-title a:hover {
  color: var(--terracotta);
}

  .nature-label {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(245,240,230,0.9);
    border: 1px solid var(--warm-beige);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 11px;
    color: var(--brown-mid);
    line-height: 1.7;
    text-align: center;
  }

  /* ──────────── SECTION 4 & 5: PRICE + ACCESS ──────────── */
  .info-row {
    background: var(--warm-beige);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 80px 60px;
  }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  .price-table th, .price-table td {
    border: 1px solid var(--warm-beige);
    padding: 10px 14px;
    text-align: center;
    font-size: 13px;
  }
  .price-table th {
    background: var(--warm-beige);
    font-weight: 500;
    color: var(--brown-deep);
    font-size: 11px;
  }
  .price-table td {
    background: var(--cream);
    color: var(--brown-deep);
  }
  .price-table td.price {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
  }
  .price-table td.discount {
    color: var(--terracotta);
    font-weight: 600;
  }

  .price-notes { font-size: 11px; color: var(--brown-mid); line-height: 2; margin-top: 8px; }

.price-section {
  background: var(--cream-dark);
  padding: 90px 60px;
}

.access-section{
  display:grid;
  grid-template-columns: 400px 1fr;
  gap:80px;
 background: #fff;
  padding: 90px 60px;
  align-items:start;   /* ←これ重要 */
}

.map-placeholder {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .access-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

  .access-list {
    list-style: none;
    margin: 16px 0;
  }
  .access-list li {
    font-size: 12px;
    color: var(--brown-mid);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
  }
  .access-list li::before {
    content: '▸';
    position: absolute; left: 0;
    color: var(--green-sage);
  }

  .map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}

  /* Simple stylized map */
  .map-placeholder svg {
    width: 100%;
    height: 100%;
  }
.map-placeholder iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

  /* ──────────── SECTION 6: HOST ──────────── */
  .host {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }

  .host-intro { font-size: 13px; color: var(--brown-mid); line-height: 2; margin-bottom: 24px; }

  .host-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

  .host-card {}
  .host-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.host-avatar img {
  width: 100%;
  height: auto;
}
  .host-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 4px;
  }
  .host-role {
    font-size: 10px;
    color: var(--brown-mid);
    line-height: 1.7;
  }

  /* ──────────── SECTION 7: BOOKING ──────────── */
  .booking {
    background: var(--cream-dark);
    text-align: center;
    padding: 80px 60px;
  }

  .booking-intro {
    font-size: 13px;
    color: var(--brown-mid);
    margin-bottom: 40px;
  }

  .booking-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .btn-booking:hover { opacity: 0.85; transform: translateY(-1px); }
  .btn-booking.airbnb { background: var(--airbnb); color: #fff; }
  .btn-booking.booking { background: var(--booking); color: #fff; }
  .btn-booking.agoda { background: var(--agoda); color: #fff; }
  .btn-booking.contact { background: var(--green-moss); color: #fff; }

.sns-area {
  margin-top: 40px;
  text-align: center;
}

.sns-line {
  width: 160px;
  height: 1px;
  background: var(--warm-beige);
  margin: 0 auto 24px;
}

.sns-area .sns-line:last-child {
  margin: 24px auto 0;
}

.sns-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sns-links a {
  padding: 10px 22px;
  border: 1px solid var(--brown-light);
  border-radius: 999px;
  text-decoration: none;
  color: var(--brown-deep);
  font-size: 12px;
  letter-spacing: 1px;
}

.sns-links a:hover {
  background: var(--brown-deep);
  color: #fff;
}

  /* ──────────── FOOTER ──────────── */
  footer {
    background: var(--brown-deep);
    color: rgba(255,255,255,0.6);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo-kanji {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 4px;
  }
  .footer-address { font-size: 11px; line-height: 2; }
  .footer-sns { font-size: 20px; opacity: 0.7; cursor: pointer; }
  .footer-sns:hover { opacity: 1; }

.footer-sns{
  display:flex;
  gap:20px;
}

.footer-sns a{
  color:rgba(255,255,255,0.7);
  font-size:24px;
  transition:.3s;
}

.footer-sns a:hover{
  color:#fff;
  transform:translateY(-2px);
}

  /* ──────────── DECORATIVE ELEMENTS ──────────── */
  .deco-leaf {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
  }

  /* ──────────── DIVIDER ──────────── */
  .wavy-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
  }
  .wavy-divider svg { display: block; width: 100%; }

  /* ──────────── RESPONSIVE ──────────── */
  @media (max-width: 900px) {
    header { padding: 0 20px; }
    nav { gap: 16px; }
    nav a:not(.btn-reserve) { display: none; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 30px 40px; }
    .hero-right { height: 300px; }

    section, .info-row { padding: 50px 30px; }
    .about, .activities { grid-template-columns: 1fr; gap: 30px; }
    .rooms { grid-template-columns: 1fr; }
    .room-img-left, .room-img-right { height: 200px; }
    .info-row { grid-template-columns: 1fr; gap: 50px; }
    .host { grid-template-columns: 1fr; gap: 30px; }
    .host-grid { grid-template-columns: repeat(2, 1fr); }
    .speech-bubble { display: none; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
  }
