/* ========================================
   Header
======================================== */

.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
  color: #111;
}

.l-header-spacer {
  display: none;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 996px);
  min-height: 100px;
  margin-inline: auto;
}

.l-header__logo {
  width: 96px;
  margin: 0;
  flex: 0 0 auto;
}

.l-header__logo a,
.l-header__logo img {
  display: block;
  width: 100%;
}

.l-header__nav {
  margin-left: auto;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
}

.l-header__nav-item {
  position: relative;
  padding-inline: 20px;
}

.l-header__nav-item:first-child {
  padding-left: 0;
}
.l-header__nav-item:last-child {
  padding-right: 0;
}

.l-header__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  background: #111;
  translate: 0 -50%;
}

.l-header__nav-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.l-header__nav-item a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-header__menu-button,
.l-sp-menu,
.l-sp-menu-backdrop {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .l-header__nav-item a:hover::after {
    transform: scaleX(1);
  }
}

/*
 * PC / SP 共通
 * 通常ページ：初期位置では通常ヘッダー。
 * TOP：初期FVではヘッダーを画面外に置き、FV上に余白を作らない。
 */
.l-header--home {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1300;
  transform: translateY(-100%);
  transition: transform 0.63s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/*
 * 一度ヘッダー位置を通過した後はPC/SPとも固定ヘッダーとして扱い、
 * 上スクロール時だけ .is-scroll-visible で表示する。
 */
body.has-floating-header .l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1300;
  transform: translateY(-100%);
  transition: transform 0.63s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.has-floating-header .l-header.is-scroll-visible,
body.is-menu-open .l-header {
  transform: translateY(0);
}

.l-header.is-scroll-transition-disabled {
  transition: none !important;
}

/*
 * 下層ページは初期ヘッダーが通常フローにあるため、
 * fixedへ切り替わった時だけ同じ高さを確保してレイアウトジャンプを防ぐ。
 * TOPは初期からfixedのためスペーサー不要。
 */
body.has-floating-header:not(.home) .l-header-spacer {
  display: block;
  height: 100px;
}

@media (max-width: 767px) {
  .l-header__inner {
    width: min(calc(100% - 40px), 100%);
    min-height: 80px;
  }
  .l-header__logo {
    width: 82px;
  }

  body.has-floating-header:not(.home) .l-header-spacer {
    height: 80px;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__menu-button {
    position: relative;
    z-index: 1401;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  body.is-menu-open .l-header__menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1401;
  }

  /* 閉じている時は「＋」、開いた時は穏やかに回転して「×」 */
  .l-header__menu-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 24px;
    height: 1px;
    background: #111;
    transform-origin: center;
    transition: transform 0.675s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .l-header__menu-button span:nth-child(1) {
    transform: translate(-50%, -50%);
  }

  .l-header__menu-button span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .l-header__menu-button.is-open span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .l-header__menu-button.is-open span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(135deg);
  }

  /*
   * メニュー表示中はheader自体をメニューより上のレイヤーへ。
   * buttonはheaderのstacking context内にあるため、
   * これがないと開いたmenuに覆われて閉じられなくなる。
   */
  body.is-menu-open .l-header {
    z-index: 1300;
  }

  .l-sp-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition:
      opacity 0.5s ease,
      visibility 0.5s ease;
  }

  .l-sp-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /*
   * PDF指示：
   * ・メニュー枠は上から出現
   * ・中身は左から横方向へ出現
   */
  .l-sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    display: block;
    width: min(78vw, 320px);
    height: 100dvh;
    padding: 88px 32px 36px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events: none;
    transition:
      transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.32s,
      visibility 0s linear 1.37s;
  }

  .l-sp-menu.is-open {
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0s,
      visibility 0s linear 0s;
  }

  .l-sp-menu__content {
    display: grid;
    gap: 30px;
  }

  .l-sp-menu__list {
    display: grid;
    gap: 20px;
  }

  .l-sp-menu__item a {
    position: relative;
    display: inline-block;
    padding: 1px 0 3px;
    font-family: var(--font-ryo-gothic, "Noto Sans JP", sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
  }

  .l-sp-menu__item a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
  }

  .l-sp-menu__brands {
    display: grid;
    gap: 8px;
  }

  .l-sp-menu__brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 98px;
    padding: 16px 46px 14px 34px;
    overflow: hidden;
  }

  .l-sp-menu__brand--disney {
    background: linear-gradient(110deg, #118ac5 0%, #001523 100%);
  }

  .l-sp-menu__brand--magic {
    background: linear-gradient(110deg, #ffd36a 0%, #f15c53 100%);
  }

  .l-sp-menu__brand-logo {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 36px;
    object-fit: contain;
    object-position: left center;
  }

  .l-sp-menu__brand-logo--magic {
    max-height: 42px;
  }

  .l-sp-menu__brand-text {
    margin-top: 4px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .l-sp-menu__brand-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 22px;
    height: 22px;
  }

  .l-sp-menu__sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 8px;
  }

  .l-sp-menu__sns a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
  }

  .l-sp-menu__sns img {
    display: block;
    width: 30px;
    max-height: 30px;
    object-fit: contain;
  }

  /*
   * メニュー内容は位置を動かさず、
   * 左から右へマスクが開くように表示する。
   * panelの出現より少し遅らせ、上から順に軽くstaggerさせる。
   */
  .l-sp-menu__item,
  .l-sp-menu__brand,
  .l-sp-menu__sns {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transition: opacity 0.32s ease;
    will-change: opacity, clip-path;
  }

  .l-sp-menu.is-open .l-sp-menu__item,
  .l-sp-menu.is-open .l-sp-menu__brand,
  .l-sp-menu.is-open .l-sp-menu__sns {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition:
      opacity 0s linear,
      clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* 開く時だけ左→右のマスク表示。閉じる時は位置を変えずフェードアウト。 */
  .l-sp-menu:not(.is-open) .l-sp-menu__item,
  .l-sp-menu:not(.is-open) .l-sp-menu__brand,
  .l-sp-menu:not(.is-open) .l-sp-menu__sns {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transition:
      opacity 0.32s ease,
      clip-path 0s linear 0.32s;
  }


  @keyframes sp-menu-mask-reveal {
    from {
      clip-path: inset(0 100% 0 0);
    }
    to {
      clip-path: inset(0 0 0 0);
    }
  }

  .l-sp-menu.is-open .l-sp-menu__item,
  .l-sp-menu.is-open .l-sp-menu__brand,
  .l-sp-menu.is-open .l-sp-menu__sns {
    animation: sp-menu-mask-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .l-sp-menu.is-open .l-sp-menu__item:nth-child(1) { transition-delay: 0.34s; animation-delay: 0.34s; }
  .l-sp-menu.is-open .l-sp-menu__item:nth-child(2) { transition-delay: 0.37s; animation-delay: 0.37s; }
  .l-sp-menu.is-open .l-sp-menu__item:nth-child(3) { transition-delay: 0.40s; animation-delay: 0.40s; }
  .l-sp-menu.is-open .l-sp-menu__item:nth-child(4) { transition-delay: 0.43s; animation-delay: 0.43s; }
  .l-sp-menu.is-open .l-sp-menu__brand:nth-child(1) { transition-delay: 0.46s; animation-delay: 0.46s; }
  .l-sp-menu.is-open .l-sp-menu__brand:nth-child(2) { transition-delay: 0.49s; animation-delay: 0.49s; }
  .l-sp-menu.is-open .l-sp-menu__sns { transition-delay: 0.52s; animation-delay: 0.52s; }

  @media (prefers-reduced-motion: reduce) {
    .l-sp-menu,
    .l-sp-menu__item,
    .l-sp-menu__brand,
    .l-sp-menu__sns {
      transition-duration: 0.01ms;
      transition-delay: 0s !important;
    }

    .l-sp-menu__item,
    .l-sp-menu__brand,
    .l-sp-menu__sns {
      clip-path: inset(0 0 0 0);
    }
  }
}

/* ========================================
   Page header
======================================== */

/*
 * 下層ページのフルブリード幅基準。
 * 100vw は縦スクロールバー幅まで含む環境があるため、
 * .l-main を inline-size container とし cqw で実表示幅を取得する。
 */
.l-main {
  container-type: inline-size;
}

.c-page-header {
  position: relative;
  display: grid;
  place-items: center;

  width: 100cqw;
  height: 263.5682px;
  margin-left: calc(50% - 50cqw);
  margin-bottom: 20px;
}

.c-page-header::before,
.c-page-header::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;

  width: 23.1022px;
  height: 263.5682px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  transform: translateY(-50%);
  pointer-events: none;
}

