/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple:       #92268F;
  --purple-acc:   #884791;
  --purple-dark:  #7a1f78;
  --bg:           #FBF5FB;
  --dark:         #333333;
  --dark2:        #252525;
  --gray:         #555555;
  --border:       #D1CFCD;
  --white:        #FFFFFF;
  --spring-wood:  #FBFBF6;
  --alabaster:    #F9F9F9;
  --cloud:        #D1CFCD;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── Utilities ── */
.container {
  max-width: 1722px;
  margin: 0 auto;
  padding: 0 25px;
}
.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(48px, 5.2vw, 100px);
  letter-spacing: 0.03em;
  color: var(--purple-acc);
  line-height: 1.4;
  white-space: nowrap;
}
.heading-2 {
  position: relative;
  padding-left: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.097em;
  color: var(--dark);
}
.heading-2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--purple-acc);
  border-radius: 2px;
}
.hgroup-en {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(32px, 3.1vw, 60px);
  letter-spacing: 0.05em;
  color: var(--purple-acc);
  line-height: 1.17;
}
.hgroup-en02 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(32px, 2.1vw, 60px);
  letter-spacing: 0.05em;
  color: var(--purple-acc);
  line-height: 1.17;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.097em;
  color: var(--dark);
  text-decoration: none;
  padding-bottom: 4px;
  transition: opacity 0.25s;
}
.more-link:hover { opacity: 0.6; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: var(--purple);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 64px;
  transition: background 0.3s;
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo-svg {
  height: 52px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 120px;
}
.header__nav-list {
  display: flex;
  list-style: none;
  align-items: center;
}
.header__nav-list li a {
  display: block;
  padding: 0 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.header__nav-list li a:hover { opacity: 0.7; }
.header__franchise {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.header__franchise:hover { opacity: 0.7; }
.header__nav-list li {
  position: relative;
}
.header__nav-list li .header__nav-active {
  position: absolute;
  top: -37px;
  right: -8px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  pointer-events: none;
  display: none;
  z-index: 2;
}
.header__nav-list li a.is-active {
  color: #FFDD15;
}
.header__nav-list li a.is-active ~ .header__nav-active {
  display: block;
  animation: navActiveFloat 2.6s ease-in-out infinite;
}
@keyframes navActiveFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(2px); }
}
@media (max-width: 768px) { .header__nav-list li .header__nav-active { display: none !important; } }
.header__franchise-icon {
  width: 32px;
  height: 23px;
  display: flex;
  align-items: center;
}
.header__franchise-icon svg { width: 100%; height: auto; }
.header__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.header__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.header__sns-link:hover { opacity: 0.55; }

/* ── Hamburger button ── */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 33px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 201;
  position: relative;
  flex-shrink: 0;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(9.75px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-9.75px) rotate(-45deg);
}

