.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: clamp(64px, 6vw, 92px);
}

.site-header__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.site-header__logo-link {
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 1.6vw, 20px);
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.header-toggle {
  flex: 0 0 auto;
  margin-left: auto;
}

.site-header__logo .custom-logo-link,
.site-header__logo .custom-logo {
  display: block;
}

.site-header__logo .custom-logo {
  width: auto;
  height: clamp(50px, 4vw, 64px);
  object-fit: contain;
}

.site-header__logo-text {
  color: var(--color-text);
  font-family: var(--font-en);
  font-size: clamp(15px, 2vw, 32px);
  letter-spacing: 0.08em;
}
.site-header__tagline {
  display: none;
  color: var(--color-text-light);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .site-header__tagline {
    display: inline-block;
  }
}

.header-toggle,
.drawer-close {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header-toggle__box,
.drawer-close__box {
  position: relative;
  width: clamp(58px, 5vw, 78px);
  height: clamp(58px, 5vw, 78px);
  display: grid;
  place-items: center;
  background: var(--color-text);
  border-radius: 0 0 0 20px;
  box-shadow: var(--shadow-soft);
}

.header-toggle__line,
.drawer-close__line {
  position: absolute;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-white);
}

.header-toggle__line:nth-child(1) {
  transform: translateY(-8px);
}

.header-toggle__line:nth-child(2) {
  transform: translateY(0);
}

.header-toggle__line:nth-child(3) {
  transform: translateY(8px);
}

.drawer-close__line:nth-child(1) {
  transform: rotate(45deg);
}

.drawer-close__line:nth-child(2) {
  transform: rotate(-45deg);
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}





.drawer-menu__heading {
  overflow: hidden;
  margin-bottom: 18px;
  padding-left: 6px;
}

.drawer-menu__eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: 0.18em;
  line-height: 1;
  color: #2f2a28;
  opacity: 0;
  transform: translateX(-34px);
}

.site-drawer.is-open .drawer-menu__eyebrow {
  animation: drawerMenuTitleIn 0.9s ease 0.18s forwards;
}

@keyframes drawerMenuTitleIn {
  0% {
    opacity: 0;
    transform: translateX(-34px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.site-drawer.is-open {
  pointer-events: auto;
}

.site-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 24, 0.28);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.site-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 720px);
  height: 100%;
  padding: 22px clamp(18px, 3vw, 34px) 26px;
  display: flex;
  flex-direction: column;
  background: rgba(252, 251, 248, 0.96);
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.site-drawer.is-open .site-drawer__overlay {
  opacity: 1;
}

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

.site-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.drawer-lang {
  position: relative;
}

.drawer-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
}

.drawer-lang__arrow {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.drawer-lang__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.drawer-lang.is-open .drawer-lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drawer-lang__dropdown ul {
  display: grid;
  gap: 0;
}

.drawer-lang__dropdown li a,
.drawer-lang__dropdown li span {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
}

.site-drawer__body {
  flex: 1 1 auto;
}

.drawer-menu + .drawer-menu {
  margin-top: 24px;
}

.drawer-menu__list {
  display: grid;
  gap: 14px;
}

.drawer-menu__list--main li a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: 0.06em;
}

.drawer-menu__list--main li a::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 12px;
  display: inline-block;
  background: var(--color-primary);
  flex-shrink: 0;
}




.drawer-menu__list--main li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 18px 22px;
  border: 1px solid rgba(60, 52, 45, 0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2f2a28;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.drawer-menu__list--main li a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.96);
}

.drawer-menu__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu__icon-svg,
.drawer-menu__icon-file {
  display: block;
  width: 100%;
  height: 100%;
}

.drawer-menu__icon-file svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.drawer-menu__text {
  display: inline-block;
}

.drawer-menu__list--main li a::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}


.drawer-menu__list--sub {
  gap: 10px;
}

.drawer-menu__list--sub li a {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-light);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.drawer-banners {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}


.drawer-banners__item img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.site-drawer__footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}


