@charset "UTF-8";
/* stylelint-disable function-url-quotes */
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: #ff006d;
  --color-yellow: #ff0;
  --color-purple: #7d5be4;
  --color-green: #02734a;
  --color-light: #eef0f7;
  --color-cyan: #0ef4ff;
  --color-gray: #d5d6d6;
  --color-navy: #0d396b;
  --color-dark: #09064c;
  --color-gold: #8f6c00;
  --color-blue: #10498a;
  --font-unbounded: Unbounded, sans-serif;
  --font-gothic: Zen Kaku Gothic New, sans-serif;
  --transition-duration: 0.3s;
  --transition-timing-function: ease;
}

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
  image-rendering: optimize-contrast;
}

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

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

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

html {
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  html {
    font-size: 0.6944444444vw;
  }
}

body {
  font-family: var(--font-unbounded);
  font-size: 1.6rem;
  font-weight: 400;
  font-optical-sizing: auto;
  font-kerning: auto;
  line-height: 1.5;
  color: #000;
}

a {
  color: inherit;
}

.u-c-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-c-black {
  color: #000 !important;
}

.u-bg-black {
  background-color: #000 !important;
}

.u-c-red {
  color: #ff006d !important;
}

.u-bg-red {
  background-color: #ff006d !important;
}

.u-c-yellow {
  color: #ff0 !important;
}

.u-bg-yellow {
  background-color: #ff0 !important;
}

.u-c-purple {
  color: #7d5be4 !important;
}

.u-bg-purple {
  background-color: #7d5be4 !important;
}

.u-c-green {
  color: #02734a !important;
}

.u-bg-green {
  background-color: #02734a !important;
}

.u-c-light {
  color: #eef0f7 !important;
}

.u-bg-light {
  background-color: #eef0f7 !important;
}

.u-c-cyan {
  color: #0ef4ff !important;
}

.u-bg-cyan {
  background-color: #0ef4ff !important;
}

.u-c-gray {
  color: #d5d6d6 !important;
}

.u-bg-gray {
  background-color: #d5d6d6 !important;
}

.u-c-navy {
  color: #0d396b !important;
}

.u-bg-navy {
  background-color: #0d396b !important;
}

.u-c-dark {
  color: #09064c !important;
}

.u-bg-dark {
  background-color: #09064c !important;
}

.u-c-gold {
  color: #8f6c00 !important;
}

.u-bg-gold {
  background-color: #8f6c00 !important;
}

.u-c-blue {
  color: #10498a !important;
}

.u-bg-blue {
  background-color: #10498a !important;
}

.db {
  display: block !important;
}

.dn {
  display: none !important;
}

.dg {
  display: grid !important;
}

.df {
  display: flex !important;
}

.di {
  display: inline !important;
}

.dib {
  display: inline-block !important;
}

.dig {
  display: inline-grid !important;
}

