@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
  --color-sun: #ffd66b;
  --color-sun-soft: #fff1c2;
  --color-cream: #fff8e6;
  --color-leaf: #8fb98a;
  --color-leaf-deep: #5e8b6e;
  --color-sky: #8bd3e6;
  --color-text: #3a3a3a;
  --color-text-soft: #6b6b6b;
  --color-bg: #fffdf6;
  --color-line: #ecdfb8;
  --font-handwrite: 'Klee One', 'Zen Maru Gothic', system-ui, sans-serif;
  --font-body: 'Zen Maru Gothic', system-ui, sans-serif;
  --max-w: 1080px;
  --radius: 14px;
  --shadow-soft: 0 8px 24px rgba(255, 200, 80, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-leaf-deep); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .7; }

h1, h2, h3, h4 { font-family: var(--font-handwrite); font-weight: 600; line-height: 1.5; letter-spacing: .04em; }

/* ===== Decorative blobs ===== */
.blob-bg {
  position: relative;
  overflow: hidden;
}
.blob-bg::before, .blob-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.blob-bg::before {
  width: 320px; height: 320px;
  background: var(--color-sun-soft);
  top: -120px; left: -120px;
  opacity: .9;
}
.blob-bg::after {
  width: 260px; height: 260px;
  background: #ffe2a8;
  bottom: -100px; right: -80px;
  opacity: .7;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 65;
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-handwrite);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
}
.site-header__logo img { width: 38px; height: auto; }
.site-header__logo span { line-height: 1.2; }
.site-header__logo small { font-size: 11px; color: var(--color-text-soft); display: block; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 70;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .nav, .nav > ul > li, .nav-toggle span { transition: none !important; }
}

.nav {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(255, 220, 130, 0.95) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(255, 215, 160, 0.9) 0%, transparent 60%),
    rgb(255, 252, 240);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
  z-index: 55;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 88px 24px 48px;
}
.nav.is-open {
  opacity: 1;
  visibility: visible;
}
.nav > ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav > ul > li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.nav.is-open > ul > li {
  opacity: 1;
  transform: translateY(0);
}
.nav.is-open > ul > li:nth-child(1) { transition-delay: .08s; }
.nav.is-open > ul > li:nth-child(2) { transition-delay: .14s; }
.nav.is-open > ul > li:nth-child(3) { transition-delay: .20s; }
.nav.is-open > ul > li:nth-child(4) { transition-delay: .26s; }
.nav.is-open > ul > li:nth-child(5) { transition-delay: .32s; }
.nav a, .nav__group-label {
  display: block;
  padding: 14px 20px;
  color: var(--color-text);
  font-family: var(--font-handwrite);
  font-size: 18px;
  text-align: center;
  background: none;
  border: 0;
  width: 100%;
  cursor: pointer;
  border-radius: 14px;
  transition: background .2s;
}
.nav a:active, .nav__group-label:active { background: rgba(255, 220, 130, 0.35); }
.nav__group-label::after {
  content: "▾";
  font-size: 11px;
  margin-left: 6px;
  color: var(--color-text-soft);
  transition: transform .2s;
  display: inline-block;
}
.nav__group.is-open .nav__group-label::after { transform: rotate(180deg); }
.nav__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.nav__group.is-open .nav__sub { max-height: 500px; }
.nav__sub a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-text-soft);
}
.nav__cta a {
  background: var(--color-sun);
  color: var(--color-text);
  font-weight: 600;
  margin: 12px auto 0;
  border-radius: 999px;
  text-align: center;
  padding: 14px 28px;
  max-width: 240px;
  box-shadow: 0 6px 18px rgba(255, 200, 80, 0.4);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav {
    position: static;
    inset: auto;
    transform: none;
    background: none;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    display: block;
    padding: 0;
  }
  .nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    padding: 0;
    width: auto;
    max-width: none;
  }
  .nav > ul > li {
    border: 0;
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav a, .nav__group-label {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 999px;
    width: auto;
  }
  .nav a:hover, .nav__group-label:hover {
    background: var(--color-sun-soft);
    opacity: 1;
  }
  .nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    max-height: none;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 6px;
    margin-top: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .15s, transform .15s, visibility .15s;
    overflow: visible;
  }
  .nav__group:hover .nav__sub,
  .nav__group:focus-within .nav__sub,
  .nav__group.is-open .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__sub a {
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--color-text);
    white-space: nowrap;
  }
  .nav__sub a:hover { background: var(--color-sun-soft); }
  .nav__cta a {
    margin: 0 0 0 8px;
    padding: 8px 18px;
    background: var(--color-sun);
    box-shadow: 0 4px 12px rgba(255, 200, 80, 0.35);
  }
  .nav__cta a:hover { background: var(--color-sun); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 60px 20px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top left, var(--color-sun-soft) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, #ffe8b0 0%, transparent 55%),
    var(--color-bg);
  overflow: hidden;
}
.hero__logo {
  width: 200px;
  margin: 0 auto 24px;
}
.hero__title {
  font-family: var(--font-handwrite);
  font-size: clamp(28px, 6vw, 44px);
  margin: 0 0 12px;
  letter-spacing: .06em;
}
.hero__sub {
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.hero__lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
}