.c-page-header::before {
  left: 0;
  background-image: url("../img/common/deco-page-title-left.webp");
}

.c-page-header::after {
  right: 0;
  background-image: url("../img/common/deco-page-title-right.webp");
}

.c-page-header__inner {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
  text-align: center;
}

.c-page-header__title {
  margin: 0;
  font-family: "Limelight", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}

.c-page-header__title-ja {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

/* 下層見出し：英字の後に日本語を左から順に表示 */
.js-heading-reveal .js-heading-reveal-char {
  display: inline-block;
}

body.is-heading-animation-ready
  .js-heading-reveal:not(.is-heading-revealed)
  .js-heading-reveal-char {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-0.25em);
}

body.is-heading-animation-ready
  .js-heading-reveal.is-heading-revealed
  .js-heading-reveal-char {
  animation: heading-character-reveal 0.58s cubic-bezier(0.22, 1, 0.36, 1)
    both;
  animation-delay: calc(
    var(--heading-base-delay, 0s) + var(--heading-char-index, 0) * 0.07s
  );
}

@keyframes heading-character-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-0.25em);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

/* ホバー中でも拡大前の実寸を取得するための一時的な計測状態 */
.is-guide-hover-measuring .p-series__thumbnail,
.is-guide-hover-measuring .p-magazine__thumbnail,
.is-guide-hover-measuring .p-article-detail__related-thumbnail {
  transition: none !important;
  transform: none !important;
}