/* ── Mobile Drawer ── */
.header__drawer {
  position: fixed;
  inset: 0;
  background: var(--purple);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s;
  pointer-events: none;
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 80px 40px 60px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__drawer.is-open .header__drawer-inner {
  transform: translateY(0);
}
.header__drawer-nav {
  width: 100%;
}
.header__drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.header__drawer-link {
  display: block;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s;
  text-align: center;
}
.header__drawer-link:hover {
  opacity: 0.6;
}
.header__drawer-sns {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__drawer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.header__drawer-sns-link:hover {
  opacity: 0.5;
}
.header__drawer-sns-link svg {
  width: 34px;
  height: 34px;
}
.header__drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 202;
}
.header__drawer-close span {
  position: absolute;
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
}
.header__drawer-close span:nth-child(1) {
  transform: rotate(45deg);
}
.header__drawer-close span:nth-child(2) {
  transform: rotate(-45deg);
}

/* ── Hero ── */
.hero {
  width: 100vw;
  line-height: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 90px;
}

/* ── Gallery Scroll ── */
.gallery-scroll {
  overflow: hidden;
  padding: 30px 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gallery-scroll__row {
  overflow: hidden;
}
.gallery-scroll__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}
.gallery-scroll__row--rev .gallery-scroll__track {
  animation-name: marquee-right;
  animation-duration: 45s;
}
.gallery-scroll__row--rev .gallery-scroll__item {
  width: 150px;
  max-width: 150px;
  max-height: 150px;
}
.gallery-scroll__item {
  flex-shrink: 0;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-scroll__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Brand Story ── */
.brand-story {
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
  background: var(--bg);
}
.brand-story__inner {
  position: relative;
  min-height: 1200px;
}
.brand-story__label-wrap {
  padding: 0 99px;
  position: relative;
  z-index: 10;
}
.brand-story__text-block {
  position: relative;
  z-index: 2;
  margin-left: calc(99px + 502px);
  width: 430px;
  padding-bottom: 80px;
  padding-top: 80px;
}
.brand-story__hgroup {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.brand-story__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.07em;
  color: var(--dark);
  line-height: 1.3;
}
.brand-story__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 2.25;
  color: var(--dark);
  margin-bottom: 40px;
}
.brand-story__images {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.brand-story__img {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
}
.brand-story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.brand-story__img--1 {
  left: 0;
  top: 180px;
  width: 427px;
  height: 568px;
}
.brand-story__img--2 {
  left: calc(99px + 659px);
  bottom: 75px;
  width: 730px;
  height: 414px;
}
.brand-story__img--3 {
  right: calc(99px + 185px);
  top: 10px;
  width: 250px;
  height: 333px;
}
.brand-story__img--4 {
  right: 99px;
  top: 202px;
  width: 285px;
  height: 380px;
}

/* ── Menu Section ── */
.menu-section {
  background: var(--white);
  padding: 80px 0 100px;
}
.menu-section__inner {
  padding: 0 99px;
}
.menu-section__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 56px;
}

/* ── Menu Slider ── */
.menu-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}
.menu-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.menu-slider__slide {
  flex: 0 0 calc(80% - 12px);
  min-width: 0;
  box-sizing: border-box;
}
.menu-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}
.menu-slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu-slider__btn:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.menu-slider__dots {
  display: flex;
  gap: 12px;
  align-items: center;
}
.menu-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.menu-slider__dot:hover { background: var(--purple-acc); opacity: 0.6; }
.menu-slider__dot.is-active {
  background: var(--purple);
  transform: scale(1.2);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 56px;
}
.menu-item__img-wrap {
  flex: 0 0 48%;
  min-width: 0;
}
.menu-item__img {
  width: 100%;
  aspect-ratio: 700/466;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.menu-item__body {
  flex: 1;
  min-width: 0;
}
.menu-item__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: visible;
  border-radius: 12px;
  position: relative;
}
.menu-item__icon::after {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  background: var(--purple);
  opacity: 0.5;
  border-radius: 50%;
  bottom: -2px;
  right: -10px;
  z-index: -1;
}
.menu-item__icon svg { width: 72px; height: 72px; fill: var(--white); }
.menu-item__icon-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.menu-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--dark2);
  margin-bottom: 14px;
}
.menu-item__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  color: var(--dark2);
  margin-bottom: 24px;
}
.menu-item__link {
  display: inline-flex;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14.6px;
  color: var(--dark2);
  text-decoration: none;
  transition: opacity 0.25s;
}
.menu-item__link:hover { opacity: 0.6; }

/* ── Franchise Section ── */
.franchise-section {
  background: var(--bg);
  padding: 110px 99px 120px;
}
.franchise-section__inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  max-width: 1722px;
  margin: 0 auto;
  padding: 0 25px;
}
.franchise-section__text {
  width: 788px;
  flex-shrink: 0;
}
.franchise-section__hgroup {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.franchise-section__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.07em;
  line-height: 1.59;
  color: var(--dark);
  margin-bottom: 20px;
}
.franchise-section__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 2.25;
  color: var(--dark);
  margin-bottom: 28px;
  padding-top: 19px;
}
.franchise-section__img {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
}
.franchise-section__img img {
  width: 100%;
  aspect-ratio: 836/592;
  object-fit: cover;
  display: block;
}

