/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --primary:    #C94A3F;
  --accent-a:   #5BB8D4;
  --accent-b:   #F4833A;
  --accent-c:   #6DB84B;
  --bg:         #FDF7F2;
  --bg-dark:    #2B1A18;
  --text:       #3D2B27;
  --text-light: #7a5c55;
  --border:     #e8d5c8;
  --serif:      'Shippori Mincho B1', serif;
  --sans:       'Noto Sans JP', sans-serif;
  --en:         'Cormorant Garamond', serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 4px 24px rgba(61,43,39,.10);
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

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

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

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

.relative { position: relative; }

/* ============================================================
   Loading
   ============================================================ */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading__fruits {
  position: relative;
  width: 100px;
  height: 100px;
}

.fruit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.fruit-icon--1 { animation: orbit 2.4s linear infinite; margin: -15px; }
.fruit-icon--2 { animation: orbit 2.4s linear infinite -0.48s; margin: -15px; }
.fruit-icon--3 { animation: orbit 2.4s linear infinite -0.96s; margin: -15px; }
.fruit-icon--4 { animation: orbit 2.4s linear infinite -1.44s; margin: -15px; }
.fruit-icon--5 { animation: orbit 2.4s linear infinite -1.92s; margin: -15px; }

@keyframes orbit {
  0%   { transform: rotate(0deg)   translateX(38px) rotate(0deg)   scale(1); }
  50%  { transform: rotate(180deg) translateX(38px) rotate(-180deg) scale(0.7); }
  100% { transform: rotate(360deg) translateX(38px) rotate(-360deg) scale(1); }
}

.loading__logo { text-align: center; }

.loading__logo-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--border);
}

.loading__bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.loading__bar-inner {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent-b));
  border-radius: 99px;
  animation: loadbar 1.8s var(--ease) forwards;
}

@keyframes loadbar {
  to { width: 100%; }
}

/* ============================================================
   Floating petals
   ============================================================ */
.floats-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.float-particle {
  position: absolute;
  bottom: -40px;
  opacity: 0;
  animation: floatUp var(--dur, 10s) var(--delay, 0s) ease-in infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(0)      rotate(0deg)   translateX(0);      opacity: 0; }
  8%   { opacity: 0.6; }
  40%  { transform: translateY(-40vh)  rotate(120deg) translateX(18px); }
  70%  { transform: translateY(-75vh)  rotate(260deg) translateX(-14px);  opacity: 0.4; }
  100% { transform: translateY(-112vh) rotate(400deg) translateX(10px);   opacity: 0; }
}

/* Decorative blobs (section corners) */
.float-deco {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.float-deco.top-right    { top: -60px; right: -60px; background: var(--primary); }
.float-deco.bottom-left  { bottom: -60px; left: -60px; background: var(--accent-b); }
.float-deco.top-left     { top: -60px; left: -60px; background: var(--accent-a); }
.float-deco.bottom-right { bottom: -60px; right: -60px; background: var(--accent-c); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-scrolled {
  background: rgba(253,247,242,.96);
  box-shadow: 0 2px 16px rgba(61,43,39,.08);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: transform 0.3s;
}
.header__logo-img:hover { transform: scale(1.05); }

.header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header__contact-label {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.header__contact-tel {
  font-family: var(--en);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.header__contact-tel:hover { opacity: 0.75; }

.header__nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.header__nav-list a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}
.header__nav-list a:hover { color: var(--primary); }
.header__nav-list a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Fixed banner
   ============================================================ */
.fixed-banner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  writing-mode: vertical-rl;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 20px 10px;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
  transition: background 0.25s, transform 0.25s;
}
.fixed-banner:hover {
  background: #a83730;
  transform: translateY(-50%) translateX(-2px);
}

/* ============================================================
   Drawer (SP)
   ============================================================ */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  z-index: 150;
  background: var(--bg-dark);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding-top: 96px;
  overflow-y: auto;
}

.drawer.is-open { transform: translateX(0); }

.drawer__menu { list-style: none; }
.drawer__menu li + li { border-top: 1px solid rgba(255,255,255,.08); }
.drawer__menu a {
  display: block;
  padding: 18px 32px;
  color: #f0e8e4;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer__menu a:hover {
  color: var(--accent-b);
  padding-left: 40px;
}

/* Overlay behind drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   Hero MV
   ============================================================ */
.hero-mv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.hero-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
}

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

.hero-mv__slides {
  position: absolute;
  inset: 0;
}

.hero-mv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 6s var(--ease);
}
.hero-mv__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,26,24,.38);
}

.hero-mv__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 10;
  padding: 24px;
  gap: 14px;
}

