@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

:root,
:host {
  --spacing: 0.25rem;
  --space-0: 0;
  --space-1: calc(var(--spacing) * 1);
  --space-2: calc(var(--spacing) * 2);
  --space-3: calc(var(--spacing) * 4);
  --space-4: calc(var(--spacing) * 6);
  --space-5: calc(var(--spacing) * 7.5);
  --space-6: calc(var(--spacing) * 10);
  --space-7: calc(var(--spacing) * 15);
  --space-8: calc(var(--spacing) * 20);
  --space-9: calc(var(--spacing) * 25);
  --space-10: calc(var(--spacing) * 30);
  --font-jp: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-en: "Ultra", serif;
  --default-font-family: var(--font-jp);
  --default-font-family-en: var(--font-en);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.5rem;
  --color-white: #fff;
  --color-base: #1131ff;
  --color-active: #333;
  --container: 1200px;
  --container-md: 1000px;
  --side-padding: 80px;
  --opacity: 1;
  --opacity-transition: 0.3s;
  --opacity-hover: 0.7;
  --line-height-sm: 1.5;
  --line-height-md: 1.7;
  --line-height-base: 2;
}

body {
  font-family: var(--default-font-family);
  font-weight: 500;
  line-height: 2;
  background: var(--color-base);
  color: var(--color-white);
}

[tabindex="-1"]:focus-visible {
  outline: none !important;
}

h1 {
  font-size: var(--text-4xl);
  line-height: 1.7;
  font-weight: bold;
}

h2 {
  font-size: var(--text-3xl);
  line-height: 1.7;
  font-weight: bold;
}

h3 {
  font-size: var(--text-2xl);
  line-height: 1.7;
  font-weight: bold;
}

h4 {
  font-size: var(--text-xl);
  line-height: 1.7;
  font-weight: bold;
}

h5 {
  font-size: var(--text-lg);
  font-weight: bold;
}

:where(a:has(img)) {
  display: inherit;
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-modal {
  display: none;
}
.c-modal[aria-hidden="true"] .c-modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden="false"] .c-modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal.is-open {
  display: block;
}
.c-modal__overlay {
  align-items: center;
  background: rgba(51, 51, 51, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 0 40px;
  overflow: auto;
}
.c-modal__header {
  padding: 23px 29px 16px;
}
.c-modal__header::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 19/91;
  background: url(/milk-benefits/assets/images/modal_deco.svg) no-repeat center center/contain;
  width: 19px;
  position: absolute;
  left: 16px;
  bottom: 23px;
  pointer-events: none;
}
.c-modal__container {
  max-width: 894px;
  width: 100%;
  position: relative;
  margin: auto;
  padding: 0 0 90px;
  border-radius: 20px;
  background: #fff;
  color: var(--color-base);
}
.c-modal__content {
  max-width: 680px;
  padding-left: 25px;
  margin-inline: auto;
  display: grid;
  gap: 20px 20px;
  grid-template-columns: 1fr minmax(0, 306px);
}
.c-modal__heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 26px;
}
.c-modal__desc {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: bold;
  max-width: 288px;
  margin-bottom: 35px;
}
.c-modal__close {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 26px;
  right: 26px;
  font-size: 0;
}
.c-modal__close-text {
  position: absolute;
  font-size: 0.875rem;
  font-weight: bold;
  white-space: nowrap;
  top: calc(50% + 2px);
  transform: translateY(-50%) translateX(-100%);
  left: -10px;
}
.c-modal__close::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 100vmax;
  background: var(--color-base);
  width: 100%;
  top: 50%;
  transform: rotate(45deg);
}
.c-modal__close::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 100vmax;
  background: var(--color-base);
  width: 100%;
  top: 50%;
  transform: rotate(-45deg);
}

