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

html {
  max-width: 1440px;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
  font-size: 0.8333vw;
  font-size: clamp(6px, 0.8333vw, 10px);
}
@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 0.9765vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.30208vw;
    scroll-padding-top: 8rem;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 1.7361vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 10px;
    scroll-padding-top: 7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #151619;
  word-break: break-word;
  max-width: 144rem;
}
body.is-menu-open {
  overflow: hidden;
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

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

input,
textarea {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.otf");
  font-weight: 700;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.heading-line {
  display: block;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.heading-line.is-visible {
  opacity: 1;
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .heading-line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.highlight-line {
  position: relative;
}
.highlight-line::after {
  content: "";
  position: absolute;
  bottom: var(--highlight-bottom, 0.3rem);
  left: var(--highlight-left, 50%);
  width: var(--highlight-width, 32.5rem);
  height: var(--highlight-height, 1.2rem);
  margin-left: var(--highlight-margin-left, calc(var(--highlight-width, 32.5rem) / -2));
  background-color: var(--highlight-color, #FFE084);
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.highlight-line.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .highlight-line::after {
    opacity: 1;
    transform: scaleX(1);
    transition: none;
  }
}

@keyframes stagger-pop {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(1.2rem);
  }
  55% {
    opacity: 1;
    transform: scale(1.06) translateY(-0.2rem);
  }
  75% {
    transform: scale(0.98) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.stagger-pop > .stagger-pop__item {
  opacity: 0;
}
.stagger-pop.is-visible > .stagger-pop__item {
  animation: stagger-pop 0.75s ease forwards;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(1) {
  animation-delay: 0s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(3) {
  animation-delay: 0.4s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(4) {
  animation-delay: 0.6s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(5) {
  animation-delay: 0.8s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(6) {
  animation-delay: 1s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(7) {
  animation-delay: 1.2s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(8) {
  animation-delay: 1.4s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(9) {
  animation-delay: 1.6s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(10) {
  animation-delay: 1.8s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(11) {
  animation-delay: 2s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(12) {
  animation-delay: 2.2s;
}
@media (prefers-reduced-motion: reduce) {
  .stagger-pop > .stagger-pop__item {
    opacity: 1;
    animation: none;
  }
}

.fade-up > .fade-up__item {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible > .fade-up__item {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.is-visible > .fade-up__item:nth-child(1) {
  transition-delay: 0s;
}
.fade-up.is-visible > .fade-up__item:nth-child(2) {
  transition-delay: 0.12s;
}
.fade-up.is-visible > .fade-up__item:nth-child(3) {
  transition-delay: 0.24s;
}
.fade-up.is-visible > .fade-up__item:nth-child(4) {
  transition-delay: 0.36s;
}
.fade-up.is-visible > .fade-up__item:nth-child(5) {
  transition-delay: 0.48s;
}
.fade-up.is-visible > .fade-up__item:nth-child(6) {
  transition-delay: 0.6s;
}
.fade-up.is-visible > .fade-up__item:nth-child(7) {
  transition-delay: 0.72s;
}
.fade-up.is-visible > .fade-up__item:nth-child(8) {
  transition-delay: 0.84s;
}
.fade-up.is-visible > .fade-up__item:nth-child(9) {
  transition-delay: 0.96s;
}
.fade-up.is-visible > .fade-up__item:nth-child(10) {
  transition-delay: 1.08s;
}
.fade-up.is-visible > .fade-up__item:nth-child(11) {
  transition-delay: 1.2s;
}
.fade-up.is-visible > .fade-up__item:nth-child(12) {
  transition-delay: 1.32s;
}

.fade-up--self {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up--self.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up > .fade-up__item,
  .fade-up--self {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.char-reveal__mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.char-reveal__inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.char-reveal.is-visible .char-reveal__inner {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .char-reveal__inner {
    transform: none;
    opacity: 1;
    transition: none;
  }
}
@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-4rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fv-scroll-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fv-scroll-indicator {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 2.951rem);
    opacity: 0;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(4rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.line-reveal.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .line-reveal::after {
    opacity: 1;
    transform: scaleX(1);
    transition: none;
  }
}

.animation-dokundokun {
  animation: dokundokun 1300ms ease infinite;
}

.fade-in-left--self {
  opacity: 0;
}
.fade-in-left--self.is-visible {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right--self {
  opacity: 0;
}
.fade-in-right--self.is-visible {
  animation: fadeInRight 0.8s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .animation-dokundokun {
    animation: none;
  }
  .fade-in-left--self,
  .fade-in-right--self {
    opacity: 1;
  }
  .fade-in-left--self.is-visible,
  .fade-in-right--self.is-visible {
    animation: none;
  }
}
.fv {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: #151619;
  border-radius: 0 0 5rem 5rem;
}
@media (max-width: 1024px) {
  .fv {
    min-height: 760px;
  }
}
@media (max-width: 375px) {
  .fv__copy {
    width: calc(100% + 20px);
    max-width: none;
  }
  .fv__lead {
    white-space: nowrap;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .fv {
    min-height: 640px;
  }
}
@media (max-width: 375px) {
  .fv {
    min-height: 560px;
  }
}
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 22, 25, 0.4) 0%, rgba(21, 22, 25, 0.1) 35%, rgba(21, 22, 25, 0.7) 100%);
}
.fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 11rem;
}
@media (max-width: 768px) {
  .fv__inner {
    padding-bottom: 8rem;
  }
}
@media (max-width: 375px) {
  .fv__inner {
    padding-bottom: 6rem;
  }
}
.fv__title {
  margin-bottom: 3.4rem;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 130px;
  font-weight: 700;
  line-height: 1.3846;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .fv__title {
    font-size: 96px;
  }
}
@media (max-width: 768px) {
  .fv__title {
    font-size: 64px;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 375px) {
  .fv__title {
    font-size: 44px;
  }
}
@media (max-width: 375px) {
  .fv__title {
    font-size: 40px;
  }
  .fv__title-line-inner {
    white-space: nowrap;
  }
}
.fv__title-block {
  position: relative;
}
.fv__title-line {
  display: block;
  overflow: hidden;
}
.fv__title-line--second {
  padding-left: 72.9rem;
}
.fv__title-line--second .fv__title-line-inner {
  transition-delay: 0.25s;
}
@media (max-width: 1024px) {
  .fv__title-line--second {
    padding-left: 0;
  }
}
.fv__title-line-inner {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}
.fv.is-revealed .fv__title-line-inner {
  clip-path: inset(0 0 0 0);
}
.fv__title-ghost {
  color: rgba(255, 255, 255, 0.2);
  -webkit-text-stroke: 1px #fff;
}
.fv__copy {
  position: absolute;
  left: 20.55rem;
  top: 17.5rem;
  display: block;
  max-width: 60rem;
  font-family: "Noto Sans JP", sans-serif;
  text-transform: none;
}
@media (max-width: 1024px) {
  .fv__copy {
    position: static;
    left: auto;
    top: auto;
    margin-top: 2.4rem;
    max-width: none;
  }
}
.fv__rule {
  display: block;
  width: 60rem;
  max-width: 100%;
  height: 1px;
  margin-bottom: 2.4rem;
  background-color: #fff;
}
.fv__lead {
  margin-bottom: 1.4rem;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .fv__lead {
    font-size: 18px;
  }
}
.fv__desc {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .fv__desc {
    font-size: 15px;
  }
}
.fv__scroll {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fv-scroll-fade-in 0.8s ease forwards;
  animation-delay: 1.3s;
}
@media (max-width: 768px) {
  .fv__scroll {
    right: 2rem;
    bottom: 2rem;
  }
}
@media (max-width: 375px) {
  .fv__scroll {
    display: none;
  }
}
.fv__scroll-text {
  writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0;
}
.fv__scroll-track {
  position: relative;
  width: 1px;
  height: 16rem;
  background-color: rgba(255, 255, 255, 0.3);
}
.fv__scroll-indicator {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 2.951rem;
  background-color: #fff;
  transform: translateX(-50%);
  animation: fv-scroll-indicator 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .fv__title-line-inner {
    clip-path: inset(0 0 0 0) !important;
    transition: none;
  }
  .fv__scroll {
    opacity: 1;
    animation: none;
  }
  .fv__scroll-indicator {
    animation: none;
    opacity: 1;
  }
}

.catch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.6rem 4rem;
  background-color: #fff;
  text-align: center;
}

.catch__text {
  margin: 0;
  color: #404040;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .catch__text {
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  .catch__text {
    font-size: 23px;
  }
}

.catch__text-accent {
  color: #F18700;
}

.catch__text-faint {
  color: rgba(64, 64, 64, 0.2);
}

.message {
  position: relative;
}
.message__pin {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 53rem;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  border-radius: 5rem 5rem 0 0;
  background-color: #151619;
  will-change: transform;
}
@media (max-width: 768px) {
  .message__pin {
    height: 40rem;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 3rem 3rem 0 0;
  }
}
@media (max-width: 375px) {
  .message__pin {
    height: 32rem;
    min-height: 100vh;
    min-height: 100dvh;
  }
}
.message__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(21, 22, 25, 0.35);
}
.message__heading {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: 10.4rem;
  margin-bottom: 5rem;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .message__heading {
    margin-top: 6rem;
    margin-bottom: 3rem;
    font-size: 36px;
  }
}
@media (max-width: 375px) {
  .message__heading {
    margin-top: 4.4rem;
    margin-bottom: 2.4rem;
    font-size: 28px;
  }
}
.message__heading-accent {
  color: #F18700;
}
.message__text-viewport {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  overflow: hidden;
}
.message__text-track {
  position: absolute;
  top: 0;
  left: 50%;
  width: 49.8rem;
  max-width: calc(100% - 4rem);
  transform: translateX(-50%);
}
.message__text {
  padding-bottom: 6rem;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0;
  text-align: center;
  will-change: transform;
}
@media (max-width: 768px) {
  .message__text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .message__text {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .message__text-track {
    max-width: calc(100% - 1rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .message__pin {
    position: static;
    height: auto;
    padding: 6rem 0;
  }
  .message__text-viewport {
    position: static;
    overflow: visible;
  }
  .message__text-track {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .message__text {
    transform: none !important;
  }
}

.strength {
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .strength {
    border-radius: 3rem 3rem 0 0;
  }
}
.strength__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strength__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 22, 25, 0.15) 0%, rgba(21, 22, 25, 0.45) 55%, rgba(21, 22, 25, 0.6) 100%);
}
.strength__inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 11.6rem;
}
.strength__label {
  margin: 0;
  color: #5d5d5d;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .strength__label {
    font-size: 34px;
  }
}
.strength__label-accent {
  color: #F18700;
}
.strength__head {
  max-width: 79.6rem;
  margin: 5rem auto 0;
  text-align: center;
}
.strength__heading {
  margin-bottom: 1.6rem;
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.448;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .strength__heading {
    font-size: 26px;
  }
}
@media (max-width: 375px) {
  .strength__heading {
    font-size: 22px;
  }
}
.strength__heading-accent {
  color: #F18700;
}
.strength__sub {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0;
}
.strength__body {
  display: flex;
  align-items: center;
  gap: 8.54rem;
  margin: 8rem auto 0;
}
@media (max-width: 1024px) {
  .strength__body {
    flex-direction: column;
    gap: 4.8rem;
  }
}
.strength__diagram {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 46.3625rem;
  aspect-ratio: 463.625/427.739;
}
@media (max-width: 1024px) {
  .strength__diagram {
    max-width: 36rem;
  }
}
.strength__circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px) saturate(1.2);
}
.strength__circle-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.222;
  letter-spacing: 0.054rem;
  text-align: center;
}
@media (max-width: 768px) {
  .strength__circle-label {
    font-size: 14px;
  }
}
.strength__circle--light {
  background-color: rgba(255, 255, 255, 0.1);
}
.strength__circle--center {
  left: 19.173%;
  top: 20.512%;
  width: 62.176%;
  height: 67.394%;
  background-color: transparent;
}
.strength__circle--center .strength__circle-label {
  color: #F18700;
  font-size: 20px;
}
@media (max-width: 768px) {
  .strength__circle--center .strength__circle-label {
    font-size: 16px;
  }
}
.strength__circle-inner {
  position: absolute;
  inset: 18.775%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.strength__circle--used {
  left: 36.166%;
  top: 0;
  width: 28.041%;
  height: 30.393%;
}
.strength__circle--buy {
  left: 71.966%;
  top: 29.075%;
  width: 28.041%;
  height: 30.393%;
}
.strength__circle--custom {
  left: 0;
  top: 29.075%;
  width: 28.041%;
  height: 30.393%;
}
.strength__circle--storage {
  left: 60.033%;
  top: 69.15%;
  width: 28.041%;
  height: 30.393%;
}
.strength__circle--restore {
  left: 7.981%;
  top: 69.618%;
  width: 28.041%;
  height: 30.393%;
}
.strength__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  flex: 1;
  width: 100%;
  max-width: 57.5159rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.strength__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.strength__num {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  gap: 0.2rem;
}
.strength__num-label {
  writing-mode: vertical-rl;
  color: #F18700;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}
.strength__num-value {
  color: #F18700;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .strength__num-value {
    font-size: 36px;
  }
}
.strength__item-title {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .strength__item-title {
    font-size: 19px;
    line-height: 1.3;
  }
}
.strength__item-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .strength__item-desc {
    font-size: 14px;
  }
}

.service {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #1c1c1c;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .service {
    border-radius: 3rem 3rem 0 0;
  }
}
.service__inner {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.service__label {
  margin: 0 0 5rem;
  color: #5d5d5d;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .service__label {
    font-size: 34px;
  }
}
.service__label-accent {
  color: #F18700;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 25rem);
  justify-content: center;
  column-gap: 12.5rem;
  row-gap: 3rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .service__grid {
    grid-template-columns: repeat(2, 25rem);
    column-gap: 4rem;
    row-gap: 4rem;
  }
}
@media (max-width: 375px) {
  .service__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    row-gap: 4rem;
  }
}
.service__card {
  display: flex;
  flex-direction: column;
}
.service__card-media {
  position: relative;
  flex-shrink: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 250/300;
}
.service__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__card-toggle {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  color: #2f2f2f;
  font-size: 3.2rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.service__card-toggle span[aria-hidden] {
  margin-top: -2px;
}
.service__card-toggle:hover {
  background-color: #f0f0f0;
}
.service__card-toggle[aria-expanded=true] {
  transform: translate(-50%, 50%) rotate(45deg);
}
.service__card-title {
  margin: 1rem 0 0.6rem;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .service__card-title {
    font-size: 24px;
  }
}
.service__card-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
.service__overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  background-color: rgba(21, 22, 25, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  position: fixed;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 100rem;
  padding: 0 4rem;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.service-modal__panel {
  width: 100%;
  background-color: #f5f5f3;
  border: 1px solid #fff;
  border-radius: 5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-modal__panel {
    border-radius: 3rem;
  }
}
.service-modal__media {
  position: relative;
}
.service-modal__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000/230;
  object-fit: cover;
}
@media (max-width: 375px) {
  .service-modal__img {
    height: 165px;
    aspect-ratio: auto;
  }
}
.service-modal__media-inner {
  position: absolute;
  left: 9rem;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  color: #fff;
}
.service-modal__title {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .service-modal__title {
    font-size: 24px;
  }
}
.service-modal__subtitle {
  margin: 0.4rem 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .service-modal__subtitle {
    font-size: 14px;
  }
}
.service-modal__divider {
  display: block;
  width: 13.25rem;
  height: 0;
  margin-top: 2rem;
  border-top: 3px solid #fff;
}
@media (max-width: 768px) {
  .service-modal__divider {
    margin-top: 1rem;
    width: 8rem;
  }
}
.service-modal__close {
  position: absolute;
  left: 50%;
  top: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  transform: translateX(-50%);
  background-color: #F18700;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.service-modal__close:hover {
  background-color: rgb(210.4, 117.8589211618, 0);
}
.service-modal__body {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 4.7rem 4rem 4rem;
}
@media (max-width: 768px) {
  .service-modal__body {
    flex-direction: column;
    padding: 4.7rem 1.4rem 4rem;
  }
}
.service-modal__body--wide {
  display: block;
  padding: 4.7rem 4rem 4rem;
}
@media (max-width: 768px) {
  .service-modal__body--wide {
    padding: 4.7rem 1.4rem 4rem;
  }
}
.service-modal__desc {
  flex: 1;
  max-width: 39.7rem;
  margin: 0;
  color: #151619;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.service-modal__body--wide .service-modal__desc {
  max-width: 80.6rem;
}
@media (max-width: 768px) {
  .service-modal__desc {
    max-width: none;
  }
}
.service-modal__accent {
  color: #F18700;
  font-weight: 700;
}
.service-modal__lead {
  font-size: 20px;
  color: #F18700;
  font-weight: 700;
}
.service-modal__quotes {
  max-width: 80.6rem;
  margin: 2.4rem 0;
  color: #151619;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.service-modal__box {
  position: relative;
  flex-shrink: 0;
  width: 40rem;
  padding: 1.2rem 2rem;
  border: 2px solid #F18700;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .service-modal__box {
    width: 100%;
  }
}
.service-modal__box-title {
  margin: 0 0 0.8rem;
  color: #F18700;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.service-modal__box-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #151619;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.service-modal__note {
  margin: 2.4rem 0 0;
  color: #ff3838;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.service-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
  padding: 1.6rem 3.2rem;
  background: linear-gradient(90deg, #F18700 0%, #F29306 16%, #F9D423 100%);
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  letter-spacing: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.service-modal__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .service-modal {
    padding: 0 2rem;
  }
  .service-modal__media-inner {
    left: 2rem;
    bottom: 3rem;
  }
  .service-modal__divider {
    width: 8rem;
  }
}

.garage {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background-color: #1c1c1c;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .garage {
    border-radius: 3rem 3rem 0 0;
  }
}
.garage__inner {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.garage__label {
  margin: 0 0 5.3rem;
  color: #5d5d5d;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .garage__label {
    font-size: 34px;
  }
}
.garage__label-accent {
  color: #F18700;
}
.garage__gallery {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: 45rem 35rem 35rem;
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .garage__gallery {
    grid-template-rows: 34rem 26rem 26rem;
  }
}
@media (max-width: 768px) {
  .garage__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
.garage__img {
  display: block;
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
@media (max-width: 768px) {
  .garage__img {
    height: 20rem;
  }
}
.garage__stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}
@media (max-width: 768px) {
  .garage__stack {
    grid-column: span 2;
    flex-direction: row;
  }
}
.garage__stack .garage__img {
  flex: 1;
  min-height: 0;
}
.garage__img--1 {
  grid-column: 1/13;
  grid-row: 1/2;
}
@media (max-width: 768px) {
  .garage__img--1 {
    grid-column: span 2;
  }
}
.garage__stack {
  grid-column: 13/25;
  grid-row: 1/2;
}
@media (max-width: 768px) {
  .garage__stack {
    grid-column: span 2;
    grid-row: auto;
  }
}
.garage__img--4 {
  grid-column: 1/8;
  grid-row: 2/3;
}
@media (max-width: 768px) {
  .garage__img--4 {
    grid-column: span 1;
  }
}
.garage__img--5 {
  grid-column: 8/25;
  grid-row: 2/3;
}
@media (max-width: 768px) {
  .garage__img--5 {
    grid-column: span 1;
  }
}
.garage__img--6 {
  grid-column: 1/18;
  grid-row: 3/4;
}
@media (max-width: 768px) {
  .garage__img--6 {
    grid-column: span 1;
  }
}
.garage__img--7 {
  grid-column: 18/25;
  grid-row: 3/4;
}
@media (max-width: 768px) {
  .garage__img--7 {
    grid-column: span 1;
  }
}

.store {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background-color: #000;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .store {
    border-radius: 3rem 3rem 0 0;
  }
}
.store__marquee {
  overflow: hidden;
  background-color: #000;
  padding: 7.7rem 0;
}
@media (max-width: 768px) {
  .store__marquee {
    padding: 4.8rem 0;
  }
}
.store__marquee-track {
  display: flex;
  width: max-content;
  gap: 6rem;
  animation: store-marquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .store__marquee-track {
    animation: none;
  }
}
.store__marquee-item {
  flex-shrink: 0;
  color: #5d5d5d;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .store__marquee-item {
    font-size: 30px;
  }
}

@keyframes store-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#shop1 {
  background-image: url(/assets/images/bg_shop1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#shop2 {
  background-image: url(/assets/images/bg_shop2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.shop {
  position: relative;
  padding: 6rem 2rem;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .shop {
    border-radius: 3rem 3rem 0 0;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
  }
}
.shop__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  height: 100%;
  background-color: rgba(21, 22, 25, 0.7);
  border-radius: 2rem;
  padding: 3rem 4rem;
}
@media (max-width: 1024px) {
  .shop__inner {
    flex-direction: column;
    justify-content: center;
  }
}
.shop__card {
  display: flex;
  gap: 3.2rem;
  width: 45%;
}
@media (max-width: 768px) {
  .shop__card {
    width: 100%;
    gap: 1.6rem;
  }
}
.shop__card-left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex-shrink: 0;
}
.shop__badge {
  align-self: flex-start;
  padding: 0.25rem 1rem;
  background-color: #F18700;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.shop__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .shop__list {
    font-size: 14px;
  }
}
.shop__list li::before {
  content: "・";
}
.shop__card-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 24rem;
}
@media (max-width: 375px) {
  .shop__card-right {
    min-width: 0;
  }
}
.shop__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .shop__title {
    font-size: 16px;
  }
}
.shop__address {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}
.shop__address a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .shop__address {
    font-size: 14px;
  }
}
.shop__map {
  width: 100%;
  max-width: 24rem;
  height: 12rem;
  margin-top: 0.4rem;
  border-radius: 1rem;
  overflow: hidden;
}
.shop__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 375px) {
  .shop__inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .shop__map {
    max-width: none;
  }
}
.shop__catch {
  flex-shrink: 0;
  max-width: 45.6rem;
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.448;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .shop__catch {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .shop__catch {
    font-size: 24px;
  }
}
.shop__catch-accent {
  color: #F18700;
}

.company {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: #151619;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .company {
    border-radius: 3rem 3rem 0 0;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
  }
}
.company__inner {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.company__label {
  margin: 0 0 5rem;
  color: #5D5D5D;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .company__label {
    font-size: 34px;
  }
}
.company__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .company__content {
    flex-direction: column-reverse;
  }
}
.company__table {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  flex-shrink: 0;
  width: 45%;
}
@media (max-width: 768px) {
  .company__table {
    width: 100%;
  }
}
.company__row {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  padding-bottom: 1.6rem;
}
.company__row dt {
  flex-shrink: 0;
  width: 14rem;
  position: relative;
  padding-right: 2.4rem;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company__row dt {
    width: 12rem;
    font-size: 14px;
  }
}
.company__row dt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}
.company__row dd {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .company__row dd {
    font-size: 14px;
  }
}
.company__img {
  flex-shrink: 0;
  width: 45%;
  height: auto;
  border-radius: 5rem;
  object-fit: cover;
}
@media (max-width: 768px) {
  .company__img {
    width: 100%;
    border-radius: 3rem;
  }
}

.contact {
  position: relative;
  z-index: 6;
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #2C2C2C;
  border-radius: 5rem 5rem 0 0;
}
@media (max-width: 768px) {
  .contact {
    border-radius: 3rem 3rem 0 0;
  }
}
.contact__label {
  margin: 0 0 2.7rem;
  color: #5D5D5D;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.221;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact__label {
    font-size: 34px;
  }
}
.contact__lead {
  margin: 0 0 5rem;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  max-width: 80rem;
  margin: 0 auto;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact__field label {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}
.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 1rem 2.4rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 15px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact__field input:focus-visible,
.contact__field textarea:focus-visible {
  outline: 2px solid #F18700;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .contact__field input,
  .contact__field textarea {
    padding: 1rem 1.2rem;
    font-size: 14px;
  }
}
.contact__field textarea {
  resize: vertical;
  line-height: 1.6;
}
.contact__required, .contact__optional {
  margin-left: 0.8rem;
  font-size: 12px;
  font-weight: 400;
}
.contact__required {
  color: #F18700;
}
.contact__optional {
  color: rgba(255, 255, 255, 0.6);
}
.contact__policy-box {
  height: 16rem;
  padding: 1rem 2.4rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.7) transparent;
}
@media (max-width: 768px) {
  .contact__policy-box {
    padding: 1rem 1.2rem;
    font-size: 14px;
  }
}
.contact__policy-box::-webkit-scrollbar {
  width: 6px;
}
.contact__policy-box::-webkit-scrollbar-track {
  background: transparent;
  margin: 0.6rem 0;
}
.contact__policy-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}
.contact__policy-box::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.contact__policy-box p {
  margin: 0 0 1.2rem;
}
.contact__policy-box ul {
  margin: 0 0 1.2rem;
  padding-left: 1.8rem;
}
.contact__policy-box strong {
  color: #fff;
}
.contact__agree {
  font-family: "Helvetica Neue";
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 768px) {
  .contact__agree {
    font-size: 14px;
  }
}
.contact__agree input {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.2rem;
  accent-color: #F18700;
}
.contact__submit {
  max-width: 38rem;
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: #F18700;
  border-radius: 1.5rem;
  color: #fff;
  font-size: 16px;
  font-family: "Helvetica Neue";
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact__submit:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}
.contact__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  .strength,
  .company {
    position: static;
  }
}
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.policy-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(21, 22, 25, 0.85);
}
.policy-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  max-height: 80vh;
  padding: 4rem;
  background-color: #1c1c1c;
  border-radius: 3rem;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .policy-modal__panel {
    padding: 2.4rem;
  }
}
.policy-modal__title {
  margin: 0 0 2.4rem;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.policy-modal__body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}
