@charset "UTF-8";
:root {
  scrollbar-gutter: stable;
  --color-text-primary: #333333;
  --color-text-primary-rgb: 51, 51, 51;
  --color-black: #333333;
  --color-black-rgb: 51, 51, 51;
  --color-inverse: #FFFFFF;
  --color-inverse-rgb: 255, 255, 255;
  --color-bg: #F0EFED;
  --color-bg-rgb: 240, 239, 237;
  --color-border: rgba(0, 0, 0, 0.12);
  --ff-base: "Zen Kaku Gothic New", "Manrope", sans-serif;
  --ff-manrope: "Manrope", sans-serif;
  --ff-archivo: "Archivo", sans-serif;
  --canvas-width: 1440px;
  --inner-width: 1024px;
  --inner-width-no-unit: 1024;
  --sp-max-width: 766px;
  --padding-base: 48px;
  --padding-sm: 35px;
  --header-height-sm: 68px;
  --header-height-md: 84px;
  --layer-loading: 300;
  --layer-modal: 100;
  --layer-drawer: 20;
  --layer-floating: 30;
  --layer-header: 40;
  --layer-footer: 10;
  --layer-default: 1;
  --shadow1: drop-shadow(0px 0px 32px #FFF);
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
}
@media (max-width: 766px) {
  html {
    font-size: clamp(10px, 2.66vw, 12px);
  }
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--color-text-primary);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 767px) {
  body {
    font-size: 16px;
  }
}

body#sub_thanks {
  background-color: var(--color-bg);
}

body,
body * {
  box-sizing: border-box;
  font-family: var(--ff-base);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  border: 0;
}

*:focus {
  outline: none;
}

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

td,
th {
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: middle;
}

p,
span {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
span,
dl,
dt,
dd {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.wrapper {
  width: 100%;
  flex-grow: 1;
}

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

iframe {
  border: none;
}

a {
  color: inherit;
  transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}
.base {
  padding-inline: var(--padding-sm);
}
@media (min-width: 767px) {
  .base {
    padding-inline: var(--padding-base);
  }
}

.inner {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

body.is_loading {
  overflow: hidden;
}

.is_loading .loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}
.is_loading .loading .loading_img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is_loading .loading .loading_counter {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.is_loading .loading .loading_counter span {
  font-family: var(--ff-manrope);
  color: var(--color-inverse);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.is_loading .loading::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  content: "";
  fill: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.is_loading .loading.-loadingFadeOut {
  animation: loadingFadeOut 0.6s forwards;
}

.loading_img:not(.no1v) {
  opacity: 0;
  animation: fadeInImages 1s forwards;
}

.loading_img:not(.no1v).no2v {
  animation-delay: 0.4s;
}
.loading_img:not(.no1v).no3v {
  animation-delay: 1.2s;
}
.loading_img:not(.no1v).no4v {
  animation-delay: 1.8s;
}

@keyframes loadingFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInImages {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading_sub {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-bg-rgb), 0.4);
}

.loading_sub.-loadingFadeOut {
  animation: loadingFadeOut 1.4s forwards;
}

.header {
  width: 100%;
  height: var(--header-height-sm);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--layer-header);
}
@media (min-width: 767px) {
  .header {
    height: var(--header-height-md);
  }
}

header.is_dark .header_inner {
  border-bottom-color: #393A3A;
}
header.is_dark .header_logo-inverse {
  opacity: 0;
}
header.is_dark .header_logo-black {
  opacity: 1 !important;
}

.header_inner {
  position: relative;
  height: 100%;
  padding-inline: 24px;
  border-bottom: 1px solid #F0F2F1;
  transition: border-bottom-color 0.4s;
  backdrop-filter: blur(12px);
}
.header_inner .inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.header_logo a {
  display: block;
  position: relative;
}
.header_logo a img {
  display: block;
}
.header_logo a .header_logo-inverse {
  position: relative;
  transition: opacity 0.4s;
}
.header_logo a .header_logo-black {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.menu_button_area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
}

.menu_button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute !important;
  top: 16px;
  right: 16px;
  z-index: var(--layer-drawer);
  border-radius: 12px;
  border: 1px solid #F3F3F1;
  transition: border 0.4s;
}
@media (min-width: 767px) {
  .menu_button {
    top: 24px;
    right: 24px;
  }
}
@media screen and (min-width: 1072px) {
  .menu_button {
    right: calc((100vw - 1024px) / 2 + 24px);
  }
}
.menu_button span {
  position: relative;
  display: block;
  width: 14px;
  height: 1px;
  background-color: transparent;
}
.menu_button span::before, .menu_button span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #F3F3F1;
  transition: background-color 0.4s 0.2s;
}
.menu_button span::before {
  top: -2.5px;
  transition: top 0.2s 0.2s, transform 0.2s;
}
.menu_button span::after {
  top: 2.5px;
  transition: top 0.2s 0.2s, transform 0.2s;
}