.c-button {
  --button-bg: var(--color-base);
  --button-color: #fff;
  --button-width: 100%;
  color: var(--button-color);
  border-radius: 100vmax;
  max-width: 194px;
  margin-inline: auto;
  font-size: 0.875rem;
  padding: 6px 24px;
  font-weight: bold;
  position: relative;
  z-index: 0;
  transition: color 0.3s;
  display: inline-block;
  min-width: 194px;
  text-decoration: none;
}
.c-button::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--button-bg);
  border-radius: 100vmax;
  z-index: -1;
  transition: background 0.3s;
}
.c-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--button-width);
  background: var(--button-bg);
  border-radius: 100vmax;
  z-index: -1;
  transition:
    background 0.3s,
    width 0.3s;
}
.c-button__inner::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  height: 100%;
  top: 0;
  right: 0;
  transition: background 0.3s;
  background-color: var(--button-color);
  -webkit-mask-image: url(/milk-benefits/assets/images/icon_arrow.svg);
  mask-image: url(/milk-benefits/assets/images/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.c-button-scroll {
  --clip: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
  --y: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 26px;
  font-size: 1.1875rem;
  gap: 0 8px;
  background: var(--color-base);
}
.c-button-scroll__icon {
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #fff;
  -webkit-mask-image: url(/milk-benefits/assets/images/icon_down.svg);
  mask-image: url(/milk-benefits/assets/images/icon_down.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  clip-path: var(--clip);
  transform: translateY(var(--y));
  transition:
    clip-path 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

body {
  --screen-duration: 1.25s;
  --notice-duration: 0.5s;
}

.l-main {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.p-top-fv {
  min-height: 700px;
  height: 100lvh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  transition: opacity var(--notice-duration);
}
.is-scroll-show .p-top-fv {
  opacity: 0;
}
.p-top-fv::before {
  content: "";
  display: block;
  aspect-ratio: 20/177;
  width: 20px;
  background: url(/milk-benefits/assets/images/top_deco_l.svg) no-repeat center center/contain;
  position: absolute;
  left: 14px;
  pointer-events: none;
}
.p-top-fv::after {
  content: "";
  display: block;
  aspect-ratio: 20/177;
  width: 20px;
  background: url(/milk-benefits/assets/images/top_deco_r.svg) no-repeat center center/contain;
  position: absolute;
  right: 14px;
  pointer-events: none;
}
.p-top-fv__inner {
  width: 100%;
  max-width: calc(1068px + var(--side-padding) * 2);
  padding: 0 var(--side-padding);
  margin-inline: auto;
  display: grid;
  grid-template-columns: clamp(340px, 48%, 506px) minmax(380px, 1fr);
  align-items: center;
  gap: 0 123px;
}
.p-top-fv__logo {
  margin-bottom: 34px;
}
.p-top-fv__logo img {
  margin-inline: auto;
}
.p-top-fv__button {
  margin-top: 66px;
}
.p-top-fv__button .c-button-scroll {
  margin-inline: auto;
}
.p-top-fv__desc {
  line-height: 2.5;
  font-weight: bold;
}

.p-top-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-base);
  z-index: 900 !important;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--screen-duration),
    visibility var(--screen-duration),
    transform var(--screen-duration) cubic-bezier(0.15, 0, 0.25, 1);
  transform: translateY(50%);
}
.is-scroll-show .p-top-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.p-top-box {
  --line: block;
  --padding: 14px 39px;
  --inner-padding: 35px;
  --bg-position: 100%;
  position: absolute;
  padding: var(--padding);
  display: flex;
}
.p-top-box:has(.is-active) {
  --bg-position: 0;
}
.p-top-box--image {
  --padding: 14px 24px;
  background: none;
}
.p-top-box--image .p-top-box__inner {
  padding: 15px 15px 45px 15px;
  background: #fff;
}
.p-top-box--image a.p-top-box__inner,
.p-top-box--image button.p-top-box__inner {
  --border-radius: 0;
  border-radius: var(--border-radius);
  transition: border-radius 0.4s;
  overflow: hidden;
}
.p-top-box__inner {
  --button-bg: var(--color-base);
  --button-color: #fff;
  --button-width: 100%;
  --translateY: 0;
  --heading-color: var(--color-active);
  --padding-left: 26px;
  --line-w: 0;
  --scale: 1;
  width: 100%;
  padding: 24px 35px 26px;
  position: relative;
  z-index: 0;
  background: transparent;
  display: block;
}
.p-top-box__inner.is-active {
  --button-bg: var(--color-active);
  --button-color: #fff;
  --button-width: calc(100% - 47px);
  --translateY: -4px;
  --heading-color: var(--color-base);
  --line-w: 100%;
}
.p-top-box__inner[data-id="image04"] {
  background: transparent;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.p-top-box__inner[data-id="image04"] img {
  transform-origin: center center;
}
.p-top-box__number {
  font-size: 1.1875rem;
  margin-bottom: 2px;
  color: var(--color-base);
  padding-left: var(--padding-left);
}
.p-top-box__heading {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: bold;
  color: var(--heading-color);
  margin-bottom: 0;
  padding-left: var(--padding-left);
  margin-right: -35px;
  transition: color 0.4s;
}
.p-top-box__heading span {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: var(--line-w) 3px;
  transition: background-size 0.4s ease;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 0.2em;
}
.p-top-box__image {
  aspect-ratio: 288/180;
  width: calc(100% + 24px);
  position: relative;
  z-index: -1;
  max-width: 288px;
  margin-inline: auto;
}
.p-top-box__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(var(--translateY));
  transition: transform 0.4s;
}
.p-top-box__banner-heading {
  position: absolute;
  text-align: center;
  left: 15px;
  right: 15px;
  bottom: 13px;
  font-size: 1rem;
  color: var(--color-base);
}
.p-top-box__banner img {
  transition: transform 0.4s;
  transform-origin: center bottom;
  transform: scale(var(--scale));
}
.p-top-box__desc {
  margin-bottom: 4px;
  color: var(--color-base);
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
}
.p-top-box__button {
  color: var(--button-color);
  border-radius: 100vmax;
  max-width: 194px;
  margin-inline: auto;
  font-size: 0.875rem;
  padding: 6px 24px;
  font-weight: bold;
  position: relative;
  z-index: 0;
  transition: color 0.4s;
}
.p-top-box__button::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--button-bg);
  border-radius: 100vmax;
  z-index: -1;
  transition: background 0.4s;
}
.p-top-box__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--button-width);
  background: var(--button-bg);
  border-radius: 100vmax;
  z-index: -1;
  transition:
    background 0.4s,
    width 0.4s;
}
.p-top-box__button-inner::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
  height: 100%;
  top: 0;
  right: 0;
  transition: background 0.4s;
  background-color: var(--button-color);
  -webkit-mask-image: url(/milk-benefits/assets/images/icon_arrow.svg);
  mask-image: url(/milk-benefits/assets/images/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-top-box__mask-bg {
  position: absolute;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  mask-image: url("/milk-benefits/assets/images/top_box_mask.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/milk-benefits/assets/images/top_box_mask.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background: #fff;
}
.p-top-box__mask-bg img {
  transform: translateY(var(--bg-position));
  transition: transform 0.5s ease-in-out;
}

@keyframes normalAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes reverseAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.p-top-fv__line {
  --w: 2294px;
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  overflow: hidden;
  z-index: -1;
}
.p-top-fv__line--top {
  top: 15px;
}
.p-top-fv__line--bottom {
  bottom: 15px;
}
.p-top-fv__line--re {
  flex-direction: row-reverse;
}
.p-top-fv__line--re .p-top-fv__line-image {
  animation: reverseAnimation 40s linear infinite;
}
.p-top-fv__line-image {
  flex: 0 0 var(--w);
  min-width: var(--w);
  animation: normalAnimation 40s linear infinite;
  will-change: transform;
}
.p-top-fv__line-image img {
  width: 100%;
}

.p-top-notice {
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.8);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--notice-duration),
    visibility var(--notice-duration);
}
.is-notice-show .p-top-notice {
  opacity: 1;
  visibility: visible;
}
.p-top-notice__desc {
  font-size: 0.875rem;
  text-align: center;
  font-weight: bold;
}