@media (min-width: 640px) {
  .db-sm {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .db-md {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .db-lg {
    display: block !important;
  }
}
@media (min-width: 1280px) {
  .db-xl {
    display: block !important;
  }
}
@media (min-width: 1536px) {
  .db-xxl {
    display: block !important;
  }
}
@media (min-width: 640px) {
  .dn-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .dn-md {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .dn-lg {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .dn-xl {
    display: none !important;
  }
}
@media (min-width: 1536px) {
  .dn-xxl {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .dg-sm {
    display: grid !important;
  }
}
@media (min-width: 768px) {
  .dg-md {
    display: grid !important;
  }
}
@media (min-width: 1024px) {
  .dg-lg {
    display: grid !important;
  }
}
@media (min-width: 1280px) {
  .dg-xl {
    display: grid !important;
  }
}
@media (min-width: 1536px) {
  .dg-xxl {
    display: grid !important;
  }
}
@media (min-width: 640px) {
  .df-sm {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .df-md {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .df-lg {
    display: flex !important;
  }
}
@media (min-width: 1280px) {
  .df-xl {
    display: flex !important;
  }
}
@media (min-width: 1536px) {
  .df-xxl {
    display: flex !important;
  }
}
@media (min-width: 640px) {
  .di-sm {
    display: inline !important;
  }
}
@media (min-width: 768px) {
  .di-md {
    display: inline !important;
  }
}
@media (min-width: 1024px) {
  .di-lg {
    display: inline !important;
  }
}
@media (min-width: 1280px) {
  .di-xl {
    display: inline !important;
  }
}
@media (min-width: 1536px) {
  .di-xxl {
    display: inline !important;
  }
}
@media (min-width: 640px) {
  .dib-sm {
    display: inline-block !important;
  }
}
@media (min-width: 768px) {
  .dib-md {
    display: inline-block !important;
  }
}
@media (min-width: 1024px) {
  .dib-lg {
    display: inline-block !important;
  }
}
@media (min-width: 1280px) {
  .dib-xl {
    display: inline-block !important;
  }
}
@media (min-width: 1536px) {
  .dib-xxl {
    display: inline-block !important;
  }
}
@media (min-width: 640px) {
  .dig-sm {
    display: inline-grid !important;
  }
}
@media (min-width: 768px) {
  .dig-md {
    display: inline-grid !important;
  }
}
@media (min-width: 1024px) {
  .dig-lg {
    display: inline-grid !important;
  }
}
@media (min-width: 1280px) {
  .dig-xl {
    display: inline-grid !important;
  }
}
@media (min-width: 1536px) {
  .dig-xxl {
    display: inline-grid !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-mb-l {
  margin-bottom: clamp(3rem, 6.25vw, 5rem);
}

.u-justify-start {
  justify-content: flex-start !important;
}

.u-justify-center {
  justify-content: center !important;
}

.u-justify-end {
  justify-content: flex-end !important;
}

.u-justify-around {
  justify-content: space-around !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

@media (min-width: 640px) {
  .u-justify-sm-start {
    justify-content: flex-start !important;
  }
  .u-justify-sm-center {
    justify-content: center !important;
  }
  .u-justify-sm-end {
    justify-content: flex-end !important;
  }
  .u-justify-sm-around {
    justify-content: space-around !important;
  }
  .u-justify-sm-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 768px) {
  .u-justify-md-start {
    justify-content: flex-start !important;
  }
  .u-justify-md-center {
    justify-content: center !important;
  }
  .u-justify-md-end {
    justify-content: flex-end !important;
  }
  .u-justify-md-around {
    justify-content: space-around !important;
  }
  .u-justify-md-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 1024px) {
  .u-justify-lg-start {
    justify-content: flex-start !important;
  }
  .u-justify-lg-center {
    justify-content: center !important;
  }
  .u-justify-lg-end {
    justify-content: flex-end !important;
  }
  .u-justify-lg-around {
    justify-content: space-around !important;
  }
  .u-justify-lg-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 1280px) {
  .u-justify-xl-start {
    justify-content: flex-start !important;
  }
  .u-justify-xl-center {
    justify-content: center !important;
  }
  .u-justify-xl-end {
    justify-content: flex-end !important;
  }
  .u-justify-xl-around {
    justify-content: space-around !important;
  }
  .u-justify-xl-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 1536px) {
  .u-justify-xxl-start {
    justify-content: flex-start !important;
  }
  .u-justify-xxl-center {
    justify-content: center !important;
  }
  .u-justify-xxl-end {
    justify-content: flex-end !important;
  }
  .u-justify-xxl-around {
    justify-content: space-around !important;
  }
  .u-justify-xxl-between {
    justify-content: space-between !important;
  }
}
.u-align-start {
  align-items: flex-start !important;
}

.u-align-center {
  align-items: center !important;
}

.u-align-end {
  align-items: flex-end !important;
}

@media (min-width: 640px) {
  .u-align-sm-start {
    align-items: flex-start !important;
  }
  .u-align-sm-center {
    align-items: center !important;
  }
  .u-align-sm-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 768px) {
  .u-align-md-start {
    align-items: flex-start !important;
  }
  .u-align-md-center {
    align-items: center !important;
  }
  .u-align-md-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 1024px) {
  .u-align-lg-start {
    align-items: flex-start !important;
  }
  .u-align-lg-center {
    align-items: center !important;
  }
  .u-align-lg-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 1280px) {
  .u-align-xl-start {
    align-items: flex-start !important;
  }
  .u-align-xl-center {
    align-items: center !important;
  }
  .u-align-xl-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 1536px) {
  .u-align-xxl-start {
    align-items: flex-start !important;
  }
  .u-align-xxl-center {
    align-items: center !important;
  }
  .u-align-xxl-end {
    align-items: flex-end !important;
  }
}
.u-text-start {
  text-align: start !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-end {
  text-align: end !important;
}

@media (min-width: 640px) {
  .u-text-sm-start {
    text-align: start !important;
  }
  .u-text-sm-center {
    text-align: center !important;
  }
  .u-text-sm-end {
    text-align: end !important;
  }
}
@media (min-width: 768px) {
  .u-text-md-start {
    text-align: start !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-end {
    text-align: end !important;
  }
}
@media (min-width: 1024px) {
  .u-text-lg-start {
    text-align: start !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-end {
    text-align: end !important;
  }
}
@media (min-width: 1280px) {
  .u-text-xl-start {
    text-align: start !important;
  }
  .u-text-xl-center {
    text-align: center !important;
  }
  .u-text-xl-end {
    text-align: end !important;
  }
}
@media (min-width: 1536px) {
  .u-text-xxl-start {
    text-align: start !important;
  }
  .u-text-xxl-center {
    text-align: center !important;
  }
  .u-text-xxl-end {
    text-align: end !important;
  }
}
.u-lh-sm {
  line-height: 1 !important;
}

.u-lh-md {
  line-height: 1.25 !important;
}

.u-lh-lg {
  line-height: 1.7 !important;
}

.u-lh-xl {
  line-height: 2 !important;
}

.u-lh-xxl {
  line-height: 2.5 !important;
}

@media (min-width: 640px) {
  .u-lh-sm-sm {
    line-height: 1 !important;
  }
  .u-lh-sm-md {
    line-height: 1.25 !important;
  }
  .u-lh-sm-lg {
    line-height: 1.7 !important;
  }
  .u-lh-sm-xl {
    line-height: 2 !important;
  }
  .u-lh-sm-xxl {
    line-height: 2.5 !important;
  }
}
@media (min-width: 768px) {
  .u-lh-md-sm {
    line-height: 1 !important;
  }
  .u-lh-md-md {
    line-height: 1.25 !important;
  }
  .u-lh-md-lg {
    line-height: 1.7 !important;
  }
  .u-lh-md-xl {
    line-height: 2 !important;
  }
  .u-lh-md-xxl {
    line-height: 2.5 !important;
  }
}
@media (min-width: 1024px) {
  .u-lh-lg-sm {
    line-height: 1 !important;
  }
  .u-lh-lg-md {
    line-height: 1.25 !important;
  }
  .u-lh-lg-lg {
    line-height: 1.7 !important;
  }
  .u-lh-lg-xl {
    line-height: 2 !important;
  }
  .u-lh-lg-xxl {
    line-height: 2.5 !important;
  }
}
@media (min-width: 1280px) {
  .u-lh-xl-sm {
    line-height: 1 !important;
  }
  .u-lh-xl-md {
    line-height: 1.25 !important;
  }
  .u-lh-xl-lg {
    line-height: 1.7 !important;
  }
  .u-lh-xl-xl {
    line-height: 2 !important;
  }
  .u-lh-xl-xxl {
    line-height: 2.5 !important;
  }
}
@media (min-width: 1536px) {
  .u-lh-xxl-sm {
    line-height: 1 !important;
  }
  .u-lh-xxl-md {
    line-height: 1.25 !important;
  }
  .u-lh-xxl-lg {
    line-height: 1.7 !important;
  }
  .u-lh-xxl-xl {
    line-height: 2 !important;
  }
  .u-lh-xxl-xxl {
    line-height: 2.5 !important;
  }
}
:root {
  --base-flame-border-width: 0.2rem;
  --base-flame-height: 1.8rem;
  --title-border-width: 0.1rem;
}
@media (min-width: 768px) {
  :root {
    --base-flame-border-width: 0.3rem;
    --base-flame-height: 4rem;
    --title-border-width: 0.3rem;
  }
}

.container {
  --container-width: 120rem;
  --container-padding: 1.2rem;
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.text-object {
  position: relative;
}
.text-object::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  height: 0.85rem;
  content: "";
  background: url(../images/text_obj.svg) repeat-x left/contain;
}
@media (min-width: 768px) {
  .text-object::after {
    height: 2.1rem;
  }
}
.text-object p > span {
  background-color: var(--color-yellow);
}

.swiper-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .swiper-meta {
    gap: 5rem;
    padding-top: 1.5rem;
  }
}
.swiper-meta .swiper-button-prev,
.swiper-meta .swiper-button-next {
  all: unset;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.swiper-meta .swiper-button-prev::before,
.swiper-meta .swiper-button-next::before {
  display: inline-block;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1/1;
  vertical-align: middle;
  content: "";
  background: url(../images/swiper_arrow_icon.svg) no-repeat center/contain;
}
@media (min-width: 768px) {
  .swiper-meta .swiper-button-prev::before,
  .swiper-meta .swiper-button-next::before {
    width: 5rem;
  }
}
.swiper-meta .swiper-button-prev::after,
.swiper-meta .swiper-button-next::after {
  content: none;
}
.swiper-meta .swiper-button-prev:focus-visible,
.swiper-meta .swiper-button-next:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .swiper-meta .swiper-button-prev:hover,
  .swiper-meta .swiper-button-next:hover {
    opacity: 0.8;
  }
}
.swiper-meta .swiper-button-prev::before {
  transform: scale(-1, 1);
}
.swiper-meta .swiper-scrollbar {
  all: unset;
  position: relative;
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-black);
  border-radius: 100vh;
}
.swiper-meta .swiper-scrollbar .swiper-scrollbar-drag {
  width: 1rem !important;
  height: auto;
  aspect-ratio: 1;
  background: linear-gradient(#ffd92d 0%, #d720ff 100%);
  border-radius: 50%;
  translate: 0 -50%;
}
@media (min-width: 768px) {
  .swiper-meta .swiper-scrollbar .swiper-scrollbar-drag {
    width: 2rem !important;
  }
}

.infinity-slider {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.infinity-slider--item {
  flex: 0 0 auto;
  padding-right: 2rem;
  animation: infinity-slider 10s linear infinite;
}

/* 複製アイテム */
.infinity-slider::after {
  display: block;
  width: 100%;
  content: "";
}

.button__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  justify-content: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  min-height: 5rem;
  padding: 0.1em 1em;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  background-color: var(--color-black);
  border-radius: 100vh;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .button {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 35rem;
    min-height: 6rem;
    font-size: 2.4rem;
  }
}
.button svg {
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  fill: var(--color-white);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .button svg {
    width: 2.5rem;
  }
}
.button svg:where(.plans__button:focus-visible *) {
  transform: translate(0.25rem, -0.25rem);
}
@media (any-hover: hover) {
  .button svg:where(.plans__button:hover *) {
    transform: translate(0.25rem, -0.25rem);
  }
}
.button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 0.8;
  }
}

.header {
  position: relative;
  outline: 0.3rem solid var(--color-black);
}

.header__bg {
  position: absolute;
  inset: 0;
}
.header__bg * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 6rem;
}
@media (min-width: 768px) {
  .header__inner {
    height: 10rem;
  }
}

.header__logo {
  width: 10.9rem;
}
@media (min-width: 768px) {
  .header__logo {
    width: 19.8rem;
  }
}
.header__logo img {
  width: 100%;
}

.main {
  position: relative;
  padding: calc(var(--base-flame-height) - var(--base-flame-border-width)) var(--base-flame-height) 0;
  overflow: hidden;
}

.base-flame {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}
.base-flame::before, .base-flame::after {
  position: absolute;
  top: calc(var(--base-flame-border-width) * -1);
  z-index: 1;
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-yellow);
  border: var(--base-flame-border-width) solid var(--color-black);
}
@media (min-width: 768px) {
  .base-flame::before, .base-flame::after {
    width: 10rem;
  }
}
.base-flame::before {
  left: 0;
  border-radius: 0 0 100%;
}
.base-flame::after {
  right: 0;
  border-radius: 0 0 0 100%;
}

[class*=base-flame__] {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  gap: 1em;
  justify-content: flex-end;
  overflow: hidden;
  font-size: 0.8rem;
  line-height: calc(var(--base-flame-height) - var(--base-flame-border-width) * 2);
  color: #3a33f2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background-color: var(--color-yellow);
  border: var(--base-flame-border-width) solid var(--color-black);
}
@media (min-width: 768px) {
  [class*=base-flame__] {
    font-size: 2rem;
  }
}

.base-flame__top {
  top: calc(var(--base-flame-border-width) * -1);
  right: 0;
  left: 0;
}
.base-flame__top span {
  animation: base-flame-x 30s linear infinite;
}

.base-flame__left {
  top: calc(var(--base-flame-border-width) * -1);
  bottom: 0;
  left: 0;
  writing-mode: vertical-rl;
  rotate: 180deg;
}
.base-flame__left span {
  animation: base-flame-y 30s linear infinite;
}

.base-flame__right {
  top: calc(var(--base-flame-border-width) * -1);
  right: 0;
  bottom: 0;
  writing-mode: vertical-rl;
}
.base-flame__right span {
  animation: base-flame-y 30s linear infinite;
}

[class*=body-bg] {
  position: relative;
}

[class*=body-bg__obj],
[class*=body-bg__icon] {
  position: absolute;
  z-index: -1;
}

.body-bg01 .body-bg__obj01 {
  top: 1.5rem;
  right: -2rem;
  width: 12rem;
}
@media (min-width: 768px) {
  .body-bg01 .body-bg__obj01 {
    top: 3.5rem;
    right: 2rem;
    width: 30.3rem;
  }
}
.body-bg01 .body-bg__obj02 {
  top: 10rem;
  right: -6rem;
  width: 12rem;
}
@media (min-width: 768px) {
  .body-bg01 .body-bg__obj02 {
    top: 25rem;
    right: -10rem;
    width: 30.4rem;
  }
}
.body-bg01 .body-bg__obj03 {
  top: 51.5rem;
  left: -1rem;
  width: 9.2rem;
}
@media (min-width: 768px) {
  .body-bg01 .body-bg__obj03 {
    top: 52.5rem;
    left: -1rem;
    width: 18.7rem;
  }
}
.body-bg01 .body-bg__icon01 {
  top: 2rem;
  right: 12rem;
  width: 3.8rem;
}
@media (min-width: 768px) {
  .body-bg01 .body-bg__icon01 {
    top: -10rem;
    right: 32rem;
    width: 23.6rem;
  }
}
.body-bg01 .body-bg__icon02 {
  top: 46rem;
  left: 15rem;
  width: 3.2rem;
}
@media (min-width: 768px) {
  .body-bg01 .body-bg__icon02 {
    top: 48rem;
    left: 32rem;
    width: 6rem;
  }
}

.body-bg02 .body-bg__obj01 {
  top: 60rem;
  right: -17rem;
  width: 29.1rem;
}
@media (min-width: 768px) {
  .body-bg02 .body-bg__obj01 {
    top: 131rem;
    right: -17rem;
    width: 39.9rem;
  }
}
.body-bg02 .body-bg__obj02 {
  bottom: 79.5rem;
  left: -8rem;
  width: 18.2rem;
}
@media (min-width: 768px) {
  .body-bg02 .body-bg__obj02 {
    bottom: 126.5rem;
    left: -18rem;
    width: 45.8rem;
  }
}
.body-bg02 .body-bg__icon01 {
  top: 4rem;
  right: 13rem;
  width: 4rem;
}
@media (min-width: 768px) {
  .body-bg02 .body-bg__icon01 {
    top: 7rem;
    right: 33rem;
    width: 11rem;
  }
}
.body-bg02 .body-bg__icon02 {
  top: 20rem;
  right: 0;
  width: 8rem;
}
@media (min-width: 768px) {
  .body-bg02 .body-bg__icon02 {
    top: 30rem;
    right: 6rem;
    width: 22.3rem;
  }
}

.body-bg03 .body-bg__obj01 {
  top: 5rem;
  left: -6rem;
  width: 16.6rem;
}
@media (min-width: 768px) {
  .body-bg03 .body-bg__obj01 {
    top: 8rem;
    left: -17rem;
    width: 45.8rem;
  }
}
.body-bg03 .body-bg__obj02 {
  top: 210.5rem;
  right: -5rem;
  width: 14.6rem;
}
@media (min-width: 768px) {
  .body-bg03 .body-bg__obj02 {
    top: 127.5rem;
    right: -18rem;
    width: 45.8rem;
  }
}
.body-bg03 .body-bg__obj03 {
  bottom: 136rem;
  left: -2rem;
  width: 12.2rem;
}
@media (min-width: 768px) {
  .body-bg03 .body-bg__obj03 {
    bottom: 112rem;
    left: -5rem;
    width: 27.5rem;
  }
}
.body-bg03 .body-bg__icon01 {
  top: 186rem;
  left: -1rem;
  width: 9.3rem;
}
@media (min-width: 768px) {
  .body-bg03 .body-bg__icon01 {
    top: 104rem;
    left: 20rem;
    width: 23.5rem;
  }
}
.body-bg03 .body-bg__icon02 {
  bottom: 150rem;
  left: 0;
  width: 3.9rem;
}
@media (min-width: 768px) {
  .body-bg03 .body-bg__icon02 {
    bottom: 131rem;
    left: 3rem;
    width: 8.7rem;
  }
}

.body-bg__image {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  left: -0.5rem;
  z-index: -1;
}
.body-bg__image:where(.body-bg01 *) {
  padding-bottom: 15rem;
}
.body-bg__image * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv {
  padding-top: 8rem;
  padding-bottom: 16rem;
}
@media (min-width: 768px) {
  .fv {
    padding-top: 5.5rem;
    padding-bottom: 10.5rem;
  }
}

.fv__title {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
  margin-bottom: 6.5rem;
  font-size: 3.6rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .fv__title {
    gap: 1.5rem;
    font-size: 10rem;
  }
}
.fv__title > span {
  position: relative;
  padding-right: 0.4em;
  padding-left: 0.1em;
  line-height: 0.9;
  background-color: #fcfbfc;
  border: var(--title-border-width) solid var(--color-black);
}
.fv__title > span::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 9.3rem;
  height: auto;
  aspect-ratio: 261/91;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='261' height='91' viewBox='0 0 261.219 91.099'><path d='M388.07,487.589l-45.783-91.014-215.436-.085,261.219,91.1' transform='translate(-126.851 -396.49)' opacity='0.8'/></svg>") no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .fv__title > span::after {
    width: 26.1rem;
  }
}

.fv__video {
  position: relative;
  max-width: 83rem;
  height: auto;
  aspect-ratio: 830/302.89;
  padding: 0.5rem;
  margin: 0 0 1.5rem auto;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 2.5rem;
}
@media (min-width: 768px) {
  .fv__video {
    padding: 1rem;
    border-radius: 3rem;
  }
}
.fv__video > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}

.fv__sub {
  max-width: 87rem;
  padding: 0 0.5rem 0.5rem;
  margin-inline: auto;
  background-color: var(--color-red);
}
@media (min-width: 768px) {
  .fv__sub {
    padding: 1rem 1.5rem;
  }
}

.fv__sub--text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #f3ff3c;
  text-align: center;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 0.04rem var(--color-black);
}
@media (min-width: 768px) {
  .fv__sub--text {
    -webkit-text-stroke: 0.2rem var(--color-black);
    font-size: 4rem;
  }
}

.plans {
  position: relative;
}

.plans__title {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1666666667;
  background-color: #f3ff3c;
  border: var(--title-border-width) solid var(--color-black);
}
@media (min-width: 768px) {
  .plans__title {
    font-size: 6rem;
  }
}
.plans__title::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 13.8rem;
  height: auto;
  aspect-ratio: 276/103;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='276.165' height='103.683' viewBox='0 0 276 103'><path d='M398.35,1220.775l-48.4-103.586-227.763-.1L398.35,1220.775' transform='translate(-122.185 -1117.092)'/></svg>") no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .plans__title::after {
    width: 27.6rem;
  }
}

.plans__text {
  display: inline-block;
  padding-inline: 0.3em;
  margin-bottom: 7rem;
  font-size: 1.6rem;
  line-height: 1.4761904762em;
  background-color: #f2f2f2;
}
@media (min-width: 768px) {
  .plans__text {
    font-size: 2.1rem;
  }
}

.plans__illust {
  position: absolute;
  top: 290rem;
  right: 0;
  z-index: 1;
  width: 19.8rem;
}
@media (min-width: 768px) {
  .plans__illust {
    top: 0;
    z-index: -1;
    width: 37.8rem;
  }
}

.plans__list {
  display: grid;
  gap: 2rem 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .plans__list {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 5rem;
  }
}

.plans__card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  padding: 1rem 1rem 2rem;
  text-decoration: none;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 2rem;
}
@media (min-width: 768px) {
  .plans__card {
    padding-bottom: 3.5rem;
  }
}
.plans__card > *:not(.plans__card--image, .plans__card--icon) {
  padding-inline: 1rem;
}

.plans__card--image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 0.1rem solid var(--color-black);
  border-radius: 1rem;
}
.plans__card--image * {
  width: 100%;
  height: auto;
  aspect-ratio: 36/24;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.plans__card--image *:where(.plans__card:focus-visible *) {
  transform: scale(1.1);
}
@media (any-hover: hover) {
  .plans__card--image *:where(.plans__card:hover *) {
    transform: scale(1.1);
  }
}

.plans__card--title {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4166666667;
}
@media (min-width: 768px) {
  .plans__card--title {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
  }
}

.plans__card--text {
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .plans__card--text {
    margin-bottom: 1rem;
  }
}

.plans__card--price {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .plans__card--price {
    font-size: 1.6rem;
  }
}
.plans__card--price span {
  font-size: 1.25em;
}

.plans__card--icon {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 3.6rem;
  height: auto;
  aspect-ratio: 1;
  fill: var(--color-purple);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .plans__card--icon {
    width: 4.4rem;
  }
}
.plans__card--icon:where(.plans__card:focus-visible *) {
  transform: translate(1rem, -1rem);
}
@media (any-hover: hover) {
  .plans__card--icon:where(.plans__card:hover *) {
    transform: translate(1rem, -1rem);
  }
}

.plans__keyword {
  max-width: 112.7rem;
  padding: 0 1.5rem 5rem;
  margin: 0 auto 5rem;
  background-color: #8cf70f;
  border-radius: 3rem;
  box-shadow: 0.4rem 1rem 0 var(--color-black);
}
@media (min-width: 768px) {
  .plans__keyword {
    padding: 0 2rem 5rem;
    margin-bottom: 6rem;
    box-shadow: 1rem 1rem 0 var(--color-black);
  }
}

.plans__keyword--title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1em 0.3em;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #8cf70f;
  text-transform: uppercase;
  background-color: var(--color-black);
  border-radius: 0 0 1rem 1rem;
}
@media (min-width: 768px) {
  .plans__keyword--title {
    padding: 0.3em 1em;
    margin: 0 auto 2.5rem 0;
    font-size: 2.8rem;
    border-radius: 0 0 3rem 3rem;
  }
}

