/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
:root {
  --font-main: "helvetica-lt-pro", "ryo-gothic-plusn", sans-serif;
  --font-wide: "roc-grotesk-wide", sans-serif;
  --color-gray: 239, 239, 239;
  --color-bk: 7, 0, 34;
  --color-main: 50, 0, 255;
  --color-pale: 241, 236, 255;
  --color-border: 50, 0, 255;
  --color-white: 255, 255, 255;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  scrollbar-width: none;
  color: rgb(var(--color-bk));
  margin-top: 0 !important;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 2.56411vw;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.5208335vw;
  }
}
html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: rgb(var(--color-white));
  font-feature-settings: "palt" 1;
}

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

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

img, video, canvas {
  display: block;
}

img, video {
  width: 100%;
  height: auto;
}

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

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

.siteHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: rgb(var(--color-main));
  pointer-events: none;
}

.siteHeader_info,
.siteHeader_body,
.megaMenu {
  pointer-events: auto;
}

.siteHeader_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.2rem 0 4rem;
  background: rgb(var(--color-gray));
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 320px) {
  .siteHeader_info {
    font-size: 1rem;
    padding: 4px 1.2rem 36px;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_info {
    font-size: 1.2rem;
    padding: 6px 3.2rem 38px;
  }
}

.siteHeader_infoLeft {
  align-items: center;
  gap: 2.4rem;
}
@media screen and (min-width: 320px) {
  .siteHeader_infoLeft {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_infoLeft {
    display: flex;
  }
}

.siteHeader_slash {
  width: 0.1rem;
  height: 1.8rem;
  background: rgb(var(--color-main));
}

.siteHeader_current {
  font-size: 1rem;
  opacity: 0.7;
}

.siteHeader_news {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.siteHeader_news span,
.siteHeader_news time {
  font-family: var(--font-wide);
}
@media screen and (min-width: 320px) {
  .siteHeader_news span,
  .siteHeader_news time {
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_news span,
  .siteHeader_news time {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 320px) {
  .siteHeader_news span {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_news span {
    display: inline;
  }
}

.siteHeader_news strong {
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 0.32rem;
}

.siteHeader_body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  background: rgb(var(--color-white));
  border-bottom: 0.1rem solid rgb(var(--color-border));
  margin-top: -32px;
}
@media screen and (min-width: 320px) {
  .siteHeader_body {
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_body {
    padding: 1.8rem 3.2rem 1.8rem 4rem;
    border-radius: 32px 32px 0 0;
  }
}

.siteHeader_logo {
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
@media screen and (min-width: 320px) {
  .siteHeader_logo {
    width: 4rem;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_logo {
    width: 7.2rem;
  }
}

.siteHeader_logo:hover {
  transform: translateY(-0.4rem);
  opacity: 0.72;
}

.globalNav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .globalNav {
    display: block;
    align-self: stretch;
  }
}

.globalNav_list {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
}

.globalNav_item {
  display: flex;
  align-items: center;
}

.globalNav_link {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.28s var(--ease-out), background 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
@media screen and (min-width: 320px) {
  .globalNav_link {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .globalNav_link {
    font-size: 2rem;
  }
}

.globalNav_link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(var(--color-main), 0.08);
  opacity: 0;
  transform: scaleY(0.72);
  transform-origin: bottom;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.globalNav_link::after {
  content: "";
  position: absolute;
  right: 2.8rem;
  bottom: -1.8rem;
  left: 2.8rem;
  height: 0.6rem;
  border-radius: 0.6rem 0.6rem 0 0;
  background: rgb(var(--color-main));
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.globalNav_item:hover .globalNav_link,
.globalNav_item:focus-within .globalNav_link {
  color: rgb(var(--color-main));
}

.globalNav_item:hover .globalNav_link::before,
.globalNav_item:focus-within .globalNav_link::before {
  opacity: 1;
  transform: scaleY(1);
}

.globalNav_item:hover .globalNav_link::after,
.globalNav_item:focus-within .globalNav_link::after {
  opacity: 1;
  transform: translateY(0);
}

.siteHeader_contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.siteHeader_tel,
.siteHeader_cta {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0.1rem solid rgb(var(--color-main));
  background: rgb(var(--color-white));
  transition: transform 0.36s var(--ease-out), box-shadow 0.36s var(--ease-out), color 0.36s var(--ease-out), border-color 0.36s var(--ease-out);
}
@media screen and (min-width: 320px) {
  .siteHeader_tel,
  .siteHeader_cta {
    height: 4rem;
    border-radius: 12px;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_tel,
  .siteHeader_cta {
    height: 6.4rem;
    border-radius: 2.4rem;
  }
}

.siteHeader_tel::before,
.siteHeader_cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(var(--color-main));
  transform: translateY(104%);
  transition: transform 0.42s var(--ease-out);
}

.siteHeader_tel:hover,
.siteHeader_cta:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 3.2rem rgba(var(--color-main), 0.18);
}

.siteHeader_tel:hover::before,
.siteHeader_cta:hover::before {
  transform: translateY(0);
}

.siteHeader_tel {
  color: rgb(var(--color-main));
}
@media screen and (min-width: 320px) {
  .siteHeader_tel {
    width: 4rem;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_tel {
    width: 6.4rem;
  }
}

.siteHeader_tel span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.siteHeader_tel svg {
  display: block;
  width: 64%;
  height: 64%;
  fill: rgb(var(--color-main));
  transition: fill 200ms ease;
}
.siteHeader_tel:hover svg {
  fill: rgb(var(--color-white));
}

.siteHeader_tel:hover {
  color: rgb(var(--color-white));
}

.siteHeader_cta {
  grid-template-columns: auto 3.2rem;
  gap: 2.4rem;
  background: rgb(var(--color-main));
  color: rgb(var(--color-white));
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (min-width: 320px) {
  .siteHeader_cta {
    font-size: 1.3rem;
    padding: 0 0.4rem 0 2.4rem;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_cta {
    font-size: 2rem;
    padding: 0 1.6rem 0 3.2rem;
  }
}

.siteHeader_cta::before {
  background: rgb(var(--color-white));
}

.siteHeader_cta:hover {
  color: rgb(var(--color-main));
}

.siteHeader_cta i,
.megaCard_arrow {
  position: relative;
  display: block;
  border-radius: 0.8rem;
  background: rgb(var(--color-white));
  transition: transform 0.36s var(--ease-out), background 0.36s var(--ease-out);
}
@media screen and (min-width: 320px) {
  .siteHeader_cta i,
  .megaCard_arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_cta i,
  .megaCard_arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.siteHeader_cta:hover i {
  background: rgb(var(--color-main));
  transform: translateX(0.4rem);
}

.siteHeader_cta i::before,
.megaCard_arrow::before {
  content: "";
  position: absolute;
  inset: 1.1rem 1.2rem;
  border-top: 0.2rem solid rgb(var(--color-main));
  border-right: 0.2rem solid rgb(var(--color-main));
  transform: rotate(45deg);
  transition: border-color 0.36s var(--ease-out);
}

.siteHeader_cta:hover i::before {
  border-color: rgb(var(--color-white));
}

.megaMenu {
  display: none;
}
@media screen and (min-width: 1025px) {
  .megaMenu {
    position: fixed;
    top: 13.6rem;
    left: 0;
    width: 100%;
    display: block;
    padding: 6.4rem 4rem 4.8rem;
    background: rgb(var(--color-white));
    border-bottom: 0.1rem solid rgba(var(--color-main), 0.18);
    box-shadow: 0 5.6rem 7.2rem rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.6rem);
    transition: opacity 0.36s var(--ease-out), transform 0.36s var(--ease-out), visibility 0.36s;
  }
}

@media screen and (min-width: 1025px) {
  .globalNav_item-hasMega:hover .megaMenu,
  .globalNav_item-hasMega:focus-within .megaMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.megaMenu_inner {
  display: grid;
  grid-template-columns: 28rem 0.1rem 1fr;
  gap: 8rem;
}

.megaMenu_title {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.24;
}

.megaMenu_line {
  background: rgba(var(--color-main), 0.28);
}

.megaMenu_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}

.megaCard {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgb(var(--color-white));
  box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.42s var(--ease-out), box-shadow 0.42s var(--ease-out);
}

.megaCard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0.1rem solid rgba(var(--color-main), 0);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.36s var(--ease-out);
}

.megaCard:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 5.6rem 8rem rgba(var(--color-main), 0.16);
}

.megaCard:hover::before {
  border-color: rgba(var(--color-main), 0.22);
}

.megaCard_image {
  position: relative;
  height: 16rem;
  margin: 0;
  overflow: hidden;
}

.megaCard_image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.72s var(--ease-out), filter 0.72s var(--ease-out);
}

.megaCard:hover .megaCard_image img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.megaCard_image::after {
  content: "";
  position: absolute;
  inset: 8rem 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 72%);
}

.megaCard_text {
  padding: 1.6rem 2rem 2.8rem;
  color: rgb(var(--color-main));
}

.megaCard_text h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.32;
}

/* Mobile bottom navigation
================================================== */
.globalNav_icon,
.globalNav_backdrop {
  display: none;
}

@media screen and (max-width: 1024px) {
  body {
    padding-bottom: calc(7.2rem + env(safe-area-inset-bottom));
  }
  .globalNav {
    position: fixed;
    z-index: 130;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(var(--color-white), 0.96);
    border-top: 0.1rem solid rgba(var(--color-main), 0.16);
    box-shadow: 0 -1.2rem 4rem rgba(0, 30, 120, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .globalNav_list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    height: 7.2rem;
  }
  .globalNav_item {
    position: static;
    display: block;
    min-width: 0;
  }
  .globalNav_link {
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0.7rem 0.2rem 0.6rem;
    color: rgba(var(--color-main), 0.62);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .globalNav_link::before {
    inset: 0.55rem 0.5rem;
    z-index: -1;
    border-radius: 1.4rem;
    transform: none;
  }
  .globalNav_link::after {
    display: none;
  }
  .globalNav_link:active::before,
  .globalNav_link.is-current::before,
  .globalNav_link[aria-expanded=true]::before {
    opacity: 1;
    transform: none;
  }
  .globalNav_link.is-current,
  .globalNav_link[aria-expanded=true] {
    color: rgb(var(--color-main));
  }
  .globalNav_icon {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
  }
  .globalNav_icon svg {
    display: block;
    width: 2.35rem;
    height: 2.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .globalNav_label {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
  }
  .globalNav_backdrop {
    position: fixed;
    z-index: 119;
    inset: 0 0 calc(7.2rem + env(safe-area-inset-bottom));
    width: 100%;
    border: 0;
    background: rgba(0, 18, 66, 0.34);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .globalNav_backdrop:not([hidden]) {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .megaMenu {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: calc(7.2rem + env(safe-area-inset-bottom));
    left: 0;
    display: block;
    max-height: min(68dvh, 56rem);
    padding: 2.4rem 1.6rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgb(var(--color-white));
    border-radius: 2.4rem 2.4rem 0 0;
    box-shadow: 0 -2rem 5rem rgba(0, 18, 66, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(2rem);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }
  .megaMenu[aria-hidden=false] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .megaMenu_inner {
    display: block;
  }
  .megaMenu_title {
    margin: 0 0 1.6rem;
    font-size: 2rem;
  }
  .megaMenu_line {
    display: none;
  }
  .megaMenu_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .megaCard {
    min-width: 0;
    border: 0.1rem solid rgba(var(--color-main), 0.12);
    border-radius: 1.2rem;
    box-shadow: none;
  }
  .megaCard_image {
    height: 8.8rem;
  }
  .megaCard_image::after {
    inset: 4rem 0 0;
  }
  .megaCard_text {
    padding: 1rem 1rem 1.2rem;
  }
  .megaCard_text h3 {
    font-size: 1.3rem;
  }
  .megaCard_text p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
  }
  .megaCard_arrow {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .globalNav_icon {
    display: none;
  }
}
.megaCard_text p {
  margin: 0.4rem 0 0;
  font-family: var(--font-wide);
  font-size: 0.9rem;
  font-weight: 700;
}

.megaCard_arrow {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  background: rgb(var(--color-main));
}

.megaCard_arrow::before {
  inset: 0.8rem 0.9rem;
  border-color: rgb(var(--color-white));
}

.megaCard:hover .megaCard_arrow {
  transform: translateX(0.4rem);
}

.hoverTextLine strong {
  transition: opacity 0.28s var(--ease-out);
}

.hoverTextLine:hover strong {
  opacity: 0.62;
}

.commonButton {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  grid-template-columns: auto 2.4rem;
  align-items: center;
  gap: 1.2rem;
  min-height: 4rem;
  padding: 0 0.8rem 0 1.6rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgb(var(--color-main));
  color: rgb(var(--color-white));
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform 0.36s var(--ease-out), box-shadow 0.36s var(--ease-out), color 0.36s var(--ease-out);
}

.commonButton::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(var(--color-white));
  transform: translateY(104%);
  transition: transform 0.42s var(--ease-out);
}

.commonButton i {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  background: rgb(var(--color-white));
  transition: background 0.36s var(--ease-out), transform 0.36s var(--ease-out);
}

.commonButton i::before {
  content: "";
  position: absolute;
  inset: 0.8rem 0.9rem;
  border-top: 0.2rem solid rgb(var(--color-main));
  border-right: 0.2rem solid rgb(var(--color-main));
  transform: rotate(45deg);
  transition: border-color 0.36s var(--ease-out);
}

.commonButton:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 3.2rem rgba(var(--color-main), 0.18);
  color: rgb(var(--color-main));
}

.commonButton:hover::before {
  transform: translateY(0);
}

.commonButton:hover i {
  background: rgb(var(--color-main));
  transform: translateX(0.4rem);
}

.commonButton:hover i::before {
  border-color: rgb(var(--color-white));
}

.sectionLabel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 0 2.4rem;
  color: rgb(var(--color-main));
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.sectionLabel::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgb(var(--color-main));
}

/* Breadcrumb
================================================== */
.siteHeader_breadcrumb ol {
  display: flex;
  align-items: center;
  padding-left: 0;
  list-style-type: none;
}
.siteHeader_breadcrumb li {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
}
.siteHeader_breadcrumb li::after {
  content: ">";
  font-size: 80%;
  margin: 0 8px;
}
.siteHeader_breadcrumb li:last-child::after {
  display: none;
}
.siteHeader_breadcrumb li span {
  color: black;
  opacity: 0.4;
}
.siteHeader_breadcrumb li a span {
  color: rgb(var(--color-main));
  opacity: 1;
}
.siteHeader_breadcrumb a {
  color: inherit;
  text-decoration: underline;
}
.siteHeader_breadcrumb a:hover {
  text-decoration: none;
}

/* Footer
================================================== */
.siteFooter {
  position: relative;
  overflow: hidden;
  background: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

.siteFooter::before {
  content: "KOWA";
  position: absolute;
  right: -4vw;
  bottom: -2.4rem;
  color: rgba(var(--color-white), 0.08);
  font-family: var(--font-wide);
  font-size: 24rem;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .siteFooter::before {
    font-size: 32rem;
  }
}
@media screen and (min-width: 1025px) {
  .siteFooter::before {
    font-size: 44rem;
  }
}

.footerCta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.2rem;
  padding: 8rem 2.4rem 6.4rem;
  border-bottom: 0.1rem solid rgba(var(--color-white), 0.24);
}
@media screen and (min-width: 600px) {
  .footerCta {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4.8rem;
    padding: 10.4rem 4rem 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .footerCta {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8rem;
    padding: 14rem 6.4rem 10.4rem;
  }
}

.footerCta_heading .sectionKicker {
  margin: 0 0 1.6rem;
  color: rgba(var(--color-white), 0.64);
  font-family: var(--font-wide);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footerCta_heading h2 {
  margin: 0;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 600px) {
  .footerCta_heading h2 {
    font-size: 5.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .footerCta_heading h2 {
    font-size: 8.4rem;
  }
}

.footerCta_cards {
  display: grid;
  gap: 1.6rem;
}
@media screen and (min-width: 600px) {
  .footerCta_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footerCta_card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 24rem;
  overflow: hidden;
  padding: 2.4rem;
  border: 0.1rem solid rgba(var(--color-white), 0.52);
  border-radius: 3.2rem;
  background: rgba(var(--color-white), 0.1);
  backdrop-filter: blur(18px);
  transition: transform 0.42s var(--ease-out), border-color 0.42s var(--ease-out), background 0.42s var(--ease-out), box-shadow 0.42s var(--ease-out);
}
@media screen and (min-width: 1025px) {
  .footerCta_card {
    min-height: 32rem;
    padding: 3.2rem;
    border-radius: 4rem;
  }
}

.footerCta_card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  z-index: -1;
  height: 70%;
  border-radius: 50% 50% 0 0;
  background: rgb(var(--color-white));
  transform: translateY(100%);
  transition: transform 0.48s var(--ease-out);
}

.footerCta_card:hover {
  transform: translateY(-0.8rem);
  border-color: rgb(var(--color-white));
  background: rgba(var(--color-white), 0.18);
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.18);
}

.footerCta_card:hover::before {
  transform: translateY(0);
}

.footerCta_card:hover .footerCta_en,
.footerCta_card:hover .footerCta_ja,
.footerCta_card:hover .footerCta_text {
  color: rgb(var(--color-main));
}

.footerCta_card:hover .footerCta_arrow {
  background: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

.footerCta_en {
  align-self: start;
  color: rgba(var(--color-white), 0.72);
  font-family: var(--font-wide);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 0.42s var(--ease-out);
}

.footerCta_ja {
  align-self: end;
  display: block;
  margin-top: 6.4rem;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.42s var(--ease-out);
}
@media screen and (min-width: 1025px) {
  .footerCta_ja {
    font-size: 5.2rem;
  }
}

.footerCta_text {
  display: block;
  margin-top: 1.6rem;
  color: rgba(var(--color-white), 0.72);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.9;
  transition: color 0.42s var(--ease-out);
}
@media screen and (min-width: 1025px) {
  .footerCta_text {
    font-size: 1.6rem;
  }
}

.footerCta_arrow {
  position: absolute;
  right: 2.4rem;
  bottom: 2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  border: 0.1rem solid rgba(var(--color-white), 0.72);
  border-radius: 1.6rem;
  background: rgb(var(--color-white));
  color: rgb(var(--color-main));
  transition: transform 0.42s var(--ease-out), color 0.42s var(--ease-out), background 0.42s var(--ease-out);
}
@media screen and (min-width: 1025px) {
  .footerCta_arrow {
    right: 3.2rem;
    bottom: 3.2rem;
  }
}

.footerCta_card:hover .footerCta_arrow {
  transform: translate(0.4rem, -0.4rem);
}

.siteFooter_main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4rem;
  padding: 5.6rem 2.4rem;
}
@media screen and (min-width: 600px) {
  .siteFooter_main {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 5.6rem;
    padding: 7.2rem 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .siteFooter_main {
    grid-template-columns: 0.68fr 1.32fr;
    gap: 8rem;
    padding: 9.6rem 6.4rem;
  }
}

.siteFooter_info {
  display: grid;
  gap: 3.2rem;
  align-content: start;
}

.siteFooter_logo {
  display: block;
  width: 12rem;
  transition: transform 0.36s var(--ease-out), opacity 0.36s var(--ease-out);
}
@media screen and (min-width: 1025px) {
  .siteFooter_logo {
    width: 16rem;
  }
}

.siteFooter_logo:hover {
  transform: translateY(-0.4rem);
  opacity: 0.72;
}

.siteFooter_logo img {
  filter: brightness(0) invert(1);
}

.siteFooter_company {
  display: grid;
  gap: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (min-width: 1025px) {
  .siteFooter_company {
    font-size: 1.6rem;
  }
}

.siteFooter_name {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
}
@media screen and (min-width: 1025px) {
  .siteFooter_name {
    font-size: 2.4rem;
  }
}

.siteFooter_address {
  font-style: normal;
  color: rgba(var(--color-white), 0.72);
}

.siteFooter_tel {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-family: var(--font-wide);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.siteFooter_tel::after,
.footerSitemap a::after,
.siteFooter_bottom a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 0.1rem;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease-out);
}

.siteFooter_tel:hover::after,
.footerSitemap a:hover::after,
.siteFooter_bottom a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footerSitemap {
  display: grid;
  gap: 3.2rem;
}
@media screen and (min-width: 600px) {
  .footerSitemap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .footerSitemap {
    gap: 4.8rem;
  }
}

.footerSitemap_group {
  display: grid;
  gap: 1.6rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid rgba(var(--color-white), 0.28);
}

.footerSitemap_parent {
  position: relative;
  width: fit-content;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (min-width: 1025px) {
  .footerSitemap_parent {
    font-size: 2.4rem;
  }
}

.footerSitemap ul {
  display: grid;
  gap: 1.2rem;
}

.footerSitemap li {
  line-height: 1.6;
}

.footerSitemap li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--color-white), 0.72);
  font-size: 1.3rem;
  font-weight: 700;
  transition: color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
@media screen and (min-width: 1025px) {
  .footerSitemap li a {
    font-size: 1.5rem;
  }
}

.footerSitemap li a:hover {
  color: rgb(var(--color-white));
  transform: translateX(0.4rem);
}

.siteFooter_bottom {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  padding: 2.4rem;
  border-top: 0.1rem solid rgba(var(--color-white), 0.24);
  color: rgba(var(--color-white), 0.64);
  font-family: var(--font-wide);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .siteFooter_bottom {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding: 2.4rem 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .siteFooter_bottom {
    padding: 3.2rem 6.4rem;
  }
}

.siteFooter_bottom a {
  position: relative;
  width: fit-content;
  transition: color 0.28s var(--ease-out);
}

.siteFooter_bottom a:hover {
  color: rgb(var(--color-white));
}

.siteFooter_bottom small {
  font-size: inherit;
  font-weight: inherit;
}

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