.u-text-xs {
  font-size: var(--text-xs) !important;
}
.u-text-sm {
  font-size: var(--text-sm) !important;
}
.u-text-base {
  font-size: var(--text-base) !important;
}
.u-text-lg {
  font-size: var(--text-lg) !important;
}
.u-text-xl {
  font-size: var(--text-xl) !important;
}
.u-text-2xl {
  font-size: var(--text-2xl) !important;
}
.u-text-3xl {
  font-size: var(--text-3xl) !important;
}
.u-text-4xl {
  font-size: var(--text-4xl) !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}
.u-text-center {
  text-align: center !important;
}
.u-text-justify {
  text-align: justify !important;
}
.u-text-start {
  text-align: start !important;
}
.u-text-end {
  text-align: end !important;
}
.u-text-nowrap {
  white-space: nowrap !important;
}
.u-lh-1 {
  line-height: 1 !important;
}
.u-lh-sm {
  line-height: var(--line-height-sm) !important;
}
.u-lh-md {
  line-height: var(--line-height-md) !important;
}
.u-lh-base {
  line-height: var(--line-height-base) !important;
}
.u-weight-500 {
  font-weight: 500 !important;
}

.u-weight-600 {
  font-weight: 600 !important;
}

.u-weight-700 {
  font-weight: 700 !important;
}

