/* Lumière — mobile-first template */

:root {
  --tiffany: #96e2e8;
  --tiffany-deep: #a4dce0;
  --tiffany-soft: #f3feff;
  --tiffany-ink: #4aa8ab;
  --white: #ffffff;
  --text: #163133;
  --text-muted: #4f5f60;
  --text-on-accent: #ffffff;
  --line: rgba(74, 168, 171, 0.28);
  --font-en: "Inter", sans-serif;
  --font-nav: "Crimson Text", "Times New Roman", serif;
  /* 本文・英字UI→Inter / PCナビのみ Crimson Text / 日本語→Noto Sans JP */
  --font-body: "Inter", "Noto Sans JP", sans-serif;
  /* 実機幅いっぱいに広げ、大画面のみ読みやすい上限 */
  --app-max: 480px;
  --page-bg: #fbf8f1;
  --header-h: 64px;
  --page-pad: clamp(16px, 4.5vw, 24px);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: clip;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--page-bg);
  background-image: none;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body {
    background-image: url("../assets/bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .app {
    box-shadow: 0 0 0 1px rgba(22, 49, 51, 0.04);
  }

  .menu-btn,
  .menu-backdrop,
  .menu-panel {
    display: none !important;
  }
}

/* PC left aside — logo + SNS outside the app frame */
.aside-pc {
  display: none;
  position: fixed;
  top: 50%;
  right: calc(50% + var(--app-max) / 2 + clamp(28px, 3.5vw, 64px));
  transform: translateY(-50%);
  z-index: 30;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.aside-pc__logo {
  display: block;
  width: clamp(180px, 18vw, 240px);
}

.aside-pc__logo img {
  width: 100%;
  height: auto;
}

.aside-pc__sns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.aside-pc__sns-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.aside-pc__sns-link img {
  width: 24px;
  height: 24px;
  display: block;
  /* lumiere-text.png と同じダークティール系 */
  filter: brightness(0) saturate(100%) invert(14%) sepia(18%) saturate(650%)
    hue-rotate(143deg) brightness(0.95) contrast(0.95);
  opacity: 0.92;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.aside-pc__sns-link:hover {
  transform: translateY(-1px);
}

.aside-pc__sns-link:hover img {
  /* nav-pc の hover と同じティファニーインク */
  filter: none;
  opacity: 1;
}

@media (min-width: 1024px) {
  .aside-pc {
    display: flex;
  }
}

/* PC side nav — outside the app frame */
.nav-pc {
  display: none;
  position: fixed;
  top: 50%;
  left: calc(50% + var(--app-max) / 2 + clamp(28px, 3.5vw, 64px));
  transform: translateY(-50%);
  z-index: 30;
}

.nav-pc__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.nav-pc__list a {
  position: relative;
  display: inline-block;
  padding-right: 32px;
  font-family: var(--font-nav);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-pc__list a::before {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--tiffany-ink);
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-pc__list a:hover,
.nav-pc__list a.is-active {
  color: var(--tiffany-ink);
}

.nav-pc__list a:hover::before,
.nav-pc__list a.is-active::before {
  background: var(--tiffany-ink);
  border-color: var(--tiffany-ink);
}

@media (min-width: 1024px) {
  .nav-pc {
    display: block;
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: calc(24px + var(--safe-bottom));
  z-index: 35;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: var(--tiffany);
  color: var(--white);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.scroll-top[hidden] {
  display: none !important;
}

.scroll-top:hover {
  background: var(--tiffany-ink);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 1024px) {
  .scroll-top {
    right: max(28px, env(safe-area-inset-right, 0px));
    bottom: calc(36px + var(--safe-bottom));
    width: 64px;
    height: 64px;
    border-radius: 8px;
  }

  .scroll-top svg {
    width: 22px;
    height: 22px;
  }
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* App shell — full-bleed on phones, capped column on larger screens */
.app {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--app-max);
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--white);
  overflow-x: clip;
  padding-bottom: 0;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  display: grid;
  place-items: center;
  min-height: calc(var(--header-h) + var(--safe-top));
  padding: var(--safe-top) 16px 0;
  pointer-events: none;
}

.header.is-menu-open {
  opacity: 0;
}

.logo {
  display: block;
  width: 148px;
  pointer-events: auto;
}

.logo img {
  width: 100%;
  height: auto;
  margin-top: 16px;
  mix-blend-mode: screen;
}

@media (min-width: 1024px) {
  .logo img {
    margin-top: 40px;
  }
}

/* Menu button */
.menu-btn {
  position: fixed;
  top: calc(16px + var(--safe-top));
  right: max(12px, calc(50vw - var(--app-max) / 2 + 12px));
  z-index: 60;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tiffany);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-btn:hover {
  transform: scale(1.04);
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  flex: 0 0 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu panel */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--app-max));
  height: 100dvh;
  z-index: 45;
  background: rgba(51, 51, 51, 0.22);
}

.menu-backdrop[hidden],
.menu-panel[hidden] {
  display: none !important;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--app-max));
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(72px + var(--safe-top)) var(--page-pad) 28px;
  background: var(--white);
}

