@layer reset, tokens, base, layout, components, menu, utilities;

/* 01. Reset */
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
  }

  button,
  img {
    font: inherit;
  }
}

/* 02. Design tokens */
@layer tokens {
  :root {
    --content-width: 1207px;
    --header-offset: clamp(10px, 1.8vw, 34px);
    --color-menu: #17a86b;
    --color-menu-focus: #0b6b45;
    --color-menu-text: #737373;
    --color-menu-rule: #e89400;
  }
}

/* 03. Base */
@layer base {
  html {
    overflow-x: clip;
    color: #222;
    background: #fff;
    font-family:
      "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, Meiryo,
      sans-serif;
  }

  body {
    min-width: 320px;
    overflow-x: clip;
  }

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

@media (min-width: 769px) and (max-width: 1919px) {
  :root {
    --header-offset: 34px;
  }

  /* body の zoom と vw/clamp による二重縮小を避ける */
  .site-header__logo {
    width: 527px;
  }

  @layer menu {
    .menu-button {
      width: 91px;
    }
  }

  .event-period {
    padding: 42px 50px 29px;
    border-width: 3px;
    border-radius: 20px;
  }

  .event-period__label,
  .event-period__year {
    font-size: 40px;
  }

  .event-period__dates {
    gap: 10px;
  }

  .event-period__month-day {
    font-size: 60px;
  }

  .event-period__weekday {
    width: 52px;
    font-size: 23px;
  }

  .event-period__separator,
  .event-period__note {
    font-size: 32px;
  }

  .event-about__person {
    left: -168px;
    width: 280px;
  }

  .event-about__rabbit {
    right: -215px;
    width: 220px;
  }
}

/* 04. Layout */
@layer layout {
  .site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .site-header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: var(--header-offset) var(--header-offset) var(--header-offset) 0;
  }

  .fv {
    position: relative;
    width: 100%;
    overflow: clip;
  }

  .fv__track {
    display: flex;
    transition: transform 500ms ease;
    touch-action: pan-y;
  }

  .fv__slide {
    position: relative;
    display: block;
    flex: 0 0 100%;
  }

  .fv__hotspot {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .fv__hotspot--top {
    bottom: 50%;
  }

  .fv__hotspot--bottom {
    top: 50%;
  }

  .fv__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .fv__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: clamp(52px, 6.25vw, 120px);
    aspect-ratio: 1;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .fv__arrow::before {
    position: absolute;
    top: 24%;
    left: 32%;
    width: 48%;
    height: 48%;
    border-top: clamp(7px, .7vw, 13px) solid rgb(255 255 255 / 72%);
    border-left: clamp(7px, .7vw, 13px) solid rgb(255 255 255 / 72%);
    content: "";
    transform: rotate(-45deg);
  }

  .fv__arrow--prev { left: clamp(6px, 1.4vw, 28px); }
  .fv__arrow--next { right: clamp(6px, 1.4vw, 28px); transform: translateY(-50%) rotate(180deg); }

  .fv__pagination {
    position: absolute;
    z-index: 3;
    bottom: clamp(10px, 1.5vw, 28px);
    left: 50%;
    display: flex;
    gap: clamp(12px, 1vw, 20px);
    transform: translateX(-50%);
  }

  .fv__dot {
    width: clamp(15px, 1.15vw, 22px);
    aspect-ratio: 1;
    padding: 0;
    border: 3px solid rgb(255 255 255 / 90%);
    border-radius: 50%;
    background: rgb(255 255 255 / 38%);
    cursor: pointer;
  }

  .fv__dot[aria-current="true"] { background: rgb(255 255 255 / 95%); }

  #self-care-consult,
  #self-care-main,
  #manga-contest,
  #special-movie {
    scroll-margin-top: 24px;
  }

  @media (min-width: 769px) {
    .fv {
      aspect-ratio: 16 / 9;
    }

    .fv__track,
    .fv__slide,
    .fv__image {
      height: 100%;
    }

    /* PCでは1280px表示でも1920px表示時と同じ操作UIサイズを維持する */
    .fv__arrow {
      width: 120px;
    }

    .fv__arrow::before {
      border-top-width: 13px;
      border-left-width: 13px;
    }

    .fv__pagination {
      bottom: 28px;
      gap: 20px;
    }

    .fv__dot {
      width: 22px;
    }
  }

  .event-title {
    width: 100%;
    overflow: hidden;
    background-color: #fff5ae;
    background-image:
      linear-gradient(rgb(219 199 104 / 16%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(219 199 104 / 16%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .event-title__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(calc(100% - 48px), 1384px);
    margin-inline: auto;
    padding-block: clamp(30px, 3.3vw, 64px) clamp(38px, 4vw, 78px);
  }

  .event-about {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: #fff;
    background-image:
      linear-gradient(rgb(180 186 183 / 18%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(180 186 183 / 18%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .event-about__inner {
    position: relative;
    width: min(calc(100% - 48px), 1384px);
    margin-inline: auto;
    padding-block: clamp(80px, 8vw, 154px) 80px;
  }

  .event-about__heading {
    position: relative;
    z-index: 3;
    display: block;
    width: min(100%, 1293px);
    margin-inline: auto;
    margin-bottom: -20px;
  }

  .event-about__heading img {
    width: 100%;
    height: auto;
  }

  .event-about__panel {
    --panel-bottom-height: 138px;

    position: relative;
    z-index: 2;
    width: min(100%, var(--content-width));
    min-height: 850px;
    margin-inline: auto;
    padding: 72px 120px 80px;
  }

  .event-about__panel::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: var(--panel-bottom-height);
    left: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background-image: url("../images/event-about/event-about-panel-repeat-y.png");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% 18px;
  }

  .event-about__panel::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: var(--panel-bottom-height);
    content: "";
    pointer-events: none;
    background: url("../images/event-about/event-about-panel-bottom.png")
      center bottom / 100% 100% no-repeat;
  }

  .event-about__content {
    position: relative;
    z-index: 2;
    color: #17120e;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.9;
    text-align: center;
    text-shadow:
      2px 0 0 #fff,
      -2px 0 0 #fff,
      0 2px 0 #fff,
      0 -2px 0 #fff,
      2px 2px 0 #fff,
      -2px 2px 0 #fff,
      2px -2px 0 #fff,
      -2px -2px 0 #fff;
  }

  .event-about__content p {
    margin: 0;
  }

  .event-about__line {
    display: block;
  }

  .event-about__content--sp {
    display: none;
  }

  .event-about__content p:last-child {
    margin-bottom: 0;
  }

  .event-about__message {
    font-size: 1.08em;
  }

  .event-about__person,
  .event-about__rabbit {
    position: absolute;
    z-index: 4;
    height: auto;
    pointer-events: none;
  }

  .event-about__person {
    bottom: 80px;
    left: clamp(-120px, -6.25vw, -85px);
    width: clamp(140px, 10.42vw, 200px);
  }

  .event-about__rabbit {
    top: 68px;
    right: -177px;
    bottom: auto;
    width: clamp(110px, 8.34vw, 160px);
  }

  .profile {
    background-color: #fff;
    background-image:
      linear-gradient(rgb(206 211 206 / 35%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(206 211 206 / 35%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .profile__inner {
    position: relative;
    width: min(calc(100% - 48px), 1384px);
    margin-inline: auto;
    padding: 18px 0 180px;
  }

  .profile__heading {
    position: relative;
    z-index: 3;
    width: 322px;
    margin: 0 auto 22px;
  }

  .profile__heading img,
  .profile__photo img,
  .profile__name img {
    width: 100%;
    height: auto;
  }

  .profile__card {
    position: relative;
    display: grid;
    grid-template-columns: 354px 1fr;
    gap: 40px;
    width: min(100%, var(--content-width));
    min-height: 496px;
    margin-inline: auto;
    padding: 48px;
    border: 6px solid #ed8b00;
    border-radius: 38px;
    background: #fff;
  }

  .profile__photo {
    align-self: center;
    overflow: hidden;
    border-radius: 25px;
  }

  .profile__body {
    align-self: center;
    min-width: 0;
  }

  .profile__name {
    width: 275px;
    margin: 0 0 28px;
  }

  .profile__text {
    color: #17120e;
    font-size: 21px;
    line-height: 1.42;
  }

  .profile__text p {
    margin: 0;
  }

  .profile__star,
  .profile__lollipop,
  .profile__heart {
    position: absolute;
    z-index: 2;
    height: auto;
    pointer-events: none;
  }

  .profile__star {
    top: 22px;
    right: 26px;
    width: 84px;
  }

  .profile__lollipop {
    bottom: -140px;
    left: -190px;
    width: 185px;
  }

  .profile__heart {
    top: -95px;
    right: -258px;
    width: 228px;
  }

  .special-movie {
    overflow: visible;
    background-color: #fff5ae;
    background-image:
      linear-gradient(rgb(219 199 104 / 16%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(219 199 104 / 16%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .special-movie__inner {
    position: relative;
    width: min(calc(100% - 48px), 1402px);
    margin-inline: auto;
    padding: 0 0 150px;
  }

  .special-movie__heading {
    display: block;
    z-index: 3;
    width: min(100%, 1402px);
    margin: 0 auto 8px;
    transform: translate(-65px, -62px);
  }

  .special-movie__heading img,
  .special-movie__poster,
  .special-movie__caption img {
    display: block;
    width: 100%;
    height: auto;
  }

  .special-movie-treasure {
    position: absolute;
    z-index: 4;
    top: -38px;
    right: -163px;
    width: 300px;
    aspect-ratio: 380 / 346;
  }

  .special-movie-treasure__button {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .special-movie-treasure__image,
  .special-movie-treasure__message,
  .special-movie-treasure__message img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  .special-movie-treasure__closed,
  .special-movie-treasure__open {
    transition: opacity 260ms ease;
  }

  .special-movie-treasure__open {
    opacity: 0;
  }

  .special-movie-treasure__message {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px) scale(.97);
    transition:
      visibility 0s linear 600ms,
      opacity 600ms ease,
      transform 600ms cubic-bezier(.22, 1, .36, 1);
  }

  .special-movie-treasure.is-open .special-movie-treasure__closed {
    opacity: 0;
  }

  .special-movie-treasure.is-open .special-movie-treasure__open {
    opacity: 1;
  }

  .special-movie-treasure.is-open .special-movie-treasure__button {
    animation: special-movie-treasure-pop 350ms ease;
  }

  .special-movie-treasure.is-open .special-movie-treasure__message {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 180ms;
  }

  .special-movie-treasure__button:focus-visible {
    border-radius: 12px;
    outline: 4px solid #0b6b45;
    outline-offset: 4px;
  }

  @keyframes special-movie-treasure-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  .special-movie__card {
    position: relative;
    z-index: 2;
    width: min(100%, 1243px);
    margin-inline: auto;
  }

  .special-movie__card--01 {
    margin-bottom: 88px;
  }

  .special-movie__caption {
    display: block;
    margin-inline: auto;
  }

  .special-movie__caption--01 {
    width: min(100%, 1243px);
    margin-top: 24px;
  }

  .special-movie__card--01 .special-movie__poster {
    width: min(100%, 1215px);
    margin-inline: auto;
  }

  .special-movie__card--02 .special-movie__poster {
    width: min(100%, 1203px);
    margin-inline: auto;
  }

  .special-movie__title--02 {
    width: min(92%, 1120px);
    margin-top: 18px;
  }

  .special-movie__description--02 {
    width: min(70%, 758px);
    margin-top: 6px;
  }

  .special-movie__decor {
    position: absolute;
    z-index: 1;
    height: auto;
    pointer-events: none;
  }

  .special-movie__decor--icecream {
    top: 700px;
    left: -170px;
    width: 230px;
  }

  .special-movie__decor--cat {
    top: 1290px;
    right: -230px;
    width: 300px;
  }

  .special-movie__decor--watermelon {
    top: 1800px;
    bottom: auto;
    left: -170px;
    width: 235px;
  }

  .sp-only { display: none; }

  .self-care {
    position: relative;
    padding: 70px 24px 100px;
    background-color: #fff;
    background-image:
      linear-gradient(rgb(178 190 184 / 20%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(178 190 184 / 20%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .self-care__panel {
    position: relative;
    box-sizing: border-box;
    width: min(100%, 1273px);
    min-height: 3307px;
    margin-inline: auto;
    padding: 70px 105px 120px;
    background: none;
  }

  .self-care__panel::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 360px;
    left: 0;
    background: url("../images/self-care/self-care-panel-repeat.png") center top / 100% 128px repeat-y;
    content: "";
  }

  .self-care__panel::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 360px;
    background: url("../images/self-care/self-care-panel-bottom.png") center bottom / 100% 100% no-repeat;
    content: "";
  }

  .self-care__panel > * { position: relative; z-index: 1; }
  .self-care picture,
  .self-care__cta { display: block; margin-inline: auto; }
  .self-care img { display: block; width: 100%; height: auto; }

  .self-care .self-care__consult-heading {
    left: auto;
    width: 1147px;
    max-width: none;
    margin-right: -32px;
    margin-bottom: 54px;
    margin-left: -52px;
    transform: none;
  }
  .self-care__video-link {
    display: block;
    width: min(100%, 830px);
    margin: 0 auto 92px;
  }

  .self-care .self-care__video {
    width: 100%;
    margin: 0;
  }
  .self-care__lead,
  .self-care__stress-text {
    margin: 0;
    color: #74400f;
    font-size: 42px;
    font-weight: 900;
    line-height: 2;
    text-align: center;
    -webkit-text-stroke: 0.5px currentcolor;
  }
  .self-care__lead--sp { display: none; }
  .self-care__consult-block { margin-top: 118px; }
  .self-care .self-care__consult-cta-heading {
    left: auto;
    width: 1138px;
    max-width: none;
    margin-right: -27.5px;
    margin-bottom: 18px;
    margin-left: -47.5px;
    transform: none;
  }
  .self-care__cta { width: min(76%, 802px); }
  .self-care__main-heading { width: 824px; max-width: none; margin-top: 110px; margin-bottom: 46px; }
  .self-care__stress-heading { width: 1052px; max-width: none; margin-bottom: 24px; }
  .self-care__stress-text { margin-bottom: 70px; }
  .self-care__cta + .self-care__cta { margin-top: 40px; }
  .self-care__cta--last { margin-bottom: 0; }

  .self-care__decor { position: absolute; z-index: 2; height: auto; pointer-events: none; }
  .self-care .self-care__decor--cake { top: 310px; left: -250px; width: 250px; }
  .self-care .self-care__decor--top-right { top: -215px; right: -220px; width: 180px; }
  .self-care .self-care__decor--flower { top: 860px; right: -280px; width: 210px; }
  .self-care .self-care__decor--person { top: 1320px; left: -285px; width: 491px; }
  .self-care .self-care__decor--rabbit { top: 2060px; right: -250px; width: 230px; }
  .self-care .self-care__decor--cola { top: 2230px; left: -230px; width: 200px; }
  .self-care .self-care__decor--backpack { bottom: -160px; left: -680px; width: 1000px; }
  .self-care .self-care__decor--cat { bottom: 60px; right: -285px; width: 275px; }
}

/* 05. Components: header / FV / content sections / footer */
@layer components {
  .site-header__logo {
    position: relative;
    width: clamp(176px, 27.45vw, 527px);
    aspect-ratio: 527 / 91;
    overflow: hidden;
  }

  .site-header__logo .site-header__logo-layer {
    position: absolute;
    top: -8.79%;
    left: -1.52%;
    width: 103.04%;
    max-width: none;
    height: auto;
  }

  .event-title__heading-image {
    width: min(100%, 1267px);
    height: auto;
  }

  .event-period {
    position: relative;
    width: max-content;
    max-width: 100%;
    margin-top: 48px;
    padding: clamp(35px, 2.2vw, 42px) clamp(28px, 2.6vw, 50px)
      clamp(22px, 1.5vw, 29px);
    border: clamp(2px, 0.18vw, 3px) solid #30b06e;
    border-radius: clamp(12px, 1vw, 20px);
    color: #30b06e;
    background: rgb(255 245 174 / 76%);
    font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-weight: 900;
    letter-spacing: 0.025em;
    -webkit-text-stroke: 0.5px currentcolor;
  }

  .event-period__label {
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    padding-inline: 14px;
    font-size: clamp(25px, 2.1vw, 40px);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    background: #fff5ae;
    transform: translate(-50%, -55%);
  }

  .event-period__dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 0.55vw, 10px);
    margin: 0;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .event-period__date {
    display: inline-flex;
    align-items: baseline;
    letter-spacing: 0.01em;
  }

  .event-period__year {
    font-size: clamp(25px, 2.1vw, 40px);
  }

  .event-period__month-day {
    font-size: clamp(36px, 3.1vw, 60px);
  }

  .event-period__weekday {
    display: grid;
    place-items: center;
    width: clamp(33px, 2.7vw, 52px);
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    font-size: clamp(15px, 1.2vw, 23px);
    background: #30b06e;
  }

  .event-period__separator,
  .event-period__note {
    font-size: clamp(19px, 1.65vw, 32px);
  }

  @media (max-width: 768px) {
    :root {
      --header-offset: clamp(8px, 3.2vw, 14px);
    }

    .site-header__logo {
      width: clamp(190px, 62vw, 240px);
      transform: translateY(7px);
    }

    .fv__arrow,
    .fv__pagination {
      display: none;
    }

    /* SP画像右端の9px透明余白を表示領域外へ逃がす */
    .fv__image {
      width: calc(100% * 385 / 376 + 1px);
      max-width: none;
      margin-left: -1px;
    }

    .fv {
      height: calc(390px * 490 / 376);
    }

    .event-title {
      background-size: 6px 6px;
    }

    .event-title__inner {
      width: min(calc(100% - 24px), 375px);
      padding-block: 24px 36px;
    }

    .event-about {
      background-size: 6px 6px;
    }

    .event-about__inner {
      width: calc(100% - 24px);
      padding-block: 10px 8px;
    }

    .event-about__heading {
      width: min(100%, 317px);
      margin-bottom: -126px;
      transform: translateY(31px);
    }

    .event-about__panel {
      --panel-bottom-height: 41px;

      width: 100%;
      min-height: 636px;
      padding: 190px 10px 132px;
    }

    .event-about__content {
      font-size: clamp(15px, 4.35vw, 17px);
      line-height: 2;
      text-shadow:
        1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;
    }

    .event-about__content--pc {
      display: none;
    }

    .event-about__content--sp {
      display: block;
    }

    .event-about__content p {
      margin-bottom: 0;
    }

    .event-about__line {
      display: block;
    }

    .event-about__person {
      display: none;
    }

    .event-about__rabbit {
      top: auto;
      right: 50%;
      bottom: -4px;
      width: 90px;
      transform: translateX(50%);
    }

    .profile {
      background-size: 6px 6px;
    }

    .profile__inner {
      width: calc(100% - 24px);
      padding: 0 0 22px;
    }

    .profile__heading {
      width: 176px;
      margin-bottom: 28px;
      transform: translateX(-18px);
    }

    .profile__card {
      display: block;
      width: 100%;
      min-height: 0;
      padding: 34px 16px 24px;
      border-width: 3px;
      border-radius: 22px;
    }

    .profile__photo {
      display: block;
      width: 181px;
      margin: 0 auto 16px;
      border-radius: 12px;
    }

    .profile__name {
      width: 132px;
      margin: 0 auto 22px;
    }

    .profile__text {
      font-size: 12px;
      line-height: 1.48;
    }

    .profile__star {
      top: -60px;
      right: 34px;
      width: 42px;
    }

    .profile__lollipop {
      top: 170px;
      bottom: auto;
      left: 3px;
      width: 78px;
    }

    .profile__heart {
      top: 4px;
      right: -10px;
      width: 95px;
    }

    .special-movie {
      background-size: 6px 6px;
    }

    .special-movie__inner {
      width: calc(100% - 24px);
      padding-bottom: 40px;
    }

    .special-movie__heading {
      width: 100%;
      margin-bottom: 42px;
      transform: none;
    }

    .special-movie-treasure {
      top: 23px;
      right: -13px;
      width: clamp(118px, 34vw, 148px);
    }

    .special-movie__card {
      width: 100%;
    }

    .special-movie__card--01 {
      margin-bottom: 48px;
    }

    .special-movie__caption--01 {
      width: 100%;
      margin-top: 12px;
    }

    .special-movie__title--02 {
      width: min(100%, 314px);
      margin-top: 18px;
    }

    .special-movie__description--02 {
      width: min(100%, 337px);
      margin-top: 10px;
    }

    .special-movie__decor {
      display: none;
    }

    .pc-only { display: none; }
    .sp-only { display: initial; }

    .self-care {
      margin-top: 40px;
      padding: 0 12px 36px;
      background-size: 6px 6px;
    }

    .self-care__panel {
      width: min(100%, 373px);
      min-height: 1720px;
      padding: 24px 24px 60px;
      background-size: 100% auto;
    }

    .self-care__panel::after {
      height: 106px;
    }

    .self-care__panel::before {
      bottom: 106px;
      background-size: 100% auto;
    }

    .self-care .self-care__consult-heading {
      left: auto;
      width: 336px;
      max-width: 100%;
      margin-right: auto;
      margin-bottom: 28px;
      margin-left: auto;
      transform: none;
    }

    .self-care__video-link {
      width: 100%;
      margin-bottom: 38px;
    }

    .self-care__lead,
    .self-care__stress-text {
      font-size: 17px;
      line-height: 2;
    }

    .self-care__lead--pc { display: none; }
    .self-care__lead--sp { display: block; }

    .self-care__consult-block {
      z-index: 3;
      margin-top: 325px;
    }
    .self-care .self-care__consult-cta-heading { left: auto; width: 255px; margin-right: auto; margin-bottom: 8px; margin-left: auto; transform: none; }
    .self-care__cta { width: 100%; }
    .self-care__main-heading { width: 291px; margin-top: 40px; margin-bottom: 18px; }
    .self-care__stress-heading { width: 100%; margin-bottom: 14px; }
    .self-care__stress-text { margin-bottom: 14px; }
    .self-care__cta + .self-care__cta { margin-top: 16px; }

    .self-care__decor { display: none; }
    .self-care .self-care__decor--person {
      display: block;
      top: 590px;
      left: calc(50% - 31px);
      width: 290px;
      transform: translateX(-50%);
    }

    .event-title__heading-image {
      width: min(100%, 350px);
    }

    .event-period {
      width: min(100%, 360px);
      margin-top: 22px;
      padding: 22px 6px 13px;
      border-width: 2px;
      border-radius: 10px;
    }

    .event-period__label {
      padding-inline: 8px;
      font-size: clamp(13px, 4.25vw, 16px);
    }

    .event-period__dates {
      gap: 2px;
    }

    .event-period__year {
      font-size: clamp(13px, 3.6vw, 14px);
    }

    .event-period__month-day {
      font-size: clamp(21px, 6.15vw, 24px);
    }

    .event-period__weekday {
      width: clamp(18px, 5.15vw, 20px);
      font-size: clamp(8px, 2.55vw, 10px);
    }

    .event-period__separator,
    .event-period__note {
      font-size: clamp(11px, 3.1vw, 12px);
    }
  }
}

@layer components {
  .app-promotion {
    position: relative;
    min-height: 1800px;
    overflow: hidden;
    padding: 55px 0 90px;
    background-color: #fff;
    background-image:
      linear-gradient(rgb(178 190 184 / 20%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(178 190 184 / 20%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .app-promotion img { height: auto; }

  .app-promotion__inner { position: relative; z-index: 2; width: var(--content-width); margin: 0 auto; }
  .app-promotion__heading { width: 1042px; margin: 0 auto 35px; }
  .app-promotion__message { width: 810px; margin: 0 auto 28px; }
  .app-promotion__card { position: relative; padding: 65px 70px 70px; border: 5px solid #27ad72; border-radius: 43px; background: #fff; }
  .app-promotion__logo { width: 1049px; max-width: none; margin: 0 auto 38px; }
  .app-promotion__details { position: relative; min-height: 700px; }
  .app-promotion__features { position: relative; z-index: 2; width: 900px; margin: 0; padding: 0; color: #23ad75; font-size: 36px; font-weight: 900; line-height: 1.42; list-style: none; -webkit-text-stroke: 0.5px currentcolor; }
  .app-promotion__features li { position: relative; padding-left: 30px; white-space: nowrap; }
  .app-promotion__features li::before { position: absolute; top: 50%; left: 0; width: 22px; height: 22px; border-radius: 50%; background: #ec6194; content: ""; transform: translateY(-50%); }
  .app-promotion__screen-wrap { position: absolute; right: -2px; bottom: 0; width: 587px; }
  .app-promotion__screen { width: 587px; max-width: none; }
  .app-promotion__stores { position: relative; z-index: 3; margin-top: 25px; }
  .app-promotion__install-heading { width: 539px; margin: 0 auto 34px; }
  .app-promotion__store-list { display: flex; justify-content: center; gap: 105px; }
  .app-promotion__store { width: 351px; color: #6c3100; text-align: center; }
  .app-promotion__store-link { display: block; }
  .app-promotion__store p { margin: 28px 0 0; font-size: 32px; font-weight: 900; -webkit-text-stroke: 0.5px currentcolor; }
  .app-promotion__decor { position: absolute; pointer-events: none; }
  .app-promotion__decor--lantern { z-index: 3; top: 475px; left: max(0px, calc(50% - 890px)); width: 247px; max-width: none; }
  .app-promotion__decor--star-top { z-index: 3; top: 128px; left: max(220px, calc(50% - 650px)); width: 75px; max-width: none; }
  .app-promotion__decor--person { z-index: 3; top: 15px; right: max(10px, calc(50% - 900px)); width: 376px; max-width: none; }
  .app-promotion__decor--phone { right: 700px; bottom: 40px; width: 255px; max-width: none; }
  .app-promotion__decor--star-card { display: none; }
  .app-promotion__decor--star-card-bottom { display: none; }

  @media (max-width: 768px) {
    .app-promotion { min-height: 0; padding: 14px 12px 16px; background-size: 6px 6px; }
    .app-promotion__inner { width: 100%; }
    .app-promotion__heading { width: min(85%, 310px); margin: 0 auto 14px; }
    .app-promotion__message { width: min(83%, 285px); margin-bottom: 12px; }
    .app-promotion__card { padding: 27px 14px 30px; border-width: 3px; border-radius: 20px; }
    .app-promotion__logo { width: 100%; max-width: 100%; margin-bottom: 18px; }
    .app-promotion__details { display: flex; min-height: 0; flex-direction: column; }
    .app-promotion__features { order: 2; width: 100%; margin-top: 24px; font-size: clamp(12px, 3.35vw, 15px); line-height: 1.55; }
    .app-promotion__features li { padding-left: 18px; white-space: nowrap; }
    .app-promotion__features li::before { top: calc(50% - 2px); width: 13px; height: 13px; }
    .app-promotion__screen-wrap { position: relative; right: auto; bottom: auto; order: 1; width: 82%; margin: 0 auto; }
    .app-promotion__screen { width: 100%; max-width: 100%; }
    .app-promotion__stores { margin-top: 30px; }
    .app-promotion__install-heading { width: 68%; margin-bottom: 15px; }
    .app-promotion__store-list { gap: 20px; }
    .app-promotion__store { width: calc(50% - 10px); }
    .app-promotion__store p { margin-top: 12px; font-size: clamp(12px, 3.6vw, 16px); }
    .app-promotion__decor--lantern, .app-promotion__decor--person, .app-promotion__decor--star-top { display: none; }
    .app-promotion__decor--phone { right: -25%; bottom: -12%; width: 40%; }
    .app-promotion__decor--star-card { display: block; top: 4%; right: -7%; width: 10%; }
    .app-promotion__decor--star-card-bottom { display: block; top: 76%; left: -9%; width: 16%; }
  }
}

@layer components {
  .manga-contest {
    position: relative;
    overflow: hidden;
    padding: 75px 0 110px;
    background-color: #fff;
    background-image:
      linear-gradient(rgb(178 190 184 / 20%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(178 190 184 / 20%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .manga-contest__inner {
    position: relative;
    z-index: 2;
    width: 1208px;
    margin: 0 auto;
  }

  .manga-contest img {
    height: auto;
  }

  .manga-contest__card {
    position: relative;
    width: 1208px;
    height: 2045px;
  }

  .manga-contest__background {
    position: absolute;
    inset: 0;
  }

  .manga-contest__background picture,
  .manga-contest__background img {
    display: block;
    width: 100%;
    height: auto;
  }

  .manga-contest__heading-image,
  .manga-contest__person,
  .manga-contest__rabbit,
  .manga-contest__entry-notice,
  .manga-contest__campaign {
    position: absolute;
    z-index: 2;
  }

  .manga-contest__heading-image {
    top: -72px;
    left: 90px;
    width: 1231px;
  }

  .manga-contest__heading-image img {
    width: 100%;
  }

  .manga-contest__person {
    top: 340px;
    left: -225px;
    width: 453px;
  }

  .manga-contest__person img {
    width: 100%;
    height: auto;
  }

  .manga-contest__body {
    position: absolute;
    z-index: 1;
    top: 625px;
    left: 154px;
    width: 900px;
    color: #261810;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.55;
    text-align: center;
    -webkit-text-stroke: 0.5px currentcolor;
  }

  .manga-contest__body p {
    margin: 0;
  }

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

  .manga-contest__body p:last-child {
    margin-top: 66px;
  }

  .manga-contest__rabbit {
    top: 1070px;
    right: -45px;
    width: 318px;
  }

  .manga-contest__entry-notice {
    top: 1515px;
    left: 364px;
    width: 480px;
  }

  .manga-contest__campaign {
    top: 1695px;
    left: 98px;
    width: 1013px;
  }

  .manga-contest__campaign img {
    width: 100%;
    height: auto;
  }

  .manga-contest__decor {
    position: absolute;
    z-index: 3;
    height: auto;
    pointer-events: none;
  }

  .manga-contest__decor--glue {
    top: 1370px;
    left: max(15px, calc(50% - 890px));
    width: 220px;
  }

  .manga-contest__decor--crow {
    top: 550px;
    right: max(15px, calc(50% - 910px));
    width: 240px;
  }

  @media (max-width: 768px) {
    .manga-contest {
      padding: 62px 12px 10px;
      background-size: 6px 6px;
    }

    .manga-contest__inner {
      width: 348px;
    }

    .manga-contest__card {
      width: 348px;
    }

    .manga-contest__card {
      height: auto;
      aspect-ratio: 694 / 1831;
    }

    .manga-contest__heading-image {
      top: -40px;
      left: 6px;
      width: 336px;
    }

    .manga-contest__body {
      top: 185px;
      left: 25px;
      width: calc(100% - 50px);
      font-size: clamp(13px, 4.05vw, 16px);
      line-height: 1.9;
    }

    .manga-contest__body p + p {
      margin-top: 8px;
    }

    .manga-contest__body p:last-child {
      margin-top: 30px;
    }

    .manga-contest__pc-break {
      display: none;
    }

    .manga-contest__person {
      z-index: 3;
      top: 548px;
      left: 62px;
      width: 210px;
    }

    .manga-contest__rabbit,
    .manga-contest__decor {
      display: none;
    }

    .manga-contest__entry-notice {
      top: 759px;
      left: 97px;
      width: 155px;
    }

    .manga-contest__campaign {
      top: 817px;
      left: 18px;
      width: 312px;
    }
  }
}

@layer components {
  .site-links {
    position: relative;
    overflow: hidden;
    padding: 70px 0 50px;
    background-color: #fff;
    background-image:
      linear-gradient(rgb(178 190 184 / 20%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(178 190 184 / 20%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .site-links__inner {
    position: relative;
    width: 1251px;
    margin: 0 auto;
  }

  .site-links img {
    height: auto;
  }

  .site-links__heading {
    display: block;
    width: 1162px;
    margin: 0 auto 20px;
  }

  .site-links__heading img {
    width: 100%;
  }

  .site-links__person-sp {
    display: none;
  }

  .site-links__description {
    position: relative;
    z-index: 1;
    width: 930px;
    margin: -115px 10px 40px auto;
    color: #727171;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.65;
    text-align: center;
    -webkit-text-stroke: 0.5px currentcolor;
  }

  .site-links__description--sp {
    display: none;
  }

  .site-links__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-links__item + .site-links__item {
    margin-top: 58px;
  }

  .site-links__lead {
    margin: 0 0 12px;
    color: #201711;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.45;
    text-align: center;
    -webkit-text-stroke: 0.5px currentcolor;
  }

  .site-links__item:nth-child(2) .site-links__lead {
    margin-bottom: -35px;
    color: #00aca8;
    font-size: 36px;
    transform: translateX(61px);
  }

  .site-links__item:nth-child(3) .site-links__lead {
    margin-bottom: -35px;
    color: #e66697;
    font-size: 36px;
    transform: translateX(61px);
  }

  .site-links__item:nth-child(4) .site-links__lead {
    width: 1145px;
    margin-bottom: -14px;
    margin-right: 0;
    margin-left: auto;
    color: #30b06e;
    font-size: 36px;
  }

  .site-links__item:nth-child(4) .site-links__card {
    transform: scale(0.915);
  }

  .site-links__sp-break {
    display: none;
  }

  .site-links__card {
    width: fit-content;
    margin-inline: auto;
    transform: scale(0.9);
    transform-origin: right bottom;
  }

  .site-links__card img {
    width: auto;
    max-width: none;
  }

  @media (max-width: 768px) {
    .site-links {
      padding: 44px 12px 16px;
      background-size: 6px 6px;
    }

    .site-links__inner {
      width: min(100%, 362px);
    }

    .site-links__heading {
      width: min(100%, 318px);
      margin-bottom: 8px;
    }

    .site-links__person-sp {
      display: block;
      width: 104px;
      margin: 8px auto 18px;
    }

    .site-links__description {
      width: auto;
      margin: 0 auto;
      font-size: clamp(13px, 4vw, 16px);
      line-height: 1.8;
    }

    .site-links__description--pc {
      display: none;
    }

    .site-links__description--sp {
      display: block;
      margin-top: 16px;
    }

    .site-links__item + .site-links__item {
      margin-top: 30px;
    }

    .site-links__lead {
      margin-bottom: 7px;
      font-size: clamp(13px, 3.85vw, 15px);
      line-height: 1.45;
      white-space: nowrap;
    }

    .site-links__sp-break {
      display: none;
    }

    .site-links__card {
      width: 100%;
      transform: none;
    }

    .site-links__item:nth-child(4) .site-links__card {
      transform: scale(1.03);
      transform-origin: right bottom;
    }

    .site-links__card img {
      width: 100%;
      max-width: 100%;
    }

    .site-links__item:nth-child(2) .site-links__lead,
    .site-links__item:nth-child(3) .site-links__lead {
      margin-bottom: 2px;
      font-size: clamp(13px, 3.85vw, 15px);
      transform: none;
    }

    .site-links__item:nth-child(4) .site-links__lead {
      width: auto;
      margin-bottom: 7px;
      margin-right: 0;
      margin-left: 0;
      font-size: clamp(13px, 3.85vw, 15px);
    }
  }
}

@layer components {
  .site-footer {
    color: #333;
    background-color: #fff;
    background-image:
      linear-gradient(rgb(178 190 184 / 20%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(178 190 184 / 20%) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .site-footer__visual {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 80px;
    text-align: center;
  }

  .site-footer__contact {
    position: relative;
    z-index: 2;
    font-size: 34px;
    line-height: 1.65;
  }

  .site-footer__label,
  .site-footer__department,
  .site-footer__contact-list {
    margin: 0;
  }

  .site-footer__label {
    margin-top: 22px;
    font-weight: 700;
    letter-spacing: .3em;
  }

  .site-footer__department + .site-footer__label {
    margin-top: 60px;
  }

  .site-footer__contact-list > div {
    display: flex;
    justify-content: center;
  }

  .site-footer__contact-list dt,
  .site-footer__contact-list dd {
    margin: 0;
  }

  .site-footer__copyright {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 74px;
    place-items: center;
    padding: 14px 20px;
    color: #fff;
    background: #365a9d;
    font-size: 34px;
    text-align: center;
  }

  .site-footer__accordion {
    width: min(calc(100% - 64px), 1200px);
    margin: 0 auto;
    padding: 86px 0 130px;
  }

  .site-footer__accordion-item + .site-footer__accordion-item {
    margin-top: 70px;
  }

  .site-footer__accordion-item h3 {
    margin: 0;
  }

  .site-footer__accordion-button {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 70px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 28px;
    border: 0;
    color: #333;
    background: #d5d5d5;
    font-size: 34px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

  .site-footer__accordion-icon {
    position: relative;
    order: -1;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
  }

  .site-footer__accordion-icon::before,
  .site-footer__accordion-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
  }

  .site-footer__accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
  }

  .site-footer__accordion-button[aria-expanded="true"] .site-footer__accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .site-footer__accordion-button:focus-visible {
    outline: 4px solid #0b6b45;
    outline-offset: 4px;
  }

  .site-footer__accordion-panel {
    padding: 46px 56px;
    background: #f0f0f0;
    font-size: 34px;
    line-height: 1.8;
  }

  .site-footer__accordion-panel[hidden] {
    display: none;
  }

  .site-footer__accordion-panel p {
    margin: 0;
  }

  .site-footer__accordion-panel p + p {
    margin-top: 18px;
  }

  .site-footer__accordion-panel a {
    overflow-wrap: anywhere;
    color: #174f91;
  }

  @media (max-width: 768px) {
    .site-footer {
      background-size: 6px 6px;
    }

    .site-footer__visual {
      padding: 12px 16px 40px;
    }

    .site-footer__contact {
      font-size: 16px;
    }

    .site-footer__label {
      margin-top: 14px;
    }

    .site-footer__department + .site-footer__label {
      margin-top: 30px;
    }

    .site-footer__contact-list dd {
      overflow-wrap: anywhere;
    }

    .site-footer__contact-list > div:last-child { white-space: nowrap; }

    .site-footer__copyright {
      min-height: 58px;
      padding: 12px 16px;
      font-size: 12px;
    }

    .site-footer__copyright small {
      display: block;
      font-size: inherit;
      line-height: 1.7;
      white-space: nowrap;
    }

    .site-footer__accordion {
      width: calc(100% - 32px);
      padding: 44px 0 72px;
    }

    .site-footer__accordion-item + .site-footer__accordion-item {
      margin-top: 22px;
    }

    .site-footer__accordion-button {
      min-height: 28px;
      padding: 5px 10px;
      gap: 6px;
      font-size: 12px;
    }

    .site-footer__accordion-icon {
      width: 13px;
      height: 13px;
    }

    .site-footer__accordion-icon::before,
    .site-footer__accordion-icon::after {
      width: 11px;
    }

    .site-footer__accordion-panel {
      padding: 24px 18px;
      font-size: 12px;
      line-height: 1.75;
    }
  }
}

/* 07. Utilities */
@layer utilities {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 768px) {
  .event-title,
  .special-movie {
    background-image:
      linear-gradient(rgb(219 199 104 / 7%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(219 199 104 / 7%) 1px, transparent 1px);
  }

  .event-about,
  .profile,
  .self-care,
  .app-promotion,
  .manga-contest,
  .site-links,
  .site-footer {
    background-image:
      linear-gradient(rgb(178 190 184 / 8%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(178 190 184 / 8%) 1px, transparent 1px);
  }
}

/* 06. Menu */
@layer menu {
  html.is-menu-open {
    overflow: hidden;
  }

  .menu-button {
    display: block;
    width: clamp(52px, 4.74vw, 91px);
    min-width: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
  }

  .menu-button img {
    display: block;
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .menu-button {
      width: clamp(40px, 11.75vw, 46px);
      min-width: 40px;
    }
  }

  .menu-button:focus-visible,
  .site-menu__close:focus-visible,
  .site-menu__list a:focus-visible {
    outline: 4px solid var(--color-menu-focus);
    outline-offset: 4px;
  }
}

#top,
#event-about,
#special-movie,
#special-movie-interview,
#self-care-consult-video,
#self-care-consult,
#self-care,
#app-promotion,
#manga-contest,
#site-links {
  scroll-margin-top: 80px;
}

@layer menu {
  .site-menu {
  box-sizing: border-box;
  padding: 0;
  border: 0;
  color: var(--color-menu-text);
  background: #fff;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

.site-menu::backdrop {
  background: transparent;
}

.site-menu[open] {
  animation: site-menu-slide-in 320ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes site-menu-slide-in {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.site-menu__inner {
  position: relative;
  box-sizing: border-box;
  background: #fff;
}

  .site-menu__close {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--color-menu);
  background: transparent;
  cursor: pointer;
}

.site-menu__close span,
.site-menu__close span::after {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: currentcolor;
  content: "";
}

.site-menu__close span {
  position: relative;
  transform: rotate(45deg);
}

.site-menu__close span::after {
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.site-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

  .site-menu__list a {
  display: block;
  border-bottom: 2px solid var(--color-menu-rule);
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

  @media (min-width: 769px) {
  .site-menu[open] {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(752px, 100vw);
    height: auto;
    min-height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    overflow-y: auto;
  }

  .site-menu__inner {
    height: 100%;
    min-height: 100%;
    padding: 88px 64px 80px;
  }

  .site-menu__close {
    top: 40px;
    right: 52px;
    width: 48px;
    height: 48px;
  }

  .site-menu__close span {
    width: 44px;
  }

  .site-menu__nav {
    max-width: 580px;
    margin: 110px auto 0;
  }

  .site-menu__list a {
    padding: 17px 0 15px;
    font-size: 24px;
    line-height: 1.35;
    white-space: nowrap;
  }
}

  @media (max-width: 768px) {
  .site-menu[open] {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    height: 100dvh;
    max-width: none;
    max-height: 100dvh;
    margin: 0;
    overflow-y: auto;
  }

  .site-menu__inner {
    min-height: 100dvh;
    padding: 74px 20px 28px;
  }

  .site-menu__close {
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .site-menu__close span {
    width: 30px;
  }

  .site-menu__close span,
  .site-menu__close span::after {
    height: 4px;
  }

  .site-menu__nav {
    margin: 0;
  }

  .site-menu__list a {
    padding: 11px 0 10px;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.35;
    white-space: nowrap;
  }
  }
}

@media (max-width: 768px) {
  #top,
  #event-about,
  #special-movie,
  #special-movie-interview,
  #self-care-consult-video,
  #self-care-consult,
  #self-care,
  #app-promotion,
  #manga-contest,
  #site-links {
    scroll-margin-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .special-movie-treasure__closed,
  .special-movie-treasure__open,
  .special-movie-treasure__message {
    transition: none;
  }

  .special-movie-treasure.is-open .special-movie-treasure__button {
    animation: none;
  }
}

@layer menu {
  @media (prefers-reduced-motion: reduce) {
    .site-menu[open] {
      animation: none;
    }
  }
}

/* PC hover / keyboard focus */
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .special-movie__card,
  .self-care__video-link,
  .self-care__cta,
  .app-promotion__store-link,
  .manga-contest__campaign {
    transition: filter 240ms ease, transform 240ms ease;
    transform-origin: center;
  }

  .special-movie__card:hover,
  .self-care__video-link:hover,
  .self-care__cta:hover,
  .app-promotion__store-link:hover,
  .manga-contest__campaign:hover {
    filter: brightness(1.08);
    transform: scale(1.02);
  }

  .site-links__card:hover {
    filter: brightness(1.08);
    transform: scale(0.9);
  }

  .site-links__item:nth-child(4) .site-links__card:hover {
    transform: scale(0.915);
  }

  .special-movie__card:focus-visible,
  .self-care__video-link:focus-visible,
  .self-care__cta:focus-visible,
  .app-promotion__store-link:focus-visible,
  .manga-contest__campaign:focus-visible,
  .site-links__card:focus-visible,
  .fv__hotspot:focus-visible {
    border-radius: 6px;
    outline: 4px solid #0b6b45;
    outline-offset: 5px;
  }

  .fv__hotspot {
    cursor: pointer;
    transition: background-color 240ms ease;
  }

  .fv__hotspot:hover {
    background-color: rgb(255 255 255 / 8%);
  }

  .fv__arrow,
  .fv__dot {
    transition: filter 200ms ease, transform 200ms ease;
  }

  .fv__arrow:hover,
  .fv__dot:hover {
    filter: brightness(1.15);
  }
}

@layer menu {
  @media (min-width: 769px) and (hover: hover) and (pointer: fine) {
    .menu-button,
    .site-menu__close {
      transition: filter 200ms ease, transform 200ms ease;
    }

    .menu-button:hover,
    .site-menu__close:hover {
      filter: brightness(1.15);
    }

    .menu-button:hover {
      transform: scale(1.06);
    }

    .site-menu__list a {
      transition: color 200ms ease, background-color 200ms ease, padding-left 200ms ease;
    }

    .site-menu__list a:hover {
      padding-left: 10px;
      color: var(--color-menu-focus);
      background-color: rgb(232 148 0 / 6%);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .special-movie__card,
  .self-care__video-link,
  .self-care__cta,
  .app-promotion__store-link,
  .manga-contest__campaign,
  .site-links__card,
  .fv__hotspot,
  .fv__arrow,
  .fv__dot {
    transition: none;
  }
}

@layer menu {
  @media (prefers-reduced-motion: reduce) {
    .menu-button,
    .site-menu__close,
    .site-menu__list a {
      transition: none;
    }
  }
}