.policy-modal__body p {
  margin: 0 0 1.6rem;
}
.policy-modal__body ul {
  margin: 0 0 1.6rem;
  padding-left: 2rem;
}
.policy-modal__body strong {
  color: #fff;
}
.policy-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.policy-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  height: 11rem;
  background-color: rgba(21, 22, 25, 0.5);
  border-radius: 5rem;
  max-width: 144rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header {
    height: 8rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  gap: 15.6rem;
}
@media (max-width: 1280px) {
  .header__inner {
    gap: 6rem;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    gap: 1rem;
    justify-content: space-between;
    padding: 0 2rem;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.header__logo img {
  width: 20rem;
  height: auto;
}
@media (max-width: 1024px) {
  .header__logo img {
    width: 16rem;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    width: 13rem;
  }
}
.header__nav {
  flex: 1;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 1280px) {
  .header__nav-list {
    gap: 2.4rem;
  }
}
.header__nav-list a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}
@media (max-width: 1280px) {
  .header__nav-list a {
    font-size: 14px;
  }
}
.header__nav-list a:hover {
  color: #F18700;
  opacity: 1;
}
.header__nav-list li:first-child a {
  color: #F18700;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.9rem 4.67rem;
  background-color: #F18700;
  border-radius: 0.5rem;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 1280px) {
  .header__cta {
    padding: 0.9rem 3rem;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}
.header__cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.header__menu-btn {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .header__menu-btn {
    display: flex;
  }
}
@media (max-width: 375px) {
  .header__menu-btn {
    width: 36px;
    height: 36px;
    gap: 4px;
    padding: 6px;
  }
}
.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 375px) {
  .header__menu-btn span {
    width: 16px;
  }
}
.header__menu-btn[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
@media (max-width: 375px) {
  .header__menu-btn[aria-expanded=true] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
}
.header__menu-btn[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 375px) {
  .header__menu-btn[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.header__drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 9rem 2rem 2rem;
  background-color: rgba(21, 22, 25, 0.97);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 768px) {
  .header__drawer {
    padding-top: 8rem;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 375px) {
  .header__drawer {
    padding: 7.2rem 1.2rem 2rem;
  }
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  height: fit-content;
}
.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
@media (max-width: 375px) {
  .header__drawer-list {
    margin-bottom: 1.6rem;
  }
}
.header__drawer-list a {
  display: block;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}
@media (max-width: 375px) {
  .header__drawer-list a {
    padding: 1.2rem 0;
    font-size: 15px;
  }
}
.header__drawer-list a:hover {
  opacity: 0.75;
}
.header__drawer-list li:last-child a {
  border-bottom: none;
}

.footer {
  position: relative;
  background-color: #151619;
}
.footer__inner {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 8rem;
}
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding-bottom: 4rem;
  }
}
.footer__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.footer__logo img {
  width: 20rem;
  height: auto;
}
.footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer__nav ul {
    gap: 1.6rem;
    justify-content: center;
  }
}
.footer__nav a {
  font-family: "Helvetica Neue";
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer__nav a:hover {
  color: #F18700;
}
.footer__line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer__line img {
  width: 100%;
  height: 100%;
}
.footer__line:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.footer__copyright {
  font-family: "Helvetica Neue";
  margin: 0;
  color: #AAAAAA;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  font-style: italic;
}
.footer__privacy {
  font-family: "Helvetica Neue";
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer__privacy:hover {
  color: #F18700;
}

/*# sourceMappingURL=style.css.map */