.u-weight-800 {
  font-weight: 800 !important;
}

.u-text-indent {
  padding-left: 1em !important;
  text-indent: -1em !important;
}

.u-font-palt {
  font-feature-settings: "palt" !important;
}

@media (min-width: 48rem) {
  .c-modal__text {
    padding-top: 28px;
  }
  .p-top-fv__logo {
    grid-column: 1/-1;
    margin-bottom: 24px;
  }
  .p-top-fv__button {
    grid-column: 1/-1;
  }
  .u-text-md-xs {
    font-size: var(--text-xs) !important;
  }
  .u-text-md-sm {
    font-size: var(--text-sm) !important;
  }
  .u-text-md-base {
    font-size: var(--text-base) !important;
  }
  .u-text-md-lg {
    font-size: var(--text-lg) !important;
  }
  .u-text-md-xl {
    font-size: var(--text-xl) !important;
  }
  .u-text-md-2xl {
    font-size: var(--text-2xl) !important;
  }
  .u-text-md-3xl {
    font-size: var(--text-3xl) !important;
  }
  .u-text-md-4xl {
    font-size: var(--text-4xl) !important;
  }
  .u-text-md-left {
    text-align: left !important;
  }
  .u-text-md-right {
    text-align: right !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-justify {
    text-align: justify !important;
  }
  .u-text-md-start {
    text-align: start !important;
  }
  .u-text-md-end {
    text-align: end !important;
  }
  .u-text-md-nowrap {
    white-space: nowrap !important;
  }
  .u-lh-md-1 {
    line-height: 1 !important;
  }
  .u-lh-md-sm {
    line-height: var(--line-height-sm) !important;
  }
  .u-lh-md-md {
    line-height: var(--line-height-md) !important;
  }
  .u-lh-md-base {
    line-height: var(--line-height-base) !important;
  }
}

@media (min-width: 48rem) and (any-hover: hover) {
  .p-top-box__inner:hover {
    --scale: 1.1;
  }
}

@media (min-width: 64rem) {
  .u-text-lg-xs {
    font-size: var(--text-xs) !important;
  }
  .u-text-lg-sm {
    font-size: var(--text-sm) !important;
  }
  .u-text-lg-base {
    font-size: var(--text-base) !important;
  }
  .u-text-lg-lg {
    font-size: var(--text-lg) !important;
  }
  .u-text-lg-xl {
    font-size: var(--text-xl) !important;
  }
  .u-text-lg-2xl {
    font-size: var(--text-2xl) !important;
  }
  .u-text-lg-3xl {
    font-size: var(--text-3xl) !important;
  }
  .u-text-lg-4xl {
    font-size: var(--text-4xl) !important;
  }
  .u-text-lg-left {
    text-align: left !important;
  }
  .u-text-lg-right {
    text-align: right !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-justify {
    text-align: justify !important;
  }
  .u-text-lg-start {
    text-align: start !important;
  }
  .u-text-lg-end {
    text-align: end !important;
  }
  .u-text-lg-nowrap {
    white-space: nowrap !important;
  }
  .u-lh-lg-1 {
    line-height: 1 !important;
  }
  .u-lh-lg-sm {
    line-height: var(--line-height-sm) !important;
  }
  .u-lh-lg-md {
    line-height: var(--line-height-md) !important;
  }
  .u-lh-lg-base {
    line-height: var(--line-height-base) !important;
  }
}

@media (max-width: 63.98rem) {
  :root,
  :host {
    --side-padding: 50px;
  }
  .p-top-fv__inner {
    gap: 0 60px;
    grid-template-columns: 1fr clamp(200px, 52%, 320px);
  }
  .p-top-fv__desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 47.98rem) {
  :root,
  :host {
    --side-padding: 34px;
  }
  .c-modal__overlay {
    padding: 0;
  }
  .c-modal__header {
    padding: 37px 27px;
  }
  .c-modal__header::after {
    bottom: 10px;
  }
  .c-modal__container {
    min-height: 100lvh;
    border-radius: 0;
    padding-bottom: 40px;
  }
  .c-modal__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    padding-left: 0;
  }
  .c-modal__text {
    padding: 0 50px;
  }
  .c-modal__text .c-button {
    margin-inline: auto;
    display: block;
  }
  .c-modal__image {
    max-width: 234px;
    margin-inline: auto;
  }
  .c-modal__heading {
    font-size: 1.625rem;
    margin-bottom: 18px;
  }
  .c-modal__desc {
    font-size: 0.75rem;
    margin-bottom: 28px;
  }
  .p-top-fv {
    min-height: 100lvh;
    height: auto;
    padding-top: 164px;
    padding-bottom: 164px;
  }
  .p-top-fv::before {
    display: none;
  }
  .p-top-fv::after {
    display: none;
  }
  .p-top-fv__inner {
    grid-template-columns: 1fr;
  }
  .p-top-fv__logo img {
    width: 100px;
  }
  .p-top-fv__heading img {
    margin-inline: auto;
  }
  .p-top-fv__desc {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 36px;
    line-height: 2;
  }
  .p-top-box {
    --padding: 10px 28px;
  }
  .p-top-box--image {
    --padding: 12px 28px 10px;
  }
  .p-top-box--image .p-top-box__inner {
    height: 284px;
  }
  .p-top-box__inner {
    --padding-left: 10px;
    padding: 12px 33px 16px;
  }
  .p-top-box__number {
    font-size: 0.875rem;
    margin-bottom: 4px;
  }
  .p-top-box__number img {
    height: 12px;
    width: auto;
  }
  .p-top-box__heading span {
    background-size: var(--line-w) 2px;
  }
  .p-top-box__heading {
    font-size: 1rem;
  }
  .p-top-box__image {
    width: auto;
  }
  .p-top-box__banner-heading {
    font-size: 0.75rem;
    bottom: 16px;
  }
  .p-top-box__button {
    padding: 4px 21px;
  }
  .p-top-box__mask-bg {
    width: 284px;
  }
  .p-top-box__mask-bg img {
    transition: transform 0.4s ease-in-out;
  }
  .p-top-fv__line {
    --w: 1828px;
  }
}

@media (max-width: 47.98rem) and (any-hover: hover) {
  .p-top-box__inner:hover {
    --scale: 1.1;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    --button-bg: var(--color-active);
    --button-width: calc(100% - 47px);
  }
  .c-button-scroll:hover {
    --clip: polygon(0 5px, 100% 5px, 100% 100%, 0% 100%);
    --y: 4px;
  }
  .p-top-box:has(.p-top-box__inner:hover) {
    --bg-position: 0;
  }
  .p-top-box--image a.p-top-box__inner:hover,
  .p-top-box--image button.p-top-box__inner:hover {
    --border-radius: 30px;
  }
  .p-top-box__inner:hover {
    --button-bg: var(--color-active);
    --button-color: #fff;
    --button-width: calc(100% - 47px);
    --translateY: -4px;
    --heading-color: var(--color-base);
    --line-w: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