.plans__keyword--list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 105rem;
  margin-inline: auto;
}

.plans__keyword--link {
  position: relative;
  display: flex;
  padding: 0.7em 0.6em;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--color-white);
  border: solid 0.1rem var(--color-black);
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .plans__keyword--link {
    padding: 0.3em 0.6em;
    font-size: 1.9rem;
  }
}
.plans__keyword--link.-sp-row {
  margin-right: 45%;
}
@media (min-width: 768px) {
  .plans__keyword--link.-sp-row {
    margin-right: unset;
  }
}
.plans__keyword--link::before {
  margin-right: 0.5em;
  content: "#";
}
@media (min-width: 768px) {
  .plans__keyword--link::before {
    margin-right: 0;
  }
}
.plans__keyword--link:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .plans__keyword--link:hover {
    opacity: 0.8;
  }
}

.plans__keyword--icon {
  width: 1.2rem;
  height: auto;
  aspect-ratio: 1;
  margin-left: 0.5em;
  fill: #8cf70f;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .plans__keyword--icon {
    width: 1.8rem;
    margin-left: 1em;
  }
}
.plans__keyword--icon:where(.plans__keyword--link:focus-visible *) {
  transform: translate(0.25rem, -0.25rem);
}
@media (any-hover: hover) {
  .plans__keyword--icon:where(.plans__keyword--link:hover *) {
    transform: translate(0.25rem, -0.25rem);
  }
}

