@charset "UTF-8";
:root {
  --book-h: 0px;
  --banner-h: 61.18vw;
  --stage-h: max(var(--banner-h), calc(100vh - var(--book-h)));
  --palette-blue-100: #214a91;
  --palette-blue-70: #2559a7;
  --palette-blue-50: #4a80c7;
  --palette-blue-30: #93afe4;
  --palette-blue-10: #ecf0f9;
  --palette-teal-100: #06758e;
  --palette-teal-70: #198ea8;
  --palette-teal-50: #73bfc4;
  --palette-teal-30: #a9dbdb;
  --palette-teal-10: #e1eeee;
  --palette-gray-100: #000000;
  --palette-gray-70: #4b4b4b;
  --palette-gray-50: #b5b5b5;
  --palette-gray-30: #f0f0f0;
  --white: #ffffff;
  --color-bg: var(--white);
  --color-surface: var(--palette-gray-30);
  --color-surface-2: var(--palette-gray-50);
  --color-text: #636363;
  --color-text-muted: var(--palette-gray-70);
  --color-text-invert: var(--white);
  --color-border: var(--palette-gray-50);
  --color-brand: #742E83;
  --color-brand-hover: var(--palette-blue-70);
  --font-sans: "Noto Sans TC", system-ui, sans-serif;
  --font-heading: "Noto Sans TC", system-ui, sans-serif;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 76px;
  --header-gap: 16px;
  --z-decor: 1;
  --z-content: 2;
  --z-site-body: 3;
  --z-hero: 2;
  --z-hero-cloud: 3;
  --z-hint: 80;
  --z-back-top: 90;
  --z-header: 100;
  --z-book-header: 150;
  --z-nav: 200;
  --z-intro-overlay: 300;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
  font-family: var(--font-sans);
  background: #7E318E;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

body.is-nav-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + var(--book-h));
}

h2 {
  font-size: var(--text-2xl);
}

.placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 160px;
  padding: 24px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text-muted);
  text-align: center;
}

.site-header {
  position: fixed;
  top: var(--book-h);
  left: 0;
  width: 100%;
  padding: var(--header-gap) var(--header-gap) 0;
  z-index: var(--z-header);
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-height);
  padding: 0 48px;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(72.596%, rgba(235, 215, 255, 0.95)));
  background: linear-gradient(90deg, #ffffff 0%, rgba(235, 215, 255, 0.95) 72.596%);
  border-radius: 50px;
  -webkit-box-shadow: 0 0 30px rgba(93, 27, 119, 0.5);
          box-shadow: 0 0 30px rgba(93, 27, 119, 0.5);
}
@media (max-width: 992px) {
  .site-header__inner {
    padding: 0 20px;
  }
}

.site-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .site-header__logo {
    padding-right: 7.5px;
  }
}

.site-header__logo-pc {
  display: block;
  height: 34px;
}
@media (max-width: 768px) {
  .site-header__logo-pc {
    display: none;
  }
}

.site-header__logo-mb {
  display: none;
  height: 30px;
}
@media (max-width: 768px) {
  .site-header__logo-mb {
    display: block;
  }
}

.nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-pc__cell {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-pc__cell + .nav-pc__cell:not(.nav-pc__cell--fb)::before {
  content: "";
  width: 11px;
  height: 16px;
  margin: 0 18px;
  background: url("../assets/image/nav/nav-pc-bar/menu_line.svg") no-repeat center/contain;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .nav-pc__cell + .nav-pc__cell:not(.nav-pc__cell--fb)::before {
    margin: 0 12px;
  }
}
@media (max-width: 992px) {
  .nav-pc__cell + .nav-pc__cell:not(.nav-pc__cell--fb)::before {
    margin: 0 10px;
  }
}

.nav-pc__cell--fb {
  margin-left: 26px;
}
@media (max-width: 1024px) {
  .nav-pc__cell--fb {
    margin-left: 20px;
  }
}
@media (max-width: 992px) {
  .nav-pc__cell--fb {
    margin-left: 10px;
    margin-right: 2px;
  }
}

.nav-pc__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-pc__item img {
  display: block;
  height: 20px;
}

.nav-pc__fb img {
  height: 29px;
}

@media (hover: hover) {
  .nav-pc__item:hover {
    opacity: 0.7;
    -webkit-transition: ease-in 0.3s;
    transition: ease-in 0.3s;
  }
}
.nav-burger {
  display: none;
  padding: 0;
  border: none;
  background: none;
}

.nav-burger img {
  display: block;
  height: 26px;
}

.nav-menu {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
  z-index: var(--z-nav);
}

.nav-menu__panel {
  position: relative;
  width: 100%;
  max-width: 490px;
  height: 780px;
  padding: 52px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(14px) scale(0.98);
          transform: translateY(14px) scale(0.98);
  -webkit-transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: opacity var(--transition), transform var(--transition);
  transition: opacity var(--transition), transform var(--transition), -webkit-transform var(--transition);
}
@media (max-width: 768px) {
  .nav-menu__panel {
    display: block;
  }
}
@media (max-width: 640px) {
  .nav-menu__panel {
    max-width: 76.5625vw;
    height: 121.875vw;
    padding: 8.125vw 0 0 0;
    border-radius: 2.1875vw 2.1875vw 0 0;
  }
}

.nav-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  border: none;
  background: none;
  z-index: 2;
}
@media (max-width: 640px) {
  .nav-menu__close {
    top: 3.125vw;
    right: 3.125vw;
  }
}

.nav-menu__close img {
  display: block;
  width: 37px;
  height: auto;
  aspect-ratio: 37/29;
}
@media (max-width: 640px) {
  .nav-menu__close img {
    width: 5.78125vw;
  }
}

.nav-menu__shine {
  position: absolute;
  display: block;
  pointer-events: none;
}

.nav-menu__shine--top {
  top: 28px;
  left: 28px;
  width: 54px;
  height: auto;
  aspect-ratio: 54/53;
}
@media (max-width: 640px) {
  .nav-menu__shine--top {
    top: 4.375vw;
    left: 4.375vw;
    width: 8.4375vw;
  }
}

.nav-menu__shine--bottom {
  right: 35px;
  bottom: 155px;
  width: 54px;
  height: auto;
  aspect-ratio: 54/53;
}
@media (max-width: 640px) {
  .nav-menu__shine--bottom {
    right: 3.90625vw;
    bottom: 16.40625vw;
    width: 8.4375vw;
  }
}

.nav-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-bottom: 78px;
}
@media (max-width: 640px) {
  .nav-menu__list {
    padding-top: 6.09375vw;
    padding-bottom: 12.1875vw;
  }
}

.nav-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
}
@media (max-width: 640px) {
  .nav-menu__item {
    padding: 5vw 0;
  }
}

.nav-menu__item img {
  display: block;
  height: 38px;
}
@media (max-width: 640px) {
  .nav-menu__item img {
    height: 5.9375vw;
  }
}

.nav-menu__item:nth-child(1) img {
  display: block;
  height: 91px;
}
@media (max-width: 640px) {
  .nav-menu__item:nth-child(1) img {
    height: 14.21875vw;
  }
}

.nav-menu__sep {
  display: block;
  width: 78.2%;
  height: auto;
}

.nav-menu__item--fb {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.nav-menu__bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  pointer-events: none;
}

body.is-nav-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
}