.hero-mv__copy {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.9;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.hero-mv__logo {
  font-family: var(--en);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  line-height: 1.2;
}

.hero-mv__tagline {
  font-family: var(--en);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.3em;
  opacity: 0.85;
}

.hero-mv__cta {
  margin-top: 8px;
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  border-radius: 50px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,74,63,.35);
}
.hero-mv__cta:hover {
  background: #a83730;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,74,63,.45);
}

/* ============================================================
   Section base
   ============================================================ */
.section { padding: 100px 0; position: relative; overflow: hidden; }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__en {
  display: block;
  font-family: var(--en);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-b));
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-b));
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0.4;
}

.section-divider-floral {
  width: 120px;
  height: 1px;
  background: var(--border);
  margin: 60px auto 0;
}

/* ============================================================
   About
   ============================================================ */
.about__inner { display: flex; flex-direction: column; gap: 80px; }

.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__row--reverse { direction: rtl; }
.about__row--reverse > * { direction: ltr; }

.circle-img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 4px solid var(--border);
}

.circle-img--lower {
  transform: translateY(52px);
}

.about__text-box p {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 2.1;
  color: var(--text);
}

/* ============================================================
   Feature
   ============================================================ */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.feature__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(61,43,39,.14);
}

.feature__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature__card:hover .feature__card-img img { transform: scale(1.06); }

.feature__card-body {
  padding: 24px;
}

.feature__card-num {
  font-family: var(--en);
  font-size: 2rem;
  font-style: italic;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.feature__card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  padding-bottom: 12px;
}
.feature__card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-b));
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.feature__card:hover .feature__card-title::after { width: 100%; }

.feature__card-text {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--text-light);
}

/* ============================================================
   Menu
   ============================================================ */
.menu__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.menu__label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.menu__top-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text);
}

.menu__top-text {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--text-light);
}
.menu__top-text small { font-size: 0.78rem; color: #b09088; }

.menu__top-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.menu__top-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu__top-img:hover img { transform: scale(1.04); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.menu__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}
.menu__card:hover { transform: translateY(-5px); }

.menu__card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1f1714;
}
.menu__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.menu__card:hover .menu__card-img img { transform: none; }

.menu__card-body { padding: 20px; }

.menu__card-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.menu__card-text {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-wrap { text-align: center; }

.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,74,63,.3);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: #a83730;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,74,63,.4);
}

/* ============================================================
   Message
   ============================================================ */
.message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.message__img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.message__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.message__text {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 2.2;
  color: var(--text);
}

/* ============================================================
   Contact
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__store-name {
  font-family: var(--en);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 28px;
}

.contact__dl { display: flex; flex-direction: column; gap: 0; }

.contact__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact__row dt {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.contact__row dd {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text);
}
.contact__row dd small {
  font-size: 0.76rem;
  color: var(--text-light);
}

.contact__tel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--en);
  font-size: 1.1rem;
  color: var(--primary);
  transition: opacity 0.2s;
}
.contact__tel-link:hover { opacity: 0.7; }

.contact__tel-note {
  display: block;
  margin-top: 4px;
}

.contact__btn-wrap {
  margin-top: 28px;
}

.contact__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact__map iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 36px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer__sns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color 0.25s, transform 0.25s;
  min-width: 280px;
}
.footer__banner:hover {
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

.footer__banner--ig .footer__banner-icon {
  color: #c77dff;
  flex-shrink: 0;
}

.footer__banner-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__banner-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #f0e8e4;
  letter-spacing: 0.06em;
}

.footer__banner-desc {
  font-size: 0.72rem;
  color: rgba(240,232,228,.55);
  line-height: 1.5;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(240,232,228,.4);
  letter-spacing: 0.1em;
}

/* ============================================================
   Responsive ― Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .header__contact-wrap { display: none; }

  .feature__grid { grid-template-columns: repeat(2, 1fr); }

  .menu__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Responsive ― SP (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Header */
  .header__nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-mv__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-mv__copy { font-size: 0.85rem; }
  .hero-mv__logo { font-size: 2rem; }
  .hero-mv__cta { padding: 12px 28px; font-size: 0.8rem; }

  /* About */
  .about__row {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about__row--reverse { direction: ltr; }
  .circle-img { max-width: 260px; }
  .circle-img--lower { transform: translateY(32px); }

  /* Feature */
  .feature__grid { grid-template-columns: 1fr; }

  /* Menu */
  .menu__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }
  .menu__top-img { order: -1; }
  .menu__grid { grid-template-columns: 1fr; }

  /* Message */
  .message__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .message__img img { aspect-ratio: 16/9; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map iframe { height: 280px; }

  /* Footer */
  .footer__banner { min-width: unset; width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero-mv__copy { font-size: 0.78rem; letter-spacing: 0.06em; }
  .hero-mv__logo { font-size: 1.6rem; }
  .hero-mv__tagline { font-size: 0.75rem; }
  .contact__row { grid-template-columns: 70px 1fr; }
}