.guides {
  padding-top: 13.5rem;
}
@media (min-width: 768px) {
  .guides {
    padding-top: 8rem;
  }
}

.guides__title {
  margin-bottom: 3rem;
  font-size: 5.8rem;
  font-weight: 400;
  line-height: 1;
  color: #0044f3;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .guides__title {
    margin-bottom: 5.5rem;
    font-size: 12rem;
    line-height: 1.1;
  }
}

.guides__subtitle {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #f3ff3c;
  text-align: center;
  text-shadow: 0.4rem 0 0 var(--color-black);
  -webkit-text-stroke: 0.04rem var(--color-black);
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .guides__subtitle {
    margin-bottom: 5.5rem;
    -webkit-text-stroke: 0.1rem var(--color-black);
    font-size: 5.4rem;
  }
}
.guides__subtitle > span {
  position: relative;
}
.guides__subtitle > span::before, .guides__subtitle > span::after {
  position: absolute;
  left: 50%;
  z-index: -1;
  width: calc(100% - 1em);
  content: "";
}
.guides__subtitle > span::before {
  top: 50%;
  height: calc(100% + 0.3em);
  background-color: var(--color-red);
  transform: translate(-50%, -50%);
}
.guides__subtitle > span::after {
  top: calc(100% + 0.15em);
  height: auto;
  aspect-ratio: 637/79;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: var(--color-black);
  transform: translateX(-50%);
}