@media (max-width: 767px) {
  .c-page-header {
    height: calc(100cqw * 112.1928 / 390);
    margin-bottom: 16px;
  }

  .c-page-header::before,
  .c-page-header::after {
    width: calc(100cqw * 9.8339 / 390);
    height: 100%;
    background-size: 100% 100%;
  }

  .c-page-header::before {
    left: 0;
  }

  .c-page-header::after {
    right: 0;
  }

  .c-page-header__title {
    font-size: 32px;
  }

  .c-page-header__title-ja {
    margin-top: 16px;
    font-size: 12px;
  }
}

/* ========================================
   Footer
======================================== */

.l-footer {
  background: #f0f0f0;
  color: #111;
}

/* ----------------------------------------
   Main
---------------------------------------- */

.l-footer__main {
  padding: 130px 0 54px;
}

.l-footer__inner {
  width: min(calc(100% - 48px), 996px);
  margin-inline: auto;
}

.l-footer__top {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  gap: 66px;
}

/* Company */

.l-footer__company {
  display: flex;
  align-items: center;
  gap: 28px;
}

.l-footer__company-logo {
  display: block;
  width: 94px;
  flex: 0 0 auto;
}

.l-footer__company-logo img {
  width: 100%;
  height: auto;
}

.l-footer__company-info {
  flex: 1;
  min-width: 0;
}