body.is-nav-open .nav-menu__panel {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

@media (hover: hover) {
  .nav-menu__item:hover {
    opacity: 0.7;
  }
  .nav-menu__close:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }
  .site-header__inner {
    height: 64px;
    padding: 0 20px;
    background: var(--color-bg);
    border-radius: 0;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .site-header__logo-pc {
    display: none;
  }
  .site-header__logo-mb {
    display: block;
  }
  .nav-pc {
    display: none;
  }
  .nav-burger {
    display: block;
  }
}
[data-disclosure] {
  border-bottom: 1px solid #636363;
}

[data-disclosure-trigger] {
  position: relative;
  width: 100%;
  padding: 13px 36px 13px 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  [data-disclosure-trigger] {
    padding: 1.5625vw 5.625vw 1.5625vw 1.5625vw;
    font-size: 2.5vw;
  }
}

[data-disclosure-trigger]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: translateY(-55%) rotate(45deg);
          transform: translateY(-55%) rotate(45deg);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
@media (max-width: 768px) {
  [data-disclosure-trigger]::after {
    width: 1.40625vw;
    height: 1.40625vw;
    border-right: 0.3125vw solid currentColor;
    border-bottom: 0.3125vw solid currentColor;
  }
}

[data-disclosure].is-open [data-disclosure-trigger]::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

[data-disclosure-content] {
  height: 0;
  overflow: hidden;
  -webkit-transition: height var(--transition);
  transition: height var(--transition);
}

.disclosure-inner {
  padding-bottom: 13px;
}
@media (max-width: 768px) {
  .disclosure-inner {
    padding-bottom: 2.03125vw;
    padding-left: 1.5625vw;
  }
}
.disclosure-inner ul li {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .disclosure-inner ul li {
    font-size: 2.1875vw;
    line-height: 4.6875vw;
  }
}

#section-faq-2 {
  position: relative;
  margin-top: 200px;
  padding-bottom: 30px;
  overflow-x: clip;
  padding-left: 8.3333333333vw;
  padding-right: 8.3333333333vw;
}
@media (max-width: 992px) {
  #section-faq-2 {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 768px) {
  #section-faq-2 {
    margin-top: 29.6875vw;
    padding-bottom: unset;
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}

.qa__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .qa__title {
    padding-top: 1.5625vw;
  }
}
.qa__title img {
  width: auto;
  height: 62px;
  aspect-ratio: 508/62;
}
@media (max-width: 768px) {
  .qa__title img {
    height: 9.6875vw;
  }
}

.qa-list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  max-width: 1200px;
  margin: 70px auto 0 auto;
}
@media (max-width: 768px) {
  .qa-list-2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 8.59375vw auto 0 auto;
  }
}

.qa-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .qa-col-2 {
    gap: 3.90625vw;
  }
}

[data-disclosure-2] {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 0 26px;
}
@media (max-width: 768px) {
  [data-disclosure-2] {
    padding: 0 20px;
    border-radius: 4.6875vw;
  }
}

[data-disclosure-2-trigger] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 14px;
  width: 100%;
  padding: 11px 34px 11px 0;
  color: #494949;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
@media (max-width: 768px) {
  [data-disclosure-2-trigger] {
    gap: 10px;
    padding: 2.5vw 30px 2.5vw 0;
    font-size: 3.59375vw;
  }
}

.qa-label-2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  color: #f6d15f;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .qa-label-2 {
    font-size: 4.6875vw;
  }
}

[data-disclosure-2-trigger]::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 6px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #f6d15f;
  border-bottom: 2px solid #f6d15f;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
@media (max-width: 768px) {
  [data-disclosure-2-trigger]::after {
    top: 35%;
    right: 6px;
    width: 2.65625vw;
    height: 2.65625vw;
    border-right: 0.46875vw solid #f6d15f;
    border-bottom: 0.46875vw solid #f6d15f;
  }
}

[data-disclosure-2].is-open [data-disclosure-2-trigger]::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

[data-disclosure-2-content] {
  height: 0;
  overflow: hidden;
  -webkit-transition: height var(--transition);
  transition: height var(--transition);
}

.disclosure-2-inner {
  padding: 0 18px 20px 38px;
  color: #838383;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .disclosure-2-inner {
    font-size: 3.4375vw;
    padding: 0 2.8125vw 3.125vw 5.9375vw;
  }
}

@media (max-width: 768px) {
  .qa-col-2 + .qa-col-2 {
    margin-top: 3.90625vw;
  }
}
.qa-list {
  border-top: 1px solid var(--color-border);
}

.qa-label {
  margin-right: 8px;
  font-weight: var(--weight-bold);
}

[data-back-to-top] {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
  z-index: var(--z-back-top);
}

[data-back-to-top].is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: btt-float 2.4s ease-in-out infinite;
          animation: btt-float 2.4s ease-in-out infinite;
}

.back-to-top__arrow {
  display: block;
}

.back-to-top__arrow img {
  display: block;
  width: 18px;
}

.back-to-top__text {
  font-family: "Noto Sans TC", var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}

.back-to-top__rocket img {
  display: block;
  width: 71px;
}

@-webkit-keyframes btt-float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

@keyframes btt-float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@media (hover: hover) {
  [data-back-to-top]:hover .back-to-top__arrow {
    -webkit-animation: btt-arrow-up 1s ease-in-out infinite;
            animation: btt-arrow-up 1s ease-in-out infinite;
  }
}
@-webkit-keyframes btt-arrow-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  45% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    opacity: 0;
  }
  46% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes btt-arrow-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  45% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    opacity: 0;
  }
  46% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  [data-back-to-top] {
    width: 55px;
    right: 14px;
    bottom: 14px;
    -webkit-filter: drop-shadow(0 0 7.5px rgba(28, 0, 58, 0.5));
    filter: drop-shadow(0 0 7.5px rgba(28, 0, 58, 0.5));
  }
  .back-to-top__arrow img {
    width: 14px;
  }
  .back-to-top__text {
    font-size: 17px;
  }
  .back-to-top__rocket img {
    width: 55px;
  }
}
[data-scroll-hint] {
  position: fixed;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  -webkit-animation: scroll-hint-bob 1.4s ease-in-out infinite alternate;
          animation: scroll-hint-bob 1.4s ease-in-out infinite alternate;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: var(--z-hint);
}

[data-scroll-hint]::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

[data-scroll-hint].is-hidden {
  opacity: 0;
}