.menu-panel__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin: 0 0 28px;
}

.menu-panel__list a {
  display: block;
  padding: 12px;
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text);
  transition: color 0.2s ease;
}

.menu-panel__list a:hover {
  color: var(--tiffany-ink);
}

.menu-panel__logo {
  display: block;
  width: 110px;
  flex-shrink: 0;
}

.menu-panel__logo img {
  width: 100%;
  height: auto;
}

.menu-panel__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.menu-panel__sns-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-panel__sns-link img {
  width: 22px;
  height: 22px;
  display: block;
}

.menu-panel__sns-link:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  /* モバイルは URL バー伸縮で dvh が暴れるので svh 固定 */
  height: 100svh;
  max-height: 920px;
  overflow: hidden;
  background: var(--white);
}

@media (min-width: 1024px) {
  .hero {
    height: 100dvh;
  }
}

.hero__visual {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__petal {
  position: absolute;
  top: -12%;
  width: 140px;
  height: auto;
  opacity: 0.22;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transform: translateZ(0);
  animation: petal-fall ease-in-out infinite;
}

.hero__petal--1 {
  left: 2%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.hero__petal--2 {
  left: 12%;
  animation-duration: 22s;
  animation-delay: -5s;
}

.hero__petal--3 {
  left: 78%;
  animation-duration: 19s;
  animation-delay: -9s;
}

.hero__petal--4 {
  left: 88%;
  animation-duration: 24s;
  animation-delay: -2.5s;
}

.hero__petal--5 {
  left: -4%;
  animation-duration: 20s;
  animation-delay: -12s;
}

.hero__petal--6 {
  left: 92%;
  animation-duration: 25s;
  animation-delay: -7s;
}

.hero__petal--7 {
  left: 18%;
  animation-duration: 17s;
  animation-delay: -11s;
}

.hero__petal--8 {
  left: 72%;
  animation-duration: 21s;
  animation-delay: -3.5s;
}

.hero__petal--9 {
  left: 8%;
  animation-duration: 26s;
  animation-delay: -14s;
}

@keyframes petal-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.22;
  }
  25% {
    transform: translate3d(12px, 28vh, 0) rotate(55deg);
  }
  50% {
    transform: translate3d(-10px, 55vh, 0) rotate(130deg);
  }
  75% {
    transform: translate3d(8px, 82vh, 0) rotate(210deg);
  }
  92% {
    opacity: 0.18;
  }
  100% {
    transform: translate3d(-6px, 110vh, 0) rotate(280deg);
    opacity: 0;
  }
}

.hero__petal--3,
.hero__petal--4,
.hero__petal--6,
.hero__petal--8 {
  animation-name: petal-fall-right;
}

@keyframes petal-fall-right {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.22;
  }
  25% {
    transform: translate3d(-12px, 28vh, 0) rotate(-55deg);
  }
  50% {
    transform: translate3d(10px, 55vh, 0) rotate(-130deg);
  }
  75% {
    transform: translate3d(-8px, 82vh, 0) rotate(-210deg);
  }
  92% {
    opacity: 0.18;
  }
  100% {
    transform: translate3d(6px, 110vh, 0) rotate(-280deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__petal {
    animation: none;
    display: none;
  }
}

.hero__message {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.hero__line {
  display: block;
  /* 画像左右の1px透明余白でサイドに線が見えるのを防ぐ */
  width: calc(100% + 4px);
  max-width: none;
  height: auto;
  margin-left: -2px;
  pointer-events: none;
  user-select: none;
}

.hero__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12% var(--page-pad) max(10%, calc(16px + var(--safe-bottom)));
  text-align: center;
}

.hero__title {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--text-on-accent);
  text-shadow: 0 0px 8px var(--tiffany-deep);
}

.hero__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
}

/* Sections */
.section {
  padding: clamp(48px, 12vw, 64px) var(--page-pad) 0;
  background: var(--white);
}

.section__eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--tiffany-deep);
  text-align: center;
}

.section__heading {
  margin: 24px 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.084em;
  color: var(--text);
  line-height: 1.6;
  text-align: center;
}

.section__divider {
  display: block;
  width: 18px;
  height: 2px;
  margin: 24px auto 28px;
  background: var(--tiffany-deep);
}

