@charset "UTF-8";

:root {
  --base: #fbf6ef;
  --base-dark: #f3e8dc;
  --white: #ffffff;
  --text: #4a332b;
  --muted: #7c665c;
  --accent: #d98f89;
  --accent-dark: #c77772;
  --line: #eadbd0;
  --shadow: 0 20px 50px rgba(93, 61, 43, 0.12);
  --radius: 22px;
  --inner: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;
  line-height: 1.8;
  background:
    radial-gradient(circle at right top, rgba(235, 204, 190, 0.35), transparent 32%),
    linear-gradient(180deg, #fffaf5 0%, var(--base) 45%, #fffaf5 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


.pc-only{
  display: none;
}

@media(max-width: 640px){
  .sp-only{
    display: block;
  }
}



/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(234, 219, 208, 0.7);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--inner);
  height: 82px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.logo-mark {
  color: #b98e65;
  font-size: 24px;
}

.logo strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.logo small {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: var(--muted);
}

.nav a {
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent-dark);
}

.header-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px rgba(201, 116, 108, 0.24);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 116, 108, 0.3);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--text);
  transition: 0.3s ease;
}

.mobile-nav {
  display: none;
}

/* Common */

.section {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 92px 28px;
}

.section-label {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: Georgia, serif;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.section-head.center {
  text-align: center;
}

.section-head.between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--accent-dark);
  font-size: 14px;
  white-space: nowrap;
}

/* Hero */

.hero {
  padding: 70px 28px 40px;
}

.hero-inner {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  align-items: center;
  gap: 52px;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.hero-copy {
  max-width: 440px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -38px;
  width: 190px;
  height: 190px;
  border-radius: 34px;
  background: rgba(235, 222, 211, 0.65);
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  height: 500px;
  border-radius: 28px 28px 90px 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: -20px;
  bottom: 52px;
  z-index: 2;
  width: 190px;
  padding: 30px 24px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(234, 219, 208, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card span {
  color: #c89f73;
  font-size: 28px;
  line-height: 1.25;
  font-style: italic;
  font-family: Georgia, serif;
}

.hero-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* Concept */

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.concept-grid p {
  color: var(--muted);
}

.concept-image img {
  height: 280px;
  border-radius: 18px;
}

/* Worries */

.worries {
  padding-top: 40px;
}

.worry-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.worry-card {
  min-height: 150px;
  padding: 28px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(93, 61, 43, 0.06);
}

.worry-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 30px;
}

.worry-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 250px;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-icon {
  margin-bottom: 18px;
  color: #c39a6b;
  font-size: 36px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Menu */

.menu {
  background: rgba(255, 255, 255, 0.38);
  border-radius: 34px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(93, 61, 43, 0.08);
}

.menu-card img {
  height: 230px;
}

.menu-card div {
  padding: 24px;
}

.menu-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}

.menu-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.menu-card strong {
  color: var(--accent-dark);
  font-size: 14px;
}

/* Gallery Carousel */

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 calc((100% - 66px) / 4);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-item img {
  height: 240px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.carousel-buttons {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-btn:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* Voice */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.voice-card {
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.voice-card img {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.voice-card h3 {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 500;
}

.voice-card p {
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

/* FAQ */

.faq-list {
  max-width: 880px;
}

.faq-list details {
  margin-bottom: 12px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-size: 15px;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* CTA */

.cta {
  padding-top: 40px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 52px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(244, 208, 206, 0.72), rgba(255, 250, 245, 0.9)),
    var(--base-dark);
  border: 1px solid var(--line);
}

.cta h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.45;
}

.cta p {
  color: var(--muted);
}

.primary-btn.large {
  min-height: 58px;
  padding-inline: 38px;
}

/* Footer */

.footer {
  margin-top: 40px;
  background: #4d372f;
  color: #fffaf5;
}

.footer-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 70px 28px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 44px;
}

.footer-logo .logo-mark,
.footer-logo small {
  color: #d9b58f;
}

.footer-brand p,
.footer-info p,
.footer-links a {
  color: rgba(255, 250, 245, 0.72);
  font-size: 14px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}

.footer h3 {
  margin-bottom: 16px;
  color: #e8cfb8;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-family: Georgia, serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 18px 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 250, 245, 0.12);
}

.footer-bottom p {
  color: rgba(255, 250, 245, 0.56);
  font-size: 12px;
}

/* Fade In */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1024px) {
  .header-inner {
    height: 74px;
  }

  .nav,
  .header-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: none;
    padding: 18px 28px 28px;
    background: rgba(255, 250, 245, 0.98);
    border-top: 1px solid var(--line);
  }

  .mobile-nav.active {
    display: grid;
    gap: 14px;
  }

  .mobile-nav a {
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-reserve {
    width: fit-content;
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--accent);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: 420px;
  }

  .hero-card {
    right: 24px;
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .worry-list,
  .feature-grid,
  .menu-grid,
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    flex-basis: calc((100% - 22px) / 2);
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Smartphone */

@media (max-width: 640px) {
  .header-inner {
    padding: 0 18px;
  }

  .logo strong {
    font-size: 18px;
  }

  .hero {
    padding: 44px 18px 20px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .primary-btn,
  .header-btn {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .hero-visual img {
    height: 300px;
    border-radius: 20px 20px 56px 20px;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .section {
    padding: 68px 18px;
  }

  .section-head.between {
    display: block;
  }

  .section-head.between .text-link {
    display: inline-block;
    margin-top: 14px;
  }

  .concept-grid {
    padding: 24px;
  }

  .concept-image img {
    height: 210px;
  }

  .worry-list,
  .feature-grid,
  .menu-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .worry-card {
    min-height: auto;
  }

  .menu-card img {
    height: 210px;
  }

  .carousel-buttons {
    margin-top: 18px;
  }

  .gallery-item {
    flex-basis: 100%;
  }

  .gallery-item img {
    height: 250px;
  }

  .cta-inner {
    padding: 34px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 56px 18px 38px;
  }
}