@-webkit-keyframes scroll-hint-bob {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  to {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}

@keyframes scroll-hint-bob {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  to {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
[data-custom-scroll] {
  max-height: 280px;
}

.ph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.ph--16x9 {
  aspect-ratio: 16/9;
}

.ph--4x3 {
  aspect-ratio: 4/3;
}

.ph--3x2 {
  aspect-ratio: 3/2;
}

.ph--1x1 {
  aspect-ratio: 1/1;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--color-brand);
  border-radius: var(--radius);
  color: var(--color-text);
  -webkit-transition: background-color var(--transition), color var(--transition);
  transition: background-color var(--transition), color var(--transition);
}

.text-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 4.1666666667vw;
  font-family: var(--font-sans);
  color: var(--color-brand);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 0%;
}
@media (max-width: 1024px) {
  .text-link {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .text-link {
    font-size: 3.4375vw;
    gap: 1.25vw;
    margin-top: 7.03125vw;
  }
}

.text-link::after {
  content: "";
  width: 20px;
  height: 12px;
  background: url("../assets/image/partners/btn-arrow-right.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
@media (max-width: 768px) {
  .text-link::after {
    width: 4.375vw;
    height: 2.65625vw;
  }
}

@media (hover: hover) {
  .btn:hover {
    background: var(--color-brand);
    color: var(--color-text-invert);
  }
  .text-link:hover::after {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
@media (hover: hover) and (max-width: 768px) {
  .text-link:hover::after {
    -webkit-transform: translateX(0.625vw);
            transform: translateX(0.625vw);
  }
}
.media-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.media-text__media {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.media-text__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.media-text--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.media-text + .media-text {
  margin-top: 5px;
}

@media (max-width: 768px) {
  .media-text,
  .media-text--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .media-text__media,
  .media-text__body {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .media-text + .media-text {
    margin-top: 48px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .media-text + .media-text {
    margin-top: 6.25vw;
  }
}
.media-text__title {
  margin-bottom: 16px;
  font-size: var(--text-2xl);
  font-weight: var(--weight-medium);
}

.media-text__list {
  margin: 0 0 16px;
  padding-left: 1.2em;
  list-style: disc;
  color: var(--color-text-muted);
}

.media-text__price {
  margin-bottom: 24px;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}

.media-text__actions {
  margin-top: 24px;
}

#section-partners {
  position: relative;
  margin-top: 200px;
  overflow-x: clip;
  padding-left: 8.3333333333vw;
  padding-right: 8.3333333333vw;
}
@media (max-width: 992px) {
  #section-partners {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 768px) {
  #section-partners {
    margin-top: 31.25vw;
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}

.media-text__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.TFT_img {
  width: 511px;
  height: auto;
  aspect-ratio: 510/320;
}
@media (max-width: 768px) {
  .TFT_img {
    aspect-ratio: 510/319;
    width: 79.6875vw;
  }
}

.SOU_img {
  width: 550px;
  height: auto;
  aspect-ratio: 550/320;
}
@media (max-width: 768px) {
  .SOU_img {
    aspect-ratio: 510/319;
    width: 79.6875vw;
  }
}

.partners__title {
  margin-top: 70px;
  margin-bottom: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .partners__title {
    margin-top: 10.9375vw;
    margin-bottom: 3.90625vw;
  }
}
.partners__title img {
  width: auto;
  aspect-ratio: 380/62;
  height: 62px;
}
@media (max-width: 768px) {
  .partners__title img {
    height: 9.6875vw;
  }
}

.partners__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 62px;
  padding: 30px 37px;
  border: 2px solid #fff;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1440px) {
  .partners__row {
    gap: 4.3055555556vw;
  }
}
@media (max-width: 768px) {
  .partners__row {
    padding: 4.6875vw 3.59375vw;
    border: 0.3125vw solid #fff;
    border-radius: 3.125vw;
    gap: 3.125vw;
  }
}

.partners__row .media-text__media {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .partners__row .media-text__media {
    border-radius: 1.5625vw;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

.partners__logo-TFT {
  display: block;
  width: auto;
  height: 74px;
  margin-bottom: 20px;
  aspect-ratio: 235/74;
}
@media (max-width: 768px) {
  .partners__logo-TFT {
    height: 11.5625vw;
    margin-bottom: 2.34375vw;
  }
}

.partners__logo-sou {
  display: block;
  width: auto;
  height: 49px;
  margin-bottom: 20px;
  aspect-ratio: 299/49;
}
@media (max-width: 768px) {
  .partners__logo-sou {
    height: 8.59375vw;
    margin-bottom: 2.34375vw;
  }
}

.partners__desc {
  color: #494949;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.66;
  letter-spacing: 0.14em;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 768px) {
  .partners__desc {
    font-size: 3.125vw;
  }
}

.partners__btnLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .partners__btnLeft {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  #section-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product__logos {
  margin-bottom: 18px;
  margin-left: 14px;
}
@media (max-width: 768px) {
  .product__logos {
    margin-bottom: 2.8125vw;
    margin-left: 2.1875vw;
  }
}
.product__logos img {
  width: auto;
  height: 24px;
  aspect-ratio: 295/24;
}
@media (max-width: 768px) {
  .product__logos img {
    height: 3.75vw;
  }
}

.product__title {
  margin-bottom: 20px;
  margin-left: 13px;
}
@media (max-width: 768px) {
  .product__title {
    margin-bottom: 3.125vw;
    margin-left: 2.03125vw;
  }
}
.product__title img {
  width: auto;
  height: 33px;
  aspect-ratio: 513/33;
}
@media (max-width: 768px) {
  .product__title img {
    height: 5.15625vw;
  }
}

.product__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #494949;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .product__list {
    margin: 0 0 2.8125vw;
    font-size: 3.125vw;
  }
}
.product__list li {
  position: relative;
  padding-left: 1.5em;
}
.product__list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0.7em;
  width: 0.15em;
  height: 0.15em;
  border-radius: 50%;
  background: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product__priceWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px dashed #707070;
  margin-left: 18px;
}
@media (max-width: 768px) {
  .product__priceWrap {
    margin-left: 1.25vw;
    padding-right: 0.625vw;
  }
}

.product__price {
  margin: 0;
  padding-top: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .product__price {
    padding-top: 3.75vw;
  }
}
.product__price img {
  width: auto;
  aspect-ratio: 269/33;
  height: 33px;
  display: inline-block;
}
@media (max-width: 768px) {
  .product__price img {
    height: 5.15625vw;
  }
}

.product__actions {
  margin: 24px 0;
}
@media (max-width: 768px) {
  .product__actions {
    margin: 4.6875vw 0 6.25vw 0;
  }
}
.product__actions .product__btn {
  display: block;
}
.product__actions .product__btn img {
  display: block;
  width: 100%;
  max-width: 432px;
  height: auto;
  aspect-ratio: 432/80;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (max-width: 768px) {
  .product__actions .product__btn img {
    width: 67.5vw;
  }
}
@media (hover: hover) {
  .product__actions .product__btn:hover img {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
  }
}

.product__sale {
  margin-bottom: 14px;
  margin-left: 5%;
}
@media (max-width: 768px) {
  .product__sale {
    margin-bottom: 2.1875vw;
    margin-left: 4.375vw;
  }
}
.product__sale .product__store-logo {
  width: auto;
  height: 45px;
  aspect-ratio: 160/45;
}
@media (max-width: 1200px) {
  .product__sale .product__store-logo {
    height: 3.8194444444vw;
  }
}
@media (max-width: 768px) {
  .product__sale .product__store-logo {
    height: 7.03125vw;
  }
}

.product__notice {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-sans);
  color: #494949;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.16em;
}
@media (max-width: 768px) {
  .product__notice {
    font-size: 2.34375vw;
    line-height: 3.75vw;
  }
}
.product__notice li {
  position: relative;
  padding-left: 22.5px;
}
@media (max-width: 768px) {
  .product__notice li {
    padding-left: 3.515625vw;
  }
}
.product__notice li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .product__notice li::before {
    top: 2.03125vw;
    left: vw640(7px);
  }
}

.product__note {
  margin-top: 46px;
  margin-bottom: 80px;
  border-top: 1px solid #636363;
  font-family: var(--font-sans);
}
@media (max-width: 768px) {
  .product__note {
    margin-top: 4.375vw;
    margin-bottom: 4.21875vw;
  }
}

.product__cols {
  margin: 24px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 25px;
  max-width: var(--max-width);
}
@media (max-width: 1024px) {
  .product__cols {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .product__cols {
    margin: 3.75vw auto 0 auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9.375vw;
  }
}

.product__cols .media-text__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .product__cols .media-text__media {
    display: block;
  }
}

.product__media {
  overflow: visible;
}

.product__cols .product__slider-frame {
  --swiper-pagination-bullet-width: 18px;
  --swiper-pagination-bullet-height: 18px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
}
@media (max-width: 768px) {
  .product__cols .product__slider-frame {
    --swiper-pagination-bullet-width: 2.8125vw;
    --swiper-pagination-bullet-height: 2.8125vw;
    --swiper-pagination-bullet-horizontal-gap: 0.78125vw;
    height: auto;
  }
}

.product__cols .product__slider {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}
@media (max-width: 768px) {
  .product__cols .product__slider {
    height: auto;
  }
}

.product__slider,
.product__slider .swiper-slide,
.product__slider .swiper-button-prev,
.product__slider .swiper-button-next,
.product__slider-pagination .swiper-pagination-bullet {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.product__slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-drag: none;
}
@media (max-width: 768px) {
  .product__slider .swiper-slide img {
    width: 87.5vw;
    height: auto;
    border-radius: 3.125vw;
    aspect-ratio: 560/513.75;
  }
}

.product__slider {
  --swiper-pagination-bullet-width: 18px;
  --swiper-pagination-bullet-height: 18px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-inactive-opacity: 1;
}
@media (max-width: 768px) {
  .product__slider {
    --swiper-pagination-bullet-width: 2.8125vw;
    --swiper-pagination-bullet-height: 2.8125vw;
    --swiper-pagination-bullet-horizontal-gap: 0.78125vw;
  }
}

.product__slider .swiper-button-prev,
.product__slider .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: center/contain no-repeat;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 768px) {
  .product__slider .swiper-button-prev,
  .product__slider .swiper-button-next {
    width: 7.8125vw;
    height: auto;
    aspect-ratio: 1/1;
    margin-top: -3.90625vw;
  }
}

.product__slider .swiper-button-prev {
  left: 15px;
  background-image: url("../assets/image/purchase/product/carousel/arrowLeft.svg");
}

.product__slider .swiper-button-next {
  right: 15px;
  background-image: url("../assets/image/purchase/product/carousel/arrowRight.svg");
}

.product__slider .swiper-button-prev::after,
.product__slider .swiper-button-next::after {
  display: none;
}

@media (hover: hover) {
  .product__slider .swiper-button-prev:hover,
  .product__slider .swiper-button-next:hover {
    opacity: 0.75;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.product__slider-pagination.swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 16px;
  line-height: 0;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 768px) {
  .product__slider-pagination.swiper-pagination {
    margin-top: 2.5vw;
  }
}

.product__slider-pagination .swiper-pagination-bullet {
  position: relative;
  border-radius: 0;
  background: url("../assets/image/purchase/product/carousel/UnselectedStar.svg") center/contain no-repeat;
}

.product__slider-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/image/purchase/product/carousel/SelectedStar.svg") center/contain no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.product__slider-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
}

.purchase {
  width: min(88.88%, 1280px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 57px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 244, 255, 0.75)), to(rgba(255, 255, 255, 0.75)));
  background: linear-gradient(180deg, rgba(251, 244, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%);
  backdrop-filter: blur(2.5px);
  overflow-x: clip;
}
@media (max-width: 768px) {
  .purchase {
    border: 0.3125vw solid rgba(255, 255, 255, 0.5);
    border-radius: 4.6875vw;
    width: min(93.75%, 600px);
    padding: 12.5vw 2.8125vw;
    gap: 5.46875vw;
  }
}
@media (max-width: 640px) {
  .purchase {
    max-width: 93.75vw;
  }
}

.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 38px;
}
@media (max-width: 768px) {
  .intro {
    gap: 5.9375vw;
  }
}
@media (max-width: 640px) {
  .intro {
    gap: 5.9375vw;
  }
}

.intro__title img {
  width: auto;
  height: 62px;
}
@media (max-width: 1024px) {
  .intro__title img {
    height: 44px;
  }
}
@media (max-width: 768px) {
  .intro__title img {
    height: 9.6875vw;
  }
}

.intro__desc {
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.intro__desc img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 594/132;
  -webkit-user-drag: none;
}
@media (max-width: 1023px) {
  .intro__desc img {
    aspect-ratio: 546/132;
  }
}

@media (max-width: 768px) {
  .intro__desc--pc {
    display: none;
  }
  .intro__desc--mb {
    display: block;
  }
}
.intro__logos {
  width: auto;
  height: 42px;
  aspect-ratio: 237/14;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 768px) {
  .intro__logos {
    height: 5.15625vw;
  }
}

#section-hero-story {
  overflow-x: clip;
  margin-top: 250px;
  padding-left: 8.3333333333vw;
  padding-right: 8.3333333333vw;
}
@media (max-width: 992px) {
  #section-hero-story {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 768px) {
  #section-hero-story {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
    margin-top: 28.4375vw;
  }
}

