/* ============================================
   CUSTOM PROPERTIES
============================================ */
:root {
  /* Colors */
  --color-bg: #F5EEDE;
  --color-text: #383838;
  --color-text-light: #555;
  --color-text-muted: #666;
  --color-white: #fff;
  --color-brown: #6B4E3D;
  --color-pink: #E84B8A;
  --color-orange: #E8963F;

  /* Fonts */
  --font-maru: "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", sans-serif;
  --font-kaku: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  --font-serif: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;

  /* Header */
  --header-height: 80px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-maru);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  opacity: 0;
  animation: page-load 1.2s ease forwards;
}

@keyframes page-load {
  to {
    opacity: 1;
  }
}

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

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

ul {
  list-style: none;
}

.sp-br {
  display: none;
}
.sp-br2 {
  display: none;
}

/* ============================================
   HEADER
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  z-index: 1100;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-top: auto;
  padding-bottom: 12px;
}

.header__nav a {
  font-family: var(--font-kaku);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav a:hover {
  opacity: 1;
}

/* Contact */
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.header__contact-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__contact-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--color-white);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}

.header__phone .header__contact-icon {
  background: var(--color-pink);
}

.header__phone:hover {
  opacity: 0.6;
}

.header__mail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  transition: opacity 0.3s;
}

.header__mail:hover {
  opacity: 0.6;
}

.header__mail .header__contact-icon {
  background: var(--color-orange);
}

main{
  overflow: hidden;
}

/* ============================================
   FV
============================================ */
.fv {
  margin-top: var(--header-height);
  position: relative;
  width: 100%;
}

.fv__img {
  width: 100%;
  display: block;
}

.fv__overlay {
  position: absolute;
}