.menu_button.is_active span::before {
  top: 25%;
  transform: rotate(30deg);
  transition: top 0.2s, transform 0.2s 0.2s;
}
.menu_button.is_active span::after {
  top: 25%;
  transform: rotate(-30deg);
  transition: top 0.2s, transform 0.2s 0.2s;
}

.menu_button.is_dark {
  border: 1px solid #393A3A;
}
.menu_button.is_dark span::before, .menu_button.is_dark span::after {
  background-color: #393A3A;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--layer-drawer);
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
}

.menu.is_open {
  visibility: visible;
  opacity: 1;
}

.menu_base {
  overflow: auto;
  position: fixed;
  z-index: var(--layer-drawer);
  width: 100%;
  height: 100%;
  background: var(--color-inverse);
}

.menu_inner {
  width: 100%;
  height: 100%;
  padding-block-start: 96px;
  padding-block-end: 40px;
}
@media (max-width: 766px) {
  .menu_inner {
    padding-inline: 9%;
  }
}
@media (min-width: 767px) {
  .menu_inner {
    display: flex;
    width: min(90%, 848px);
    gap: calc(14.15% + 40px);
    margin-inline: auto;
    padding-block-start: 184px;
  }
}

@media (min-width: 767px) {
  .menu_main {
    transform: translateY(-8%);
  }
}

.menu_copy {
  max-width: 220px;
  font-family: var(--ff-archivo);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 767px) {
  .menu_copy {
    max-width: 280px;
    font-size: 52px;
  }
}

@media (max-width: 766px) {
  .menu_list {
    margin-top: 16px;
  }
}
@media (min-width: 767px) {
  .menu_list {
    flex-grow: 1;
    transform: translateY(-24px);
  }
}
.menu_list li {
  border-bottom: 1px solid var(--color-bg);
}
.menu_list li a {
  display: block;
  font-family: var(--ff-manrope);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-block: 17px;
}
@media (min-width: 767px) {
  .menu_list li a {
    font-size: 24px;
    padding-block: 24px;
  }
}

.footer {
  position: relative;
  padding-block: 4rem;
  background-color: var(--color-bg);
}
@media (min-width: 767px) {
  .footer {
    padding-block: 120px;
  }
}
.footer::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 20px 20px 0 0;
  background: url(../img/common/footer-bg_sp.webp) no-repeat center center/cover;
  z-index: 1;
}
@media (min-width: 767px) {
  .footer::before {
    background-image: url(../img/common/footer-bg_pc.webp);
  }
}

.footer_inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.4rem;
}
@media (min-width: 767px) {
  .footer_inner {
    gap: 32px;
  }
}