.about {
  background: linear-gradient(180deg, #ade8ea 0%, #eef9f9 24%, #ffffff 68%);
  text-align: center;
  padding: clamp(120px, 40vw, 260px) var(--page-pad) clamp(72px, 18vw, 120px);
}

.about__photo {
  width: calc(100% + 2 * var(--page-pad));
  margin: 0 calc(-1 * var(--page-pad));
  filter: drop-shadow(0 10px 18px rgba(70, 100, 110, 0.12));
}

.about__photo img {
  width: 100%;
  height: auto;
}

.about__text {
  margin: 32px auto 0;
  max-width: 20em;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
}

.about__icons {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about__icons li {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.about__icons img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.about__icons span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--text-muted);
}

.about__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 44px;
  margin: 64px auto 0;
  padding: 0 36px;
  border: 1px solid var(--tiffany);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  background: var(--white);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.about__more:hover {
  color: var(--white);
  border-color: var(--tiffany-ink);
  background: var(--tiffany-ink);
}

.about__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 6px;
  height: 12px;
  transform: translateY(-50%);
  background: url("../assets/arrow-right.svg") center / contain no-repeat;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about__more:hover::after {
  transform: translate(3px, -50%);
  filter: brightness(0) invert(1);
}

/* Menu — pin / scroll distance is handled by GSAP ScrollTrigger */
.menu-pin {
  --menu-unit: 100svh;
  position: relative;
  background: #e8f7f8;
}

.menu-view {
  position: relative;
  width: 100%;
  height: var(--menu-unit);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #e8f7f8;
  text-align: center;
  padding: clamp(48px, 12vw, 64px) var(--page-pad) clamp(24px, 6vw, 40px);
  overflow: hidden;
  z-index: 2;
}

.menu-view .section__eyebrow,
.menu-view .section__heading,
.menu-view .section__divider {
  flex-shrink: 0;
}

.menu-view .section__divider {
  margin-bottom: 12px;
}

.menu-slider {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* モバイルはタイトル直後に画像を置く（center だと縦余白が開きすぎる） */
  justify-content: flex-start;
}

.menu-slider__stage {
  position: relative;
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(300px, 74vw, calc(40dvh * 3 / 4.2));
  max-width: 100%;
  margin: 0 auto;
  min-height: 0;
}

.menu-slider__media-wrap {
  position: relative;
  width: 100%;
}

.menu-slider__media {
  width: 100%;
  max-width: none;
  aspect-ratio: 3 / 4.2;
  max-height: min(40dvh, 380px);
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  background: #e8f7f8;
}

.menu-slider__round {
  position: absolute;
  left: clamp(-24px, -6vw, -36px);
  bottom: clamp(-24px, -6vw, -36px);
  z-index: 3;
  width: clamp(64px, 22vw, 100px);
  height: auto;
  pointer-events: none;
  user-select: none;
  animation: menu-round-spin 18s linear infinite;
}

@keyframes menu-round-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-slider__slide {
    transition: none;
  }

  .menu-slider__round {
    animation: none;
  }
}

.menu-slider__track {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.menu-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  backface-visibility: hidden;
  transition: opacity 0.5s ease;
}

.menu-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.menu-slider__slide img {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

.menu-slider__dots {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 3;
}

.menu-slider__dots::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: var(--tiffany-ink);
  opacity: 0.55;
}

.menu-slider__dot {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1.5px solid var(--tiffany-ink);
  border-radius: 50%;
  background: var(--white);
}

.menu-slider__dot.is-active {
  background: var(--tiffany-ink);
  border-color: var(--tiffany-ink);
}

.menu-slider__name {
  margin: 18px 0 0;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  letter-spacing: 0.06em;
  color: var(--tiffany-ink);
}

.menu-slider__desc {
  margin: 10px auto 0;
  flex-shrink: 0;
  max-width: 328px;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: left;
}

@media (min-width: 480px) {
  .menu-slider__desc {
    line-height: 1.85;
  }
}

.menu-slider__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 3.6em;
  min-height: 28px;
  margin: 20px auto 16px;
  padding: 0 12px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--tiffany-deep);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 480px) {
  .menu-slider__count {
    min-width: 4.5em;
    min-height: 36px;
    margin: 28px auto 24px;
    padding: 0 16px;
    font-size: 0.78rem;
  }
}

@media (min-width: 1024px) {
  .menu-pin {
    --menu-unit: 100dvh;
  }

  .menu-view .section__divider {
    margin-bottom: 28px;
  }

  .menu-slider {
    justify-content: center;
  }
}

/* Instagram */
.instagram {
  position: relative;
  background: url("../assets/instagram-bg.png") center / cover no-repeat;
  text-align: center;
  padding: clamp(72px, 18vw, 120px) var(--page-pad);
  isolation: isolate;
}

.instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.instagram__grid li {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--tiffany-soft);
}

.instagram__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram__grid li:hover img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .instagram__grid img {
    transition: none;
  }

  .instagram__grid li:hover img {
    transform: none;
  }
}

/* News */
.news {
  background: var(--white);
  text-align: center;
  padding: clamp(56px, 14vw, 80px) var(--page-pad) clamp(72px, 18vw, 120px);
}

.news__list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.news__item {
  border-bottom: 1px solid var(--line);
}

.news__item:first-child {
  border-top: 1px solid var(--line);
}

.news__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 18px 4px;
  color: var(--text);
  transition: opacity 0.25s ease;
}

.news__link:hover {
  opacity: 0.72;
}

.news__date {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--tiffany-ink);
}

.news__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6em;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f3a8b8;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.news__title {
  flex: 1 1 12em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--text);
}

/* Shop */
.shop {
  background: #e8f7f8;
}

.shop__panel {
  margin: 0;
  padding: clamp(56px, 14vw, 80px) var(--page-pad) clamp(80px, 20vw, 120px);
  border-radius: 0;
  background: #e8f7f8;
  text-align: center;
}

.shop__panel .section__divider {
  margin-bottom: 8px;
}

.shop__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(12px, 3vw, 18px);
  align-items: center;
  margin: clamp(24px, 6vw, 36px) 0;
}

@media (max-width: 380px) {
  .shop__body {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }

  .shop__photo img {
    aspect-ratio: 4 / 3;
  }
}

.shop__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.shop__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.shop__info {
  display: grid;
  gap: 16px;
  padding-top: 4px;
  text-align: center;
  justify-items: center;
}

.shop__address {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--tiffany-ink);
}

.shop__tel {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.shop__tel a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tiffany-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop__tel-icon {
  flex: 0 0 auto;
}

.shop__hours {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: stretch;
  width: max-content;
  max-width: 100%;
}

.shop__hours li {
  display: grid;
  grid-template-columns: 3.6em 1fr;
  align-items: center;
  column-gap: 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--tiffany-ink);
  text-align: left;
}

.shop__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6em;
  padding: 3px 8px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--tiffany-ink);
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  justify-self: start;
}

.shop__map {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: min(100%, 260px);
  min-height: 46px;
  margin: 28px auto 0;
  padding: 0 36px 0 28px;
  border: 1px solid var(--tiffany-ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--tiffany-ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.shop__map::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 12px;
  transform: translateY(-50%);
  background: url("../assets/arrow-right.svg") center / contain no-repeat;
  filter: invert(58%) sepia(18%) saturate(747%) hue-rotate(131deg)
    brightness(92%) contrast(88%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.shop__map:hover {
  color: var(--white);
  border-color: var(--tiffany-ink);
  background: var(--tiffany-ink);
}

.shop__map:hover::after {
  transform: translate(3px, -50%);
  filter: brightness(0) invert(1);
}

.shop__map-pin {
  flex: 0 0 auto;
  transition: color 0.3s ease;
}

.shop__wave {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 -3px;
  height: 24px;
  line-height: 0;
  /* 継ぎ目のヘアラインを隠す */
  box-shadow: 0 2px 0 0 var(--white);
}

.shop__wave svg {
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: 100%;
  margin-left: -1px;
}

/* Contact */
.contact {
  position: relative;
  z-index: 0;
  background: var(--white);
  text-align: center;
  padding: clamp(48px, 12vw, 56px) var(--page-pad) clamp(32px, 8vw, 40px);
}

.contact__qr {
  margin: 0 auto 16px;
  width: 140px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  opacity: 1;
}

.contact__qr img {
  display: block;
  width: 140px;
  height: 140px;
  max-width: none;
  object-fit: contain;
}

.contact__btn {
  --line-green: #06c755;
  --line-green-deep: #05b34c;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  min-height: 52px;
  margin: 0 auto;
  padding: 0 40px;
  border-radius: 999px;
  background: var(--line-green);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}

.contact__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 6px;
  height: 12px;
  transform: translateY(-50%);
  background: url("../assets/arrow-right.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.contact__btn:hover {
  background: var(--line-green-deep);
}

.contact__btn:hover::after {
  transform: translate(3px, -50%);
}

/* Footer */
.footer {
  padding: clamp(48px, 16vw, 120px) var(--page-pad) calc(16px + var(--safe-bottom));
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef9f9 100%);
}

.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.footer__sns-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__sns-link img {
  width: 22px;
  height: 22px;
  display: block;
}

.footer__sns-link:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.footer__copy {
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