.hero-tabs__title {
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .hero-tabs__title {
    margin-bottom: 8.59375vw;
  }
}
.hero-tabs__title .hero-tabs__title-img {
  display: block;
  width: auto;
  height: 47px;
  margin: 0 auto;
  aspect-ratio: 359/41;
}
@media (max-width: 768px) {
  .hero-tabs__title .hero-tabs__title-img {
    height: 7.8125vw;
  }
}

.hero-tabs__intro {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .hero-tabs__intro {
    margin-bottom: 8.59375vw;
  }
}
.hero-tabs__intro img {
  height: 117px;
  width: auto;
  aspect-ratio: 745/117;
}
@media (max-width: 768px) {
  .hero-tabs__intro img {
    height: 27.34375vw;
  }
}

.hero-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tabs__list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-tabs__list {
    display: none;
  }
}

.story-tab {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  max-width: 200px;
  min-width: 0;
  height: 120px;
  overflow: visible;
}

.story-tab::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  height: 180px;
  border-radius: 10px 40px 0 0;
  -webkit-transition: top 0.35s ease;
  transition: top 0.35s ease;
}
@media (max-width: 1440px) {
  .story-tab::before {
    border-radius: 0.6944444444vw 2.7777777778vw 0 0;
  }
}

.story-tab:nth-child(odd)::before {
  background: #742e83;
}

.story-tab:nth-child(even)::before {
  background: #f9dbff;
}

.story-tab:hover::before,
.story-tab.is-active::before {
  top: 0;
}

.story-tab__labels {
  position: absolute;
  left: 50%;
  top: 97.5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  width: 138px;
  height: 31px;
}