.guides__swiper--slide {
  aspect-ratio: 1;
  padding: 0.5rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .guides__swiper--slide {
    padding: 1rem;
  }
}
.guides__swiper--slide > * {
  border: 0.1rem solid var(--color-black);
  border-radius: 50%;
}

.wonders {
  padding-top: 22.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .wonders {
    padding-top: 8.5rem;
    padding-bottom: 6rem;
  }
}

.wonders__title {
  display: grid;
  gap: 0.4285714286em;
  justify-items: start;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .wonders__title {
    margin-bottom: 17rem;
    font-size: 7rem;
    letter-spacing: 0.03em;
  }
}
.wonders__title > span {
  position: relative;
  padding: 0.1em 0;
}
.wonders__title > span::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  height: auto;
  content: "";
}
.wonders__title > span:nth-child(1) {
  background-color: #8cf70f;
}
.wonders__title > span:nth-child(1)::after {
  width: 9.6rem;
  aspect-ratio: 241/160;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 241.002 160.959'><path d='M241.002,160.959 L198.762,0.151 0,0 241,160 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .wonders__title > span:nth-child(1)::after {
    width: 24.1rem;
  }
}
.wonders__title > span:nth-child(2)::after {
  width: 11rem;
  aspect-ratio: 276/160;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 276 160'><path d='M275.887,160.959 L227.533,0.151 0,0 275.887,160.959 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .wonders__title > span:nth-child(2)::after {
    width: 27.6rem;
  }
}
.wonders__title > span:nth-child(2) > span {
  position: relative;
}
.wonders__title > span:nth-child(2) > span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: auto;
  height: 100%;
  content: "";
}
.wonders__title > span:nth-child(2) > span:nth-child(1) {
  color: var(--color-red);
  background: url(../images/wonders_title_bg01.png) no-repeat center/cover;
}
.wonders__title > span:nth-child(2) > span:nth-child(2) {
  background: url(../images/wonders_title_bg02.png) no-repeat center/cover;
}

.wonders__text {
  max-width: 70.9rem;
  padding-inline: 0.5rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  background-color: #f2f2f2;
}
@media (min-width: 768px) {
  .wonders__text {
    padding-inline: 0;
    margin-left: 3rem;
    font-size: 2rem;
    line-height: 2;
  }
}

.app {
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .app {
    padding-top: 7.5rem;
  }
}

.app__inner {
  --container-width: 29rem;
}
@media (min-width: 768px) {
  .app__inner {
    --container-width: 101rem;
  }
}

.app__box {
  position: relative;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  align-items: start;
  aspect-ratio: 285/305;
  padding: 3rem;
}
@media (min-width: 768px) {
  .app__box {
    gap: 6.5rem 0;
    aspect-ratio: 1010/490;
    padding: 0;
  }
}

.app__box--icon {
  position: absolute;
  top: 0;
  left: 3.5rem;
  z-index: 1;
  translate: -50% -50%;
}
@media (min-width: 768px) {
  .app__box--icon {
    top: 4rem;
    left: 2rem;
  }
}
.app__box--icon * {
  width: 9.2rem;
  height: auto;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .app__box--icon * {
    width: 24.7rem;
  }
}

.app__box--bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 0.5rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .app__box--bg {
    padding: 1rem;
    border-width: 0.2rem;
    border-radius: 3rem;
  }
}

.app__box--image {
  position: relative;
  grid-area: 2/1/3/2;
}
@media (min-width: 768px) {
  .app__box--image {
    grid-area: 1/1/3/2;
  }
}
.app__box--image img {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 11rem;
  max-width: unset;
}
@media (min-width: 768px) {
  .app__box--image img {
    top: -1rem;
    left: 7rem;
    width: 30rem;
  }
}

.app__box--title {
  display: grid;
  grid-area: 1/1/2/3;
  gap: 0.462962963em;
  justify-items: start;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: #f3ff3c;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .app__box--title {
    grid-area: 1/2/2/3;
    padding-top: 9rem;
    font-size: 5.4rem;
  }
}
.app__box--title span {
  background-color: var(--color-black);
}

.app__box--text {
  grid-area: 2/2/3/3;
  max-width: 53rem;
  margin-left: 2rem;
  font-family: var(--font-gothic);
  font-size: 1rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .app__box--text {
    grid-area: 2/2/3/3;
    font-size: 1.6rem;
  }
}

.shorts {
  position: relative;
  padding-top: 13.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .shorts {
    padding-top: 33.5rem;
    padding-bottom: 12rem;
  }
}

.shorts__title {
  position: relative;
  padding: 0.2rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1666666667;
  color: var(--color-white);
  letter-spacing: -0.04em;
  background-color: var(--color-red);
  border: 0.3rem solid var(--color-black);
}
@media (min-width: 768px) {
  .shorts__title {
    display: inline-block;
    padding: 1rem 3rem 1rem 0.2rem;
    margin-bottom: 6rem;
    font-size: 6rem;
    letter-spacing: -0.07em;
  }
}
.shorts__title::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 10.3rem;
  height: auto;
  aspect-ratio: 276.165/103.683;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 276.165 103.683'><path d='M276.165,103.683 L227.763,0.1 0,0 276.165,103.683 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .shorts__title::after {
    width: 27.6rem;
  }
}

.shorts__text {
  padding-inline: 0.5rem;
  margin: 0 auto 5rem;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--color-red);
  letter-spacing: 0.03em;
  background-color: #f2f2f2;
}
@media (min-width: 768px) {
  .shorts__text {
    max-width: calc(100% - 5rem);
    padding-inline: 1rem;
    margin-bottom: 9.5rem;
    font-size: 1.8rem;
    line-height: 2;
  }
}

.shorts__swiper--wrapper {
  transition-timing-function: linear;
}