.l-footer__company-name {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.l-footer__address {
  margin: 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

/* Navigation */

.l-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 18px;
}

.l-footer__nav-item {
  position: relative;
  min-width: 0;
  padding-inline: 14px;
}

.l-footer__nav-item:nth-child(5n + 1) {
  padding-left: 0;
}

.l-footer__nav-item:nth-child(5n) {
  padding-right: 0;
}

.l-footer__nav-item:not(:nth-child(5n))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 14px;

  background: #111;
  translate: 0 -50%;
}

.l-footer__nav-item a {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;

  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;

}

.l-footer__nav-item a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-item a:hover::after {
    transform: scaleX(1);
  }
}

/* ----------------------------------------
   Brand banners
---------------------------------------- */

.l-footer__brand-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(100%, 800px);
  margin: 80px auto 0;
  gap: 40px;
}

.l-footer__brand-link {
  position: relative;
  display: block;

  width: 100%;
  height: 90px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
  will-change: transform;
}

.l-footer__brand-link--disney {
  background: linear-gradient(90deg, #005895 0%, #002c55 58%, #001b31 100%);
  padding: 24px 24px 24px 32px;
}

.l-footer__brand-link--magic {
  background: linear-gradient(90deg, #ffd276 0%, #f99a62 55%, #ef5e4f 100%);
  padding: 14px 24px 14px 32px;
}

.l-footer__brand-logo {
  position: absolute;
  left: 32px;
  bottom: 24px;
}

.l-footer__brand-logo--disney {
  width: 124px;
}

.l-footer__brand-logo--magic {
  width: 127px;
  bottom: 14px;
}

.l-footer__brand-text {
  position: absolute;
  left: 166px;
  bottom: 20px;
  font-family: "Limelight", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.l-footer__brand-arrow {
  position: absolute;
  right: 24px;
  bottom: 23px;
  width: 16px;
  height: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__brand-link:hover {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-heading-animation-ready
    .js-heading-reveal
    .js-heading-reveal-char {
    animation: none;
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .l-header__nav-item a::after,
  .l-footer__nav-item a::after,
  .l-footer__brand-link,
  .p-information__filter-button::after,
  .p-magazine__filter-button::after,
  .p-magazine__thumbnail,
  .p-article-detail__related-thumbnail,
  .p-series-detail__filter-button::after,
  .p-series-detail__lineup-link::before,
  .p-series-detail__magazine-item img,
  .p-company__map-link,
  .p-series-detail__other-items-link > span::after,
  .p-article-detail__back-link,
  .p-top-products__brand-link > span::after {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 767px) {
  .l-footer__brand-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .l-footer__brand-link {
    min-height: 88px;
    padding: 18px 54px 18px 24px;
  }

  .l-footer__brand-logo--disney {
    width: 155px;
  }

  .l-footer__brand-logo--magic {
    width: 140px;
  }

  .l-footer__brand-text {
    font-size: 14px;
  }

  .l-footer__brand-arrow {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

/* ----------------------------------------
   Official / SNS
---------------------------------------- */

.l-footer__official {
  border-top: 1px solid #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
}

.l-footer__official-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;

  min-height: 80px;
  padding: 16px 24px;
}

.l-footer__official-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin: 0;

  white-space: nowrap;
}

.l-footer__official-text {
  font-family: "Limelight", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.l-footer__official-line {
  display: block;

  width: 1px;
  height: 18px;

  background: #111;
}

.l-footer__sns {
  display: flex;
  align-items: center;
  gap: 52px;
}

.l-footer__sns-item a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  transition: opacity 0.2s ease;
}

.l-footer__sns-item img {
  display: block;
  width: 30px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__sns-item a:hover {
    opacity: 0.55;
  }
}

/* ----------------------------------------
   Bottom
---------------------------------------- */

.l-footer__bottom {
  padding: 52px 24px 54px;
}

.l-footer__bottom-inner {
  width: min(100%, 996px);
  margin-inline: auto;
  text-align: center;
}

.l-footer__notice {
  margin: 0;

  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.l-footer__legal {
  margin-top: 18px;
}

.l-footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-footer__legal-list a {
  position: relative;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.l-footer__legal-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__legal-list a:hover::after {
    transform: scaleX(1);
  }
}

.l-footer__copy {
  margin: 18px 0 0;

  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
}

/* ========================================
   Footer / Tablet
======================================== */

@media (max-width: 1023px) {
  .l-footer__main {
    padding: 64px 0;
  }

  .l-footer__top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
  }

  .l-footer__company {
    width: fit-content;
    margin-inline: auto;
    justify-content: flex-start;
  }

  .l-footer__nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 24px;
    width: 100%;
    justify-content: center;
  }

  .l-footer__nav-item {
    padding-inline: 14px;
  }

  .l-footer__nav-item:nth-child(5n + 1) {
    padding-left: 14px;
  }

  .l-footer__nav-item:nth-child(5n) {
    padding-right: 14px;
  }

  .l-footer__nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 14px;
    background: #111;
    translate: 0 -50%;
  }

  .l-footer__nav-item:nth-child(3n)::after {
    display: none;
  }
}

/* ========================================
   Footer / SP
======================================== */

@media (max-width: 767px) {
  .l-footer__main {
    padding: 64px 0 24px;
  }

  .l-footer__legal-list {
    gap: 8px 16px;
  }

  .l-footer__inner {
    width: min(calc(100% - 40px), 100%);
  }

  .l-footer__top {
    gap: 40px;
  }

  .l-footer__company {
    width: fit-content;
    margin-inline: auto;
    justify-content: flex-start;
    gap: 20px;
  }

  .l-footer__company-logo {
    width: 97.5289px;
  }

  .l-footer__company-logo img {
    width: 97.5289px;
    height: 81.2043px;
    object-fit: contain;
  }

  .l-footer__company-name {
    font-family: var(--font-ryo-gothic, "Noto Sans JP", sans-serif);
    font-size: 16px;
    font-weight: 700;
  }

  .l-footer__address {
    font-family: var(--font-ryo-gothic, "Noto Sans JP", sans-serif);
    font-size: 12px;
    font-weight: 400;
  }

  .l-footer__nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 24px;
    width: 100%;
    justify-content: center;
  }

  .l-footer__nav-item {
    padding-inline: 14px;
  }

  .l-footer__nav-item:nth-child(5n + 1) {
    padding-left: 14px;
  }

  .l-footer__nav-item:nth-child(5n) {
    padding-right: 14px;
  }

  .l-footer__nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 14px;
    background: #111;
    translate: 0 -50%;
  }

  .l-footer__nav-item:nth-child(3n)::after {
    display: none;
  }

  .l-footer__nav-item a {
    font-size: 12px;
    white-space: nowrap;
  }

  .l-footer__brand-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .l-footer__brand-link {
    height: 82px;
    min-height: 0;
    padding: 18px 20px 18px 32px;
  }

  .l-footer__brand-logo {
    left: 32px;
  }

  .l-footer__brand-logo--disney {
    width: 113.5467px;
    bottom: 18px;
  }

  .l-footer__brand-logo--magic {
    width: 117.2182px;
    bottom: 18px;
  }

  .l-footer__brand-text {
    left: 166px;
    bottom: 18px;
    font-size: 16px;
  }

  .l-footer__brand-arrow {
    right: 20px;
    bottom: 18px;
    width: 15px;
    height: 15px;
  }

  .l-footer__official-inner {
    flex-direction: column;
    gap: 22px;
    min-height: auto;
    padding: 30px 20px;
  }

  .l-footer__official-label {
    font-size: 14px;
  }

  .l-footer__sns {
    justify-content: space-between;
    gap: 0;
    width: min(100%, 273.8032px);
  }

  .l-footer__sns-item a {
    width: 30px;
    height: 30px;
  }

  .l-footer__bottom {
    padding: 20px;
  }

  .l-footer__notice,
  .l-footer__copy {
    font-size: 11px;
  }
}