.story-tab__on,
.story-tab__off {
  position: absolute;
  left: 50%;
  top: 0;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.story-tab__on {
  width: 138px;
  height: 31px;
  opacity: 0;
}
@media (max-width: 1024px) {
  .story-tab__on {
    width: 117.3px;
    height: 26.35px;
  }
}
@media (max-width: 900px) {
  .story-tab__on {
    width: 103.5px;
    height: 23.25px;
  }
}

.story-tab__off {
  width: 90px;
  height: 31px;
  opacity: 1;
}
@media (max-width: 1024px) {
  .story-tab__off {
    width: 76.5px;
    height: 26.35px;
  }
}
@media (max-width: 900px) {
  .story-tab__off {
    width: 67.5px;
    height: 23.25px;
  }
}

.story-tab:hover .story-tab__on {
  opacity: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.story-tab.is-active .story-tab__on {
  opacity: 1;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.story-tab:hover .story-tab__off {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.story-tab.is-active .story-tab__off {
  opacity: 0;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.story-tab__icon {
  position: absolute;
  top: 14px;
  left: 50%;
  height: 56px;
  opacity: 0;
  -webkit-transform: translate(-50%, 8px) scale(0.78);
          transform: translate(-50%, 8px) scale(0.78);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  pointer-events: none;
  z-index: 1;
  will-change: opacity, transform;
}

.story-tab:hover .story-tab__icon,
.story-tab.is-active .story-tab__icon {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}

.hero-tabs__nav {
  display: none;
}
@media (max-width: 768px) {
  .hero-tabs__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.5625vw;
    width: auto;
    height: 14.375vw;
    padding: 0 2.8125vw;
    border-radius: 1.5625vw 6.25vw 0 0;
    margin-bottom: 1.71875vw;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
  }
}

.hero-tabs__arrow {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  z-index: 3;
  width: 47px;
  height: auto;
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 640px) {
  .hero-tabs__arrow {
    width: 7.1875vw;
  }
}

.hero-tabs__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-tabs__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.hero-tabs__current {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 54.84375vw;
  aspect-ratio: 351/82;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hero-tabs__current.is-fading-in {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}

.hero-tabs__current-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hero-tabs__current-ghost.is-fading-out {
  opacity: 0;
}

.hero-tabs__panel {
  position: relative;
  z-index: 2;
  padding: 72px 48px 60px;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='179.516'%20height='58'%20viewBox='0%200%20179.516%2058'%3E%3Cpath%20d='M179.516,0C179.516,0,89.758,-0.472904,89.758,57.3306C89.758,-0.472904,0,0,0,0L179.516,0Z'%20fill='white'/%3E%3C/svg%3E"), -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='179.516'%20height='58'%20viewBox='0%200%20179.516%2058'%3E%3Cpath%20d='M179.516,0C179.516,0,89.758,-0.472904,89.758,57.3306C89.758,-0.472904,0,0,0,0L179.516,0Z'%20fill='white'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
  -webkit-mask-position: top center, 0 0;
  -webkit-mask-size: 179.5px 58px, auto;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='179.516'%20height='58'%20viewBox='0%200%20179.516%2058'%3E%3Cpath%20d='M179.516,0C179.516,0,89.758,-0.472904,89.758,57.3306C89.758,-0.472904,0,0,0,0L179.516,0Z'%20fill='white'/%3E%3C/svg%3E"), -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='179.516'%20height='58'%20viewBox='0%200%20179.516%2058'%3E%3Cpath%20d='M179.516,0C179.516,0,89.758,-0.472904,89.758,57.3306C89.758,-0.472904,0,0,0,0L179.516,0Z'%20fill='white'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
  mask-position: top center, 0 0;
  mask-size: 179.5px 58px, auto;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media (max-width: 768px) {
  .hero-tabs__panel {
    padding: 8.59375vw 3.4375vw 7.34375vw 3.4375vw;
    background: #fff;
    border-radius: 0;
    -webkit-mask: none;
    mask: none;
  }
}

.story-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
@media (max-width: 768px) {
  .story-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.125vw;
  }
}

.story-card__figure {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
}

.story-card__img {
  display: block;
  border-radius: 12px;
  width: 514px;
  height: auto;
  aspect-ratio: 514/380;
}
@media (max-width: 768px) {
  .story-card__img {
    width: 80.3125vw;
    border-radius: 3.125vw;
  }
}

.story-card__clip {
  position: absolute;
  top: -16px;
  right: 44px;
  width: 27px;
  height: auto;
  aspect-ratio: 27/70;
  pointer-events: none;
}
@media (max-width: 768px) {
  .story-card__clip {
    width: 4.21875vw;
    top: -2.5vw;
    right: 4.375vw;
  }
}

.story-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.story-card__title {
  margin: 0 0 20px;
  color: #7e318e;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .story-card__title {
    font-size: 4.375vw;
    margin: 0 0 2.5vw;
  }
}

.story-card__text p {
  margin: 0 0 16px;
  color: #494949;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .story-card__text p {
    margin: 0 0 2.5vw;
    font-size: 3.125vw;
  }
}

.story-card__text p:last-child {
  margin-bottom: 0;
}

.story-card__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  margin-top: 28px;
  border-radius: 100px;
  background: #742e83;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 20px;
  letter-spacing: 0.1em;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .story-card__btn {
    margin-top: 4.375vw;
    height: 7.8125vw;
    font-size: 3.125vw;
    border-radius: 15.625vw;
  }
}

.story-card__btn img {
  position: absolute;
  right: 120px;
  width: 26px;
}
@media (max-width: 1440px) {
  .story-card__btn img {
    right: 8.3333333333vw;
  }
}
@media (max-width: 1200px) {
  .story-card__btn img {
    right: 4.1666666667vw;
  }
}
@media (max-width: 800px) {
  .story-card__btn img {
    right: 2.7777777778vw;
  }
}

@media (hover: hover) {
  .story-card__btn:hover {
    opacity: 0.88;
  }
}
@media (max-width: 768px) {
  .hero-tabs__nav.is-dark {
    background: #742e83;
  }
  .hero-tabs__nav.is-light {
    background: #f9dbff;
  }
  .story-card__figure {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .card-grid {
    gap: 7.96875vw;
  }
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-bg);
  border-radius: 29.17px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .card {
    border-radius: 4.5578125vw;
  }
}
@media (max-width: 640px) {
  .card {
    height: 116.5625vw;
  }
}

.card__media {
  aspect-ratio: 559.98/393.74;
}
@media (max-width: 640px) {
  .card__media {
    height: 61.428125vw;
  }
}
.card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .card__media img {
    width: 87.4921875vw;
    height: auto;
  }
}

.card__body {
  position: relative;
  padding: 40px 22px 24px;
}
@media (max-width: 640px) {
  .card__body {
    height: 55.13125vw;
    padding: 6.71875vw 3.125vw 4.84375vw 6.25vw;
  }
}

.card__title {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 1;
  margin: 0;
  padding-bottom: 12px;
  color: #742e83;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  width: auto;
  background: #FFFFFF;
}
@media (max-width: 640px) {
  .card__title {
    font-size: 5.925vw;
    letter-spacing: 0.15em;
    top: 3.4375vw;
    left: 6.25vw;
    right: 3.4375vw;
    padding-bottom: 1.875vw;
  }
}
.card__title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(58%, transparent), color-stop(58%, #fffb8a));
  background: linear-gradient(transparent 58%, #fffb8a 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.card__scroll {
  max-height: 175px;
  padding-top: 37px;
  padding-right: 10px;
  overflow-x: hidden;
}
@media (max-width: 640px) {
  .card__scroll {
    max-height: 44.84375vw;
    padding-top: 5.78125vw;
    padding-right: 1.5625vw;
  }
}

.card:nth-child(3) .card__scroll {
  padding-top: 72px;
}
@media (max-width: 640px) {
  .card:nth-child(3) .card__scroll {
    padding-top: 13.125vw;
  }
}

.card__scroll p {
  margin-bottom: 10px;
  color: #494949;
  font-family: "Noto Sans TC", var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.56;
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .card__scroll p {
    padding-right: 2.34375vw;
    font-size: 3.640625vw;
    letter-spacing: 0.14em;
  }
}

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

.card__note {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  color: #742e83;
  font-family: "Noto Sans CJK TC", sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 16px;
  line-height: 25px;
  font-style: normal;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (max-width: 640px) {
  .card__note {
    font-size: 3.640625vw;
    letter-spacing: 0.14em;
    line-height: 3.90625vw;
  }
}

.card__note-arrow {
  display: inline-block;
  letter-spacing: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.card__note:hover,
.card__note:focus-visible {
  color: #8b3a9c;
}

.card__note:hover .card__note-arrow,
.card__note:focus-visible .card__note-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.card__note:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .card__note,
  .card__note-arrow {
    -webkit-transition: none;
    transition: none;
  }
}
.card__spec {
  font-family: var(--font-sans);
  color: #707070;
  font-weight: 400;
  font-size: 14px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 640px) {
  .card__spec {
    font-size: 3.185546875vw;
  }
}

.card__spec-label {
  margin: 0 0 2px;
}

.card__spec-list {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

.card__spec-list:last-child {
  margin-bottom: 0;
}

.card__spec-list li {
  position: relative;
  padding-left: 1em;
}

.card__spec-list li::before {
  content: "·";
  position: absolute;
  left: 0;
}

.card__scroll .os-scrollbar-track {
  background: #dfdfdf;
  border-radius: 999px;
}

.card__scroll .os-scrollbar-vertical {
  z-index: 2;
}

.card__scroll .os-scrollbar-handle {
  background: #a98db5;
}

.hero-banner {
  position: sticky;
  top: var(--book-h);
  height: var(--stage-h);
  width: 100%;
  overflow: visible;
  z-index: 50;
  background-color: #4e1d77;
}

.hero-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-banner__bg--mb {
  display: none;
}

@media (max-width: 768px) {
  .hero-banner__bg--pc {
    display: none;
  }
  .hero-banner__bg--mb {
    display: block;
  }
}
.hero-banner__scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-h);
  z-index: 5;
}

.hero-banner__boytalk {
  position: absolute;
  inset: 0;
  z-index: 2;
  --deco-float-y: -35px;
  -webkit-animation: deco-float 4s ease-in-out infinite alternate;
  animation: deco-float 4s ease-in-out infinite alternate;
}

.hero-banner__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-h);
  pointer-events: none;
  overflow-x: clip;
}