.shorts__swiper--slide-inner {
  aspect-ratio: 9/16;
  padding: 0.8rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 2rem;
}
@media (min-width: 768px) {
  .shorts__swiper--slide-inner {
    padding: 1rem;
  }
}
.shorts__swiper--slide-inner video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.shorts__illust {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: -1;
  width: 17rem;
}
@media (min-width: 768px) {
  .shorts__illust {
    top: 6rem;
    right: 9rem;
    width: 38.1rem;
  }
}

.cta {
  position: relative;
  min-height: 43.8rem;
  padding-top: 9.5rem;
}
@media (min-width: 768px) {
  .cta {
    min-height: 62rem;
    padding-top: 9rem;
  }
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: solid 0.5rem var(--color-black);
  border-bottom: solid 0.5rem var(--color-black);
}
@media (min-width: 768px) {
  .cta__bg {
    border-top-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
}
.cta__bg * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__title {
  display: grid;
  gap: 0.2em;
  justify-items: start;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .cta__title {
    margin-bottom: 6rem;
    font-size: 10rem;
    line-height: 0.9;
  }
}
.cta__title > span {
  position: relative;
  padding: 0 0.1em;
  background-color: #fcfbfc;
  border: var(--title-border-width) solid var(--color-black);
}
.cta__title > span::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 9.3rem;
  height: auto;
  aspect-ratio: 261.219/91.099;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 261.219 91.099'><path d='M261.219,91.099 L215.436,0.085 0,0 261.219,91.099 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .cta__title > span::after {
    width: 26.1rem;
  }
}

.cta__text {
  position: relative;
  max-width: 92.5rem;
  padding-inline: 0.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  background-color: #f3ff3c;
}
@media (min-width: 768px) {
  .cta__text {
    padding-inline: 1rem;
    font-size: 3rem;
  }
}

.cta__link {
  position: absolute;
  right: 0;
  bottom: 3rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .cta__link {
    right: 7rem;
    bottom: 4.5rem;
  }
}
.cta__link::before {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background: url(../images/cta_button_bg.svg) no-repeat center/contain;
  filter: brightness(0);
  animation: icon-rotate 40s linear infinite;
}

.cta__link--bg {
  width: 14rem;
  height: auto;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .cta__link--bg {
    width: 25rem;
  }
}

.cta__link--text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2692307692;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .cta__link--text {
    font-size: 2.6rem;
  }
}

.cta__link--icon {
  position: absolute;
  top: 4.5rem;
  right: 2.5rem;
  width: 2.8rem;
  height: auto;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .cta__link--icon {
    top: 7.5rem;
    right: 4.5rem;
    width: 5rem;
  }
}
.cta__link--icon:where(.cta__link:focus-visible *) {
  transform: translate(1rem, -1rem);
}
@media (any-hover: hover) {
  .cta__link--icon:where(.cta__link:hover *) {
    transform: translate(1rem, -1rem);
  }
}

.cta__illust {
  position: absolute;
  top: 2rem;
  right: 23.5rem;
  width: 9.2rem;
  height: auto;
  aspect-ratio: 1;
  translate: 0 -50%;
  animation: icon-rotate 30s linear infinite;
}
@media (min-width: 768px) {
  .cta__illust {
    top: 4rem;
    right: 18rem;
    width: 24.7rem;
  }
}

.what {
  padding-top: 11rem;
}

.what__title {
  margin-bottom: 1.5rem;
  font-size: 2.7rem;
  font-weight: 500;
  color: var(--color-red);
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .what__title {
    margin-bottom: 8.5rem;
    font-size: 7rem;
    text-align: end;
  }
}
.what__title > span {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  background-color: #f3ff3c;
  border: var(--title-border-width) solid var(--color-black);
}
@media (min-width: 768px) {
  .what__title > span {
    display: unset;
    line-height: 0.7;
  }
}
.what__title > span::before {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 10.3rem;
  height: auto;
  aspect-ratio: 241.002/160.959;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 241.002 160.959'><path d='M241.002,160.959 L198.763,0.151 0,0 241.002,160.959 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .what__title > span::before {
    width: 24.1rem;
  }
}

.what__text {
  max-width: 107rem;
  padding-inline: 0.5rem;
  margin: 0 0 12.5rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  background-color: #f2f2f2;
}
@media (min-width: 768px) {
  .what__text {
    padding-inline: 1rem;
    margin: 0 1rem 8.5rem auto;
    font-size: 1.7rem;
    line-height: 2;
  }
}

.what__list {
  --margin-top: 12rem;
  --gap: 2.5rem;
  display: grid;
  row-gap: 3.5rem;
  margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
  .what__list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
  }
}

.what__card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 3rem;
  color: var(--color-white);
  background-color: var(--color-purple);
  border: 0.1rem solid var(--color-black);
  border-radius: 1rem;
  box-shadow: 0.4rem 1rem 0 var(--color-black);
}
@media (min-width: 768px) {
  .what__card {
    flex-basis: calc(33.3333333333% - var(--gap) * 2 / 3);
    border-radius: 2rem;
    box-shadow: 1rem 1rem 0 var(--color-black);
  }
  .what__card:nth-of-type(2) {
    margin-top: calc(var(--margin-top) * 1);
  }
  .what__card:nth-of-type(3) {
    margin-top: calc(var(--margin-top) * 2);
  }
}
.what__card > *:not(.what__card--image) {
  padding-inline: 1rem;
}

.what__card--image {
  width: 100%;
  height: auto;
  aspect-ratio: 290/198;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .what__card--image {
    aspect-ratio: 36/24;
    margin-bottom: 1.5rem;
  }
}
.what__card--image * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.what__card--title {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.0909090909;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .what__card--title {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 1.4166666667;
  }
}

.what__card--text {
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .what__card--text {
    font-size: 1.5rem;
  }
}

.what__box {
  max-width: 78.5rem;
  padding: 2rem 1.5rem 1.5rem;
  margin-top: -3rem;
  margin-bottom: 5.5rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
}
@media (min-width: 768px) {
  .what__box {
    padding: 1rem 2rem 1.5rem;
    margin-bottom: 7.5rem;
  }
}

.what__box--title {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .what__box--title {
    font-size: 3.9rem;
  }
}

