: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;
  }
}
:root {
  --color-wh: 255 255 255;
  --color-bl: 16 77 157;
  --color-rd: 185 65 48;
  --color-gd: 218 171 71;
  --font-gothic: "ryo-gothic-plusn", sans-serif;
  --font-display: "house-of-cards", sans-serif;
}

/* ******************************
 *
 * FORM RESET
 *
 * ****************************** */
input, select, textarea {
  outline: none;
}
input::focus, select::focus, textarea::focus {
  outline: none;
}

input[type=submit],
select,
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
select::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

button {
  background: none;
  color: inherit;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: left;
}
button:focus {
  outline: none;
}

.slick-slide {
  outline: none !important;
}

button {
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* ******************************
 *
 * DEFAULT BLOCK SETTINGS
 *
 * ****************************** */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: #121212;
  color: #FFFFFF;
}

::selection {
  background-color: #121212;
  color: #FFFFFF;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: auto;
  font-weight: 400;
  background: rgb(var(--color-wh));
  letter-spacing: 0.06em;
  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 {
  font-family: var(--font-gothic);
  font-weight: 400;
  color: rgb(var(--color-bl));
}

main {
  position: relative;
}

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

h1, h2, h3 {
  font-weight: 700;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.gHeader {
  position: fixed;
  z-index: 10;
  inset: 0 auto auto 0;
  width: 100%;
}
.gHeader.--isNew {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .gHeader.--isNew {
    top: 8rem;
  }
}
@media screen and (min-width: 600px) {
  .gHeader.--isNew {
    top: 12rem;
  }
}
.gHeader__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .gHeader__inner {
    padding: 16px 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__inner {
    padding: 24px 2.5vw;
  }
}
.gHeader__logo, .gHeader__logo2 {
  transition: width 400ms ease;
}
.gHeader__logo img, .gHeader__logo2 img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 320px) {
  .gHeader__logo {
    width: 56%;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__logo {
    width: 32%;
  }
}
.gHeader__logoInner {
  width: 100%;
}
@media screen and (min-width: 320px) {
  .gHeader__logo img {
    transform: translateY(-5%);
  }
}
@media screen and (min-width: 600px) {
  .gHeader__logo img {
    transform: unset;
  }
}
@media screen and (min-width: 320px) {
  .gHeader__logo2 {
    width: 12%;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__logo2 {
    width: 8%;
  }
}
.gHeader__logo2Inner {
  width: 100%;
}
.gHeader__update {
  position: absolute;
  z-index: 1;
  transition: opacity 400ms ease, transform 400ms ease;
}
@media screen and (min-width: 320px) {
  .gHeader__update {
    inset: 16rem auto auto 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__update {
    inset: 46rem auto auto 2.5vw;
  }
}
.gHeader__updateArticle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 95vw;
}
.gHeader__updateInner {
  display: flex;
  align-items: center;
  background: rgba(var(--color-wh)/0.64);
  backdrop-filter: blur(24px) saturate(140%);
  border: solid 1px rgba(var(--color-wh)/0.88);
  border-radius: 999vw;
}
@media screen and (min-width: 320px) {
  .gHeader__updateInner {
    padding: 4px 8px;
    gap: 8px;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__updateInner {
    padding: 8px 16px;
    gap: 12px;
    font-size: 1.8rem;
  }
}
.gHeader__updateInner:hover .gHeader__updateTitle {
  text-decoration: none;
}
.gHeader__updateIcon {
  background: rgb(var(--color-rd));
  color: rgb(var(--color-wh));
  font-size: 80%;
  border-radius: 999vw;
}
@media screen and (min-width: 320px) {
  .gHeader__updateIcon {
    padding: 6px 8px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__updateIcon {
    padding: 6px 8px;
  }
}
.gHeader__updateTime {
  display: none;
}
.gHeader__updateTitle {
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (min-width: 320px) {
  .gHeader.isScrolled .gHeader__logo {
    width: 24%;
  }
}
@media screen and (min-width: 600px) {
  .gHeader.isScrolled .gHeader__logo {
    width: 16%;
  }
}
.gHeader.isScrolled .gHeader__update {
  opacity: 0;
  transform: translateY(-24px);
}

.gCanvas {
  position: fixed;
  inset: 0;
}
.gCanvas img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gMain {
  position: relative;
  z-index: 1;
}

.gFooter {
  position: relative;
  z-index: 10;
}
.gFooter__copy {
  text-align: center;
}
@media screen and (min-width: 320px) {
  .gFooter__copy {
    padding: 24px 0;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__copy {
    padding: 48px 0;
    font-size: 1.6rem;
  }
}

.creativeBtn {
  --btn-height: 64px;
  --btn-radius: 999px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-width: 240px;
  min-height: var(--btn-height);
  padding: 0 1rem 0 1.75rem;
  border-radius: var(--btn-radius);
  color: rgb(var(--color-wh));
  text-decoration: none;
  background: linear-gradient(135deg, rgb(var(--color-bl)) 0%, rgb(38, 96, 160) 100%);
  border: 1px solid rgb(var(--color-wh)/0.22);
  box-shadow: 0 10px 30px rgb(var(--color-bl)/0.22), inset 0 1px 0 rgb(var(--color-wh)/0.22);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background 0.4s ease;
}
.creativeBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgb(var(--color-wh)/0) 35%, rgb(var(--color-wh)/0.18) 50%, rgb(var(--color-wh)/0) 65%, transparent 100%);
  transform: translateX(-140%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.creativeBtn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgb(var(--color-wh)/0.18), transparent 35%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.creativeBtn__label, .creativeBtn__icon {
  position: relative;
  z-index: 1;
}
.creativeBtn__label {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.creativeBtn__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(var(--color-wh));
  color: rgb(var(--color-bl));
  box-shadow: inset 0 1px 0 rgb(var(--color-wh)/0.9), 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.creativeBtn__icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.creativeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgb(var(--color-bl)/0.28), inset 0 1px 0 rgb(var(--color-wh)/0.28);
}

.creativeBtn:hover::before {
  transform: translateX(140%);
}

.creativeBtn:hover .creativeBtn__icon {
  transform: translateX(4px) scale(1.06);
  box-shadow: inset 0 1px 0 rgb(var(--color-wh)/0.9), 0 10px 22px rgba(0, 0, 0, 0.16);
}

.creativeBtn:hover .creativeBtn__icon svg {
  transform: translateX(2px);
}

.creativeBtn:active {
  transform: translateY(0);
}

.creativeBtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgb(var(--color-wh)/0.35), 0 0 0 8px rgb(var(--color-bl)/0.28), 0 18px 40px rgb(var(--color-bl)/0.28);
}

@media (max-width: 767px) {
  .creativeBtn {
    --btn-height: 58px;
    min-width: 220px;
    padding: 0 0.85rem 0 1.3rem;
    gap: 0.9rem;
  }
  .creativeBtn__label {
    font-size: 1.24rem;
  }
  .creativeBtn__icon {
    width: 38px;
    height: 38px;
  }
  .creativeBtn__icon svg {
    width: 18px;
    height: 18px;
  }
}/*# sourceMappingURL=style.css.map */