.hero-banner__deco img {
  position: absolute;
  height: auto;
}

.hero-banner__shooting {
  position: absolute;
  left: 88.3%;
  top: 3.63%;
  width: 15.72%;
}

.hero-banner__shooting .tw-overlay-shooting-star__viewport {
  aspect-ratio: 224/216;
}

.hero-banner__scene img {
  position: absolute;
  height: auto;
}

.hero-banner__scene picture {
  position: absolute;
  height: auto;
}

.hero-banner__boy {
  left: 4.24%;
  top: calc(17.14% - var(--hero-crop-shift, 0px));
  width: 45.14%;
  z-index: 2;
}

.hero-banner__boy img {
  position: static;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .hero-banner__boy img {
    aspect-ratio: 634.67/682;
  }
}
.hero-banner__title--pc {
  left: 57.01%;
  top: 28.38%;
  width: 37.22%;
  z-index: 3;
}

.hero-banner__title--mb {
  display: none;
}

.hero-banner__plane {
  left: 43.33%;
  top: 21%;
  width: 11.11%;
  z-index: 6;
}

.hero-banner__star--1 {
  left: 4.17%;
  top: 2.27%;
  width: 5.14%;
  --deco-twinkle-delay: 0s;
}

.hero-banner__star--2 {
  left: 0.69%;
  top: 15.78%;
  width: 4.44%;
  --deco-twinkle-delay: -0.6s;
}

.hero-banner__star--3 {
  left: 4.86%;
  top: 53.12%;
  width: 4.17%;
  --deco-twinkle-delay: -1.2s;
}

.hero-banner__star--4 {
  left: 83.47%;
  top: 71.06%;
  width: 4.44%;
  --deco-twinkle-delay: -1.8s;
}

.hero-banner__star--5 {
  left: 93.47%;
  top: 43.59%;
  width: 4.44%;
  --deco-twinkle-delay: -0.9s;
}

.hero-banner__star--6 {
  left: 88.26%;
  top: 15.89%;
  width: 5.14%;
  --deco-twinkle-delay: -1.5s;
}

.hero-banner__star--7 {
  left: 90.35%;
  top: 4.2%;
  width: 4.44%;
  --deco-twinkle-delay: -0.3s;
}

.hero-banner__talk {
  left: 29.03%;
  top: calc(40.18% - var(--hero-crop-shift, 0px));
  width: 13.26%;
  z-index: 1;
}

.hero-banner__bird {
  left: 3.33%;
  top: 58.11%;
  width: 13.13%;
  z-index: 5;
}

.hero-banner__book {
  left: 38.82%;
  top: calc(52.33% - var(--hero-crop-shift, 0px));
  width: 10.97%;
  z-index: 4;
}

@media (min-width: 1441px) {
  .hero-banner {
    --hero-boy-width: clamp(calc(45.14vw * 0.85), calc((100vh - var(--book-h) - var(--header-gap) - var(--header-height) - 49px) * 0.93061), 45.14vw);
    --hero-crop-shift: clamp(0px, calc(10.49vw + var(--hero-boy-width) * 1.07458 + 16px - 100vh + var(--book-h)), calc(10.49vw - var(--book-h) - var(--header-gap) - var(--header-height) - 33px));
  }
  .hero-banner__boy {
    width: var(--hero-boy-width);
  }
  .hero-banner__talk {
    width: calc(var(--hero-boy-width) * 0.29375);
  }
}
.site-body__clouds {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  left: 0;
  right: 0;
  z-index: var(--z-hero-cloud);
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-body__clouds {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
}

.site-body__cloud {
  display: block;
  width: 100%;
  height: auto;
}

.site-body__cloud--down {
  margin-top: -1px;
}

.site-body__cloud--mb {
  display: none;
}

@media (max-width: 768px) {
  .site-body__clouds {
    bottom: 0;
  }
  .site-body__cloud--up,
  .site-body__cloud--down {
    display: none;
  }
  .site-body__cloud--mb {
    display: block;
  }
}
.site-body {
  --site-body-bg-height: calc(100vw * 6400 / 1440);
  --site-body-bg-extend-height: calc(100vw * 9600 / 2160);
  --site-body-bg-extend-image: url("../assets/image/site-body/extend/siteBody-bg_pc-extend.jpg");
  container-type: inline-size;
  position: relative;
  margin-top: calc(-1 * var(--stage-h) - 3px);
  padding-top: 20.8333333333vw;
  z-index: var(--z-site-body);
  background-color: #c6c4f8;
  background-image: url("../assets/image/site-body/siteBody-bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  .site-body {
    --site-body-bg-height: calc(100vw * 14999 / 658);
    --site-body-bg-extend-height: calc(100vw * 14999 / 658);
    --site-body-bg-extend-image: url("../assets/image/site-body/extend/siteBody-bg_mb-extend.jpg");
    background-image: url("../assets/image/site-body/siteBody-bg_mb.jpg");
    padding-top: 32.8125vw;
  }
}

@supports (width: 100cqw) {
  .site-body {
    --site-body-bg-height: calc(100cqw * 6400 / 1440);
    --site-body-bg-extend-height: calc(100cqw * 9600 / 2160);
  }
  @media (max-width: 768px) {
    .site-body {
      --site-body-bg-height: calc(100cqw * 14999 / 658);
      --site-body-bg-extend-height: calc(100cqw * 14999 / 658);
    }
  }
}
.site-body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--site-body-bg-height) - 1px);
  bottom: 0;
  z-index: -2;
  pointer-events: none;
  background-image: var(--site-body-bg-extend-image);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