/* ── News Section ── */
.news-section {
  padding: 120px 99px;
  background: var(--bg);
}
.news-section__layout {
  display: flex;
  gap: 4px;
  max-width: 1722px;
  margin: 0 auto;
  padding: 0 25px;
}
.news-section__left {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 43px;
}
.news-section__hgroup {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news-section__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-item {
  display: flex;
  align-items: center;
  padding: 36px 0 36px;
  border-bottom: 1px solid var(--cloud);
  gap: 0;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.news-item:hover { opacity: 0.7; }
.news-item__meta {
  width: 215px;
  flex-shrink: 0;
}
.news-item__time {
  display: block;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray);
  margin-bottom: 8px;
}
.news-item__tag {
  display: inline-block;
  background: var(--purple-acc);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.097em;
  padding: 2px 10px 3px;
  border-radius: 25px;
}
.news-item__body {
  flex: 1;
}
.news-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.097em;
  line-height: 1.5;
  color: var(--dark);
}
.news-item__thumb {
  position: absolute;
  right: 41px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--alabaster);
}
.news-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.news-item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.news-item:hover .news-item__arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

/* ── Category Cards ── */
.category-section {
  padding: 80px 0;
  overflow: hidden;
}
.category-section__track {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 0 64px;
}
.category-card {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
.category-card:hover { transform: translateY(-8px); }
.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.category-card__overlay {
  position: absolute;
  inset: -8px -10px;
  background: rgba(0,0,0,0.3);
}
.category-card__body {
  position: absolute;
  bottom: 0; left: 0;
  padding: 39px;
}
.category-card__ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.09em;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.category-card__en {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 32px;
  letter-spacing: 0.09em;
  color: var(--white);
  display: block;
  line-height: 1;
}
.category-card__badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--purple-acc);
  border-radius: 30px;
  box-shadow: 1px 1px 0px 0px rgba(255,255,255,1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.category-card:hover .category-card__badge {
  transform: scale(1.08);
  background: var(--purple-dark);
}
.category-card__badge svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  transition: transform 0.3s;
}
.category-card:hover .category-card__badge svg {
  transform: translateX(3px);
}

/* ── Footer ── */
.footer {
  background: var(--dark2);
  padding: 40px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.footer__inner {
  width: 100%;
  max-width: calc(1920px - 453px);
  padding: 31px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(251,251,246,0.2);
}
.footer__links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.footer__links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--spring-wood);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.footer__links a:hover { opacity: 0.6; }
.footer__copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 10.8px;
  color: var(--spring-wood);
  letter-spacing: 0.03em;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

.brand-story__img-sp {
  display: none;
  padding-bottom: 32px;
}

.brand-story__img-sp img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1500px) {
  .brand-story__text-block {
    margin-left: calc(99px + 360px);
  }
}

@media (max-width: 1314px) {
  /* ── Brand Story ── */
  .brand-story {
    padding: 60px 0 0;
  }
  .brand-story__inner {
    min-height: unset;
    padding: 0 99px;
  }
  .brand-story__label-wrap {
    padding: 0 0;
    overflow: hidden;
  }
  .brand-story__images {
    display: none;
  }
  .brand-story__text-block {
    margin-left: 0;
    width: 100%;
    padding: 32px 0 60px;
  }
  .brand-story__hgroup {
    gap: 16px;
    margin-bottom: 28px;
  }
  .brand-story__heading {
    font-size: 22px;
  }
  .brand-story__desc {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 32px;
  }
  .brand-story__img-sp {
    display: block;
  }
}