.drawer-cta {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.drawer-cta__button--faq {
  border: 1px solid var(--color-text);
  background: var(--color-white);
  color: var(--color-text);
}


/* =========================
   Drawer panel redesign
========================= */
@media (min-width: 1024px) {
  .site-drawer__panel {
    width: 50vw;
    max-width: none;
    min-width: 720px;
    padding: 34px 34px 34px;
    background: rgba(245, 242, 236, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-drawer__body {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
}

/* =========================
   Menu block background image
========================= */
.drawer-menu {
  position: relative;
}

.drawer-menu__list--main {
  gap: 18px;
  padding: 28px;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

/* =========================
   Main menu card
========================= */
.drawer-menu__list--main li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 18px 22px;
  border: 1px solid rgba(60, 52, 45, 0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2f2a28;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.drawer-menu__list--main li a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.96);
}



/* 右矢印 */
.drawer-menu__list--main li a::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}
/* =========================
   Main menu colorful cards - FGV tone
========================= */
.drawer-menu__list--main li a {
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.drawer-menu__list--main li:nth-child(1) a {
  border-left: 18px solid var(--color-accent);
}

.drawer-menu__list--main li:nth-child(2) a {
  border-left: 18px solid var(--color-accent-dark);
}

.drawer-menu__list--main li:nth-child(3) a {
  border-left: 18px solid #8c8172;
}

.drawer-menu__list--main li:nth-child(4) a {
  border-left: 18px solid var(--color-primary-dark);
}

.drawer-menu__list--main li:nth-child(5) a {
  border-left: 18px solid var(--color-primary);
}

.drawer-menu__list--main li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.08);
}
/* =========================
   Sub menu redesign
========================= */
.drawer-submenu-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.drawer-menu__list--sub {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-left: 22px;
  min-width: 180px;
}

.drawer-menu__list--sub li {
  position: relative;
  padding-left: 34px;
}


/* 長い縦線 */
.drawer-menu__list--sub li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -10px;
  bottom: -10px;
  width: 1px;
  background: rgba(90, 77, 67, 0.28);
}
/* 短い横線 */
.drawer-menu__list--sub li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: rgba(90, 77, 67, 0.38);
}


.drawer-menu__list--sub li:last-child::before {
  bottom: 50%;
}

.drawer-menu__list--sub li a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 16px;
  font-weight: 500;
  color: #4e433c;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, color 0.25s ease;
}

.drawer-menu__list--sub li a:hover {
  transform: translateX(6px);
  color: #1f1a17;
}

/* =========================
   Banner layout
========================= */
.drawer-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.drawer-banners__item {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.drawer-banners__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0,0,0,0.14);
}

.drawer-banners__item img {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
  display: block;
}
.drawer-banners__content {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: grid;
  gap: 4px;
  color: #fff;
  z-index: 2;
}

.drawer-banners__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.drawer-banners__text {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.92;
}


/* =========================
   Footer CTA redesign
========================= */
.site-drawer__footer {
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
}

.drawer-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}


/* =========================
   Small fine tuning
========================= */
@media (max-width: 1023px) {
  .drawer-banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drawer-cta {
    grid-template-columns: 1fr;
  }
}
/*SVG*/
/* =========================
   MENU ICON RESET
========================= */
.drawer-menu__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.drawer-menu__icon-file,
svg.drawer-menu__icon-file {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  flex-shrink: 0;
}

/* 左の古い丸装飾を消す */
.drawer-menu__list--main li a::before {
  content: none !important;
}

/* =========================
   menuicon1
========================= */
.drawer-menu__icon-file--menuicon1 #contents path {
  fill: #4f3d33 !important;
}

.drawer-menu__icon-file--menuicon1 #star1 path,
.drawer-menu__icon-file--menuicon1 #star2 path,
.drawer-menu__icon-file--menuicon1 #nagareboshi1 polygon,
.drawer-menu__icon-file--menuicon1 #nagareboshi2 polygon,
.drawer-menu__icon-file--menuicon1 #nagareboshi3 polygon {
  fill: #c8ae8d !important;
}

.drawer-menu__icon-file--menuicon1 #star1,
.drawer-menu__icon-file--menuicon1 #star2 {
  transform-box: fill-box;
  transform-origin: center;
  animation: menuStarTwinkle 2.2s ease-in-out infinite;
}

.drawer-menu__icon-file--menuicon1 #star2 {
  animation-delay: 0.7s;
}

@keyframes menuStarTwinkle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

.drawer-menu__icon-file--menuicon1 #nagareboshi1,
.drawer-menu__icon-file--menuicon1 #nagareboshi2,
.drawer-menu__icon-file--menuicon1 #nagareboshi3 {
  transform-box: fill-box;
  transform-origin: center;
  animation: menuShootingStar 3.4s linear infinite;
  opacity: 0;
}

.drawer-menu__icon-file--menuicon1 #nagareboshi2 {
  animation-delay: 0.9s;
}

.drawer-menu__icon-file--menuicon1 #nagareboshi3 {
  animation-delay: 1.8s;
}

@keyframes menuShootingStar {
  0% {
    opacity: 0;
    transform: translate(34px, -34px) scale(0.92);
  }
  12% {
    opacity: 1;
  }
  55% {
    opacity: 1;
    transform: translate(-18px, 18px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-48px, 48px) scale(0.96);
  }
}