.site-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--site-body-bg-height) + var(--site-body-bg-extend-height) - 2px);
  bottom: 0;
  z-index: -2;
  display: none;
  pointer-events: none;
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

.site-body.is-site-body-second-extend-ready::after {
  display: block;
  background-image: url("../assets/image/site-body/extend/siteBody-bg_pc-extend-second.jpg");
}

@media (max-width: 768px) {
  .site-body.is-site-body-second-extend-ready::after {
    background-image: url("../assets/image/site-body/extend/siteBody-bg_mb-extend-second.jpg");
  }
}
@media (max-width: 768px) {
  :root {
    --banner-h: 216.56vw;
  }
}
@media (max-width: 768px) {
  .hero-banner__title--pc {
    display: none;
  }
  .hero-banner__title--mb {
    display: block;
    left: 8.13%;
    top: 11.4%;
    width: 83.75%;
    z-index: 1;
  }
  .hero-banner__book {
    left: 66.56%;
    top: 62.27%;
    width: 20%;
    z-index: 2;
  }
  .hero-banner__plane {
    left: 69.06%;
    top: 43.36%;
    width: 25%;
    z-index: 3;
  }
  .hero-banner__bird {
    left: 2.03%;
    top: 68.11%;
    width: 29.53%;
    z-index: 4;
  }
  .hero-banner__boy {
    left: 0%;
    top: 36.87%;
    width: 95%;
    z-index: 5;
  }
  .hero-banner__talk {
    left: 57.97%;
    top: 52.38%;
    width: 27.5%;
    z-index: 6;
  }
  .hero-banner__star--1 {
    left: 0.78%;
    top: 35.42%;
    width: 11.56%;
  }
  .hero-banner__star--2 {
    left: 4.69%;
    top: 61.26%;
    width: 10%;
  }
  .hero-banner__star--5 {
    left: 88.91%;
    top: 65.87%;
    width: 10%;
  }
  .hero-banner__star--7 {
    left: 0.47%;
    top: 8.08%;
    width: 10%;
  }
  .hero-banner__star--3, .hero-banner__star--4, .hero-banner__star--6 {
    display: none;
  }
  .hero-banner__shooting {
    left: 77.19%;
    top: -1.59%;
    width: 35%;
  }
  .hero-banner__boytalk {
    z-index: 5;
  }
}
.site-body > .section,
.site-body > .purchase {
  position: relative;
}

.deco {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  will-change: transform, opacity;
}

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

.deco__body img,
.deco__body svg {
  display: block;
  width: 100%;
  height: auto;
}

.deco--front {
  z-index: 1;
}

.deco--float .deco__body {
  -webkit-animation: deco-float var(--deco-float-dur, 4s) ease-in-out var(--deco-float-delay, 0s) infinite alternate;
  animation: deco-float var(--deco-float-dur, 4s) ease-in-out var(--deco-float-delay, 0s) infinite alternate;
}

@-webkit-keyframes deco-float {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--deco-float-y, -12px));
    transform: translateY(var(--deco-float-y, -12px));
  }
}
@keyframes deco-float {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--deco-float-y, -12px));
    transform: translateY(var(--deco-float-y, -12px));
  }
}
.deco--reveal {
  opacity: 0;
  -webkit-transform: translateY(var(--deco-reveal-from, 24px));
  transform: translateY(var(--deco-reveal-from, 24px));
  -webkit-transition: opacity var(--deco-reveal-dur, 0.8s) ease, -webkit-transform var(--deco-reveal-dur, 0.8s) ease;
  transition: opacity var(--deco-reveal-dur, 0.8s) ease, -webkit-transform var(--deco-reveal-dur, 0.8s) ease;
  transition: opacity var(--deco-reveal-dur, 0.8s) ease, transform var(--deco-reveal-dur, 0.8s) ease;
  transition: opacity var(--deco-reveal-dur, 0.8s) ease, transform var(--deco-reveal-dur, 0.8s) ease, -webkit-transform var(--deco-reveal-dur, 0.8s) ease;
}

.deco--reveal.is-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.deco--twinkle {
  mix-blend-mode: screen;
  -webkit-animation: deco-twinkle var(--deco-twinkle-dur, 3s) ease-in-out var(--deco-twinkle-delay, 0s) infinite;
          animation: deco-twinkle var(--deco-twinkle-dur, 3s) ease-in-out var(--deco-twinkle-delay, 0s) infinite;
}

@-webkit-keyframes deco-twinkle {
  0%, 100% {
    opacity: var(--deco-twinkle-min, 0.4);
  }
  50% {
    opacity: var(--deco-twinkle-max, 1);
  }
}

@keyframes deco-twinkle {
  0%, 100% {
    opacity: var(--deco-twinkle-min, 0.4);
  }
  50% {
    opacity: var(--deco-twinkle-max, 1);
  }
}
.purchase-deco--star-right {
  right: -79px;
  bottom: 430px;
  width: 5%;
  aspect-ratio: 117/117.37;
}
@media (max-width: 768px) {
  .purchase-deco--star-right {
    display: none;
  }
}

#section-hero-story .story-deco-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--story-deco-stage-height, 900px);
  overflow: visible;
  pointer-events: none;
}

.story-deco--book {
  top: -161px;
  left: -22px;
  width: 257px;
  height: auto;
  aspect-ratio: 257/136;
  -webkit-animation: deco-book 2s ease-in-out var(--deco-float-delay, 0s) infinite alternate;
  animation: deco-book 2s ease-in-out var(--deco-float-delay, 0s) infinite alternate;
}
@media (max-width: 768px) {
  .story-deco--book {
    top: -22.5vw;
    left: -4.53125vw;
    width: 28.9234375vw;
    aspect-ratio: 185.11/97.62;
  }
}

@-webkit-keyframes deco-book {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--deco-float-y, -50px));
    transform: translateY(var(--deco-float-y, -50px));
  }
}
@keyframes deco-book {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--deco-float-y, -50px));
    transform: translateY(var(--deco-float-y, -50px));
  }
}
.story-deco--shooting-left {
  top: 49px;
  left: -79px;
  width: 191.14px;
  height: auto;
  aspect-ratio: 191.14/139;
}
@media (max-width: 768px) {
  .story-deco--shooting-left {
    top: 38.59375vw;
    left: -19.375vw;
    width: 29.865625vw;
  }
}