.what__box--text {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .what__box--text {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
}
.what__box--text > span {
  background-color: var(--color-yellow);
}

.what__box--subtext {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .what__box--subtext {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.what__infinity-slider img {
  width: auto;
  max-width: unset;
  height: 5rem;
}
@media (min-width: 768px) {
  .what__infinity-slider img {
    height: 12rem;
  }
}

.comparison {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .comparison {
    padding-top: 8rem;
  }
}

.comparison__inner {
  --container-width: 115rem;
}

.comparison__title {
  position: relative;
  display: grid;
  justify-items: start;
  max-width: 99.7rem;
  padding: 1rem 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: #f3ff3c;
  letter-spacing: 0.03em;
  background-color: var(--color-black);
  border: var(--title-border-width) solid var(--color-white);
}
@media (min-width: 768px) {
  .comparison__title {
    padding: 0.5rem 2rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 7rem;
  }
}
.comparison__title::after {
  position: absolute;
  top: calc(100% + var(--title-border-width));
  left: 0;
  z-index: -1;
  width: 10.3rem;
  height: auto;
  aspect-ratio: 276.165/103.684;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 276.165 103.684'><path d='M276.165,103.684 L227.763,0.098 0,0 16.389,6.153 276.165,103.684 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .comparison__title::after {
    width: 27.6rem;
  }
}

.comparison__text {
  display: inline-block;
  padding-inline: 0.5rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  background-color: #f2f2f2;
}
@media (min-width: 768px) {
  .comparison__text {
    padding-inline: 1rem;
    margin-bottom: 8rem;
    font-size: 2.4rem;
  }
}

.comparison__table--wrapper {
  max-width: 29rem;
  padding: 0.5rem;
  margin: 0 auto 3.5rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .comparison__table--wrapper {
    max-width: 101rem;
    padding: 1rem;
    margin-bottom: 0;
    border-width: 0.2rem;
    border-radius: 3rem;
  }
}

.comparison__table {
  width: 100%;
  padding: 1rem 0.5rem 1.5rem;
  text-align: center;
  background-color: var(--color-black);
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .comparison__table {
    padding: 2rem 2rem 1rem;
    border-radius: 2rem;
  }
}
.comparison__table > * > * {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-black);
}
.comparison__table > * > *:last-child {
  color: var(--color-white);
  background: linear-gradient(to right, #ffd92d 0%, #d720ff 100%);
}
.comparison__table .comparison__table--header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .comparison__table .comparison__table--header {
    grid-template-columns: 27% 1fr 1fr;
  }
  .comparison__table .comparison__table--header::before {
    content: "";
  }
}
.comparison__table .comparison__table--header > * {
  min-height: 4rem;
  font-size: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media (min-width: 768px) {
  .comparison__table .comparison__table--header > * {
    min-height: 8rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }
  .comparison__table .comparison__table--header > *:first-of-type {
    font-size: 2rem;
  }
  .comparison__table .comparison__table--header > *:last-of-type {
    font-size: 3rem;
  }
}
.comparison__table .comparison__table--row {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 35% 1fr;
  min-height: 10.5rem;
}
@media (min-width: 768px) {
  .comparison__table .comparison__table--row {
    grid-template-rows: unset;
    grid-template-columns: 27% 1fr 1fr;
    min-height: 8.5rem;
  }
}
.comparison__table .comparison__table--row dt {
  grid-row: span 2;
  padding: 0;
  padding-left: 0.1em;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 0.7;
  border-top-left-radius: 1rem;
}
@media (min-width: 768px) {
  .comparison__table .comparison__table--row dt {
    grid-row: unset;
    align-items: end;
    justify-content: flex-start;
    font-size: 5rem;
    border-top-left-radius: unset;
  }
}
.comparison__table .comparison__table--row dd {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .comparison__table .comparison__table--row dd:first-of-type {
    font-size: 1.6rem;
  }
  .comparison__table .comparison__table--row dd:last-of-type {
    font-size: 1.4rem;
  }
}

.use {
  padding-top: 9rem;
}
@media (min-width: 768px) {
  .use {
    padding-top: 7.5rem;
  }
}

.use__inner {
  position: relative;
}

.use__title {
  position: relative;
  display: inline-block;
  margin-bottom: 17.5rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #f3ff3c;
  letter-spacing: 0.03em;
  background-color: var(--color-purple);
  border: 0.1rem solid var(--color-black);
}
@media (min-width: 768px) {
  .use__title {
    margin-bottom: 46.5rem;
    font-size: 7rem;
  }
}
.use__title::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 10.3rem;
  height: auto;
  aspect-ratio: 241.002/160.959;
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 241.002 160.959'><path d='M241.002,160.959 L198.762,0.15 0,0 241.002,160.959 Z' fill='black'/></svg>") no-repeat center/contain;
}
@media (min-width: 768px) {
  .use__title::after {
    width: 24.1rem;
  }
}

.use__iamges {
  position: absolute;
  top: -9rem;
  left: 50%;
  z-index: -1;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: space-between;
  width: 100vw;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .use__iamges {
    top: 4rem;
    flex-direction: row;
    width: calc(100vw - 7rem);
  }
}

.use__iamge {
  overflow: hidden;
  border: 0.2rem solid #f3ff3c;
}
@media (min-width: 768px) {
  .use__iamge {
    border-width: 0.5rem;
  }
}
.use__iamge * {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .use__iamge * {
    height: 100%;
  }
}
.use__iamge:nth-of-type(1) {
  width: 64vw;
  margin: -2rem auto 0 0;
  border-radius: 0 3rem 3rem 0;
}
@media (min-width: 768px) {
  .use__iamge:nth-of-type(1) {
    flex-basis: 48.6111111111vw;
    width: unset;
    margin: 7rem 0 0;
  }
}
.use__iamge:nth-of-type(2) {
  width: 69.3333333333vw;
  margin: 0 0 0 auto;
  border-radius: 3rem 0 0 3rem;
}
@media (min-width: 768px) {
  .use__iamge:nth-of-type(2) {
    flex-basis: 43.0555555556vw;
    width: unset;
    margin: unset;
  }
}

.use__contents--wrapper {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #8cf70f;
  border-radius: 4rem 4rem 0 0;
}
@media (min-width: 768px) {
  .use__contents--wrapper {
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-radius: 10rem 10rem 0 0;
  }
}

.use__contents {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .use__contents {
    grid-template-columns: 50rem 1fr;
  }
}

.use__contents--image {
  overflow: hidden;
  border: solid 1px var(--color-black);
  border-radius: 1rem;
}
.use__contents--image img {
  width: 100%;
}

.use__contents--list {
  display: grid;
  counter-reset: counter;
}

.use__contents--item {
  --background-color: var(--color-purple);
  position: relative;
  display: grid;
  gap: 0 2rem;
  align-items: center;
  padding: 2rem 1rem;
  background-color: var(--background-color);
  border: 0.1rem solid var(--color-black);
  border-radius: 2rem 2rem 0 0;
}
@media (min-width: 768px) {
  .use__contents--item {
    grid-template-columns: auto 1fr;
    padding: 1.5rem 3.5rem;
  }
}
.use__contents--item:nth-of-type(1) {
  --background-color: var(--color-red);
}
.use__contents--item:not(:nth-of-type(3)) {
  border-bottom: none;
}
.use__contents--item:not(:nth-of-type(3))::after {
  position: absolute;
  top: calc(100% - 1px);
  right: -0.1rem;
  left: -0.1rem;
  width: calc(100% + 0.2rem);
  height: 3rem;
  content: "";
  background-color: var(--background-color);
  border-right: 0.1rem solid var(--color-black);
  border-left: 0.1rem solid var(--color-black);
}
.use__contents--item::before {
  font-size: 3rem;
  font-weight: 500;
  color: #f3ff3c;
  content: "" counter(counter, decimal-leading-zero);
  counter-increment: counter 1;
  -webkit-text-stroke: 0.1rem var(--color-black);
}
@media (min-width: 768px) {
  .use__contents--item::before {
    grid-area: 1/1/3/2;
    font-size: 6rem;
  }
}

.use__contents--item-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .use__contents--item-title {
    grid-area: 1/2/2/3;
    font-size: 1.8rem;
  }
}

.use__contents--item-text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .use__contents--item-text {
    grid-area: 2/2/3/3;
  }
}

.use__infinity-slider {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .use__infinity-slider {
    font-size: 8.6rem;
  }
}