/* ===== Sections ===== */
section { padding: 56px 20px; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 30px);
  margin: 0 0 8px;
}
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 6px;
  background: var(--color-sun);
  border-radius: 999px;
  margin: 10px auto 0;
}
.section-title[style*="text-align:left"]::after,
.section-title[style*="text-align: left"]::after {
  margin-left: 0;
}
.section-sub {
  text-align: center;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--color-text-soft);
  margin-bottom: 32px;
}

/* ===== Feature cards ===== */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.feature-card__icon {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-sun-soft);
  margin-bottom: 14px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-soft);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-sun);
  color: var(--color-text);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-handwrite);
  font-weight: 600;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 200, 80, 0.35);
  transition: transform .15s, box-shadow .15s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 200, 80, 0.45);
  opacity: 1;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--color-sun);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--color-sun-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--color-leaf-deep);
  border: 2px solid var(--color-leaf);
  box-shadow: none;
}

/* ===== News ===== */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.news-list li {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px dashed var(--color-line);
}
.news-list li:last-child { border-bottom: 0; }
.news-list time {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--color-text-soft);
}
.news-list__empty {
  text-align: center;
  color: var(--color-text-soft);
  padding: 28px;
}
@media (min-width: 700px) {
  .news-list li {
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }
  .news-list time { flex-shrink: 0; min-width: 110px; }
}

/* ===== Pages ===== */
.page-hero {
  position: relative;
  padding: 56px 20px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at top left, var(--color-sun-soft) 0%, transparent 55%),
    var(--color-bg);
}
.page-hero h1 {
  font-size: clamp(24px, 5vw, 36px);
  margin: 0 0 4px;
}
.page-hero p {
  color: var(--color-text-soft);
  font-size: 13px;
  letter-spacing: .25em;
  margin: 0;
}

/* ===== Room cards ===== */
.room-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
}
.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.room-card__body {
  padding: 22px;
}
.room-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
}
.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}
.tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-sun-soft);
  color: #8a6c14;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.tag--leaf { background: #e6f1de; color: var(--color-leaf-deep); }
.tag--sky { background: #d8eef4; color: #3f7c8e; }

@media (min-width: 700px) {
  .room-card { display: grid; grid-template-columns: 1fr 1fr; }
  .room-card img { height: 100%; min-height: 280px; }
}

/* ===== Meals gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-line);
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery img { height: 240px; }
}

/* ===== Staff ===== */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}
.staff-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.staff-card__role {
  font-size: 12px;
  color: var(--color-leaf-deep);
  letter-spacing: .2em;
  font-weight: 600;
  margin-bottom: 4px;
}
.staff-card__name {
  font-family: var(--font-handwrite);
  font-size: 22px;
  margin: 0 0 14px;
}
.staff-card p {
  font-size: 14px;
  line-height: 1.95;
  margin: 0;
  white-space: pre-line;
}

/* ===== Tables ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.price-table th, .price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px dashed var(--color-line);
  font-size: 15px;
}
.price-table th {
  background: var(--color-sun-soft);
  font-family: var(--font-handwrite);
  font-weight: 600;
  width: 50%;
}
.price-table tr:last-child td, .price-table tr:last-child th { border-bottom: 0; }

/* ===== Timeline ===== */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-line);
}
.timeline li {
  position: relative;
  padding: 0 0 28px 50px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-sun);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-sun);
}
.timeline__time {
  display: block;
  font-family: var(--font-handwrite);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-leaf-deep);
  margin-bottom: 4px;
}
.timeline__title {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px;
}
.timeline p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-soft);
}

/* ===== Item list ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 700px) {
  .checklist { grid-template-columns: 1fr 1fr; }
}
.checklist li {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  padding: 12px 16px 12px 42px;
  position: relative;
  font-size: 14px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-sun);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}

/* ===== Notice box ===== */
.notice {
  background: var(--color-cream);
  border-left: 4px solid var(--color-sun);
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  margin: 20px 0;
}
.notice strong { color: #a06600; }

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-line);
  padding: 40px 20px 32px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-soft);
}
.site-footer__logo {
  width: 80px;
  margin: 0 auto 12px;
}
.site-footer__name {
  font-family: var(--font-handwrite);
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 8px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 16px 0 18px;
}
.site-footer__links a {
  font-size: 13px;
  color: var(--color-text-soft);
}
.site-footer__concept {
  font-size: 12px;
  letter-spacing: .2em;
  color: #a99868;
  margin-top: 24px;
  font-family: var(--font-handwrite);
}

/* ===== Mobile reservation bar ===== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 253, 246, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
  z-index: 60;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
}
.mobile-cta .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
}
.mobile-cta .btn--outline { flex: 0 0 auto; padding: 12px 18px; }

@media (min-width: 900px) {
  .mobile-cta { display: none; }
}

/* ===== Concept block ===== */
.concept {
  background: var(--color-cream);
  padding: 40px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-handwrite);
  line-height: 2.2;
  font-size: 15px;
  color: #6c5a2a;
}
.concept p { margin: 0 0 14px; }
.concept p:last-child { margin-bottom: 0; }

/* ===== Two-column ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.bg-soft { background: var(--color-cream); }

/* ===== Access ===== */
.access-info {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.access-info dt {
  font-family: var(--font-handwrite);
  font-weight: 600;
  color: var(--color-leaf-deep);
  margin-top: 12px;
  font-size: 14px;
}
.access-info dt:first-child { margin-top: 0; }
.access-info dd { margin: 4px 0 0; font-size: 15px; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  aspect-ratio: 16 / 10;
  width: 100%;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
