:root {
  --color-main: #ba152d;
  --color-accent: #3a3f8e;
  --color-accent-dark: #1c2652;
}

/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
@font-face {
  font-family: "quentin";
  src: url("../fonts/Quentin.otf") format("opentype");
}
@font-face {
  font-family: "neueplak";
  src: url("../fonts/NeuePlak-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak";
  src: url("../fonts/NeuePlak-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak";
  src: url("../fonts/NeuePlak-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeuePlakCondensed";
  src: url("../fonts/NeuePlakCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeuePlakCondensed";
  src: url("../fonts/NeuePlakCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeuePlakCondensed";
  src: url("../fonts/NeuePlakCondensed-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak-wide";
  src: url("../fonts/NeuePlak-WideBold.eot");
  src: local("Neue Plak Wide Bold"), local("NeuePlak-WideBold"), url("../fonts/NeuePlak-WideBold.eot?#iefix") format("embedded-opentype"), url("../fonts/NeuePlak-WideBold.woff2") format("woff2"), url("../fonts/NeuePlak-WideBold.woff") format("woff"), url("../fonts/NeuePlak-WideBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak-wide";
  src: url("../fonts/NeuePlak-WideBlack.eot");
  src: local("Neue Plak Wide Black"), local("NeuePlak-WideBlack"), url("../fonts/NeuePlak-WideBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/NeuePlak-WideBlack.woff2") format("woff2"), url("../fonts/NeuePlak-WideBlack.woff") format("woff"), url("../fonts/NeuePlak-WideBlack.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAMES
  ------------------------------ */
@keyframes loopCl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopClRv {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loopClY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes loopClYRv {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes scrbarY {
  0% {
    transform: scaleY(0);
    transform-origin: center top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: center top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}
@keyframes textGradient {
  0% {
    color: #81adef;
  }
  20% {
    color: #0090f1;
  }
  40% {
    color: #4746f3;
  }
  60% {
    color: #1ccaee;
  }
  100% {
    color: #81adef;
  }
}
.gpHeader {
  position: relative;
  z-index: 10;
  inset: 8px;
  width: calc(100% - 16px);
  background: rgb(var(--color-bl));
  color: rgb(var(--color-wh));
  border-radius: 16px;
}
.gpHeader__bg {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  border-radius: 16px;
  overflow: hidden;
}
.gpHeader__bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gpHeader__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 15.2rem 1fr 5.8rem;
  column-gap: 4.4rem;
  height: 12.8rem;
  padding: 0 4.8rem 0 5.2rem;
}
@media screen and (min-width: 320px) {
  .gpHeader__inner {
    grid-template-columns: 15.6rem 1fr 5.6rem;
    column-gap: 2rem;
    height: 7.6rem;
    padding: 0 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpHeader__inner {
    grid-template-columns: 27.6rem 1fr 9rem;
    column-gap: 4.8rem;
    height: 12.4rem;
    padding: 0 1.6rem 0 5.2rem;
  }
}

.gpHeader__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .gpHeader__logo {
    width: 8rem;
  }
}
@media screen and (min-width: 600px) {
  .gpHeader__logo {
    width: 16rem;
  }
}
.gpHeader__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.gpHeader__nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .gpHeader__nav {
    display: flex;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    column-gap: 5.8rem;
  }
}

.gpHeader__navLink {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.55rem;
  color: rgb(var(--color-wh));
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.gpHeader__navLink span {
  font-size: 1.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.gpHeader__navLink small {
  font-family: var(--font-display);
  font-size: 2.84rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.gpHeader__navLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.2rem;
  width: 100%;
  height: 0.1rem;
  background: rgb(var(--color-wh)/0.65);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}
@media (hover: hover) {
  .gpHeader__navLink:hover::after {
    transform: scaleX(1);
  }
}

.gpHeader__menu {
  display: grid;
  place-items: center;
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(var(--color-wh));
  cursor: pointer;
}
@media screen and (min-width: 320px) {
  .gpHeader__menu {
    position: fixed;
    inset: auto 3rem auto auto;
    width: 4rem;
    height: 4rem;
    border-radius: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .gpHeader__menu {
    position: relative;
    inset: auto;
    width: 10rem;
    height: 10rem;
    border-radius: 12px;
  }
}
.gpHeader__menu span {
  position: absolute;
  border-radius: 99rem;
  background: rgb(var(--color-bl));
}
@media screen and (min-width: 320px) {
  .gpHeader__menu span {
    width: 1.8rem;
    height: 0.24rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpHeader__menu span {
    width: 3.2rem;
    height: 0.32rem;
  }
}
.gpHeader__menu span:first-child {
  transform: translateY(-0.52rem);
}
.gpHeader__menu span:last-child {
  transform: translateY(0.52rem);
}

.gpMegaMenu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  color: rgb(var(--color-wh));
  font-family: var(--font-gothic);
  transition: opacity 0.45s ease;
}
.gpMegaMenu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gpMegaMenu.is-open .gpMegaMenu__veil {
  opacity: 1;
}
.gpMegaMenu.is-open .gpMegaMenu__panel {
  opacity: 1;
  transform: translateX(0);
}
.gpMegaMenu.is-open .gpMegaMenu__side {
  opacity: 1;
  transform: translateX(0);
}
.gpMegaMenu.is-open .gpMegaMenu__item {
  opacity: 1;
  transform: translateX(0);
}

.gpMegaMenu__veil {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgb(var(--color-bl)/0.96), rgba(0, 46, 155, 0.94)), repeating-linear-gradient(135deg, rgb(var(--color-gd)/0.18) 0, rgb(var(--color-gd)/0.18) 0.08rem, transparent 0.08rem, transparent 5.2rem);
  transition: opacity 0.45s ease;
}

.gpMegaMenu__side {
  position: absolute;
  left: 2rem;
  top: 2rem;
  bottom: 2rem;
  width: 28rem;
  display: grid;
  align-content: space-between;
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
@media screen and (min-width: 320px) {
  .gpMegaMenu__side {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__side {
    display: grid;
  }
}

.gpMegaMenu__vertical {
  writing-mode: vertical-rl;
  margin: 0;
  color: rgb(var(--color-wh)/0.55);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.gpMegaMenu__sideInfo {
  display: grid;
  gap: 1.2rem;
  color: rgb(var(--color-wh));
}
.gpMegaMenu__sideInfo p,
.gpMegaMenu__sideInfo address {
  margin: 0;
  font-style: normal;
  font-size: 1.35rem;
  line-height: 1.75;
}

.gpMegaMenu__tel {
  font-family: var(--font-display);
  font-size: 2.8rem !important;
  line-height: 1 !important;
}

.gpMegaMenu__panel {
  position: absolute;
  inset: 2rem 2rem 2rem 2rem;
  overflow: auto;
  padding: 7.2rem 4rem 5.6rem;
  border: 0.1rem solid rgb(var(--color-wh)/0.24);
  border-radius: 2.4rem;
  opacity: 0;
  transform: translateX(6rem);
  background: radial-gradient(circle at 100% 0%, rgb(var(--color-wh)/0.14) 0%, transparent 28%), linear-gradient(135deg, rgb(var(--color-bl)/0.96), rgba(0, 57, 168, 0.94));
  box-shadow: 0 3rem 8rem rgba(0, 20, 80, 0.42);
  transition: opacity 0.55s ease 0.08s, transform 0.55s ease 0.08s;
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__panel {
    inset: 3.2rem 3.2rem 3.2rem 68rem;
    padding: 10rem 12rem 8rem;
    border-radius: 3.2rem;
  }
}

.gpMegaMenu__close {
  position: absolute;
  right: 2.4rem;
  top: 2.4rem;
  width: 5.8rem;
  height: 5.8rem;
  padding: 0;
  border: 0.1rem solid rgb(var(--color-wh)/0.86);
  border-radius: 1.2rem;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__close {
    right: 3.2rem;
    top: 3.2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 1.4rem;
  }
}
.gpMegaMenu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.4rem;
  height: 0.18rem;
  background: rgb(var(--color-wh));
  transform-origin: center;
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__close span {
    width: 3rem;
    height: 0.22rem;
  }
}
.gpMegaMenu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gpMegaMenu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gpMegaMenu__nav {
  display: grid;
  gap: 3.2rem;
}

.gpMegaMenu__item {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  color: rgb(var(--color-wh));
  text-decoration: none;
  opacity: 0;
  transform: translateX(4rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.gpMegaMenu__item:nth-child(1) {
  transition-delay: 0.14s;
}
.gpMegaMenu__item:nth-child(2) {
  transition-delay: 0.18s;
}
.gpMegaMenu__item:nth-child(3) {
  transition-delay: 0.22s;
}
.gpMegaMenu__item:nth-child(4) {
  transition-delay: 0.26s;
}
.gpMegaMenu__item:nth-child(5) {
  transition-delay: 0.3s;
}
.gpMegaMenu__item:nth-child(6) {
  transition-delay: 0.34s;
}
.gpMegaMenu__item:nth-child(7) {
  transition-delay: 0.38s;
}
.gpMegaMenu__item:nth-child(8) {
  transition-delay: 0.42s;
}
.gpMegaMenu__item > span {
  display: block;
  color: rgb(var(--color-wh)/0.36);
  font-family: var(--font-display);
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__item > span {
    font-size: 10.4rem;
  }
}
.gpMegaMenu__item > small {
  display: block;
  color: rgb(var(--color-wh)/0.78);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__item > small {
    font-size: 1.6rem;
  }
}
.gpMegaMenu__item ul {
  display: grid;
  gap: 0.9rem;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}
.gpMegaMenu__item li a {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  color: rgb(var(--color-wh)/0.62);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .gpMegaMenu__item li a {
    font-size: 1.38rem;
  }
}
.gpMegaMenu__item li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgb(var(--color-gd));
}
@media (hover: hover) {
  .gpMegaMenu__item:hover > span {
    color: rgb(var(--color-gd)/0.9);
  }
  .gpMegaMenu__item li a:hover {
    color: rgb(var(--color-wh));
  }
}

body.is-megaMenu-open {
  overflow: hidden;
}

.gpFooter {
  position: relative;
  overflow: hidden;
  color: rgb(var(--color-wh));
  background: linear-gradient(180deg, rgb(var(--color-bl)) 0%, rgb(var(--color-bl)) 42%, rgb(var(--color-bl)/0.86) 58%, rgb(var(--color-bl)/0.42) 72%, rgb(var(--color-bl)/0) 100%), rgb(var(--color-bl));
  font-family: var(--font-gothic);
}

.gpFooter__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.2rem;
  flex-direction: column-reverse;
  padding: 5.6rem 2.4rem 3.2rem;
}
@media screen and (min-width: 320px) {
  .gpFooter__inner {
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .gpFooter__inner {
    display: grid;
  }
}
@media screen and (min-width: 600px) {
  .gpFooter__inner {
    grid-template-columns: 20rem 1fr;
    gap: 3.6rem;
    padding: 5.6rem 3.2rem 3.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpFooter__inner {
    grid-template-columns: 34rem 1fr;
    gap: 5.6rem;
    padding: 7.2rem 5.2rem 4.8rem;
  }
}

.gpFooter__brand {
  display: grid;
  align-content: start;
  gap: 2.4rem;
}

.gpFooter__logo {
  display: block;
  width: 16rem;
}
@media screen and (min-width: 1025px) {
  .gpFooter__logo {
    width: 20rem;
  }
}
.gpFooter__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.gpFooter__info {
  display: grid;
  gap: 0.8rem;
}
.gpFooter__info h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
}
.gpFooter__info p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
}
.gpFooter__info address {
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 1.28rem;
  line-height: 1.75;
}

.gpFooter__sns {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.gpFooter__sns p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gpFooter__snsList {
  display: flex;
  gap: 1.2rem;
}
.gpFooter__snsList a {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 0.1rem solid rgb(var(--color-wh)/0.72);
  border-radius: 0.72rem;
  color: rgb(var(--color-wh));
  text-decoration: none;
}
.gpFooter__snsList a svg {
  display: block;
  fill: white;
  width: 64%;
  height: 64%;
}
.gpFooter__snsList img {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

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

.gpFooterCard {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr 2.4rem;
  align-items: center;
  gap: 1.2rem;
  height: 9.8rem;
  padding: 1.6rem;
  border: 0.1rem solid rgb(var(--color-wh)/0.72);
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(var(--color-wh)) 0%, rgb(247, 250, 255) 100%);
  box-shadow: 0 1.1rem 2.2rem rgba(0, 40, 120, 0.2), inset 0 0.1rem 0 rgb(var(--color-wh));
  color: rgb(var(--color-bl));
  text-decoration: none;
  isolation: isolate;
}
@media screen and (min-width: 1025px) {
  .gpFooterCard {
    grid-template-columns: 6.2rem 1fr 2.8rem;
    height: 13.4rem;
    padding: 2rem;
    border-radius: 1.6rem;
  }
}
.gpFooterCard__status {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.4rem 0.9rem 0.3rem;
  border-radius: 99rem;
  background: rgb(var(--color-gd));
  color: rgb(var(--color-bl));
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 0.4rem 1.2rem rgba(26, 69, 145, 0.18);
}
@media screen and (min-width: 1025px) {
  .gpFooterCard__status {
    top: 1.2rem;
    right: 1.2rem;
    min-height: 2.8rem;
    padding: 0.45rem 1.1rem 0.35rem;
    font-size: 1.6rem;
  }
}
.gpFooterCard__apply {
  position: absolute;
  z-index: 2;
  right: 6.8rem;
  bottom: 0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 0.12rem solid rgb(var(--color-wh)/0.82);
  background: linear-gradient(145deg, rgb(244, 207, 119), rgb(var(--color-gd)) 72%);
  box-shadow: 0 0.45rem 1.2rem rgba(7, 45, 108, 0.22), inset 0 0.12rem 0.12rem rgb(var(--color-wh)/0.48);
}
@media screen and (min-width: 1025px) {
  .gpFooterCard__apply {
    right: 12rem;
    bottom: 1.2rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
.gpFooterCard__apply::before {
  content: "";
  position: absolute;
  inset: 28% 20%;
  border: 0.16rem solid rgb(var(--color-bl));
  border-radius: 0.1rem;
}
.gpFooterCard__apply::after {
  content: "";
  position: absolute;
  left: 28%;
  top: 30%;
  width: 42%;
  height: 30%;
  border-left: 0.16rem solid rgb(var(--color-bl));
  border-bottom: 0.16rem solid rgb(var(--color-bl));
  transform: rotate(-45deg);
}
.gpFooterCard.is-open {
  border-color: rgb(var(--color-gd)/0.72);
  box-shadow: 0 1.1rem 2.2rem rgba(0, 40, 120, 0.2), inset 0 0 0 0.18rem rgb(var(--color-gd)/0.2);
}
.gpFooterCard.is-new .gpFooterCard__status {
  background: rgb(var(--color-rd));
  color: rgb(var(--color-wh));
}
.gpFooterCard.is-coming {
  cursor: default;
  border-color: rgba(116, 136, 168, 0.22);
  background: linear-gradient(180deg, rgb(244, 246, 249) 0%, rgb(227, 232, 239) 100%);
  box-shadow: inset 0 0.1rem 0 rgb(var(--color-wh)/0.7);
  color: rgba(76, 98, 133, 0.48);
}
.gpFooterCard.is-coming img {
  opacity: 0.32;
  filter: grayscale(1);
}
.gpFooterCard.is-coming .gpFooterCard__apply {
  opacity: 0.32;
  filter: grayscale(1);
}
.gpFooterCard.is-coming i {
  border-color: rgba(76, 98, 133, 0.3);
}
.gpFooterCard.is-coming i::before {
  border-color: rgba(76, 98, 133, 0.3);
}
.gpFooterCard__title {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.24;
}
@media screen and (min-width: 320px) {
  .gpFooterCard__title {
    inset: 10px auto auto 10px;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 600px) {
  .gpFooterCard__title {
    inset: 16px auto auto 16px;
    font-size: 3.2rem;
  }
}
.gpFooterCard__title span:first-child {
  font-family: var(--font-display);
}
.gpFooterCard__title span:last-child {
  font-size: 56%;
}
.gpFooterCard img {
  position: absolute;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
}
@media screen and (min-width: 320px) {
  .gpFooterCard img {
    width: 6.2rem;
    height: 6.2rem;
    inset: auto 10px 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .gpFooterCard img {
    width: 10.8rem;
    height: 10.8rem;
    inset: auto 24px 0 auto;
  }
}
.gpFooterCard i {
  position: absolute;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.14rem solid rgb(var(--color-gd));
  border-radius: 50%;
  font-style: normal;
}
@media screen and (min-width: 320px) {
  .gpFooterCard i {
    inset: auto auto 12px 16px;
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .gpFooterCard i {
    inset: auto auto 12px 16px;
    display: none;
  }
}
.gpFooterCard i::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-top: 0.14rem solid rgb(var(--color-gd));
  border-right: 0.14rem solid rgb(var(--color-gd));
  transform: translateX(-0.12rem) rotate(45deg);
}
@media (hover: hover) {
  .gpFooterCard {
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  }
  .gpFooterCard:not(.is-coming):hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 1.8rem 3.4rem rgba(0, 40, 120, 0.28), inset 0 0.1rem 0 rgb(var(--color-wh));
  }
}

.gpFooter__bottom {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  padding: 0 2.4rem 30rem;
}
@media screen and (min-width: 600px) {
  .gpFooter__bottom {
    padding: 0 3.2rem 32rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpFooter__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3.2rem;
    padding: 0 5.2rem 34rem;
  }
}
.gpFooter__bottom small {
  font-size: 1.16rem;
  line-height: 1.5;
}

.gpFooter__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid rgb(var(--color-wh)/0.4);
}
.gpFooter__links a {
  color: rgb(var(--color-wh));
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

.gpPageFv {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(var(--color-wh)) 0%, rgb(var(--color-wh)) 48%, rgb(var(--color-wh)/0.82) 66%, rgb(var(--color-wh)/0.18) 100%), url("../images/common/page_fv.webp") center center/cover no-repeat;
  border-bottom: 0.1rem solid rgb(var(--color-bl)/0.64);
}

.gpPageFv__inner {
  position: relative;
  display: grid;
  flex-direction: column;
  align-items: center;
  padding: 0 3.6rem;
}
@media screen and (min-width: 320px) {
  .gpPageFv__inner {
    display: flex;
    height: auto;
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .gpPageFv__inner {
    display: grid;
    height: 50rem;
    padding: 0 7.2rem;
  }
}

.gpPageFv__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
}
@media screen and (min-width: 320px) {
  .gpPageFv__content {
    width: 100%;
    justify-items: center;
    padding: 4rem 16px 24px;
  }
}
@media screen and (min-width: 600px) {
  .gpPageFv__content {
    width: auto;
    justify-items: start;
    padding: 0;
  }
}

.gpPageFv__en {
  margin: 0;
  color: rgb(var(--color-bl));
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .gpPageFv__en {
    font-size: 7.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpPageFv__en {
    font-size: 12.8rem;
  }
}

.gpPageFv__title {
  margin: 0;
  color: rgb(var(--color-bl));
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .gpPageFv__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpPageFv__title {
    font-size: 6rem;
  }
}

.gpPageFv__sub {
  margin: 0;
  color: rgb(var(--color-bl));
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .gpPageFv__sub {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .gpPageFv__sub {
    font-size: 2.4rem;
  }
}

.gpPageFv__center {
  display: none;
}
@media screen and (min-width: 1025px) {
  .gpPageFv__center {
    position: absolute;
    z-index: 1;
    right: 32rem;
    top: 50%;
    transform: translateY(-42%);
    display: grid;
    justify-items: center;
    gap: 1.2rem;
    color: rgb(var(--color-bl));
    text-align: center;
  }
}

.gpPageFv__gp {
  margin: 0;
  color: rgb(var(--color-gd));
  font-family: var(--font-display);
  font-size: 9.2rem;
  font-weight: 700;
  line-height: 0.8;
}

.gpPageFv__caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gpPageFv__dates {
  display: flex;
  align-items: start;
  gap: 2.4rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.gpPageFv__dates li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}
.gpPageFv__dates li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.3rem;
  width: 0.1rem;
  height: 4rem;
  background: rgb(var(--color-bl)/0.28);
}
.gpPageFv__dates strong {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.gpPageFv__dates span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}
.gpPageFv__dates small {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.gpPageFv__banner {
  inset: 0;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .gpPageFv__banner {
    position: relative;
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  .gpPageFv__banner {
    position: absolute;
    height: 100%;
  }
}
.gpPageFv__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}
@media screen and (min-width: 320px) {
  .gpPageFv__banner img {
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  .gpPageFv__banner img {
    height: 100%;
  }
}

.maintence {
  padding: 64px 0;
}
.maintence p {
  font-size: 15px;
  text-align: center;
  line-height: 2;
}

.siteLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 42%, rgb(38, 104, 192) 0%, transparent 42%), linear-gradient(145deg, rgb(8, 47, 111), rgb(var(--color-bl)) 55%, rgb(7, 48, 125));
  opacity: 1;
  visibility: visible;
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.6s ease, visibility 0.8s linear;
  clip-path: inset(0 0 0 0);
}
.siteLoader::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgb(var(--color-wh)/0.12) 0.1rem, transparent 0.1rem), linear-gradient(90deg, rgb(var(--color-wh)/0.12) 0.1rem, transparent 0.1rem);
  background-size: 6rem 6rem;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}
.siteLoader.is-ready .siteLoader__brand {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.siteLoader.is-ready .siteLoader__motion span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.siteLoader.is-ready .siteLoader__progress span {
  transform: scaleX(1);
}
.siteLoader.is-leaving {
  clip-path: inset(0 0 100% 0);
  opacity: 0.98;
  visibility: hidden;
  pointer-events: none;
}
.siteLoader.is-leaving .siteLoader__brand {
  transform: translateY(-1rem) scale(1.02);
}

.siteLoader__motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.siteLoader__motion span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74vw, 88rem);
  aspect-ratio: 2.25/1;
  border: 0.1rem solid rgb(var(--color-gd)/0.34);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 0.7s ease, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.siteLoader__motion span:nth-child(1) {
  animation: siteLoaderOrbit 7s linear infinite;
}
.siteLoader__motion span:nth-child(2) {
  width: min(56vw, 66rem);
  border-color: rgb(var(--color-wh)/0.2);
  transition-delay: 0.12s;
  animation: siteLoaderOrbitReverse 9s linear infinite;
}
.siteLoader__motion span:nth-child(3) {
  width: min(92vw, 108rem);
  border-style: dashed;
  border-color: rgb(var(--color-wh)/0.12);
  transition-delay: 0.2s;
  animation: siteLoaderOrbit 12s linear infinite;
}

.siteLoader__brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 2rem;
  width: min(68vw, 38rem);
  opacity: 0;
  transform: translateY(1.8rem);
  filter: blur(0.8rem);
  transition: opacity 0.75s ease 0.15s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, filter 0.75s ease 0.15s;
}
.siteLoader__brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1.2rem 3rem rgba(0, 28, 80, 0.28));
}
.siteLoader__brand p {
  margin: 0;
  color: rgb(var(--color-wh)/0.72);
  font-family: var(--font-gothic);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
}

.siteLoader__progress {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 7vh;
  width: min(42vw, 22rem);
  height: 0.1rem;
  overflow: hidden;
  background: rgb(var(--color-wh)/0.18);
  transform: translateX(-50%);
}
.siteLoader__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(var(--color-gd));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.55s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}

body.is-siteLoading {
  overflow: hidden;
}

@keyframes siteLoaderOrbit {
  to {
    rotate: 360deg;
  }
}
@keyframes siteLoaderOrbitReverse {
  to {
    rotate: -360deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .siteLoader,
  .siteLoader *,
  .siteLoader *::before,
  .siteLoader *::after {
    animation: none !important;
    transition-duration: 0.2s !important;
    transition-delay: 0s !important;
  }
}

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