/* =========================
   menuicon2
========================= */
.drawer-menu__icon-file--menuicon2 .cls-12,
.drawer-menu__icon-file--menuicon2 path {
  fill: #4f3d33 !important;
}

.drawer-menu__icon-file--menuicon2,
.drawer-menu__icon-file--menuicon2 svg {
  transform-origin: center;
  transform-box: fill-box;
  animation: cottageFloat 4.8s ease-in-out infinite;
}

/* =========================
   menuicon3
========================= */
.drawer-menu__icon-file--menuicon3 .cls-1,
.drawer-menu__icon-file--menuicon3 rect,
.drawer-menu__icon-file--menuicon3 polygon {
  fill: #604c3f !important;
}

.drawer-menu__icon-file--menuicon3,
.drawer-menu__icon-file--menuicon3 svg {
  transform-origin: center;
  transform-box: fill-box;
  animation: cottageFloat 4.8s ease-in-out infinite;
}

@keyframes cottageFloat {
  0%, 100% {
    transform: scale(0.96) translateY(0);
  }
  50% {
    transform: scale(0.975) translateY(-2px);
  }
}

/* =========================
   menuicon04
========================= */
.drawer-menu__icon-file--menuicon04 .cls-1,
.drawer-menu__icon-file--menuicon04 path {
  fill: #3f342e !important;
}

.drawer-menu__icon-file--menuicon04,
.drawer-menu__icon-file--menuicon04 svg {
  transform-origin: center;
  transform-box: fill-box;
  animation: trailerMove 3.8s ease-in-out infinite;
}

@keyframes trailerMove {
  0%, 100% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(-10px);
  }
}

/* =========================
   menuicon06
========================= */

/* 富士山 */
.drawer-menu__icon-file--menuicon06 #contents path {
  fill: #4f3d33 !important;
  transform-box: fill-box;
  transform-origin: center;
  animation: mtBreath 4.8s ease-in-out infinite !important;
}

/* 雲
   ※ 色は上書きしない。元SVGのまま */
.drawer-menu__icon-file--menuicon06 #_レイヤー_2 path {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
  animation: cloudFloat 6s ease-in-out infinite !important;
}

/* はみ出し許可 */
.drawer-menu__icon-file--menuicon06,
.drawer-menu__icon-file--menuicon06 svg {
  overflow: visible;
}

@keyframes mtBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes cloudFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, 0, 0);
  }
}

/* =========================
   Drawer footer promo
========================= */
.drawer-footer-brand__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.drawer-footer-brand__left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
.drawer-footer-brand__logo {
  flex: 0 0 auto;
}
.drawer-footer-brand__logo .custom-logo-link,
.drawer-footer-brand__logo .custom-logo {
  display: block;
}
.drawer-footer-brand__logo .custom-logo {
  width: auto !important;
  height: 52px !important;
  max-width: none;
  object-fit: contain;
}

.drawer-footer-brand__promo {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-left: auto;
}
.drawer-footer-brand__promo-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-footer-brand__promo-logo img {
  display: block;
  width: min(280px, 24vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.drawer-footer-brand__promo-bubble {
  position: relative;
  max-width: 260px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(60, 52, 45, 0.10);
}

.drawer-footer-brand__promo-bubble p {
  margin: 0;
  color: #2f2a28;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.drawer-footer-brand__promo-arrow {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #fff;
  border-top: 1px solid rgba(60, 52, 45, 0.10);
  border-left: 1px solid rgba(60, 52, 45, 0.10);
  transform: translateX(-50%) rotate(45deg);
}

/* 既存ロゴより少し大きく */
.drawer-footer-brand__promo-logo img {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.08));
}

@media (max-width: 1023px) {
  .drawer-footer-brand__main {
    flex-direction: column;
    align-items: stretch;
  }

  .drawer-footer-brand__left {
    width: 100%;
  }

  .drawer-footer-brand__promo {
    width: 100%;
    margin-left: 0;
    align-items: flex-end;
  }

  .drawer-footer-brand__promo-logo img {
    width: min(200px, 58vw);
  }

  .drawer-footer-brand__promo-bubble {
    max-width: 220px;
  }
}

.drawer-footer-brand__contact {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  flex: 1 1 auto;
  min-width: 180px;
}

.drawer-footer-brand__tel {
  color: #2f2a28;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-top: 0;
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}


.drawer-footer-brand__hours {
  margin: 0;
  font-size: 12px;
  color: #7c6e64;
  letter-spacing: 0.06em;
}