/* FV テキスト（ニュルっと） */
.fv__text-wrap {
  position: absolute;
  top: calc(40% - 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 5;
  padding-top: 50px;
  width: 66.4%;
}

.fv__text {
  display: block;
  animation: slide-up 1.0s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@keyframes slide-up {
  0% {
    transform: translateY(calc(100% + 50px)) rotate(8deg);
  }
  70% {
    transform: translateY(-4%) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* FV お菓子配置（テキスト後に順番表示） */
.fv__candy-01,
.fv__candy-02,
.fv__candy-03,
.fv__candy-04 {
  opacity: 0;
  animation: candy-appear 0.8s ease both;
}

.fv__candy-01 {
  left: 4%;
  bottom: 5%;
  width: 10.5%;
  z-index: 4;
  animation-delay: 1.1s;
}

.fv__candy-02 {
  left: 14%;
  bottom: 1.5%;
  width: 10.1%;
  z-index: 4;
  animation-delay: 1.3s;
}

.fv__candy-03 {
  right: 17%;
  bottom: 0%;
  width: 16%;
  z-index: 4;
  animation-delay: 1.5s;
}

.fv__candy-04 {
  right: 2%;
  bottom: 3%;
  width: 20%;
  z-index: 4;
  animation-delay: 1.7s;
}

@keyframes candy-appear {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   INTRO
============================================ */
.intro {
  padding: 120px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.intro__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro__photo {
  position: absolute;
  width: clamp(60px, 18.75vw, 360px);
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}

.intro__photo--left {
  right: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.intro__photo--right {
  width: clamp(95px, 29.58vw, 568px);
  right: -27.4vw;
  top: 92%;
  transform: translate(-50%, -50%);
}

.intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__text {
  text-align: center;
  max-width: 540px;
}

.intro__heading {
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.intro__body {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.intro__body p + p {
  margin-top: 24px;
}

/* ============================================
   WAKU WAKU BAND
============================================ */
.waku-band {
  margin-top: 60px;
  width: 100%;
  height: clamp(44px, 13.82vw, 210px);
  overflow: hidden;
  position: relative;
}

.waku-band__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: waku-scroll 20s linear infinite;
}

.waku-band__track img {
  height: 100%;
  width: auto;
  display: block;
}

@keyframes waku-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION TITLE (shared)
============================================ */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.section-title__en {
  font-family: var(--font-kaku);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
}

.section-title__en span {
  display: inline-block;
  opacity: 0;
}

.section-title__en.is-wave span {
  animation: title-wave 0.6s ease forwards;
}

.section-title__en.is-wave span:nth-child(1) { animation-delay: 0s; }
.section-title__en.is-wave span:nth-child(2) { animation-delay: 0.07s; }
.section-title__en.is-wave span:nth-child(3) { animation-delay: 0.14s; }
.section-title__en.is-wave span:nth-child(4) { animation-delay: 0.21s; }
.section-title__en.is-wave span:nth-child(5) { animation-delay: 0.28s; }
.section-title__en.is-wave span:nth-child(6) { animation-delay: 0.35s; }
.section-title__en.is-wave span:nth-child(7) { animation-delay: 0.42s; }

@keyframes title-wave {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title__en span:nth-child(7n+1) { color: #D23056; }
.section-title__en span:nth-child(7n+2) { color: #F2C039; }
.section-title__en span:nth-child(7n+3) { color: #2C70BD; }
.section-title__en span:nth-child(7n+4) { color: #DD74A1; }
.section-title__en span:nth-child(7n+5) { color: #64AC4C; }
.section-title__en span:nth-child(7n+6) { color: #872580; }
.section-title__en span:nth-child(7n)   { color: #D23056; }

.section-title__sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================
   RETAIL
============================================ */
.retail {
  padding: 80px 40px;
}

.retail__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.retail__photo {
  margin: 0 auto 48px;
  overflow: hidden;
}

.retail__photo img {
  width: 100%;
  display: block;
}

.retail__body {
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.retail__body p + p {
  margin-top: 24px;
}

.retail__items {
  text-align: center;
  font-size: 18px;
  color: var(--color-text);
  margin-top: 48px;
  letter-spacing: 0.04em;
}

.retail__notice {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
  color: var(--color-text);
}

.marker-white {
  background: linear-gradient(transparent 40%, #fff 40%, #fff 90%, transparent 90%);
}

/* ============================================
   EVENT
============================================ */
.event {
  padding: 80px 40px;
}

.event__inner {
  max-width: 800px;
  margin: 0 auto;
}

.event__photo {
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.event__photo img {
  width: 100%;
  display: block;
}

.event__heading {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 24px;
}

.event__body {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.event__contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-text);
  margin-top: 32px;
}

.event__contact-label a {
  text-decoration: underline;
}

.event__contact-icon {
  width: 28px;
  height: 28px;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event__contact-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
}

/* ============================================
   WELFARE
============================================ */
.welfare {
  padding: 80px 40px;
}

.welfare__inner {
  max-width: 800px;
  margin: 0 auto;
}

.welfare__photo {
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.welfare__photo img {
  width: 100%;
  display: block;
}

.welfare__heading {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 24px;
}

.welfare__body {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.welfare__contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-text);
  margin-top: 32px;
}

.welfare__contact-label a {
  text-decoration: underline;
}

.welfare__contact-icon {
  width: 28px;
  height: 28px;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.welfare__contact-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
}

/* ============================================
   CANDY CIRCLES
============================================ */
.candy-circles {
  padding: 40px 0;
  position: relative;
  height: clamp(72px, 22.4vw, 430px);
  margin-bottom: 80px;
}

.candy-circles__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.candy-circles__item {
  position: absolute;
  width: clamp(53px, 16.67vw, 320px);
  height: clamp(53px, 16.67vw, 320px);
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-white);
  animation: candy-float 3s ease-in-out infinite;
}

.candy-circles__item:nth-child(1) { left: -3%;  top: 5%;   animation-delay: 0s; }
.candy-circles__item:nth-child(2) { left: 10%;  top: 35%;  animation-delay: 0.5s; }
.candy-circles__item:nth-child(3) { left: 26%;  top: 0%;   animation-delay: 1.0s; }
.candy-circles__item:nth-child(4) { left: 42%;  top: 30%;  animation-delay: 0.3s; }
.candy-circles__item:nth-child(5) { left: 58%;  top: 5%;   animation-delay: 0.8s; }
.candy-circles__item:nth-child(6) { left: 73%;  top: 32%;  animation-delay: 1.3s; }
.candy-circles__item:nth-child(7) { left: 88%;  top: 2%;   animation-delay: 0.6s; }

.candy-circles__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes candy-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   RECRUIT
============================================ */
.recruit {
  padding: 80px 40px;
}

.recruit__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit__top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.recruit__photo {
  flex-shrink: 0;
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.recruit__photo img {
  width: 100%;
  display: block;
}

.recruit__appeal {
  flex: 1;
}

.recruit__catch {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.recruit__fit-label {
  display: inline-block;
  font-size: 16px;
  color: var(--color-text);
  border-radius: 30px;
  padding: 6px 32px;
  margin-bottom: 20px;
  background: #fff;
}

.recruit__fit-list {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

.recruit__fit-list li {
  list-style: none;
}

/* 募集要項 */
.recruit__detail {
  margin: 64px auto 0;
  background: var(--color-white);
  padding: 48px;
  border-radius: 4px;
  max-width: 900px;
}

.recruit__detail-heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 16px;
}

.recruit__detail-hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 32px;
}

.recruit__detail-grid {
  display: flex;
  gap: 48px;
}

.recruit__detail-col {
  flex: 1;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
}

.recruit__detail-col p + p {
  margin-top: 20px;
}

/* ============================================
   PARALLAX IMAGE
============================================ */
.parallax-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.parallax-img__inner {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
}

.parallax-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ============================================
   PROFILE
============================================ */
.profile {
  padding: 80px 40px;
}

.profile__inner {
  max-width: 800px;
  margin: 0 auto;
}

.profile__table {
  margin-top: 16px;
}

.profile__row {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
}

.profile__row dt {
  width: 160px;
  flex-shrink: 0;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.profile__row dd {
  flex: 1;
}

.profile__row dd a {
  color: var(--color-text);
}

/* ============================================
   ACCESS
============================================ */
.access {
  padding: 80px 40px;
}

.access__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.access__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.access__map {
  flex: 1;
  background: #ccc;
  border-radius: 8px;
  overflow: hidden;
  min-height: 450px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

.access__info {
  flex: 1;
}

.access__photo {
  margin-bottom: 24px;
  overflow: hidden;
}

.access__photo img {
  width: 100%;
  display: block;
}

.access__zip {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.access__address {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.access__route {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8;
}

/* ============================================
   PRIVACY POLICY
============================================ */
.privacy {
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 120px;
  max-width: 900px;
}

.privacy__inner {
  padding: 48px;
  max-height: 360px;
  overflow-y: auto;
}

.privacy__heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 24px;
}

.privacy__body {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.privacy__body p + p {
  margin-top: 16px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #644B11;
  padding: 48px 40px 32px;
  color: #fff;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__instagram {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 40px;
}

.footer__instagram svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__copyright {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.footer__company {
  text-align: right;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SCROLL ANIMATION
============================================ */
.fade-in {
  opacity: 0;
  transition: opacity 1.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
}

.fade-in.delay-1 { transition-delay: 0.3s; }
.fade-in.delay-2 { transition-delay: 0.6s; }

/* 下からふわっと */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.2s; }
.fade-in-up.delay-2 { transition-delay: 0.4s; }
.fade-in-up.delay-3 { transition-delay: 0.6s; }

/* ============================================
   FIXED INSTAGRAM
============================================ */
.fixed-instagram {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.fixed-instagram.is-show {
  opacity: 1;
  pointer-events: auto;
}

.fixed-instagram:hover {
  opacity: 0.7;
}

.fixed-instagram.is-show:hover {
  opacity: 0.7;
}

.fixed-instagram__icon {
  width: 32px;
  height: 32px;
}

.fixed-instagram__id {
  writing-mode: vertical-rl;
  font-family: var(--font-kaku);
  font-size: 13px;
  color: var(--color-text);
  letter-spacing: 0.06em;
}

/* ============================================
   MAIL POPUP
============================================ */
#mail-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

#mail-popup-overlay.is-show {
  display: flex;
}

#mail-popup {
  background: #fff;
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

#mail-popup p {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.mail-popup__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mail-popup__btn {
  display: block;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid #ccc;
  transition: background 0.3s;
}

.mail-popup__btn:hover {
  background: #f5f5f5;
}

.mail-popup__btn--gmail {
  background: var(--color-bg);
  border-color: var(--color-bg);
}

.mail-popup__btn--gmail:hover {
  background: #ebe0cc;
}

#mail-popup-close {
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 13px;
  color: #999;
  cursor: pointer;
}

/* ============================================
   HAMBURGER
============================================ */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.hamburger__line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2) { top: 11px; }
.hamburger__line:nth-child(3) { top: 22px; }

.hamburger.is-active .hamburger__line:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ============================================
   SP DRAWER
============================================ */
.drawer {
  display: none;
}

/* ============================================
   HEADER SP (950px) - hamburger switch
============================================ */
@media screen and (max-width: 950px) {
  :root {
    --header-height: 60px;
  }

  .header {
    padding: 0 16px;
    align-items: center;
  }

  .header__logo img {
    height: 36px;
  }

  .header__nav {
    display: none;
  }

  .header__contact {
    display: none;
  }

  /* Hamburger */
  .hamburger {
    display: block;
  }

  /* Drawer */
  .drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    z-index: 1050;
    padding: var(--header-height) 24px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

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

  .drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .drawer__nav a {
    font-family: var(--font-kaku);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.05em;
    padding: 16px 0;
    border-bottom: 1px solid rgba(56, 56, 56, 0.1);
    display: block;
  }

  .drawer__contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .drawer__contact .header__phone {
    font-size: 20px;
  }

  .drawer__contact .header__mail {
    font-size: 13px;
  }
}

/* ============================================
   SP (768px)
============================================ */
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  /* FV */
  .fv__text-wrap {
    width: 90%;
    top: calc(50% - 50px);
  }

  .fv__candy-01 {
    width: 20%;
    bottom: -8%;
  }

  .fv__candy-02 {
    width: 18.6%;
    bottom: -8%;
    left: 25%;
  }

  .fv__candy-03 {
    width: 26%;
    bottom: -8%;
    right: 25%;
  }

  .fv__candy-04 {
    width: 30%;
    bottom: -7%;
    right: 0%;
  }

  /* INTRO */
  .intro {
    padding: 25% 20px 0;
  }

  .intro__photo--left {
    width: clamp(140px, 23.5vw, 180px);
    right: 62%;
    top: 33.5%;
  }
  .intro__photo--right {
    width: clamp(240px, 29.58vw, 300px);
    height: auto;
    left: 80%;
    top: 126%;
  }

  .intro__heading {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: right;
  }

  .sp-br {
    display: block;
  }

  .intro__body {
    font-size: 14px;
  }

  /* WAKU WAKU BAND */
  .waku-band {
    height: 120px;
    margin-top: 100px;
  }

  /* RETAIL */
  .retail {
    padding: 80px 20px 48px;
  }

  .retail__body {
    font-size: 15px;
  }

  .retail__items {
    font-size: 16px;
    margin-top: 36px;
  }

  .retail__notice {
    font-size: 16px;
    margin-top: 32px;
  }

  /* EVENT */
  .event {
    padding: 48px 20px;
  }

  .event__body {
    font-size: 15px;
  }

  /* WELFARE */
  .welfare {
    padding: 48px 20px;
  }

  .welfare__body {
    font-size: 15px;
  }

  /* CANDY CIRCLES */
  .candy-circles {
    margin-bottom: 40px;
    height: clamp(120px, 30vw, 430px);
  }

  .candy-circles__item {
    width: clamp(100px, 26vw, 320px);
    height: clamp(100px, 26vw, 320px);
  }

  .candy-circles__item:nth-child(1) { left: -22%; top: 5%; }
  .candy-circles__item:nth-child(2) { left: -2%;  top: 35%; }
  .candy-circles__item:nth-child(3) { left: 20%;  top: 0%; }
  .candy-circles__item:nth-child(4) { left: 42%;  top: 30%; }
  .candy-circles__item:nth-child(5) { left: 64%;  top: 5%; }
  .candy-circles__item:nth-child(6) { left: 84%;  top: 32%; }
  .candy-circles__item:nth-child(7) { left: 102%; top: 2%; }

  /* RECRUIT */
  .recruit {
    padding: 48px 20px;
  }

  .recruit__top {
    flex-direction: column;
    gap: 24px;
  }

  .recruit__photo {
    width: 100%;
  }

  .recruit__catch {
    font-size: 20px;
    text-align: center;
  }

  .recruit__fit-label {
    display: block;
    text-align: center;
  }

  .recruit__appeal {
    margin: auto;
  }

  .recruit__detail {
    margin-top: 40px;
    padding: 32px 20px;
  }

  .recruit__detail-grid {
    flex-direction: column;
    gap: 24px;
  }

  /* PARALLAX IMAGE */
  .parallax-img {
    height: 240px;
  }

  /* PROFILE */
  .profile {
    padding: 48px 20px;
  }

  .profile__row {
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
  }

  .profile__row dt {
    width: auto;
    font-weight: 700;
  }

  /* ACCESS */
  .access {
    padding: 48px 20px;
  }

  .access__content {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .access__map {
    min-height: 300px;
  }

  .access__map iframe {
    min-height: 300px;
  }

  .access__route {
    font-size: 18px;
  }

  /* PRIVACY */
  .privacy {
    margin: 0 20px 80px;
  }

  .privacy__inner {
    padding: 32px 20px;
    max-height: 320px;
  }

  /* FOOTER */
  .footer {
    padding: 40px 20px 24px;
  }

  .footer__instagram {
    width: 40px;
    height: 40px;
    margin-bottom: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer__company {
    text-align: center;
    font-size: 13px;
  }

  .footer__copyright {
    font-size: 12px;
    order: 1;
  }
}


@media screen and (max-width: 480px) {
  .sp-br2 {
    display: block;
  }
  .intro__photo--left {
    right: 60%;
    top: 25.5%;
  }
}