.story-deco--shooting-right {
  top: -296px;
  right: -118px;
  width: 323px;
  height: auto;
  aspect-ratio: 323/288;
}
@media (max-width: 768px) {
  .story-deco--shooting-right {
    top: -11.5625vw;
    right: -24.6875vw;
    width: 32.24375vw;
    aspect-ratio: 206.36/184;
  }
}

.story-deco--cloud {
  top: -43px;
  right: -658px;
  width: 834.94px;
  height: auto;
  aspect-ratio: 834.94/461;
}
@media (max-width: 768px) {
  .story-deco--cloud {
    top: -61.5625vw;
    right: -100.625vw;
    width: min(130.459375vw, 834.94px);
    max-width: none;
  }
}

.story-deco--star-topLeft {
  top: -56px;
  left: -12px;
  width: 82px;
  height: auto;
  aspect-ratio: 82/82;
}
@media (max-width: 768px) {
  .story-deco--star-topLeft {
    top: -9.375vw;
    left: -7.1875vw;
    width: 12.8125vw;
  }
}

.story-deco--star-topRight {
  top: -233px;
  right: 134px;
  width: 117px;
  height: auto;
  aspect-ratio: 117/117.37;
}
@media (max-width: 768px) {
  .story-deco--star-topRight {
    top: -16.09375vw;
    right: -8.28125vw;
    width: 18.28125vw;
  }
}

.story-deco--star-right {
  right: -111px;
  bottom: 253px;
  width: 82px;
  height: auto;
  aspect-ratio: 82/82;
}
@media (max-width: 768px) {
  .story-deco--star-right {
    display: none;
  }
}

.story-deco--twin {
  left: -88px;
  bottom: 194px;
  width: 102px;
  height: auto;
  aspect-ratio: 102/123;
}
@media (max-width: 768px) {
  .story-deco--twin {
    display: none;
  }
}

.story-twin__star--b {
  --deco-twinkle-delay: -1.5s;
}

.partners-deco--shooting {
  left: -32px;
  top: -268px;
  width: 323px;
  height: auto;
  aspect-ratio: 323/249;
}
@media (max-width: 768px) {
  .partners-deco--shooting {
    top: -42.03125vw;
    left: -4.0625vw;
    width: 50.46875vw;
  }
}

.partners-deco--twin {
  top: -15px;
  right: -102px;
  width: 170px;
  height: auto;
  aspect-ratio: 170/153;
}
@media (max-width: 768px) {
  .partners-deco--twin {
    top: -22.65625vw;
    right: -8.90625vw;
    width: min(26.5625vw, 170px);
  }
}

.partners-deco--star {
  left: -110px;
  bottom: 15px;
  width: 138px;
  height: auto;
  aspect-ratio: 138/138;
}
@media (max-width: 768px) {
  .partners-deco--star {
    display: none;
  }
}

.partners-deco--sign {
  top: -87px;
  right: -12px;
  width: 280px;
  height: auto;
  aspect-ratio: 280/79;
}
@media (max-width: 768px) {
  .partners-deco--sign {
    top: -27.03125vw;
    right: -17.65625vw;
    width: min(43.75vw, 280px);
    max-width: none;
  }
}

.partners-deco--sign-bottom {
  left: 223px;
  bottom: -116px;
  width: 271px;
  height: 130px;
  aspect-ratio: 271/130;
}
@media (max-width: 768px) {
  .partners-deco--sign-bottom {
    display: none;
  }
}

.partners-twin__star--b {
  --deco-twinkle-delay: -1.5s;
}

.faq-deco--cloud {
  left: -551px;
  top: -286px;
  width: 835px;
  height: auto;
  aspect-ratio: 835/461;
}
@media (max-width: 768px) {
  .faq-deco--cloud {
    left: -74.21875vw;
    top: -50.15625vw;
    max-width: none;
    width: min(107.6109375vw, 688.71px);
    aspect-ratio: 688.71/380.26;
  }
}

.faq-deco--shooting {
  top: -409px;
  right: -93px;
  width: auto;
  height: 269.04px;
  aspect-ratio: 349/269.04;
}
@media (max-width: 768px) {
  .faq-deco--shooting {
    top: -66.71875vw;
    right: -20.46875vw;
    width: min(42.0375vw, 269.04px);
  }
}

.faq-deco--star {
  top: -156px;
  right: -0.9px;
  width: 109px;
  height: auto;
  aspect-ratio: 109/109;
}
@media (max-width: 768px) {
  .faq-deco--star {
    top: 9.21875vw;
    right: -10.296875vw;
    width: 17.03125vw;
  }
}

.faq-deco--plane {
  top: 10px;
  right: -27px;
  width: 140px;
  height: auto;
  aspect-ratio: 140/87;
  -webkit-animation: faq-plane var(--deco-float-dur, 3s) ease-in-out var(--deco-float-delay, 0s) infinite alternate;
  animation: faq-plane var(--deco-float-dur, 3s) ease-in-out var(--deco-float-delay, 0s) infinite alternate;
}
@media (max-width: 768px) {
  .faq-deco--plane {
    top: -12.5vw;
    right: 3.90625vw;
    width: 21.875vw;
  }
}

@-webkit-keyframes faq-plane {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--deco-float-y, -35px));
    transform: translateY(var(--deco-float-y, -35px));
  }
}
@keyframes faq-plane {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--deco-float-y, -35px));
    transform: translateY(var(--deco-float-y, -35px));
  }
}
.faq-deco--mbStar {
  display: none;
}
@media (max-width: 768px) {
  .faq-deco--mbStar {
    display: block;
    top: 48.28125vw;
    left: -11.09375vw;
    height: auto;
    aspect-ratio: 109/109;
    width: min(17.03125vw, 109px);
  }
}

.site-footer {
  position: relative;
  text-align: center;
  background-image: url("../assets/image/footer/footer-bgBottom_pc.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  min-height: max(205px, 17vw);
  padding: 200px 20px 40px;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50.78125vw 3.125vw 17.03125vw;
  }
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

.site-footer__logo {
  display: block;
  width: 243px;
  height: auto;
  aspect-ratio: 243/40;
  margin: 0 auto 12px;
}
@media (max-width: 768px) {
  .site-footer__logo {
    width: 37.96875vw;
    margin: 0 auto 1.875vw;
  }
}

.site-footer__copyright {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media (max-width: 768px) {
  .site-footer__copyright {
    font-size: 2.65625vw;
  }
}

.site-footer__star {
  position: absolute;
  top: -46%;
  right: 3%;
  width: 97px;
  height: auto;
  aspect-ratio: 97/97;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-footer__star {
    top: -5vw;
    right: -4.375vw;
    width: 15.15625vw;
  }
}

.site-footer__bird {
  position: absolute;
  top: 29%;
  right: 10%;
  width: 191px;
  height: auto;
  aspect-ratio: 191/78;
  pointer-events: none;
  -webkit-animation: deco-float 2.5s ease-in-out infinite alternate;
          animation: deco-float 2.5s ease-in-out infinite alternate;
  --deco-float-y: -30px;
}
@media (max-width: 768px) {
  .site-footer__bird {
    top: 8.4375vw;
    right: 7.34375vw;
    height: auto;
    aspect-ratio: 168.96/68.78;
    width: 26.4vw;
  }
}

@media (max-width: 768px) {
  .site-footer {
    background-image: url("../assets/image/footer/footer-bgBottom_mb.svg");
  }
}