.drawer-footer-brand__copy {
  margin: 0;
  color: var(--color-text-light);
  font-size: 11px;
  line-height: 1.6;
}

.body.drawer-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-drawer__panel {
    width: min(50vw, 760px);
  }

  .drawer-banners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .drawer-sns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.drawer-footer-brand__left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  min-width: 0;
}

.drawer-footer-brand__logo,
.drawer-footer-brand__contact {
  align-self: flex-start;
}


/* =========================
   Drawer menu SVG animation
========================= */

/* レイヤー10 焚火 */
.drawer-menu__bg #_レイヤー_10 {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: drawerFlameFlicker 2.2s ease-in-out infinite;
}

/* レイヤー11 月 */
.drawer-menu__bg #_レイヤー_11 {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerMoonSwing 5.6s ease-in-out infinite;
}

/* レイヤー3 星 */
.drawer-menu__bg #_レイヤー_3 > path:first-child {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerStarPulse 2.8s ease-in-out infinite;
}

/* レイヤー5 細い星 */
.drawer-menu__bg #_レイヤー_5 {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerThinStarBreath 3.8s ease-in-out infinite;
}

/* レイヤー6 小さい星 */
.drawer-menu__bg #_レイヤー_6 {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerSmallStarPulse 2.4s ease-in-out infinite;
}

/* 少しランダム感を出す */
.drawer-menu__bg #_レイヤー_6 path:nth-child(2) { animation-delay: 0.4s; }
.drawer-menu__bg #_レイヤー_6 path:nth-child(3) { animation-delay: 0.9s; }
.drawer-menu__bg #_レイヤー_6 path:nth-child(4) { animation-delay: 0.2s; }
.drawer-menu__bg #_レイヤー_6 path:nth-child(5) { animation-delay: 1.1s; }

.drawer-menu__bg #_レイヤー_5 g:nth-child(2) { animation-delay: 0.4s; }
.drawer-menu__bg #_レイヤー_5 g:nth-child(3) { animation-delay: 0.8s; }
.drawer-menu__bg #_レイヤー_5 g:nth-child(4) { animation-delay: 1.2s; }

/* 個別アニメ指定 */
.drawer-menu__bg #_レイヤー_5 g {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerThinStarBreath 3.8s ease-in-out infinite;
}

/* レイヤー3 内の複数星も少し動かす */
.drawer-menu__bg #_レイヤー_3 path:nth-child(1) { animation-delay: 0s; }
.drawer-menu__bg #_レイヤー_3 path:nth-child(2) { animation-delay: 0.7s; }
.drawer-menu__bg #_レイヤー_3 path:nth-child(3) { animation-delay: 1.1s; }

.drawer-menu__bg #_レイヤー_3 path {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerStarPulse 3s ease-in-out infinite;
}

/* 焚火の中の炎っぽさを少し強く */
.drawer-menu__bg #_レイヤー_10 path {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: drawerFlameFlicker 1.9s ease-in-out infinite;
}

/* 月の線はゆっくり */
.drawer-menu__bg #_レイヤー_11 path {
  transform-box: fill-box;
  transform-origin: center;
  animation: drawerMoonSwing 5.6s ease-in-out infinite;
}

/* keyframes */
@keyframes drawerFlameFlicker {
  0%, 100% {
    transform: scale(1, 1) rotate(-1deg);
    opacity: 0.94;
  }
  20% {
    transform: scale(1.04, 0.97) rotate(1deg);
    opacity: 1;
  }
  40% {
    transform: scale(0.97, 1.05) rotate(-1.5deg);
    opacity: 0.92;
  }
  60% {
    transform: scale(1.03, 0.98) rotate(1.2deg);
    opacity: 1;
  }
  80% {
    transform: scale(0.99, 1.03) rotate(-0.8deg);
    opacity: 0.95;
  }
}

@keyframes drawerMoonSwing {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-6px) rotate(-2deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(6px) rotate(2deg);
  }
}

@keyframes drawerStarPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes drawerThinStarBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes drawerSmallStarPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}
/* =========================
   Drawer full background SVG
========================= */
.site-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.drawer-menu__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  overflow: hidden;
}

.site-drawer__head,
.site-drawer__body,
.site-drawer__footer {
  position: relative;
  z-index: 2;
}

.drawer-menu__bg-svg-wrap,
.drawer-menu__bg-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.drawer-menu__bg svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

/* 背景のベタ塗りを消す */
.drawer-menu__bg #contents .cls-9 {
  fill: transparent;
}
.drawer-menu__bg #_レイヤー_8 path,
.drawer-menu__bg #_レイヤー_9 path,
.drawer-menu__bg #_レイヤー_10 path {
  fill: #1f1f1c !important;
}