/* ════════════════════════════════════════════
   Mobile  ≤ 768px
════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Utilities ── */
  .section-label {
    font-size: 48px;
    white-space: nowrap;
    overflow: hidden;
  }
  .hgroup-en {
    font-size: 36px;
  }
  .more-link {
    font-size: 14px;
    gap: 14px;
  }
  .more-link::before {
    width: 36px;
  }

  /* ── Header ── */
  .header {
    padding: 12px 20px;
  }
  .header__logo-img {
    height: 36px;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }

  /* ── Hero ── */
  .hero__img {
    padding-top: 60px;
  }
  .brand-story__inner {
    min-height: unset;
    padding: 0 24px;
  }

  .brand-story__label-wrap {
    padding: 0;
    overflow: hidden;
  }
  .brand-story__text-block {
    margin-left: 0;
    width: 100%;
    padding: 32px 0 60px;
  }

  /* ── Menu ── */
  .menu-section {
    padding: 60px 0 80px;
  }
  .menu-section__inner {
    padding: 0 24px;
  }
  .menu-section__header {
    margin-bottom: 40px;
  }
  .menu-slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .menu-item__body {
    width: 100%;
  }
  .menu-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .menu-slider__slide .menu-item {
    flex-direction: column !important;
    gap: 24px;
  }
  .menu-slider__slide .menu-item__img-wrap {
    flex: none;
    width: 100%;
  }
  .menu-slider__controls {
    margin-top: 32px;
    gap: 24px;
  }
  .menu-slider__btn {
    width: 40px;
    height: 40px;
  }
  .menu-item__img {
    aspect-ratio: unset;
    height: 250px;
  }
  .menu-item__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  .menu-item__icon::after {
    width: 39px;
    height: 39px;
    bottom: -1px;
    right: -7px;
  }
  .menu-item__icon-img {
    width: 48px;
    height: 48px;
  }
  .menu-item__title {
    font-size: 16px;
  }

  /* ── Gallery Scroll ── */
  .gallery-scroll__item {
    width: 110px !important;
  }
  .gallery-scroll {
    padding: 20px 0;
    gap: 16px;
  }

  /* ── Franchise ── */
  .franchise-section {
    padding: 60px 24px 80px;
  }
  .franchise-section__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  .franchise-section__text {
    width: 100%;
  }
  .franchise-section__title {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .franchise-section__title br {
    display: none;
  }
  .franchise-section__desc {
    font-size: 14px;
    padding-top: 0;
    margin-bottom: 24px;
  }
  .franchise-section__img img {
    aspect-ratio: unset;
    height: 260px;
  }

  /* ── News ── */
  .news-section {
    padding: 60px 24px 80px;
  }
  .news-section__layout {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  .news-section__left {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
  .news-section__hgroup {
    gap: 12px;
  }
  .news-item {
    padding: 16px 0 32px;
    align-items: flex-start;
  }
  .news-item__meta {
    width: auto;
    min-width: 90px;
    flex-shrink: 0;
    padding-right: 12px;
  }
  .news-item__time {
    font-size: 11px;
    margin-bottom: 0;
  }
  .news-item__tag {
    font-size: 11px;
    white-space: nowrap;
  }
  .news-item__title {
    font-size: 13px;
    padding-right: 100px;
  }

  /* ── Category Cards ── */
  .category-section {
    padding: 60px 0;
  }
  .category-section__track {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 24px;
  }
  .category-card {
    width: calc(50% - 6px);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    flex-shrink: 1;
  }
  .category-card__body {
    padding: 20px;
  }
  .category-card__ja {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .category-card__en {
    font-size: 18px;
  }
  .category-card__badge {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    bottom: 16px;
    right: 16px;
  }
  .category-card__badge svg {
    width: 16px;
    height: 16px;
  }

  /* ── Footer ── */
  .footer {
    padding: 30px 0 40px;
    gap: 0;
  }
  .footer__inner {
    max-width: 100%;
    padding: 24px 24px 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
  .footer__copy {
    text-align: center;
  }

}
