@charset "UTF-8";

*:where(:not(iframe, canvas, img, video, svg, svg *, symbol *)) {
  all: unset;
  display: revert
}

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

a, button {
  cursor: revert
}

b {
  font-weight: 600
}

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

img {
  max-width: 100%
}

table {
  border-collapse: collapse
}

textarea {
  white-space: revert
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert
}

::-moz-placeholder {
  color: unset
}

::placeholder {
  color: unset
}

:where([hidden]) {
  display: none
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space
}

:where([draggable=true]) {
  -webkit-user-drag: element
}

:root {
  --clr-white: #fff;
  --clr-black: #0A0A0A;
  --clr-blue: #1A6FE8;
  --clr-dark: #00092E;
  --clr-surface: #F7F7F7;
  --clr-border: #CCCCCC;
  --clr-error: #E11900;
  --clr-placeholder: #bcbcbc;
  --clr-bg: #fff;
  --clr-text: #0A0A0A;
  --fs-sm: .75em;
  --fs-md: 1em;
  --fs-lg: 1.5em;
  --ff-default: LINE Seed JP, Inter, sans-serif;
  --ff-en: Inter, sans-serif;
  --ff-ja: LINE Seed JP, sans-serif
}

html {
  font-family: var(--ff-default);
  font-size: var(--fs-md)
}

body {
  font-family: LINE Seed JP, Inter, sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6
}

a {
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all
}

img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain
}

.-zoomIn {
  animation-name: zoomInAnime;
  animation-duration: .7s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards
}

.-zoomInTrigger, .-fadeUpTrigger, .-fadeDownTrigger, .-fadeLeftTrigger, .-fadeRightTrigger, .-fadeInTrigger {
  opacity: 0
}

@keyframes zoomInAnime {
  0% {
    transform: scale(.88);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.-fadeIn {
  animation-name: fadeInAnime;
  animation-duration: .6s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards;
  opacity: 0
}

@keyframes fadeInAnime {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.-fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .75s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards;
  opacity: 0
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(36px)
  }

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

.-fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: .75s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards;
  opacity: 0
}

@keyframes fadeDownAnime {
  0% {
    opacity: 0;
    transform: translateY(-36px)
  }

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

.-fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: .75s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards;
  opacity: 0
}

@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    transform: translate(-36px)
  }

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

.-fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: .75s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards;
  opacity: 0
}

@keyframes fadeRightAnime {
  0% {
    opacity: 0;
    transform: translate(36px)
  }

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

.-delay-time02 {
  animation-delay: .1s
}

.-delay-time04 {
  animation-delay: .2s
}

.-delay-time06 {
  animation-delay: .3s
}

.-delay-time08 {
  animation-delay: .4s
}

.-delay-time10 {
  animation-delay: .5s
}

.-delay-time12 {
  animation-delay: .6s
}

.-delay-time14 {
  animation-delay: .7s
}

.-delay-time16 {
  animation-delay: .8s
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: 0
}

.marquee__track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform
}

.marquee:hover .marquee__track {
  animation-play-state: paused
}

@keyframes marqueeScroll {
  0% {
    transform: translate(0)
  }

  to {
    transform: translate(-50%)
  }
}

.footer {
  position: relative;
  z-index: 1;
  background: var(--clr-black);
  color: var(--clr-white);
  padding: 3.90625vw
}

@media (max-width: 1020px) {
  .footer {
    padding: 5.0403225806vw
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 10.6666666667vw
  }
}

.footer__inner {
  width: 100%;
  max-width: 92.1875vw;
  margin: 0 auto
}

@media (max-width: 1020px) {
  .footer__inner {
    max-width: 118.9516129032vw
  }
}

@media (max-width: 768px) {
  .footer__inner {
    max-width: 100vw
  }
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.34375vw
}

@media (max-width: 1020px) {
  .footer__top {
    margin-bottom: 3.0241935484vw
  }
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.2666666667vw;
    margin-bottom: 6.4vw
  }
}

.footer__logo {
  width: 7.421875vw;
  height: 2.34375vw
}

@media (max-width: 1020px) {
  .footer__logo {
    width: 9.5766129032vw;
    height: 3.0241935484vw
  }
}

@media (max-width: 768px) {
  .footer__logo {
    width: 19.2vw;
    height: 5.8666666667vw
  }
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 2.34375vw
}

@media (max-width: 1020px) {
  .footer__nav {
    gap: 3.0241935484vw
  }
}

@media (max-width: 768px) {
  .footer__nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 2.1333333333vw;
    -moz-column-gap: 4.2666666667vw;
    column-gap: 4.2666666667vw
  }
}

.footer__nav-link {
  color: var(--clr-white);
  font-size: 1.09375vw;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .3s ease
}

.footer__nav-link:hover {
  opacity: .7
}

@media (max-width: 1020px) {
  .footer__nav-link {
    font-size: 1.4112903226vw
  }
}

@media (max-width: 768px) {
  .footer__nav-link {
    font-size: 3.2vw;
    line-height: 1.6
  }
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: #666;
  margin: 2.34375vw 0
}

@media (max-width: 1020px) {
  .footer__divider {
    margin: 3.0241935484vw 0
  }
}

@media (max-width: 768px) {
  .footer__divider {
    margin: 6.4vw 0
  }
}

.footer__bottom {
  text-align: center
}

@media (max-width: 768px) {
  .footer__bottom {
    text-align: left
  }
}

.footer__copyright {
  font-size: 1.09375vw;
  font-weight: 500;
  color: var(--clr-white)
}

@media (max-width: 1020px) {
  .footer__copyright {
    font-size: 1.4112903226vw
  }
}

@media (max-width: 768px) {
  .footer__copyright {
    font-size: 3.2vw
  }
}

.header__cta {
  position: fixed;
  top: 1.5625vw;
  right: 3.125vw;
  z-index: 100;
  background: var(--clr-blue);
  padding: .9375vw 1.875vw;
  border-radius: 78.046875vw;
  color: var(--clr-white);
  font-size: 1.09375vw;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 16px #1a6fe866
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #1a6fe880
}

@media (max-width: 1020px) {
  .header__cta {
    top: 1.814516129vw;
    right: 2.4193548387vw;
    padding: 1.0080645161vw 2.0161290323vw;
    font-size: 1.310483871vw;
    border-radius: 100.7056451613vw
  }
}

@media (max-width: 768px) {
  .header__cta {
    top: 3.2vw;
    right: 4.2666666667vw;
    padding: 2.4vw 4.2666666667vw;
    font-size: 3.2vw;
    border-radius: 266.4vw
  }
}

.layout {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh
}

.layout__header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100
}

.layout__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh
}

.page--thanks .layout__main {
  min-height: unset
}

.layout__footer {
  margin-top: auto
}