.footer_info {
  color: var(--color-inverse);
}
@media (min-width: 767px) {
  .footer_info {
    width: 320px;
  }
}
.footer_info p {
  flex-shrink: 1;
}
.footer_info p a {
  font-family: var(--ff-archivo);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .footer_info p a {
    font-size: 32px;
  }
}
.footer_info address {
  margin-top: 24px;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
@media (min-width: 767px) {
  .footer_info address {
    font-size: 16px;
  }
}

.footer_nav {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-inline-start: 16px;
  border-left: 1px solid rgba(var(--color-inverse-rgb), 0.4);
}
@media (min-width: 767px) {
  .footer_nav {
    gap: 16px;
  }
}
.footer_nav li a {
  font-family: var(--ff-archivo);
  display: block;
  color: var(--color-inverse);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .footer_nav li a {
    font-size: 20px;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.-scrollTrigger.--fadeUp {
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.-scrollTrigger.--fadeDown {
  opacity: 0;
  transform: translateY(-30px);
}

.--fadeUp.--fadeUpFast.--active {
  animation: fadeUp 0.6s ease-out forwards;
}

.--fadeUp.--active {
  animation: fadeUp 0.8s ease-out forwards;
}

.--fadeDown.--active {
  animation: fadeDown 0.8s ease-out forwards;
}

.c_heading p {
  font-family: var(--ff-manrope);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .c_heading p {
    font-size: clamp(48px, 4.68vw, 60px);
  }
}
.c_heading h2 {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 767px) {
  .c_heading h2 {
    font-size: 18px;
  }
}

.c_buttonWrap {
  display: flex;
  justify-content: center;
}

.c_button {
  display: inline-block;
  font-family: var(--ff-manrope);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-inverse);
  background-color: var(--color-black);
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  padding: 16px 80px;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}
@media (min-width: 767px) {
  .c_button {
    min-width: 240px;
    padding: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_button:hover {
    opacity: 0.7;
  }
}

.kv {
  position: relative;
  display: block;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
}

.kv_mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  content: "";
  fill: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.kv_mask.-kvReveal {
  animation: kvReveal 2s forwards;
}

.kv_visual {
  width: 100%;
  height: 100%;
}
.kv_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv_text {
  width: 100%;
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
@media (min-width: 767px) {
  .kv_text {
    top: 132px;
  }
}
.kv_text p {
  font-family: var(--ff-archivo);
  color: var(--color-inverse);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 12px #007F9F;
}
@media (min-width: 767px) {
  .kv_text p {
    font-size: 16px;
  }
}
.kv_text h1 {
  margin-top: 4px;
  font-family: var(--ff-manrope);
  color: var(--color-inverse);
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 12px #007F9F;
}
@media (min-width: 767px) {
  .kv_text h1 {
    font-size: 68px;
  }
}

@keyframes kvReveal {
  0% {
    opacity: 1;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }
  100% {
    opacity: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}
.kv_scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) {
  .kv_scroll {
    bottom: 32px;
  }
}

.kv_scrollBar {
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(var(--color-inverse-rgb), 0.4);
  border-radius: 2px;
  overflow: hidden;
}
.kv_scrollBar::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--color-inverse);
  animation: scrollMove 2s linear infinite;
}

@keyframes scrollMove {
  0% {
    top: -100%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
.kv_scrollText {
  margin-top: 4px;
  font-family: var(--ff-manrope);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-inverse);
}

.statement {
  position: relative;
  overflow-x: clip;
  padding-block-start: 6rem;
  padding-block-end: 8rem;
}
@media (min-width: 767px) {
  .statement {
    padding-block-start: 100px;
    padding-block-end: 152px;
  }
}

.statement_bg {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 20px 20px;
}
@media (min-width: 767px) {
  .statement_bg {
    border-radius: 0 0 40px 40px;
  }
}
.statement_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement_bg01 {
  position: relative;
  width: 100%;
  height: 100%;
}

.statement_bg02 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s;
}

.statement_bg02.is_active {
  opacity: 1;
}

@media (max-width: 766px) {
  .statement_inner {
    padding-inline: 20px;
  }
}
@media (min-width: 767px) {
  .statement_inner {
    max-width: 848px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.statement_heading {
  text-align: center;
}
@media (min-width: 767px) {
  .statement_heading {
    width: 48%;
  }
}
.statement_heading p {
  font-family: var(--ff-archivo);
  color: var(--color-inverse);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
}
@media (min-width: 767px) {
  .statement_heading p {
    font-size: 14px;
  }
}
.statement_heading h2 {
  margin-top: 2.5rem;
  font-family: var(--ff-manrope);
  color: var(--color-inverse);
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 767px) {
  .statement_heading h2 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .statement_heading h2 {
    font-size: 60px;
  }
}
.statement_heading h2 span {
  display: block;
}
.statement_heading h2 span:nth-child(2) {
  margin-top: 4px;
  transform: translateX(-0.6em);
}
.statement_heading h2 span:nth-child(3) {
  margin-top: 4px;
  transform: translateX(0.3em);
}

@media (max-width: 766px) {
  .statement_slider {
    margin-top: 3.2rem;
  }
}
@media (min-width: 767px) {
  .statement_slider {
    position: relative;
    width: 48%;
  }
}

.statement_item p {
  color: var(--color-inverse);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 767px) {
  .statement_item p {
    font-size: 16px;
  }
}

.statement_pagination {
  display: flex;
  align-items: center;
}
@media (max-width: 766px) {
  .statement_pagination {
    position: relative !important;
    margin-top: 3rem;
    justify-content: center;
  }
}
@media (min-width: 767px) {
  .statement_pagination {
    top: unset !important;
    bottom: -48px !important;
    text-align: left !important;
  }
}
.statement_pagination .swiper-pagination-bullet {
  display: block;
  position: relative;
  opacity: 1;
  width: 60px;
  height: 4px;
  background: rgba(var(--color-inverse-rgb), 0.4);
  border-radius: 2px;
}
.statement_pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-inverse);
  border-radius: 2px;
  z-index: 2;
}
.statement_pagination.is-running .swiper-pagination-bullet-active::after {
  animation: slideProgress 7s linear forwards;
}

@keyframes slideProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.garage {
  padding-block: 4rem;
}
@media (min-width: 767px) {
  .garage {
    padding-block: 120px;
  }
}

.garage_list {
  margin-top: 40px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.garage_item {
  width: 100%;
}
.garage_item button {
  display: block;
  position: relative;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .garage_item button:hover {
    opacity: 1 !important;
  }
  .garage_item button:hover img {
    transform: scale(1.03);
  }
}
.garage_item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.garage_item .texts {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.garage_item .texts .en {
  font-family: var(--ff-manrope);
  color: var(--color-inverse);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .garage_item .texts .en {
    font-size: 36px;
  }
}
.garage_item .texts .jp {
  margin-top: 4px;
  color: var(--color-inverse);
  font-size: 1.2rem;
  line-height: 1.3;
}
@media (min-width: 767px) {
  .garage_item .texts .jp {
    font-size: 20px;
  }
}

.garage_item + .garage_item {
  margin-top: 1px;
}

.garage_button {
  margin-top: 2.8rem;
}
@media (min-width: 767px) {
  .garage_button {
    margin-top: 40px;
  }
}

.metrics {
  position: relative;
  z-index: 2;
  padding-block-start: 4rem;
}
@media (min-width: 767px) {
  .metrics {
    padding-block-start: 80px;
  }
}
.metrics::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-bg);
}

.metrics_list {
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 766px) {
  .metrics_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
@media (min-width: 767px) {
  .metrics_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .metrics_list {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

.metrics_item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  filter: blur(8px);
  transform: translateZ(0);
}
@media (max-width: 766px) {
  .metrics_item {
    width: calc(50% - 0.4rem);
  }
}
.metrics_item .texts {
  position: absolute;
  z-index: 2;
}
@media (max-width: 766px) {
  .metrics_item .texts {
    top: 0.8rem;
    left: 1.2rem;
  }
}
@media (min-width: 767px) {
  .metrics_item .texts {
    top: 8px;
    left: 12px;
  }
}
.metrics_item .texts p {
  font-family: var(--ff-manrope);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.metrics_item .texts p span, .metrics_item .texts p sup {
  font-family: var(--ff-manrope);
  font-weight: 700;
  font-size: 2rem;
}
.metrics_item .texts h3 {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
}
@media (min-width: 767px) {
  .metrics_item .texts h3 {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .metrics_item .texts h3 {
    font-size: 16px;
  }
}
.metrics_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 766px) {
  .metrics_item.-vertical {
    aspect-ratio: 148/220;
  }
}
@media (min-width: 767px) {
  .metrics_item.-vertical {
    aspect-ratio: 232/280;
  }
}

@media (max-width: 766px) {
  .metrics_item.-horizontal {
    width: 100%;
    aspect-ratio: 305/160;
  }
}
@media (min-width: 767px) {
  .metrics_item.-horizontal {
    grid-area: 1/3/2/5;
    aspect-ratio: 496/280;
  }
}

.--active > .metrics_item {
  animation: blurOut 0.6s ease-out forwards;
}

.metrics_item:nth-child(2) {
  animation-delay: 0.3s;
}
.metrics_item:nth-child(3) {
  animation-delay: 0.6s;
}
.metrics_item:nth-child(4) {
  animation-delay: 0.9s;
}
.metrics_item:nth-child(5) {
  animation-delay: 1.2s;
}
.metrics_item:nth-child(6) {
  animation-delay: 1.5s;
}
.metrics_item:nth-child(7) {
  animation-delay: 1.8s;
}

@keyframes blurOut {
  0% {
    filter: blur(8px);
  }
  100% {
    filter: blur(0);
  }
}
.access {
  position: relative;
  overflow-x: clip;
  margin-block-start: -20px;
  z-index: 1;
  background-color: var(--color-bg);
  padding-block-start: 32vw;
}
@media (min-width: 767px) {
  .access {
    padding-block-start: 20.31vw;
  }
}

.access_bg {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 375/167;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 767px) {
  .access_bg {
    aspect-ratio: 1280/360;
  }
}

.access_img {
  width: 100%;
  height: 100%;
}
.access_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access_inner {
  position: relative;
  z-index: 2;
  background: url(../img/top/access_bg.webp) no-repeat center center/cover;
  padding: 2rem;
  border-radius: 2rem;
}
@media (max-width: 766px) {
  .access_inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
@media (min-width: 767px) {
  .access_inner {
    display: flex;
    padding: 32px 64px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .access_inner {
    padding: 32px 88px;
  }
}

@media (max-width: 766px) {
  .access_texts {
    display: contents;
  }
}

@media (max-width: 766px) {
  .access_heading {
    order: 1;
  }
}

@media (max-width: 766px) {
  .access_link {
    order: 3;
  }
}
@media (min-width: 767px) {
  .access_link {
    margin-top: 60px;
  }
}
.access_link a {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 766px) {
  .access_map {
    order: 2;
  }
}
@media (min-width: 767px) {
  .access_map {
    width: 58.49%;
    margin-inline-start: auto;
  }
}

.contact {
  background-color: var(--color-bg);
  padding-block: 6rem;
}
@media (min-width: 767px) {
  .contact {
    padding-block: 120px;
  }
}

#sub_garage .contact {
  border-radius: 2rem 2rem 0 0;
}
@media (min-width: 767px) {
  #sub_garage .contact {
    padding-block-start: 60px;
    border-radius: 40px 40px 0 0;
  }
}
#sub_garage .contact .c_heading {
  max-width: 672px;
  margin-inline: auto;
}

.contact_form {
  margin-top: 20px;
  max-width: 672px;
  margin-inline: auto;
}
@media (min-width: 767px) {
  .contact_form {
    margin-top: 40px;
  }
}

.form_table {
  width: 100%;
}
.form_table tr {
  display: block;
}
.form_table tr + tr {
  margin-top: 12px;
}
@media (min-width: 767px) {
  .form_table tr + tr {
    margin-top: 24px;
  }
}
.form_table th, .form_table td {
  display: block;
  width: 100%;
}
.form_table th {
  font-weight: 500;
  text-align: left;
}
.form_table th span {
  font-weight: 400;
}
.form_table td {
  margin-top: 4px;
}
@media (min-width: 767px) {
  .form_table td {
    margin-top: 12px;
  }
}
.form_table input[type=text],
.form_table input[type=email],
.form_table input[type=tel],
.form_table textarea {
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  resize: none;
  width: 100%;
  font-size: 16px;
  background-color: var(--color-inverse);
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  box-shadow: 2px 2px 8px 0 #F0EFED inset;
  padding: 0.8em;
}
.form_table input[type=text]:focus,
.form_table input[type=email]:focus,
.form_table input[type=tel]:focus,
.form_table textarea:focus {
  box-shadow: 0 0 0 2px rgba(44, 116, 181, 0.4);
}
.form_table input[type=text],
.form_table input[type=email],
.form_table input[type=tel] {
  height: 56px;
}
.form_table textarea {
  min-height: 120px;
  resize: vertical;
}

.contact_submit {
  margin-top: 32px;
}

.contact_submitButton {
  cursor: pointer;
}
.contact_submitButton:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
@media (hover: hover) and (pointer: fine) {
  .contact_submitButton:disabled:hover {
    opacity: 0.2;
  }
}

.contact_error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: red;
  text-align: center;
}

.lens {
  padding-block-start: 8.5rem;
  padding-block-end: 8rem;
  background: url(../img/garage/lens-bg_sp.webp) no-repeat center bottom/cover;
  border-radius: 0 0 2rem 2rem;
}
@media (min-width: 767px) {
  .lens {
    padding-block: 100px;
    background-image: url(../img/garage/lens-bg_pc.webp);
    border-radius: 0 0 40px 40px;
  }
}

@media (max-width: 766px) {
  .lens_inner {
    padding-inline: 20px;
  }
}
@media (min-width: 767px) {
  .lens_inner {
    width: 90%;
    max-width: 848px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .lens_inner {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.lens_heading {
  color: var(--color-inverse);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .lens_heading {
    width: 320px;
    flex-shrink: 0;
  }
}
.lens_heading p {
  font-family: var(--ff-archivo);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 12px #007F9F;
}
@media (min-width: 767px) {
  .lens_heading p {
    font-size: 1.4rem;
    opacity: 0.6;
  }
}
.lens_heading h2 {
  margin-top: 29px;
  font-family: var(--ff-manrope);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 766px) {
  .lens_heading h2 {
    text-shadow: 0 0 12px #007F9F;
  }
}
@media (min-width: 767px) {
  .lens_heading h2 {
    font-size: 60px;
  }
}

.lens_texts {
  margin-top: 3.2rem;
}
.lens_texts p {
  color: var(--color-inverse);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 767px) {
  .lens_texts p {
    font-size: 16px;
  }
}
.lens_texts p + p {
  margin-block-start: 1.5em;
}
@media (min-width: 767px) {
  .lens_texts p + p {
    margin-block-start: 2.6em;
  }
}

.cars {
  position: relative;
  overflow-x: clip;
  padding-block-start: 3rem;
  padding-block-end: 3.2rem;
}
@media (min-width: 767px) {
  .cars {
    padding-block-start: 120px;
    padding-block-end: 80px;
  }
}
.cars::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 375/100;
  position: absolute;
  left: 0;
  bottom: 1.4rem;
  z-index: -1;
  background: linear-gradient(180deg, #D9D9D9 0%, #FFF 100%);
}
@media (min-width: 767px) {
  .cars::before {
    height: 32%;
  }
}

.cars_slide {
  margin-top: 6.4rem;
  overflow: visible !important;
}

.cars_trigger {
  display: block;
  width: 100%;
}
.cars_trigger > span {
  display: block;
  color: var(--color-text-primary);
}
.cars_trigger .brand {
  margin-top: 12px;
  font-family: var(--ff-manrope);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .cars_trigger .brand {
    font-size: 32px;
  }
}
.cars_trigger .name {
  margin-top: 4px;
  font-family: var(--ff-manrope);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
@media (min-width: 767px) {
  .cars_trigger .name {
    font-size: 16px;
  }
}
.cars_trigger .name.jp {
  font-family: var(--ff-base);
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(3%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3%);
  }
}
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] .modal_overlay {
  animation: mmfadeIn 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=false] .modal_container {
  animation: mmslideIn 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .modal_overlay {
  animation: mmfadeOut 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .modal_container {
  animation: mmslideOut 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.modal .modal_container,
.modal .modal_overlay {
  will-change: transform;
}

.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 52, 53, 0.55);
  backdrop-filter: blur(16px);
  z-index: var(--layer-modal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_close {
  width: 40px;
  height: 40px;
  position: fixed;
  top: calc(5dvh + 12px);
  right: calc(5% + 12px);
  border: 1px solid var(--color-inverse);
  background-color: rgba(var(--color-inverse-rgb), 0.4);
  border-radius: 12px;
  backdrop-filter: blur(2px);
  z-index: 2;
  transition: opacity 0.3s ease;
}
@media (min-width: 767px) {
  .modal_close {
    top: calc(5dvh + 20px);
    right: calc(5% + 20px);
  }
}
@media screen and (min-width: 1024px) {
  .modal_close {
    right: calc((100vw - 848px) / 2 + 20px);
  }
}
.modal_close::before, .modal_close::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: var(--color-inverse);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .modal_close:hover {
    opacity: 0.5;
  }
}

.modal_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 90%;
  border-radius: 18px;
}
@media (min-width: 767px) {
  .modal_container {
    border-radius: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .modal_container {
    max-width: 848px;
  }
}

.modal_inner {
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  background-color: var(--color-bg);
}
.modal_inner::-webkit-scrollbar {
  display: none;
}

.modal_mainImg {
  position: relative;
}
.modal_mainImg img {
  width: 100%;
}

.modal_body {
  padding: 2.2rem 2rem 3.9rem;
  overflow-x: clip;
}
@media (min-width: 767px) {
  .modal_body {
    padding: 60px 40px 60px;
  }
}

.modal_title {
  font-family: var(--ff-manrope);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}
.modal_title span:not(.lowercase) {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.modal_desc {
  margin-top: 17px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 767px) {
  .modal_desc {
    width: 94%;
    font-size: 16px;
  }
}

.modal_size {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--color-text-primary-rgb), 0.2);
}
@media (min-width: 767px) {
  .modal_size {
    width: 94%;
  }
}
.modal_size dt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 767px) {
  .modal_size dt {
    font-size: 16px;
  }
}
.modal_size dd {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 767px) {
  .modal_size dd {
    font-size: 16px;
  }
}

.modal_slider {
  margin-top: 3.2rem;
  overflow: visible !important;
}
@media (min-width: 767px) {
  .modal_slider {
    padding-right: 24px !important;
  }
}

.modal_img img {
  width: 100%;
  border-radius: 8px;
}

.modal_foot {
  padding: 4rem 4.8rem 6rem;
  background-color: var(--color-inverse);
}
@media (min-width: 767px) {
  .modal_foot {
    padding-block: 100px;
  }
}

@media (max-width: 766px) {
  .modal_spec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 4rem;
  }
}
@media (min-width: 767px) {
  .modal_spec {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
  }
}
.modal_spec li {
  text-align: center;
}
@media (min-width: 767px) {
  .modal_spec li {
    padding-inline: 22px;
  }
}
.modal_spec li p {
  margin-top: 10px;
  font-family: var(--ff-manrope);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.modal_spec li p:first-child {
  font-size: 1.6rem;
}
.modal_spec li p:last-child {
  font-size: 1.4rem;
}
@media (min-width: 767px) {
  .modal_spec li p:last-child {
    font-size: 16px;
  }
}

.modal_button {
  margin-top: 6rem;
  text-align: center;
}

.simplebar-track {
  width: 5px !important;
  max-height: 76% !important;
  top: 12% !important;
  right: 29px !important;
  background-color: rgba(var(--color-text-primary-rgb), 0.5) !important;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
@media (max-width: 766px) {
  .simplebar-track {
    display: none;
  }
}
@media (min-width: 767px) {
  .simplebar-track {
    right: 37px !important;
  }
}
@media screen and (min-width: 1024px) {
  .simplebar-track {
    right: 44px !important;
  }
  @supports (-webkit-hyphens: none) and (not (overflow: -webkit-marquee)) {
    .simplebar-track {
      right: 37px !important;
    }
  }
}

.simplebar-scrollbar {
  background-color: rgba(var(--color-inverse-rgb), 1) !important;
  border-radius: 10px;
}
.simplebar-scrollbar::before {
  display: none;
}

.pageTitle {
  padding-block-start: 12rem;
  padding-block-end: 6rem;
}
@media (min-width: 767px) {
  .pageTitle {
    padding-block-start: 124px;
    padding-block-end: 80px;
  }
}

@media (max-width: 766px) {
  .pageTitle_heading {
    text-align: center;
  }
}
.pageTitle_heading p {
  font-family: var(--ff-manrope);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .pageTitle_heading p {
    font-size: clamp(48px, 4.68vw, 60px);
  }
}
.pageTitle_heading h1 {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 767px) {
  .pageTitle_heading h1 {
    font-size: 18px;
  }
}

.thanks {
  background-color: var(--color-inverse);
  padding-block-start: 6rem;
  padding-block-end: 10rem;
  border-radius: 2rem 2rem 0 0;
}
@media (min-width: 767px) {
  .thanks {
    padding-block-start: 80px;
    padding-bottom: 70px;
  }
}

.thanks_heading {
  font-family: var(--ff-manrope);
  color: #2C74B5;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 767px) {
  .thanks_heading {
    font-size: 40px;
  }
}

.thanks_text {
  margin-top: 3.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 767px) {
  .thanks_text {
    font-size: 16px;
  }
}

.thanks_button {
  margin-top: 4rem;
  text-align: center;
}
@media (min-width: 767px) {
  .thanks_button {
    margin-top: 60px;
  }
}

.is_hidden {
  display: none !important;
}

@media (min-width: 767px) {
  .is_only_sp {
    display: none !important;
  }
}

@media (max-width: 766px) {
  .is_only_pc {
    display: none !important;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}/*# sourceMappingURL=style.css.map */