/* =========================
   Drawer map image
========================= */
.drawer-menu__map {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  margin: 10px auto 18px;
  pointer-events: none;
  opacity: 0.9;
}

.drawer-menu__map-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.06));
}
.drawer-menu__map-caption {
  margin: 14px auto 0;
  max-width: 300px;
  text-align: center;
  font-size: 13px;
  line-height: 1.95;
  color: #4e433c;
  letter-spacing: 0.08em;
  font-weight: 500;
}
/* =========================
  SP
========================= */
@media (max-width: 767px) {
   .drawer-banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
   .drawer-submenu-columns {
    flex-direction: column;
    gap: 4px;
  }

  .drawer-menu__list--sub {
    min-width: 100%;
  }
  .drawer-footer-brand__promo {
    align-items: center;
  }

  .drawer-footer-brand__promo-bubble {
    max-width: 100%;
  }
  .drawer-footer-brand__copy {
    margin: 20px 0;}
.drawer-footer-brand__contact {
    margin-left: 10%;}
  
 .drawer-banners__item {
    border-radius: 10px;}

  .drawer-menu__map {
    width: min(100%, 350px);
    margin: 8px auto 14px;
    opacity: 0.85;
  }
}
.site-drawer__footer {
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
}

.drawer-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

@media (max-width: 1023px) {
  .drawer-cta {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Header actions
========================= */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* =========================
   Header language switcher
========================= */
.header-lang {
  position: relative;
  flex: 0 0 auto;
}

.header-lang__toggle {
  appearance: none;
  border: 1px solid rgba(47, 42, 40, 0.12);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #2f2a28;
  width: clamp(58px, 5.2vw, 78px);
  height: clamp(58px, 5.2vw, 78px);
  border-radius: 0 0 0 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-lang__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.92);
}

.header-lang__icon {
  display: block;
  width: 18px;
  height: 18px;
  line-height: 1;
}

.header-lang__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 4px;
}

.header-lang__text {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-lang__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 10px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(47, 42, 40, 0.10);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}

.header-lang.is-open .header-lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-lang__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.header-lang__dropdown li {
  margin: 0;
}

.header-lang__dropdown a,
.header-lang__dropdown span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  color: #2f2a28;
  font-size: 14px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-lang__dropdown a:hover,
.header-lang__dropdown span:hover {
  background: rgba(47, 42, 40, 0.06);
  transform: translateX(2px);
}

.header-lang__dropdown .current-lang,
.header-lang__dropdown .current-menu-item > a {

  font-weight: 600;
}

/* SP */
@media (max-width: 767px) {
  .site-header__actions {
    gap: 8px;
  }

  .header-lang__toggle,
  .header-toggle__box {
    width: 59px;
    height: 59px;
    border-radius: 0 0 0 16px;
  }

  .header-lang__icon {
    width: 16px;
    height: 16px;
  }

  .header-lang__text {
    font-size: 10px;
  }

  .header-lang__dropdown {
    min-width: 160px;
    padding: 8px;
    border-radius: 16px;
  }

  .header-lang__dropdown a,
  .header-lang__dropdown span {
    min-height: 40px;
    font-size: 13px;
    padding: 0 12px;
  }
}
/* =========================
   Header lang dropdown fix
========================= */
.site-header,
.site-header__inner,
.site-header__actions,
.header-lang {
  overflow: visible;
}

.header-lang {
  position: relative;
  z-index: 300;
}

.header-lang__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1000;
}

/* Polylangの黒丸・を消す */
.header-lang__dropdown ul,
.header-lang__dropdown li,
.drawer-lang__dropdown ul,
.drawer-lang__dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* liの頭に付くマーカーも念のため消す */
.header-lang__dropdown li::marker,
.drawer-lang__dropdown li::marker {
  content: "";
}

/* 施設ページの追従UIより前に出す */
.site-header {
  position: relative;
  z-index: 500;
}
.site-drawer__head {
  position: relative;
  z-index: 30;
  overflow: visible;
}

.site-drawer__body {
  position: relative;
  z-index: 10;
}

.site-drawer__footer {
  position: relative;
  z-index: 10;
}

.site-drawer__panel {
  overflow-x: visible;
  overflow-y: auto;
}

.site-drawer__lang,
.drawer-lang {
  position: relative;
  z-index: 40;
  overflow: visible;
}

.drawer-lang__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 50;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 42, 40, 0.08);
}

.site-header__inner {
  min-height: 78px;
}