.reviews {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-white);
  background-image: repeating-linear-gradient(0deg, #f3ff3d 0 0.1rem, transparent 0.2rem 1.2rem), repeating-linear-gradient(90deg, #f3ff3d 0 0.1rem, transparent 1px 1.2rem);
}
@media (min-width: 768px) {
  .reviews {
    padding-top: 14.5rem;
    padding-bottom: 12rem;
    background-image: repeating-linear-gradient(0deg, #f3ff3d 0 0.2rem, transparent 0.2rem 3rem), repeating-linear-gradient(90deg, #f3ff3d 0 0.2rem, transparent 1px 3rem);
  }
}

.reviews__inner {
  position: relative;
  z-index: 1;
}

.reviews__title {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .reviews__title {
    margin-bottom: 5rem;
  }
}
.reviews__title > span {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #f3ff3c;
  text-shadow: 0.4rem 0 0 var(--color-black);
  letter-spacing: 0.02em;
  -webkit-text-stroke: 0.04rem var(--color-black);
}
@media (min-width: 768px) {
  .reviews__title > span {
    -webkit-text-stroke: 0.1rem var(--color-black);
    font-size: 7rem;
  }
}
.reviews__title > span::before, .reviews__title > span::after {
  position: absolute;
  left: 50%;
  z-index: -1;
  width: calc(100% - 0.5em);
  content: "";
}
@media (min-width: 768px) {
  .reviews__title > span::before, .reviews__title > span::after {
    width: calc(100% - 2.5em);
  }
}
.reviews__title > span::before {
  top: 50%;
  height: calc(100% - 0.1em);
  background-color: var(--color-red);
  transform: translate(-50%, -50%);
}
.reviews__title > span::after {
  top: calc(100% - 0.05em);
  height: auto;
  aspect-ratio: 637/79;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: var(--color-black);
  transform: translateX(-50%);
}
.reviews__swiper {
  padding-left: 1.2rem;
}

.reviews__swiper--slide {
  height: auto !important;
}

.reviews__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem 1rem 3rem;
  color: inherit;
  text-decoration: none;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-black);
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .reviews__card {
    padding: 1rem 1rem 1rem;
  }
}
@media (min-width: 768px) {
  .reviews__card > *:not(.reviews__card--iamge, .reviews__card--icon) {
    padding-inline: 1rem;
  }
}

.reviews__card--iamge {
  width: 100%;
  height: auto;
  aspect-ratio: 36/24;
  margin-bottom: 2rem;
  overflow: hidden;
  background: transparent;
  border-radius: 1rem;
}
.reviews__card--iamge * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews__card--title {
  flex-grow: 1;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3043478261;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .reviews__card--title {
    margin-bottom: 2.5rem;
    font-size: 2.3rem;
  }
}

.reviews__card--text {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
@media (min-width: 768px) {
  .reviews__card--text {
    -webkit-line-clamp: 10;
  }
}

.reviews__card--icon {
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 1;
  margin: 1.5rem 0.5rem 0 auto;
  fill: var(--color-purple);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .reviews__card--icon {
    width: 4.4rem;
    margin: 1rem 1rem 0 auto;
  }
}
@media (max-width: 768px) {
  .reviews__card--icon {
    width: 2.4rem;
    margin: 0.5rem 1rem 0 auto;
  }
}
.reviews__card--icon:where(.reviews__card:focus-visible *) {
  transform: translate(1rem, -1rem);
}
@media (any-hover: hover) {
  .reviews__card--icon:where(.reviews__card:hover *) {
    transform: translate(1rem, -1rem);
  }
}

.cta-app {
  position: relative;
}

.cta-app__bg {
  position: absolute;
  inset: 0;
}
.cta-app__bg * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-app__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .cta-app__inner {
    padding-top: 5rem;
  }
}

.cta-app__row {
  display: grid;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-app__row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;
  }
}

.cta-app__image {
  position: relative;
  height: 11rem;
}
@media (min-width: 768px) {
  .cta-app__image {
    height: auto;
  }
}
.cta-app__image > * {
  position: absolute;
  top: -12.5rem;
  left: 0;
  width: 21rem;
  margin: auto;
}
@media (min-width: 768px) {
  .cta-app__image > * {
    top: -18rem;
    right: 0;
    left: 0;
    width: 57rem;
  }
}

.cta-app__content {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cta-app__content {
    gap: 3rem;
  }
}

.cta-app__title {
  display: grid;
  gap: 0.11rem;
  justify-items: start;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #f3ff3c;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .cta-app__title {
    font-size: 4rem;
  }
}
.cta-app__title > span {
  padding-inline: 1rem;
  background-color: var(--color-black);
}

.cta-app__list {
  display: flex;
  gap: 3rem;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .cta-app__list {
    padding-right: 6rem;
    padding-left: 4rem;
  }
}

.cta-app__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-app__item {
    gap: 2.5rem;
  }
}

.cta-app__infinity-slider {
  position: absolute;
  bottom: 0;
}
@media (min-width: 768px) {
  .cta-app__infinity-slider {
    bottom: 3rem;
  }
}
.cta-app__infinity-slider img {
  width: auto;
  max-width: unset;
  height: 8rem;
}
@media (min-width: 768px) {
  .cta-app__infinity-slider img {
    height: 17rem;
  }
}

.cta-app__logo > * {
  width: 17rem;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cta-app__logo > * {
    width: 29.1rem;
  }
}

.fixed-button {
  position: fixed;
  right: 3rem;
  bottom: 1rem;
  z-index: 10;
  width: 14rem;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .fixed-button {
    right: 0;
    width: 19rem;
  }
}
.fixed-button a {
  width: 100%;
  height: 100%;
}
.fixed-button .cta__link--text {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .fixed-button .cta__link--text {
    font-size: 2rem;
  }
}
.fixed-button .cta__link--icon {
  top: 4.5rem;
  right: 2.5rem;
  width: 2.7rem;
}
@media (min-width: 768px) {
  .fixed-button .cta__link--icon {
    top: 6.5rem;
    right: 3.5rem;
    width: 3.7rem;
  }
}

.footer {
  position: relative;
  display: grid;
  place-items: center;
  height: 3rem;
}
@media (min-width: 768px) {
  .footer {
    height: 5rem;
  }
}

.footer__bg {
  position: absolute;
  inset: 0;
}

.footer__copyright {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 2rem;
  }
}

.animation-rotate {
  transform-origin: center center;
  animation: icon-rotate 40s linear infinite;
}

[class*=animation-scale] {
  animation: icon-scale 8s linear infinite;
}

.animation-scale--left {
  transform-origin: left;
}

.animation-scale--right {
  transform-origin: right;
}

@keyframes base-flame-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes base-flame-y {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vw);
  }
}
@keyframes icon-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes icon-scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes infinity-slider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
:has(> .js-video__button) {
  position: relative;
}

.js-video__button {
  all: unset;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: rgba(18, 18, 18, 0.5607843137);
  border-radius: 50%;
  transform: translate3d(0, 0, 0);
}
.js-video__button::before {
  display: inline-block;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  vertical-align: middle;
  content: "";
  background: url(../images/volume_icon.svg) no-repeat center/contain;
}
.js-video__button.is-muted::before {
  background-image: url(../images/mute_icon.svg);
}

.js-parallax {
  transform: translateZ(0);
}