@charset "UTF-8";
/*------------------------------------------------------------
  reset.css customized
------------------------------------------------------------*/
*:where(:not(html):not(iframe):not(canvas):not(img):not(svg):not(video):not(audio):not(input[type="checkbox"]):not(input[type="radio"]):not(em):not(i):not(svg *):not(symbol *)) {
  all: unset;
  display: revert;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a, button {
  cursor: revert;
}

img {
  height: auto;
  max-inline-size: 100%;
  max-block-size: 100%;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  display: block;
  white-space: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

:root {
  --white: #fff;
  --pale-gray: #ccc;
  --blue-black: #00021C;
  --black: #000;
  --light-blue: #E5EBFF;
  --white-blue: #D2D5E9;
  --light-gray-blue: #AFB7E2;
  --gray-blue: #8B92B9;
  --gold: #C4A765;
  --primary-color: var(--blue-black);
  --base-gray-color: var(--pale-gray);
  --base-text-color: var(--light-blue);
  --sub-text-color: var(--light-gray-blue);
  --base-border-color: var(--pale-gray);
}

/*------------------------------------------------------------
  form parts
------------------------------------------------------------*/
/*
  input(not radio, checkbox, file, submit)、textarea、select
*/
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]), textarea, select:not([class="ui-datepicker-year"]):not([class="ui-datepicker-month"]) {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding: 1rem 1.6rem;
  box-shadow: none;
}

@media screen and (min-width: 1024px) {
  input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]), textarea, select:not([class="ui-datepicker-year"]):not([class="ui-datepicker-month"]) {
    padding: 1rem 2rem;
  }
}

/*
  textarea
*/
textarea {
  form-sizing: content;
  height: 30rem;
}

@media screen and (min-width: 1024px) {
  textarea {
    height: 20rem;
  }
}

/*
  placeholder
*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--sub-text-color);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--sub-text-color);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--sub-text-color);
}

input::-placeholder, textarea::-placeholder {
  color: var(--sub-text-color);
}

/*
  checkboxes
*/
.checkbox-wrap {
  display: inline-block;
}

.checkbox-wrap label {
  position: relative;
  margin-right: 2rem;
  cursor: pointer;
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: .3rem;
  transform: translate(0, -50%);
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: .3rem .3rem .3rem 3rem;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after {
  content: '';
  position: absolute;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

input[type="checkbox"] + span::before {
  top: 52%;
  left: 0;
  width: 2rem;
  height: 2rem;
  transform: translate(0%, -50%);
  border: 0.1rem solid var(--white);
}

input[type="checkbox"] + span::after {
  opacity: 0;
  top: 51%;
  left: .2rem;
  width: 1.6rem;
  height: 1rem;
  transform: translate(0%, -75%) rotate(-45deg) scale(0.5);
  border-left: 0.25rem solid var(--white);
  border-bottom: 0.25rem solid var(--white);
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
  transform: translate(0%, -75%) rotate(-45deg) scale(1);
}

.mw_wp_form .vertical-item + .vertical-item {
  margin-top: 0 !important;
}

/*
  select
*/
.select-wrap {
  position: relative;
}

.select-wrap:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% - 2.4rem);
  transform: translate(-50%, -50%) rotate(90deg);
  width: .6rem;
  height: 1rem;
  background: var(--base-text-color);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .select-wrap:after {
    left: calc(100% - 3rem);
    width: .7rem;
    height: 1.1rem;
  }
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  font-size: 2.66666666vw;
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.30208333vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 1366px) {
  html {
    font-size: 0.73206442vw;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 0.69444444vw;
  }
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}

@media screen and (min-width: 1664px) {
  html {
    font-size: 0.60096153vw;
  }
}

@media screen and (min-width: 1792px) {
  html {
    font-size: 0.55803571vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}

@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  background: var(--primary-color);
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

html[lang="ja"] body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}

html[lang="en"] body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}

body.is-fixed {
  overflow: hidden;
}

p {
  line-break: strict;
}

a, button, ::file-selector-button {
  touch-action: manipulation;
  -weblit-user-select: none;
  user-select: none;
}

a {
  color: var(--base-text-color);
}

p a {
  background: linear-gradient(to right, var(--base-text-color), var(--base-text-color)) left bottom/100% 0.1rem no-repeat;
  transition: background-size 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

p a:active:not(:disabled), p a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .1rem;
  transition-duration: 0.4s;
}

p a:not([href*=".pdf"]) {
  position: relative;
  margin-right: 3.8rem;
}

@media screen and (min-width: 1024px) {
  p a:not([href*=".pdf"]) {
    margin-right: 4.6rem;
  }
}

p a:not([href*=".pdf"]):before {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% - 1rem);
  left: calc(100% + 1.8rem);
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2rem;
  border-radius: calc(infinity * .1rem);
  background: rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 1024px) {
  p a:not([href*=".pdf"]):before {
    top: calc(100% - 1.1rem);
    left: calc(100% + 2.2rem);
    width: 3.2rem;
    height: 2.4rem;
  }
}

p a:not([href*=".pdf"]):after {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% - 1rem);
  left: calc(100% + 1.8rem);
  transform: translate(-50%, -50%);
  width: 1rem;
  height: .8rem;
  background: url(../images/common/icon-arrow.svg) center/100% no-repeat;
}

@media screen and (min-width: 1024px) {
  p a:not([href*=".pdf"]):after {
    top: calc(100% - 1.1rem);
    left: calc(100% + 2.2rem);
    width: 1.2rem;
    height: 1rem;
  }
}

p a[target="_blank"] {
  position: relative;
}

p a[target="_blank"]:after {
  top: calc(100% - 1.1rem);
  left: calc(100% + 1.9rem);
  background-image: url(../images/common/icon-external.svg);
}

@media screen and (min-width: 1024px) {
  p a[target="_blank"]:after {
    top: calc(100% - 1.2rem);
    left: calc(100% + 2.3rem);
  }
}

p a[href$=".pdf"] {
  position: relative;
  margin-right: 3.8rem;
}

@media screen and (min-width: 1024px) {
  p a[href$=".pdf"] {
    margin-right: 4.6rem;
  }
}

p a[href$=".pdf"]:after {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% - .9rem);
  left: calc(100% + 1.8rem);
  transform: translate(-50%, -50%);
  width: 2.3rem;
  height: 1.4rem;
  background: url(../images/common/icon-pdf.svg) center/100% no-repeat;
}

@media screen and (min-width: 1024px) {
  p a[href$=".pdf"]:after {
    top: calc(100% - 1rem);
    left: calc(100% + 2.2rem);
    width: 2.5rem;
    height: 1.6rem;
  }
}

p a[href*="#"] {
  margin-right: 3.8rem;
  color: var(--white);
  background: none;
}

@media screen and (min-width: 1024px) {
  p a[href*="#"] {
    margin-right: 4.6rem;
  }
}

p a[href*="#"]:active:not(:disabled):before, p a[href*="#"]:hover:not(:disabled):before {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

p a[href*="#"]:before {
  left: calc(100% + 2.2rem);
  width: 3.6rem;
  height: 2.4rem;
  background: rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  p a[href*="#"]:before {
    left: calc(100% + 3.2rem);
    width: 4.8rem;
    height: 3.2rem;
  }
}

p a[href*="#"]:after {
  left: calc(100% + 2.2rem);
  transform: translate(-50%, -50%) rotate(90deg);
  width: 1.2rem;
  height: 1rem;
}

@media screen and (min-width: 1024px) {
  p a[href*="#"]:after {
    left: calc(100% + 3.2rem);
    width: 1.4rem;
    height: 1.2rem;
  }
}

p a.icon-none {
  margin-right: 0;
}

p a.icon-none:before, p a.icon-none:after {
  content: none;
}

button, select {
  cursor: pointer;
}

picture, video, iframe {
  display: block;
}

.wp-post-image {
  height: auto;
}

figcaption {
  margin-top: 1rem !important;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  figcaption {
    margin-top: 1.4rem !important;
    font-size: 1.2rem;
  }
}

th {
  text-align: left;
}

caption {
  caption-side: bottom;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  caption {
    margin-top: 2.6rem;
    font-size: 1.2rem;
  }
}

caption p + p {
  margin-top: 1rem;
}

caption li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

ul {
  list-style-type: '';
}

ol {
  margin-left: 1.8em;
}

@media screen and (max-width: 599px) {
  .md, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .sm {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .sm, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .md {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .sm, .md, .lg--medium, .lg--large {
    display: none !important;
  }
  .lg, .lg--small {
    display: revert !important;
  }
}

@media screen and (min-width: 1280px) {
  .lg--small {
    display: none !important;
  }
  .lg--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .lg--small, .lg--medium {
    display: none !important;
  }
  .lg--large {
    display: revert !important;
  }
}

.bg-lazy {
  background-image: none !important;
}

.se {
  pointer-events: none;
}

.se a {
  pointer-events: none;
}

.is-in {
  pointer-events: visible;
}

.is-in a {
  pointer-events: visible;
}

.fade, .fade--medium {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

.fade--medium {
  transition-duration: 700ms;
}

.is-in .fade, .is-in .fade--medium, .is-in.fade, .is-in.fade--medium {
  opacity: 1;
}

.fade--up, .fade--up--medium {
  opacity: 0;
  transform: translate(0, 3rem);
  transition-property: opacity, transform;
  transition-duration: 350ms, 1750ms;
  transition-timing-function: ease-in, cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media screen and (min-width: 1024px) {
  .fade--up, .fade--up--medium {
    transform: translate(0, 6rem);
  }
}

.fade--up--medium {
  transform: translate(0, 4.5rem);
  transition-duration: 700ms, 2100ms;
}

@media screen and (min-width: 1024px) {
  .fade--up--medium {
    transform: translate(0, 8rem);
  }
}

.is-in .fade--up, .is-in .fade--up--medium, .is-in.fade--up, .is-in.fade--up--medium {
  opacity: 1;
  transform: translate(0, 0);
}

.slide--right, .slide--right--small, .slide--right--medium, .slide--right--large {
  transform: translate(-3rem, 0);
  transition-property: transform;
  transition-duration: 2100ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media screen and (min-width: 1024px) {
  .slide--right, .slide--right--small, .slide--right--medium, .slide--right--large {
    transform: translate(-6rem, 0);
  }
}

.slide--right--small {
  transform: translate(-2rem, 0);
  transition-duration: 1750ms;
}

@media screen and (min-width: 1024px) {
  .slide--right--small {
    transform: translate(-4rem, 0);
  }
}

.slide--right--medium {
  transform: translate(-4rem, 0);
  transition-duration: 2450ms;
}

@media screen and (min-width: 1024px) {
  .slide--right--medium {
    transform: translate(-8rem, 0);
  }
}

.slide--right--large {
  transform: translate(-5rem, 0);
  transition-duration: 2800ms;
}

@media screen and (min-width: 1024px) {
  .slide--right--large {
    transform: translate(-10rem, 0);
  }
}

.is-in .slide--right, .is-in .slide--right--small, .is-in .slide--right--medium, .is-in .slide--right--large, .is-in.slide--right, .is-in.slide--right--small, .is-in.slide--right--medium, .is-in.slide--right--large {
  transform: translate(0, 0);
}

.slide--left, .slide--left--small, .slide--left--medium, .slide--left--large {
  transform: translate(3rem, 0);
  transition-property: transform;
  transition-duration: 2100ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media screen and (min-width: 1024px) {
  .slide--left, .slide--left--small, .slide--left--medium, .slide--left--large {
    transform: translate(6rem, 0);
  }
}

.slide--left--small {
  transform: translate(2rem, 0);
  transition-duration: 1750ms;
}

@media screen and (min-width: 1024px) {
  .slide--left--small {
    transform: translate(4rem, 0);
  }
}

.slide--left--medium {
  transform: translate(4rem, 0);
  transition-duration: 2450ms;
}

@media screen and (min-width: 1024px) {
  .slide--left--medium {
    transform: translate(8rem, 0);
  }
}

.slide--left--large {
  transform: translate(5rem, 0);
  transition-duration: 2800ms;
}

@media screen and (min-width: 1024px) {
  .slide--left--large {
    transform: translate(10rem, 0);
  }
}

.is-in .slide--left, .is-in .slide--left--small, .is-in .slide--left--medium, .is-in .slide--left--large, .is-in.slide--left, .is-in.slide--left--small, .is-in.slide--left--medium, .is-in.slide--left--large {
  transform: translate(0, 0);
}

.delay--100 {
  transition-delay: 100ms;
  animation-delay: 100ms;
}

.delay--200 {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

.delay--300 {
  transition-delay: 300ms;
  animation-delay: 300ms;
}

.delay--400 {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

.delay--500 {
  transition-delay: 500ms;
  animation-delay: 500ms;
}

.delay--600 {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

.delay--700 {
  transition-delay: 700ms;
  animation-delay: 700ms;
}

.delay--800 {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

.delay--900 {
  transition-delay: 900ms;
  animation-delay: 900ms;
}

.delay--1000 {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

.delay--1100 {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}

.delay--1200 {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}

.delay--1300 {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}

.delay--1400 {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}

.delay--1500 {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}

.delay--1600 {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}

.delay--1700 {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}

.delay--1800 {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}

.delay--1900 {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}

.delay--2000 {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}

.delay--2100 {
  transition-delay: 2100ms;
  animation-delay: 2100ms;
}

.delay--2200 {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}

.delay--2300 {
  transition-delay: 2300ms;
  animation-delay: 2300ms;
}

.delay--2400 {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}

.delay--2500 {
  transition-delay: 2500ms;
  animation-delay: 2500ms;
}

.delay--2600 {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}

.delay--2700 {
  transition-delay: 2700ms;
  animation-delay: 2700ms;
}

.delay--2800 {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}

.delay--2900 {
  transition-delay: 2900ms;
  animation-delay: 2900ms;
}

.delay--3000 {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}

.delay--3100 {
  transition-delay: 3100ms;
  animation-delay: 3100ms;
}

.delay--3200 {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}

.delay--3300 {
  transition-delay: 3300ms;
  animation-delay: 3300ms;
}

.delay--3400 {
  transition-delay: 3400ms;
  animation-delay: 3400ms;
}

.delay--3500 {
  transition-delay: 3500ms;
  animation-delay: 3500ms;
}

.delay--3600 {
  transition-delay: 3600ms;
  animation-delay: 3600ms;
}

.delay--3700 {
  transition-delay: 3700ms;
  animation-delay: 3700ms;
}

.delay--3800 {
  transition-delay: 3800ms;
  animation-delay: 3800ms;
}

.delay--3900 {
  transition-delay: 3900ms;
  animation-delay: 3900ms;
}

.delay--4000 {
  transition-delay: 4000ms;
  animation-delay: 4000ms;
}

.letter-animation span, .letter-animation--delay span, .letter-animation--delay--800 span, .letter-animation--delay--1000 span, .letter-animation--fast span, .letter-animation--fast--delay span, .letter-animation--fast--delay--800 span, .letter-animation--fast--delay--1000 span, .letter-animation path, .letter-animation--delay path, .letter-animation--delay--800 path, .letter-animation--delay--1000 path, .letter-animation--fast path, .letter-animation--fast--delay path, .letter-animation--fast--delay--800 path, .letter-animation--fast--delay--1000 path {
  opacity: .3;
}

.letter-animation span:nth-child(1), .letter-animation--delay span:nth-child(1), .letter-animation--delay--800 span:nth-child(1), .letter-animation--delay--1000 span:nth-child(1), .letter-animation--fast span:nth-child(1), .letter-animation--fast--delay span:nth-child(1), .letter-animation--fast--delay--800 span:nth-child(1), .letter-animation--fast--delay--1000 span:nth-child(1), .letter-animation path:nth-child(1), .letter-animation--delay path:nth-child(1), .letter-animation--delay--800 path:nth-child(1), .letter-animation--delay--1000 path:nth-child(1), .letter-animation--fast path:nth-child(1), .letter-animation--fast--delay path:nth-child(1), .letter-animation--fast--delay--800 path:nth-child(1), .letter-animation--fast--delay--1000 path:nth-child(1) {
  --nth-child: 1;
}

.letter-animation span:nth-child(2), .letter-animation--delay span:nth-child(2), .letter-animation--delay--800 span:nth-child(2), .letter-animation--delay--1000 span:nth-child(2), .letter-animation--fast span:nth-child(2), .letter-animation--fast--delay span:nth-child(2), .letter-animation--fast--delay--800 span:nth-child(2), .letter-animation--fast--delay--1000 span:nth-child(2), .letter-animation path:nth-child(2), .letter-animation--delay path:nth-child(2), .letter-animation--delay--800 path:nth-child(2), .letter-animation--delay--1000 path:nth-child(2), .letter-animation--fast path:nth-child(2), .letter-animation--fast--delay path:nth-child(2), .letter-animation--fast--delay--800 path:nth-child(2), .letter-animation--fast--delay--1000 path:nth-child(2) {
  --nth-child: 2;
}

.letter-animation span:nth-child(3), .letter-animation--delay span:nth-child(3), .letter-animation--delay--800 span:nth-child(3), .letter-animation--delay--1000 span:nth-child(3), .letter-animation--fast span:nth-child(3), .letter-animation--fast--delay span:nth-child(3), .letter-animation--fast--delay--800 span:nth-child(3), .letter-animation--fast--delay--1000 span:nth-child(3), .letter-animation path:nth-child(3), .letter-animation--delay path:nth-child(3), .letter-animation--delay--800 path:nth-child(3), .letter-animation--delay--1000 path:nth-child(3), .letter-animation--fast path:nth-child(3), .letter-animation--fast--delay path:nth-child(3), .letter-animation--fast--delay--800 path:nth-child(3), .letter-animation--fast--delay--1000 path:nth-child(3) {
  --nth-child: 3;
}

.letter-animation span:nth-child(4), .letter-animation--delay span:nth-child(4), .letter-animation--delay--800 span:nth-child(4), .letter-animation--delay--1000 span:nth-child(4), .letter-animation--fast span:nth-child(4), .letter-animation--fast--delay span:nth-child(4), .letter-animation--fast--delay--800 span:nth-child(4), .letter-animation--fast--delay--1000 span:nth-child(4), .letter-animation path:nth-child(4), .letter-animation--delay path:nth-child(4), .letter-animation--delay--800 path:nth-child(4), .letter-animation--delay--1000 path:nth-child(4), .letter-animation--fast path:nth-child(4), .letter-animation--fast--delay path:nth-child(4), .letter-animation--fast--delay--800 path:nth-child(4), .letter-animation--fast--delay--1000 path:nth-child(4) {
  --nth-child: 4;
}

.letter-animation span:nth-child(5), .letter-animation--delay span:nth-child(5), .letter-animation--delay--800 span:nth-child(5), .letter-animation--delay--1000 span:nth-child(5), .letter-animation--fast span:nth-child(5), .letter-animation--fast--delay span:nth-child(5), .letter-animation--fast--delay--800 span:nth-child(5), .letter-animation--fast--delay--1000 span:nth-child(5), .letter-animation path:nth-child(5), .letter-animation--delay path:nth-child(5), .letter-animation--delay--800 path:nth-child(5), .letter-animation--delay--1000 path:nth-child(5), .letter-animation--fast path:nth-child(5), .letter-animation--fast--delay path:nth-child(5), .letter-animation--fast--delay--800 path:nth-child(5), .letter-animation--fast--delay--1000 path:nth-child(5) {
  --nth-child: 5;
}

.letter-animation span:nth-child(6), .letter-animation--delay span:nth-child(6), .letter-animation--delay--800 span:nth-child(6), .letter-animation--delay--1000 span:nth-child(6), .letter-animation--fast span:nth-child(6), .letter-animation--fast--delay span:nth-child(6), .letter-animation--fast--delay--800 span:nth-child(6), .letter-animation--fast--delay--1000 span:nth-child(6), .letter-animation path:nth-child(6), .letter-animation--delay path:nth-child(6), .letter-animation--delay--800 path:nth-child(6), .letter-animation--delay--1000 path:nth-child(6), .letter-animation--fast path:nth-child(6), .letter-animation--fast--delay path:nth-child(6), .letter-animation--fast--delay--800 path:nth-child(6), .letter-animation--fast--delay--1000 path:nth-child(6) {
  --nth-child: 6;
}

.letter-animation span:nth-child(7), .letter-animation--delay span:nth-child(7), .letter-animation--delay--800 span:nth-child(7), .letter-animation--delay--1000 span:nth-child(7), .letter-animation--fast span:nth-child(7), .letter-animation--fast--delay span:nth-child(7), .letter-animation--fast--delay--800 span:nth-child(7), .letter-animation--fast--delay--1000 span:nth-child(7), .letter-animation path:nth-child(7), .letter-animation--delay path:nth-child(7), .letter-animation--delay--800 path:nth-child(7), .letter-animation--delay--1000 path:nth-child(7), .letter-animation--fast path:nth-child(7), .letter-animation--fast--delay path:nth-child(7), .letter-animation--fast--delay--800 path:nth-child(7), .letter-animation--fast--delay--1000 path:nth-child(7) {
  --nth-child: 7;
}

.letter-animation span:nth-child(8), .letter-animation--delay span:nth-child(8), .letter-animation--delay--800 span:nth-child(8), .letter-animation--delay--1000 span:nth-child(8), .letter-animation--fast span:nth-child(8), .letter-animation--fast--delay span:nth-child(8), .letter-animation--fast--delay--800 span:nth-child(8), .letter-animation--fast--delay--1000 span:nth-child(8), .letter-animation path:nth-child(8), .letter-animation--delay path:nth-child(8), .letter-animation--delay--800 path:nth-child(8), .letter-animation--delay--1000 path:nth-child(8), .letter-animation--fast path:nth-child(8), .letter-animation--fast--delay path:nth-child(8), .letter-animation--fast--delay--800 path:nth-child(8), .letter-animation--fast--delay--1000 path:nth-child(8) {
  --nth-child: 8;
}

.letter-animation span:nth-child(9), .letter-animation--delay span:nth-child(9), .letter-animation--delay--800 span:nth-child(9), .letter-animation--delay--1000 span:nth-child(9), .letter-animation--fast span:nth-child(9), .letter-animation--fast--delay span:nth-child(9), .letter-animation--fast--delay--800 span:nth-child(9), .letter-animation--fast--delay--1000 span:nth-child(9), .letter-animation path:nth-child(9), .letter-animation--delay path:nth-child(9), .letter-animation--delay--800 path:nth-child(9), .letter-animation--delay--1000 path:nth-child(9), .letter-animation--fast path:nth-child(9), .letter-animation--fast--delay path:nth-child(9), .letter-animation--fast--delay--800 path:nth-child(9), .letter-animation--fast--delay--1000 path:nth-child(9) {
  --nth-child: 9;
}

.letter-animation span:nth-child(10), .letter-animation--delay span:nth-child(10), .letter-animation--delay--800 span:nth-child(10), .letter-animation--delay--1000 span:nth-child(10), .letter-animation--fast span:nth-child(10), .letter-animation--fast--delay span:nth-child(10), .letter-animation--fast--delay--800 span:nth-child(10), .letter-animation--fast--delay--1000 span:nth-child(10), .letter-animation path:nth-child(10), .letter-animation--delay path:nth-child(10), .letter-animation--delay--800 path:nth-child(10), .letter-animation--delay--1000 path:nth-child(10), .letter-animation--fast path:nth-child(10), .letter-animation--fast--delay path:nth-child(10), .letter-animation--fast--delay--800 path:nth-child(10), .letter-animation--fast--delay--1000 path:nth-child(10) {
  --nth-child: 10;
}

.letter-animation span:nth-child(11), .letter-animation--delay span:nth-child(11), .letter-animation--delay--800 span:nth-child(11), .letter-animation--delay--1000 span:nth-child(11), .letter-animation--fast span:nth-child(11), .letter-animation--fast--delay span:nth-child(11), .letter-animation--fast--delay--800 span:nth-child(11), .letter-animation--fast--delay--1000 span:nth-child(11), .letter-animation path:nth-child(11), .letter-animation--delay path:nth-child(11), .letter-animation--delay--800 path:nth-child(11), .letter-animation--delay--1000 path:nth-child(11), .letter-animation--fast path:nth-child(11), .letter-animation--fast--delay path:nth-child(11), .letter-animation--fast--delay--800 path:nth-child(11), .letter-animation--fast--delay--1000 path:nth-child(11) {
  --nth-child: 11;
}

.letter-animation span:nth-child(12), .letter-animation--delay span:nth-child(12), .letter-animation--delay--800 span:nth-child(12), .letter-animation--delay--1000 span:nth-child(12), .letter-animation--fast span:nth-child(12), .letter-animation--fast--delay span:nth-child(12), .letter-animation--fast--delay--800 span:nth-child(12), .letter-animation--fast--delay--1000 span:nth-child(12), .letter-animation path:nth-child(12), .letter-animation--delay path:nth-child(12), .letter-animation--delay--800 path:nth-child(12), .letter-animation--delay--1000 path:nth-child(12), .letter-animation--fast path:nth-child(12), .letter-animation--fast--delay path:nth-child(12), .letter-animation--fast--delay--800 path:nth-child(12), .letter-animation--fast--delay--1000 path:nth-child(12) {
  --nth-child: 12;
}

.letter-animation span:nth-child(13), .letter-animation--delay span:nth-child(13), .letter-animation--delay--800 span:nth-child(13), .letter-animation--delay--1000 span:nth-child(13), .letter-animation--fast span:nth-child(13), .letter-animation--fast--delay span:nth-child(13), .letter-animation--fast--delay--800 span:nth-child(13), .letter-animation--fast--delay--1000 span:nth-child(13), .letter-animation path:nth-child(13), .letter-animation--delay path:nth-child(13), .letter-animation--delay--800 path:nth-child(13), .letter-animation--delay--1000 path:nth-child(13), .letter-animation--fast path:nth-child(13), .letter-animation--fast--delay path:nth-child(13), .letter-animation--fast--delay--800 path:nth-child(13), .letter-animation--fast--delay--1000 path:nth-child(13) {
  --nth-child: 13;
}

.letter-animation span:nth-child(14), .letter-animation--delay span:nth-child(14), .letter-animation--delay--800 span:nth-child(14), .letter-animation--delay--1000 span:nth-child(14), .letter-animation--fast span:nth-child(14), .letter-animation--fast--delay span:nth-child(14), .letter-animation--fast--delay--800 span:nth-child(14), .letter-animation--fast--delay--1000 span:nth-child(14), .letter-animation path:nth-child(14), .letter-animation--delay path:nth-child(14), .letter-animation--delay--800 path:nth-child(14), .letter-animation--delay--1000 path:nth-child(14), .letter-animation--fast path:nth-child(14), .letter-animation--fast--delay path:nth-child(14), .letter-animation--fast--delay--800 path:nth-child(14), .letter-animation--fast--delay--1000 path:nth-child(14) {
  --nth-child: 14;
}

.letter-animation span:nth-child(15), .letter-animation--delay span:nth-child(15), .letter-animation--delay--800 span:nth-child(15), .letter-animation--delay--1000 span:nth-child(15), .letter-animation--fast span:nth-child(15), .letter-animation--fast--delay span:nth-child(15), .letter-animation--fast--delay--800 span:nth-child(15), .letter-animation--fast--delay--1000 span:nth-child(15), .letter-animation path:nth-child(15), .letter-animation--delay path:nth-child(15), .letter-animation--delay--800 path:nth-child(15), .letter-animation--delay--1000 path:nth-child(15), .letter-animation--fast path:nth-child(15), .letter-animation--fast--delay path:nth-child(15), .letter-animation--fast--delay--800 path:nth-child(15), .letter-animation--fast--delay--1000 path:nth-child(15) {
  --nth-child: 15;
}

.letter-animation span:nth-child(16), .letter-animation--delay span:nth-child(16), .letter-animation--delay--800 span:nth-child(16), .letter-animation--delay--1000 span:nth-child(16), .letter-animation--fast span:nth-child(16), .letter-animation--fast--delay span:nth-child(16), .letter-animation--fast--delay--800 span:nth-child(16), .letter-animation--fast--delay--1000 span:nth-child(16), .letter-animation path:nth-child(16), .letter-animation--delay path:nth-child(16), .letter-animation--delay--800 path:nth-child(16), .letter-animation--delay--1000 path:nth-child(16), .letter-animation--fast path:nth-child(16), .letter-animation--fast--delay path:nth-child(16), .letter-animation--fast--delay--800 path:nth-child(16), .letter-animation--fast--delay--1000 path:nth-child(16) {
  --nth-child: 16;
}

.letter-animation span:nth-child(17), .letter-animation--delay span:nth-child(17), .letter-animation--delay--800 span:nth-child(17), .letter-animation--delay--1000 span:nth-child(17), .letter-animation--fast span:nth-child(17), .letter-animation--fast--delay span:nth-child(17), .letter-animation--fast--delay--800 span:nth-child(17), .letter-animation--fast--delay--1000 span:nth-child(17), .letter-animation path:nth-child(17), .letter-animation--delay path:nth-child(17), .letter-animation--delay--800 path:nth-child(17), .letter-animation--delay--1000 path:nth-child(17), .letter-animation--fast path:nth-child(17), .letter-animation--fast--delay path:nth-child(17), .letter-animation--fast--delay--800 path:nth-child(17), .letter-animation--fast--delay--1000 path:nth-child(17) {
  --nth-child: 17;
}

.letter-animation span:nth-child(18), .letter-animation--delay span:nth-child(18), .letter-animation--delay--800 span:nth-child(18), .letter-animation--delay--1000 span:nth-child(18), .letter-animation--fast span:nth-child(18), .letter-animation--fast--delay span:nth-child(18), .letter-animation--fast--delay--800 span:nth-child(18), .letter-animation--fast--delay--1000 span:nth-child(18), .letter-animation path:nth-child(18), .letter-animation--delay path:nth-child(18), .letter-animation--delay--800 path:nth-child(18), .letter-animation--delay--1000 path:nth-child(18), .letter-animation--fast path:nth-child(18), .letter-animation--fast--delay path:nth-child(18), .letter-animation--fast--delay--800 path:nth-child(18), .letter-animation--fast--delay--1000 path:nth-child(18) {
  --nth-child: 18;
}

.letter-animation span:nth-child(19), .letter-animation--delay span:nth-child(19), .letter-animation--delay--800 span:nth-child(19), .letter-animation--delay--1000 span:nth-child(19), .letter-animation--fast span:nth-child(19), .letter-animation--fast--delay span:nth-child(19), .letter-animation--fast--delay--800 span:nth-child(19), .letter-animation--fast--delay--1000 span:nth-child(19), .letter-animation path:nth-child(19), .letter-animation--delay path:nth-child(19), .letter-animation--delay--800 path:nth-child(19), .letter-animation--delay--1000 path:nth-child(19), .letter-animation--fast path:nth-child(19), .letter-animation--fast--delay path:nth-child(19), .letter-animation--fast--delay--800 path:nth-child(19), .letter-animation--fast--delay--1000 path:nth-child(19) {
  --nth-child: 19;
}

.letter-animation span:nth-child(20), .letter-animation--delay span:nth-child(20), .letter-animation--delay--800 span:nth-child(20), .letter-animation--delay--1000 span:nth-child(20), .letter-animation--fast span:nth-child(20), .letter-animation--fast--delay span:nth-child(20), .letter-animation--fast--delay--800 span:nth-child(20), .letter-animation--fast--delay--1000 span:nth-child(20), .letter-animation path:nth-child(20), .letter-animation--delay path:nth-child(20), .letter-animation--delay--800 path:nth-child(20), .letter-animation--delay--1000 path:nth-child(20), .letter-animation--fast path:nth-child(20), .letter-animation--fast--delay path:nth-child(20), .letter-animation--fast--delay--800 path:nth-child(20), .letter-animation--fast--delay--1000 path:nth-child(20) {
  --nth-child: 20;
}

.letter-animation span:nth-child(21), .letter-animation--delay span:nth-child(21), .letter-animation--delay--800 span:nth-child(21), .letter-animation--delay--1000 span:nth-child(21), .letter-animation--fast span:nth-child(21), .letter-animation--fast--delay span:nth-child(21), .letter-animation--fast--delay--800 span:nth-child(21), .letter-animation--fast--delay--1000 span:nth-child(21), .letter-animation path:nth-child(21), .letter-animation--delay path:nth-child(21), .letter-animation--delay--800 path:nth-child(21), .letter-animation--delay--1000 path:nth-child(21), .letter-animation--fast path:nth-child(21), .letter-animation--fast--delay path:nth-child(21), .letter-animation--fast--delay--800 path:nth-child(21), .letter-animation--fast--delay--1000 path:nth-child(21) {
  --nth-child: 21;
}

.letter-animation span:nth-child(22), .letter-animation--delay span:nth-child(22), .letter-animation--delay--800 span:nth-child(22), .letter-animation--delay--1000 span:nth-child(22), .letter-animation--fast span:nth-child(22), .letter-animation--fast--delay span:nth-child(22), .letter-animation--fast--delay--800 span:nth-child(22), .letter-animation--fast--delay--1000 span:nth-child(22), .letter-animation path:nth-child(22), .letter-animation--delay path:nth-child(22), .letter-animation--delay--800 path:nth-child(22), .letter-animation--delay--1000 path:nth-child(22), .letter-animation--fast path:nth-child(22), .letter-animation--fast--delay path:nth-child(22), .letter-animation--fast--delay--800 path:nth-child(22), .letter-animation--fast--delay--1000 path:nth-child(22) {
  --nth-child: 22;
}

.letter-animation span:nth-child(23), .letter-animation--delay span:nth-child(23), .letter-animation--delay--800 span:nth-child(23), .letter-animation--delay--1000 span:nth-child(23), .letter-animation--fast span:nth-child(23), .letter-animation--fast--delay span:nth-child(23), .letter-animation--fast--delay--800 span:nth-child(23), .letter-animation--fast--delay--1000 span:nth-child(23), .letter-animation path:nth-child(23), .letter-animation--delay path:nth-child(23), .letter-animation--delay--800 path:nth-child(23), .letter-animation--delay--1000 path:nth-child(23), .letter-animation--fast path:nth-child(23), .letter-animation--fast--delay path:nth-child(23), .letter-animation--fast--delay--800 path:nth-child(23), .letter-animation--fast--delay--1000 path:nth-child(23) {
  --nth-child: 23;
}

.letter-animation span:nth-child(24), .letter-animation--delay span:nth-child(24), .letter-animation--delay--800 span:nth-child(24), .letter-animation--delay--1000 span:nth-child(24), .letter-animation--fast span:nth-child(24), .letter-animation--fast--delay span:nth-child(24), .letter-animation--fast--delay--800 span:nth-child(24), .letter-animation--fast--delay--1000 span:nth-child(24), .letter-animation path:nth-child(24), .letter-animation--delay path:nth-child(24), .letter-animation--delay--800 path:nth-child(24), .letter-animation--delay--1000 path:nth-child(24), .letter-animation--fast path:nth-child(24), .letter-animation--fast--delay path:nth-child(24), .letter-animation--fast--delay--800 path:nth-child(24), .letter-animation--fast--delay--1000 path:nth-child(24) {
  --nth-child: 24;
}

.letter-animation span:nth-child(25), .letter-animation--delay span:nth-child(25), .letter-animation--delay--800 span:nth-child(25), .letter-animation--delay--1000 span:nth-child(25), .letter-animation--fast span:nth-child(25), .letter-animation--fast--delay span:nth-child(25), .letter-animation--fast--delay--800 span:nth-child(25), .letter-animation--fast--delay--1000 span:nth-child(25), .letter-animation path:nth-child(25), .letter-animation--delay path:nth-child(25), .letter-animation--delay--800 path:nth-child(25), .letter-animation--delay--1000 path:nth-child(25), .letter-animation--fast path:nth-child(25), .letter-animation--fast--delay path:nth-child(25), .letter-animation--fast--delay--800 path:nth-child(25), .letter-animation--fast--delay--1000 path:nth-child(25) {
  --nth-child: 25;
}

.letter-animation span:nth-child(26), .letter-animation--delay span:nth-child(26), .letter-animation--delay--800 span:nth-child(26), .letter-animation--delay--1000 span:nth-child(26), .letter-animation--fast span:nth-child(26), .letter-animation--fast--delay span:nth-child(26), .letter-animation--fast--delay--800 span:nth-child(26), .letter-animation--fast--delay--1000 span:nth-child(26), .letter-animation path:nth-child(26), .letter-animation--delay path:nth-child(26), .letter-animation--delay--800 path:nth-child(26), .letter-animation--delay--1000 path:nth-child(26), .letter-animation--fast path:nth-child(26), .letter-animation--fast--delay path:nth-child(26), .letter-animation--fast--delay--800 path:nth-child(26), .letter-animation--fast--delay--1000 path:nth-child(26) {
  --nth-child: 26;
}

.letter-animation span:nth-child(27), .letter-animation--delay span:nth-child(27), .letter-animation--delay--800 span:nth-child(27), .letter-animation--delay--1000 span:nth-child(27), .letter-animation--fast span:nth-child(27), .letter-animation--fast--delay span:nth-child(27), .letter-animation--fast--delay--800 span:nth-child(27), .letter-animation--fast--delay--1000 span:nth-child(27), .letter-animation path:nth-child(27), .letter-animation--delay path:nth-child(27), .letter-animation--delay--800 path:nth-child(27), .letter-animation--delay--1000 path:nth-child(27), .letter-animation--fast path:nth-child(27), .letter-animation--fast--delay path:nth-child(27), .letter-animation--fast--delay--800 path:nth-child(27), .letter-animation--fast--delay--1000 path:nth-child(27) {
  --nth-child: 27;
}

.letter-animation span:nth-child(28), .letter-animation--delay span:nth-child(28), .letter-animation--delay--800 span:nth-child(28), .letter-animation--delay--1000 span:nth-child(28), .letter-animation--fast span:nth-child(28), .letter-animation--fast--delay span:nth-child(28), .letter-animation--fast--delay--800 span:nth-child(28), .letter-animation--fast--delay--1000 span:nth-child(28), .letter-animation path:nth-child(28), .letter-animation--delay path:nth-child(28), .letter-animation--delay--800 path:nth-child(28), .letter-animation--delay--1000 path:nth-child(28), .letter-animation--fast path:nth-child(28), .letter-animation--fast--delay path:nth-child(28), .letter-animation--fast--delay--800 path:nth-child(28), .letter-animation--fast--delay--1000 path:nth-child(28) {
  --nth-child: 28;
}

.letter-animation span:nth-child(29), .letter-animation--delay span:nth-child(29), .letter-animation--delay--800 span:nth-child(29), .letter-animation--delay--1000 span:nth-child(29), .letter-animation--fast span:nth-child(29), .letter-animation--fast--delay span:nth-child(29), .letter-animation--fast--delay--800 span:nth-child(29), .letter-animation--fast--delay--1000 span:nth-child(29), .letter-animation path:nth-child(29), .letter-animation--delay path:nth-child(29), .letter-animation--delay--800 path:nth-child(29), .letter-animation--delay--1000 path:nth-child(29), .letter-animation--fast path:nth-child(29), .letter-animation--fast--delay path:nth-child(29), .letter-animation--fast--delay--800 path:nth-child(29), .letter-animation--fast--delay--1000 path:nth-child(29) {
  --nth-child: 29;
}

.letter-animation span:nth-child(30), .letter-animation--delay span:nth-child(30), .letter-animation--delay--800 span:nth-child(30), .letter-animation--delay--1000 span:nth-child(30), .letter-animation--fast span:nth-child(30), .letter-animation--fast--delay span:nth-child(30), .letter-animation--fast--delay--800 span:nth-child(30), .letter-animation--fast--delay--1000 span:nth-child(30), .letter-animation path:nth-child(30), .letter-animation--delay path:nth-child(30), .letter-animation--delay--800 path:nth-child(30), .letter-animation--delay--1000 path:nth-child(30), .letter-animation--fast path:nth-child(30), .letter-animation--fast--delay path:nth-child(30), .letter-animation--fast--delay--800 path:nth-child(30), .letter-animation--fast--delay--1000 path:nth-child(30) {
  --nth-child: 30;
}

.letter-animation span:nth-child(31), .letter-animation--delay span:nth-child(31), .letter-animation--delay--800 span:nth-child(31), .letter-animation--delay--1000 span:nth-child(31), .letter-animation--fast span:nth-child(31), .letter-animation--fast--delay span:nth-child(31), .letter-animation--fast--delay--800 span:nth-child(31), .letter-animation--fast--delay--1000 span:nth-child(31), .letter-animation path:nth-child(31), .letter-animation--delay path:nth-child(31), .letter-animation--delay--800 path:nth-child(31), .letter-animation--delay--1000 path:nth-child(31), .letter-animation--fast path:nth-child(31), .letter-animation--fast--delay path:nth-child(31), .letter-animation--fast--delay--800 path:nth-child(31), .letter-animation--fast--delay--1000 path:nth-child(31) {
  --nth-child: 31;
}

.letter-animation span:nth-child(32), .letter-animation--delay span:nth-child(32), .letter-animation--delay--800 span:nth-child(32), .letter-animation--delay--1000 span:nth-child(32), .letter-animation--fast span:nth-child(32), .letter-animation--fast--delay span:nth-child(32), .letter-animation--fast--delay--800 span:nth-child(32), .letter-animation--fast--delay--1000 span:nth-child(32), .letter-animation path:nth-child(32), .letter-animation--delay path:nth-child(32), .letter-animation--delay--800 path:nth-child(32), .letter-animation--delay--1000 path:nth-child(32), .letter-animation--fast path:nth-child(32), .letter-animation--fast--delay path:nth-child(32), .letter-animation--fast--delay--800 path:nth-child(32), .letter-animation--fast--delay--1000 path:nth-child(32) {
  --nth-child: 32;
}

.letter-animation span:nth-child(33), .letter-animation--delay span:nth-child(33), .letter-animation--delay--800 span:nth-child(33), .letter-animation--delay--1000 span:nth-child(33), .letter-animation--fast span:nth-child(33), .letter-animation--fast--delay span:nth-child(33), .letter-animation--fast--delay--800 span:nth-child(33), .letter-animation--fast--delay--1000 span:nth-child(33), .letter-animation path:nth-child(33), .letter-animation--delay path:nth-child(33), .letter-animation--delay--800 path:nth-child(33), .letter-animation--delay--1000 path:nth-child(33), .letter-animation--fast path:nth-child(33), .letter-animation--fast--delay path:nth-child(33), .letter-animation--fast--delay--800 path:nth-child(33), .letter-animation--fast--delay--1000 path:nth-child(33) {
  --nth-child: 33;
}

.letter-animation span:nth-child(34), .letter-animation--delay span:nth-child(34), .letter-animation--delay--800 span:nth-child(34), .letter-animation--delay--1000 span:nth-child(34), .letter-animation--fast span:nth-child(34), .letter-animation--fast--delay span:nth-child(34), .letter-animation--fast--delay--800 span:nth-child(34), .letter-animation--fast--delay--1000 span:nth-child(34), .letter-animation path:nth-child(34), .letter-animation--delay path:nth-child(34), .letter-animation--delay--800 path:nth-child(34), .letter-animation--delay--1000 path:nth-child(34), .letter-animation--fast path:nth-child(34), .letter-animation--fast--delay path:nth-child(34), .letter-animation--fast--delay--800 path:nth-child(34), .letter-animation--fast--delay--1000 path:nth-child(34) {
  --nth-child: 34;
}

.letter-animation span:nth-child(35), .letter-animation--delay span:nth-child(35), .letter-animation--delay--800 span:nth-child(35), .letter-animation--delay--1000 span:nth-child(35), .letter-animation--fast span:nth-child(35), .letter-animation--fast--delay span:nth-child(35), .letter-animation--fast--delay--800 span:nth-child(35), .letter-animation--fast--delay--1000 span:nth-child(35), .letter-animation path:nth-child(35), .letter-animation--delay path:nth-child(35), .letter-animation--delay--800 path:nth-child(35), .letter-animation--delay--1000 path:nth-child(35), .letter-animation--fast path:nth-child(35), .letter-animation--fast--delay path:nth-child(35), .letter-animation--fast--delay--800 path:nth-child(35), .letter-animation--fast--delay--1000 path:nth-child(35) {
  --nth-child: 35;
}

.letter-animation span:nth-child(36), .letter-animation--delay span:nth-child(36), .letter-animation--delay--800 span:nth-child(36), .letter-animation--delay--1000 span:nth-child(36), .letter-animation--fast span:nth-child(36), .letter-animation--fast--delay span:nth-child(36), .letter-animation--fast--delay--800 span:nth-child(36), .letter-animation--fast--delay--1000 span:nth-child(36), .letter-animation path:nth-child(36), .letter-animation--delay path:nth-child(36), .letter-animation--delay--800 path:nth-child(36), .letter-animation--delay--1000 path:nth-child(36), .letter-animation--fast path:nth-child(36), .letter-animation--fast--delay path:nth-child(36), .letter-animation--fast--delay--800 path:nth-child(36), .letter-animation--fast--delay--1000 path:nth-child(36) {
  --nth-child: 36;
}

.letter-animation span:nth-child(37), .letter-animation--delay span:nth-child(37), .letter-animation--delay--800 span:nth-child(37), .letter-animation--delay--1000 span:nth-child(37), .letter-animation--fast span:nth-child(37), .letter-animation--fast--delay span:nth-child(37), .letter-animation--fast--delay--800 span:nth-child(37), .letter-animation--fast--delay--1000 span:nth-child(37), .letter-animation path:nth-child(37), .letter-animation--delay path:nth-child(37), .letter-animation--delay--800 path:nth-child(37), .letter-animation--delay--1000 path:nth-child(37), .letter-animation--fast path:nth-child(37), .letter-animation--fast--delay path:nth-child(37), .letter-animation--fast--delay--800 path:nth-child(37), .letter-animation--fast--delay--1000 path:nth-child(37) {
  --nth-child: 37;
}

.letter-animation span:nth-child(38), .letter-animation--delay span:nth-child(38), .letter-animation--delay--800 span:nth-child(38), .letter-animation--delay--1000 span:nth-child(38), .letter-animation--fast span:nth-child(38), .letter-animation--fast--delay span:nth-child(38), .letter-animation--fast--delay--800 span:nth-child(38), .letter-animation--fast--delay--1000 span:nth-child(38), .letter-animation path:nth-child(38), .letter-animation--delay path:nth-child(38), .letter-animation--delay--800 path:nth-child(38), .letter-animation--delay--1000 path:nth-child(38), .letter-animation--fast path:nth-child(38), .letter-animation--fast--delay path:nth-child(38), .letter-animation--fast--delay--800 path:nth-child(38), .letter-animation--fast--delay--1000 path:nth-child(38) {
  --nth-child: 38;
}

.letter-animation span:nth-child(39), .letter-animation--delay span:nth-child(39), .letter-animation--delay--800 span:nth-child(39), .letter-animation--delay--1000 span:nth-child(39), .letter-animation--fast span:nth-child(39), .letter-animation--fast--delay span:nth-child(39), .letter-animation--fast--delay--800 span:nth-child(39), .letter-animation--fast--delay--1000 span:nth-child(39), .letter-animation path:nth-child(39), .letter-animation--delay path:nth-child(39), .letter-animation--delay--800 path:nth-child(39), .letter-animation--delay--1000 path:nth-child(39), .letter-animation--fast path:nth-child(39), .letter-animation--fast--delay path:nth-child(39), .letter-animation--fast--delay--800 path:nth-child(39), .letter-animation--fast--delay--1000 path:nth-child(39) {
  --nth-child: 39;
}

.letter-animation span:nth-child(40), .letter-animation--delay span:nth-child(40), .letter-animation--delay--800 span:nth-child(40), .letter-animation--delay--1000 span:nth-child(40), .letter-animation--fast span:nth-child(40), .letter-animation--fast--delay span:nth-child(40), .letter-animation--fast--delay--800 span:nth-child(40), .letter-animation--fast--delay--1000 span:nth-child(40), .letter-animation path:nth-child(40), .letter-animation--delay path:nth-child(40), .letter-animation--delay--800 path:nth-child(40), .letter-animation--delay--1000 path:nth-child(40), .letter-animation--fast path:nth-child(40), .letter-animation--fast--delay path:nth-child(40), .letter-animation--fast--delay--800 path:nth-child(40), .letter-animation--fast--delay--1000 path:nth-child(40) {
  --nth-child: 40;
}

.letter-animation span:nth-child(41), .letter-animation--delay span:nth-child(41), .letter-animation--delay--800 span:nth-child(41), .letter-animation--delay--1000 span:nth-child(41), .letter-animation--fast span:nth-child(41), .letter-animation--fast--delay span:nth-child(41), .letter-animation--fast--delay--800 span:nth-child(41), .letter-animation--fast--delay--1000 span:nth-child(41), .letter-animation path:nth-child(41), .letter-animation--delay path:nth-child(41), .letter-animation--delay--800 path:nth-child(41), .letter-animation--delay--1000 path:nth-child(41), .letter-animation--fast path:nth-child(41), .letter-animation--fast--delay path:nth-child(41), .letter-animation--fast--delay--800 path:nth-child(41), .letter-animation--fast--delay--1000 path:nth-child(41) {
  --nth-child: 41;
}

.letter-animation span:nth-child(42), .letter-animation--delay span:nth-child(42), .letter-animation--delay--800 span:nth-child(42), .letter-animation--delay--1000 span:nth-child(42), .letter-animation--fast span:nth-child(42), .letter-animation--fast--delay span:nth-child(42), .letter-animation--fast--delay--800 span:nth-child(42), .letter-animation--fast--delay--1000 span:nth-child(42), .letter-animation path:nth-child(42), .letter-animation--delay path:nth-child(42), .letter-animation--delay--800 path:nth-child(42), .letter-animation--delay--1000 path:nth-child(42), .letter-animation--fast path:nth-child(42), .letter-animation--fast--delay path:nth-child(42), .letter-animation--fast--delay--800 path:nth-child(42), .letter-animation--fast--delay--1000 path:nth-child(42) {
  --nth-child: 42;
}

.letter-animation span:nth-child(43), .letter-animation--delay span:nth-child(43), .letter-animation--delay--800 span:nth-child(43), .letter-animation--delay--1000 span:nth-child(43), .letter-animation--fast span:nth-child(43), .letter-animation--fast--delay span:nth-child(43), .letter-animation--fast--delay--800 span:nth-child(43), .letter-animation--fast--delay--1000 span:nth-child(43), .letter-animation path:nth-child(43), .letter-animation--delay path:nth-child(43), .letter-animation--delay--800 path:nth-child(43), .letter-animation--delay--1000 path:nth-child(43), .letter-animation--fast path:nth-child(43), .letter-animation--fast--delay path:nth-child(43), .letter-animation--fast--delay--800 path:nth-child(43), .letter-animation--fast--delay--1000 path:nth-child(43) {
  --nth-child: 43;
}

.letter-animation span:nth-child(44), .letter-animation--delay span:nth-child(44), .letter-animation--delay--800 span:nth-child(44), .letter-animation--delay--1000 span:nth-child(44), .letter-animation--fast span:nth-child(44), .letter-animation--fast--delay span:nth-child(44), .letter-animation--fast--delay--800 span:nth-child(44), .letter-animation--fast--delay--1000 span:nth-child(44), .letter-animation path:nth-child(44), .letter-animation--delay path:nth-child(44), .letter-animation--delay--800 path:nth-child(44), .letter-animation--delay--1000 path:nth-child(44), .letter-animation--fast path:nth-child(44), .letter-animation--fast--delay path:nth-child(44), .letter-animation--fast--delay--800 path:nth-child(44), .letter-animation--fast--delay--1000 path:nth-child(44) {
  --nth-child: 44;
}

.letter-animation span:nth-child(45), .letter-animation--delay span:nth-child(45), .letter-animation--delay--800 span:nth-child(45), .letter-animation--delay--1000 span:nth-child(45), .letter-animation--fast span:nth-child(45), .letter-animation--fast--delay span:nth-child(45), .letter-animation--fast--delay--800 span:nth-child(45), .letter-animation--fast--delay--1000 span:nth-child(45), .letter-animation path:nth-child(45), .letter-animation--delay path:nth-child(45), .letter-animation--delay--800 path:nth-child(45), .letter-animation--delay--1000 path:nth-child(45), .letter-animation--fast path:nth-child(45), .letter-animation--fast--delay path:nth-child(45), .letter-animation--fast--delay--800 path:nth-child(45), .letter-animation--fast--delay--1000 path:nth-child(45) {
  --nth-child: 45;
}

.letter-animation span:nth-child(46), .letter-animation--delay span:nth-child(46), .letter-animation--delay--800 span:nth-child(46), .letter-animation--delay--1000 span:nth-child(46), .letter-animation--fast span:nth-child(46), .letter-animation--fast--delay span:nth-child(46), .letter-animation--fast--delay--800 span:nth-child(46), .letter-animation--fast--delay--1000 span:nth-child(46), .letter-animation path:nth-child(46), .letter-animation--delay path:nth-child(46), .letter-animation--delay--800 path:nth-child(46), .letter-animation--delay--1000 path:nth-child(46), .letter-animation--fast path:nth-child(46), .letter-animation--fast--delay path:nth-child(46), .letter-animation--fast--delay--800 path:nth-child(46), .letter-animation--fast--delay--1000 path:nth-child(46) {
  --nth-child: 46;
}

.letter-animation span:nth-child(47), .letter-animation--delay span:nth-child(47), .letter-animation--delay--800 span:nth-child(47), .letter-animation--delay--1000 span:nth-child(47), .letter-animation--fast span:nth-child(47), .letter-animation--fast--delay span:nth-child(47), .letter-animation--fast--delay--800 span:nth-child(47), .letter-animation--fast--delay--1000 span:nth-child(47), .letter-animation path:nth-child(47), .letter-animation--delay path:nth-child(47), .letter-animation--delay--800 path:nth-child(47), .letter-animation--delay--1000 path:nth-child(47), .letter-animation--fast path:nth-child(47), .letter-animation--fast--delay path:nth-child(47), .letter-animation--fast--delay--800 path:nth-child(47), .letter-animation--fast--delay--1000 path:nth-child(47) {
  --nth-child: 47;
}

.letter-animation span:nth-child(48), .letter-animation--delay span:nth-child(48), .letter-animation--delay--800 span:nth-child(48), .letter-animation--delay--1000 span:nth-child(48), .letter-animation--fast span:nth-child(48), .letter-animation--fast--delay span:nth-child(48), .letter-animation--fast--delay--800 span:nth-child(48), .letter-animation--fast--delay--1000 span:nth-child(48), .letter-animation path:nth-child(48), .letter-animation--delay path:nth-child(48), .letter-animation--delay--800 path:nth-child(48), .letter-animation--delay--1000 path:nth-child(48), .letter-animation--fast path:nth-child(48), .letter-animation--fast--delay path:nth-child(48), .letter-animation--fast--delay--800 path:nth-child(48), .letter-animation--fast--delay--1000 path:nth-child(48) {
  --nth-child: 48;
}

.letter-animation span:nth-child(49), .letter-animation--delay span:nth-child(49), .letter-animation--delay--800 span:nth-child(49), .letter-animation--delay--1000 span:nth-child(49), .letter-animation--fast span:nth-child(49), .letter-animation--fast--delay span:nth-child(49), .letter-animation--fast--delay--800 span:nth-child(49), .letter-animation--fast--delay--1000 span:nth-child(49), .letter-animation path:nth-child(49), .letter-animation--delay path:nth-child(49), .letter-animation--delay--800 path:nth-child(49), .letter-animation--delay--1000 path:nth-child(49), .letter-animation--fast path:nth-child(49), .letter-animation--fast--delay path:nth-child(49), .letter-animation--fast--delay--800 path:nth-child(49), .letter-animation--fast--delay--1000 path:nth-child(49) {
  --nth-child: 49;
}

.letter-animation span:nth-child(50), .letter-animation--delay span:nth-child(50), .letter-animation--delay--800 span:nth-child(50), .letter-animation--delay--1000 span:nth-child(50), .letter-animation--fast span:nth-child(50), .letter-animation--fast--delay span:nth-child(50), .letter-animation--fast--delay--800 span:nth-child(50), .letter-animation--fast--delay--1000 span:nth-child(50), .letter-animation path:nth-child(50), .letter-animation--delay path:nth-child(50), .letter-animation--delay--800 path:nth-child(50), .letter-animation--delay--1000 path:nth-child(50), .letter-animation--fast path:nth-child(50), .letter-animation--fast--delay path:nth-child(50), .letter-animation--fast--delay--800 path:nth-child(50), .letter-animation--fast--delay--1000 path:nth-child(50) {
  --nth-child: 50;
}

.letter-animation span:nth-child(51), .letter-animation--delay span:nth-child(51), .letter-animation--delay--800 span:nth-child(51), .letter-animation--delay--1000 span:nth-child(51), .letter-animation--fast span:nth-child(51), .letter-animation--fast--delay span:nth-child(51), .letter-animation--fast--delay--800 span:nth-child(51), .letter-animation--fast--delay--1000 span:nth-child(51), .letter-animation path:nth-child(51), .letter-animation--delay path:nth-child(51), .letter-animation--delay--800 path:nth-child(51), .letter-animation--delay--1000 path:nth-child(51), .letter-animation--fast path:nth-child(51), .letter-animation--fast--delay path:nth-child(51), .letter-animation--fast--delay--800 path:nth-child(51), .letter-animation--fast--delay--1000 path:nth-child(51) {
  --nth-child: 51;
}

.letter-animation span:nth-child(52), .letter-animation--delay span:nth-child(52), .letter-animation--delay--800 span:nth-child(52), .letter-animation--delay--1000 span:nth-child(52), .letter-animation--fast span:nth-child(52), .letter-animation--fast--delay span:nth-child(52), .letter-animation--fast--delay--800 span:nth-child(52), .letter-animation--fast--delay--1000 span:nth-child(52), .letter-animation path:nth-child(52), .letter-animation--delay path:nth-child(52), .letter-animation--delay--800 path:nth-child(52), .letter-animation--delay--1000 path:nth-child(52), .letter-animation--fast path:nth-child(52), .letter-animation--fast--delay path:nth-child(52), .letter-animation--fast--delay--800 path:nth-child(52), .letter-animation--fast--delay--1000 path:nth-child(52) {
  --nth-child: 52;
}

.letter-animation span:nth-child(53), .letter-animation--delay span:nth-child(53), .letter-animation--delay--800 span:nth-child(53), .letter-animation--delay--1000 span:nth-child(53), .letter-animation--fast span:nth-child(53), .letter-animation--fast--delay span:nth-child(53), .letter-animation--fast--delay--800 span:nth-child(53), .letter-animation--fast--delay--1000 span:nth-child(53), .letter-animation path:nth-child(53), .letter-animation--delay path:nth-child(53), .letter-animation--delay--800 path:nth-child(53), .letter-animation--delay--1000 path:nth-child(53), .letter-animation--fast path:nth-child(53), .letter-animation--fast--delay path:nth-child(53), .letter-animation--fast--delay--800 path:nth-child(53), .letter-animation--fast--delay--1000 path:nth-child(53) {
  --nth-child: 53;
}

.letter-animation span:nth-child(54), .letter-animation--delay span:nth-child(54), .letter-animation--delay--800 span:nth-child(54), .letter-animation--delay--1000 span:nth-child(54), .letter-animation--fast span:nth-child(54), .letter-animation--fast--delay span:nth-child(54), .letter-animation--fast--delay--800 span:nth-child(54), .letter-animation--fast--delay--1000 span:nth-child(54), .letter-animation path:nth-child(54), .letter-animation--delay path:nth-child(54), .letter-animation--delay--800 path:nth-child(54), .letter-animation--delay--1000 path:nth-child(54), .letter-animation--fast path:nth-child(54), .letter-animation--fast--delay path:nth-child(54), .letter-animation--fast--delay--800 path:nth-child(54), .letter-animation--fast--delay--1000 path:nth-child(54) {
  --nth-child: 54;
}

.letter-animation span:nth-child(55), .letter-animation--delay span:nth-child(55), .letter-animation--delay--800 span:nth-child(55), .letter-animation--delay--1000 span:nth-child(55), .letter-animation--fast span:nth-child(55), .letter-animation--fast--delay span:nth-child(55), .letter-animation--fast--delay--800 span:nth-child(55), .letter-animation--fast--delay--1000 span:nth-child(55), .letter-animation path:nth-child(55), .letter-animation--delay path:nth-child(55), .letter-animation--delay--800 path:nth-child(55), .letter-animation--delay--1000 path:nth-child(55), .letter-animation--fast path:nth-child(55), .letter-animation--fast--delay path:nth-child(55), .letter-animation--fast--delay--800 path:nth-child(55), .letter-animation--fast--delay--1000 path:nth-child(55) {
  --nth-child: 55;
}

.letter-animation span:nth-child(56), .letter-animation--delay span:nth-child(56), .letter-animation--delay--800 span:nth-child(56), .letter-animation--delay--1000 span:nth-child(56), .letter-animation--fast span:nth-child(56), .letter-animation--fast--delay span:nth-child(56), .letter-animation--fast--delay--800 span:nth-child(56), .letter-animation--fast--delay--1000 span:nth-child(56), .letter-animation path:nth-child(56), .letter-animation--delay path:nth-child(56), .letter-animation--delay--800 path:nth-child(56), .letter-animation--delay--1000 path:nth-child(56), .letter-animation--fast path:nth-child(56), .letter-animation--fast--delay path:nth-child(56), .letter-animation--fast--delay--800 path:nth-child(56), .letter-animation--fast--delay--1000 path:nth-child(56) {
  --nth-child: 56;
}

.letter-animation span:nth-child(57), .letter-animation--delay span:nth-child(57), .letter-animation--delay--800 span:nth-child(57), .letter-animation--delay--1000 span:nth-child(57), .letter-animation--fast span:nth-child(57), .letter-animation--fast--delay span:nth-child(57), .letter-animation--fast--delay--800 span:nth-child(57), .letter-animation--fast--delay--1000 span:nth-child(57), .letter-animation path:nth-child(57), .letter-animation--delay path:nth-child(57), .letter-animation--delay--800 path:nth-child(57), .letter-animation--delay--1000 path:nth-child(57), .letter-animation--fast path:nth-child(57), .letter-animation--fast--delay path:nth-child(57), .letter-animation--fast--delay--800 path:nth-child(57), .letter-animation--fast--delay--1000 path:nth-child(57) {
  --nth-child: 57;
}

.letter-animation span:nth-child(58), .letter-animation--delay span:nth-child(58), .letter-animation--delay--800 span:nth-child(58), .letter-animation--delay--1000 span:nth-child(58), .letter-animation--fast span:nth-child(58), .letter-animation--fast--delay span:nth-child(58), .letter-animation--fast--delay--800 span:nth-child(58), .letter-animation--fast--delay--1000 span:nth-child(58), .letter-animation path:nth-child(58), .letter-animation--delay path:nth-child(58), .letter-animation--delay--800 path:nth-child(58), .letter-animation--delay--1000 path:nth-child(58), .letter-animation--fast path:nth-child(58), .letter-animation--fast--delay path:nth-child(58), .letter-animation--fast--delay--800 path:nth-child(58), .letter-animation--fast--delay--1000 path:nth-child(58) {
  --nth-child: 58;
}

.letter-animation span:nth-child(59), .letter-animation--delay span:nth-child(59), .letter-animation--delay--800 span:nth-child(59), .letter-animation--delay--1000 span:nth-child(59), .letter-animation--fast span:nth-child(59), .letter-animation--fast--delay span:nth-child(59), .letter-animation--fast--delay--800 span:nth-child(59), .letter-animation--fast--delay--1000 span:nth-child(59), .letter-animation path:nth-child(59), .letter-animation--delay path:nth-child(59), .letter-animation--delay--800 path:nth-child(59), .letter-animation--delay--1000 path:nth-child(59), .letter-animation--fast path:nth-child(59), .letter-animation--fast--delay path:nth-child(59), .letter-animation--fast--delay--800 path:nth-child(59), .letter-animation--fast--delay--1000 path:nth-child(59) {
  --nth-child: 59;
}

.letter-animation span:nth-child(60), .letter-animation--delay span:nth-child(60), .letter-animation--delay--800 span:nth-child(60), .letter-animation--delay--1000 span:nth-child(60), .letter-animation--fast span:nth-child(60), .letter-animation--fast--delay span:nth-child(60), .letter-animation--fast--delay--800 span:nth-child(60), .letter-animation--fast--delay--1000 span:nth-child(60), .letter-animation path:nth-child(60), .letter-animation--delay path:nth-child(60), .letter-animation--delay--800 path:nth-child(60), .letter-animation--delay--1000 path:nth-child(60), .letter-animation--fast path:nth-child(60), .letter-animation--fast--delay path:nth-child(60), .letter-animation--fast--delay--800 path:nth-child(60), .letter-animation--fast--delay--1000 path:nth-child(60) {
  --nth-child: 60;
}

.letter-animation span:nth-child(61), .letter-animation--delay span:nth-child(61), .letter-animation--delay--800 span:nth-child(61), .letter-animation--delay--1000 span:nth-child(61), .letter-animation--fast span:nth-child(61), .letter-animation--fast--delay span:nth-child(61), .letter-animation--fast--delay--800 span:nth-child(61), .letter-animation--fast--delay--1000 span:nth-child(61), .letter-animation path:nth-child(61), .letter-animation--delay path:nth-child(61), .letter-animation--delay--800 path:nth-child(61), .letter-animation--delay--1000 path:nth-child(61), .letter-animation--fast path:nth-child(61), .letter-animation--fast--delay path:nth-child(61), .letter-animation--fast--delay--800 path:nth-child(61), .letter-animation--fast--delay--1000 path:nth-child(61) {
  --nth-child: 61;
}

.letter-animation span:nth-child(62), .letter-animation--delay span:nth-child(62), .letter-animation--delay--800 span:nth-child(62), .letter-animation--delay--1000 span:nth-child(62), .letter-animation--fast span:nth-child(62), .letter-animation--fast--delay span:nth-child(62), .letter-animation--fast--delay--800 span:nth-child(62), .letter-animation--fast--delay--1000 span:nth-child(62), .letter-animation path:nth-child(62), .letter-animation--delay path:nth-child(62), .letter-animation--delay--800 path:nth-child(62), .letter-animation--delay--1000 path:nth-child(62), .letter-animation--fast path:nth-child(62), .letter-animation--fast--delay path:nth-child(62), .letter-animation--fast--delay--800 path:nth-child(62), .letter-animation--fast--delay--1000 path:nth-child(62) {
  --nth-child: 62;
}

.letter-animation span:nth-child(63), .letter-animation--delay span:nth-child(63), .letter-animation--delay--800 span:nth-child(63), .letter-animation--delay--1000 span:nth-child(63), .letter-animation--fast span:nth-child(63), .letter-animation--fast--delay span:nth-child(63), .letter-animation--fast--delay--800 span:nth-child(63), .letter-animation--fast--delay--1000 span:nth-child(63), .letter-animation path:nth-child(63), .letter-animation--delay path:nth-child(63), .letter-animation--delay--800 path:nth-child(63), .letter-animation--delay--1000 path:nth-child(63), .letter-animation--fast path:nth-child(63), .letter-animation--fast--delay path:nth-child(63), .letter-animation--fast--delay--800 path:nth-child(63), .letter-animation--fast--delay--1000 path:nth-child(63) {
  --nth-child: 63;
}

.letter-animation span:nth-child(64), .letter-animation--delay span:nth-child(64), .letter-animation--delay--800 span:nth-child(64), .letter-animation--delay--1000 span:nth-child(64), .letter-animation--fast span:nth-child(64), .letter-animation--fast--delay span:nth-child(64), .letter-animation--fast--delay--800 span:nth-child(64), .letter-animation--fast--delay--1000 span:nth-child(64), .letter-animation path:nth-child(64), .letter-animation--delay path:nth-child(64), .letter-animation--delay--800 path:nth-child(64), .letter-animation--delay--1000 path:nth-child(64), .letter-animation--fast path:nth-child(64), .letter-animation--fast--delay path:nth-child(64), .letter-animation--fast--delay--800 path:nth-child(64), .letter-animation--fast--delay--1000 path:nth-child(64) {
  --nth-child: 64;
}

.letter-animation span:nth-child(65), .letter-animation--delay span:nth-child(65), .letter-animation--delay--800 span:nth-child(65), .letter-animation--delay--1000 span:nth-child(65), .letter-animation--fast span:nth-child(65), .letter-animation--fast--delay span:nth-child(65), .letter-animation--fast--delay--800 span:nth-child(65), .letter-animation--fast--delay--1000 span:nth-child(65), .letter-animation path:nth-child(65), .letter-animation--delay path:nth-child(65), .letter-animation--delay--800 path:nth-child(65), .letter-animation--delay--1000 path:nth-child(65), .letter-animation--fast path:nth-child(65), .letter-animation--fast--delay path:nth-child(65), .letter-animation--fast--delay--800 path:nth-child(65), .letter-animation--fast--delay--1000 path:nth-child(65) {
  --nth-child: 65;
}

.letter-animation span:nth-child(66), .letter-animation--delay span:nth-child(66), .letter-animation--delay--800 span:nth-child(66), .letter-animation--delay--1000 span:nth-child(66), .letter-animation--fast span:nth-child(66), .letter-animation--fast--delay span:nth-child(66), .letter-animation--fast--delay--800 span:nth-child(66), .letter-animation--fast--delay--1000 span:nth-child(66), .letter-animation path:nth-child(66), .letter-animation--delay path:nth-child(66), .letter-animation--delay--800 path:nth-child(66), .letter-animation--delay--1000 path:nth-child(66), .letter-animation--fast path:nth-child(66), .letter-animation--fast--delay path:nth-child(66), .letter-animation--fast--delay--800 path:nth-child(66), .letter-animation--fast--delay--1000 path:nth-child(66) {
  --nth-child: 66;
}

.letter-animation span:nth-child(67), .letter-animation--delay span:nth-child(67), .letter-animation--delay--800 span:nth-child(67), .letter-animation--delay--1000 span:nth-child(67), .letter-animation--fast span:nth-child(67), .letter-animation--fast--delay span:nth-child(67), .letter-animation--fast--delay--800 span:nth-child(67), .letter-animation--fast--delay--1000 span:nth-child(67), .letter-animation path:nth-child(67), .letter-animation--delay path:nth-child(67), .letter-animation--delay--800 path:nth-child(67), .letter-animation--delay--1000 path:nth-child(67), .letter-animation--fast path:nth-child(67), .letter-animation--fast--delay path:nth-child(67), .letter-animation--fast--delay--800 path:nth-child(67), .letter-animation--fast--delay--1000 path:nth-child(67) {
  --nth-child: 67;
}

.letter-animation span:nth-child(68), .letter-animation--delay span:nth-child(68), .letter-animation--delay--800 span:nth-child(68), .letter-animation--delay--1000 span:nth-child(68), .letter-animation--fast span:nth-child(68), .letter-animation--fast--delay span:nth-child(68), .letter-animation--fast--delay--800 span:nth-child(68), .letter-animation--fast--delay--1000 span:nth-child(68), .letter-animation path:nth-child(68), .letter-animation--delay path:nth-child(68), .letter-animation--delay--800 path:nth-child(68), .letter-animation--delay--1000 path:nth-child(68), .letter-animation--fast path:nth-child(68), .letter-animation--fast--delay path:nth-child(68), .letter-animation--fast--delay--800 path:nth-child(68), .letter-animation--fast--delay--1000 path:nth-child(68) {
  --nth-child: 68;
}

.letter-animation span:nth-child(69), .letter-animation--delay span:nth-child(69), .letter-animation--delay--800 span:nth-child(69), .letter-animation--delay--1000 span:nth-child(69), .letter-animation--fast span:nth-child(69), .letter-animation--fast--delay span:nth-child(69), .letter-animation--fast--delay--800 span:nth-child(69), .letter-animation--fast--delay--1000 span:nth-child(69), .letter-animation path:nth-child(69), .letter-animation--delay path:nth-child(69), .letter-animation--delay--800 path:nth-child(69), .letter-animation--delay--1000 path:nth-child(69), .letter-animation--fast path:nth-child(69), .letter-animation--fast--delay path:nth-child(69), .letter-animation--fast--delay--800 path:nth-child(69), .letter-animation--fast--delay--1000 path:nth-child(69) {
  --nth-child: 69;
}

.letter-animation span:nth-child(70), .letter-animation--delay span:nth-child(70), .letter-animation--delay--800 span:nth-child(70), .letter-animation--delay--1000 span:nth-child(70), .letter-animation--fast span:nth-child(70), .letter-animation--fast--delay span:nth-child(70), .letter-animation--fast--delay--800 span:nth-child(70), .letter-animation--fast--delay--1000 span:nth-child(70), .letter-animation path:nth-child(70), .letter-animation--delay path:nth-child(70), .letter-animation--delay--800 path:nth-child(70), .letter-animation--delay--1000 path:nth-child(70), .letter-animation--fast path:nth-child(70), .letter-animation--fast--delay path:nth-child(70), .letter-animation--fast--delay--800 path:nth-child(70), .letter-animation--fast--delay--1000 path:nth-child(70) {
  --nth-child: 70;
}

.letter-animation span:nth-child(71), .letter-animation--delay span:nth-child(71), .letter-animation--delay--800 span:nth-child(71), .letter-animation--delay--1000 span:nth-child(71), .letter-animation--fast span:nth-child(71), .letter-animation--fast--delay span:nth-child(71), .letter-animation--fast--delay--800 span:nth-child(71), .letter-animation--fast--delay--1000 span:nth-child(71), .letter-animation path:nth-child(71), .letter-animation--delay path:nth-child(71), .letter-animation--delay--800 path:nth-child(71), .letter-animation--delay--1000 path:nth-child(71), .letter-animation--fast path:nth-child(71), .letter-animation--fast--delay path:nth-child(71), .letter-animation--fast--delay--800 path:nth-child(71), .letter-animation--fast--delay--1000 path:nth-child(71) {
  --nth-child: 71;
}

.letter-animation span:nth-child(72), .letter-animation--delay span:nth-child(72), .letter-animation--delay--800 span:nth-child(72), .letter-animation--delay--1000 span:nth-child(72), .letter-animation--fast span:nth-child(72), .letter-animation--fast--delay span:nth-child(72), .letter-animation--fast--delay--800 span:nth-child(72), .letter-animation--fast--delay--1000 span:nth-child(72), .letter-animation path:nth-child(72), .letter-animation--delay path:nth-child(72), .letter-animation--delay--800 path:nth-child(72), .letter-animation--delay--1000 path:nth-child(72), .letter-animation--fast path:nth-child(72), .letter-animation--fast--delay path:nth-child(72), .letter-animation--fast--delay--800 path:nth-child(72), .letter-animation--fast--delay--1000 path:nth-child(72) {
  --nth-child: 72;
}

.letter-animation span:nth-child(73), .letter-animation--delay span:nth-child(73), .letter-animation--delay--800 span:nth-child(73), .letter-animation--delay--1000 span:nth-child(73), .letter-animation--fast span:nth-child(73), .letter-animation--fast--delay span:nth-child(73), .letter-animation--fast--delay--800 span:nth-child(73), .letter-animation--fast--delay--1000 span:nth-child(73), .letter-animation path:nth-child(73), .letter-animation--delay path:nth-child(73), .letter-animation--delay--800 path:nth-child(73), .letter-animation--delay--1000 path:nth-child(73), .letter-animation--fast path:nth-child(73), .letter-animation--fast--delay path:nth-child(73), .letter-animation--fast--delay--800 path:nth-child(73), .letter-animation--fast--delay--1000 path:nth-child(73) {
  --nth-child: 73;
}

.letter-animation span:nth-child(74), .letter-animation--delay span:nth-child(74), .letter-animation--delay--800 span:nth-child(74), .letter-animation--delay--1000 span:nth-child(74), .letter-animation--fast span:nth-child(74), .letter-animation--fast--delay span:nth-child(74), .letter-animation--fast--delay--800 span:nth-child(74), .letter-animation--fast--delay--1000 span:nth-child(74), .letter-animation path:nth-child(74), .letter-animation--delay path:nth-child(74), .letter-animation--delay--800 path:nth-child(74), .letter-animation--delay--1000 path:nth-child(74), .letter-animation--fast path:nth-child(74), .letter-animation--fast--delay path:nth-child(74), .letter-animation--fast--delay--800 path:nth-child(74), .letter-animation--fast--delay--1000 path:nth-child(74) {
  --nth-child: 74;
}

.letter-animation span:nth-child(75), .letter-animation--delay span:nth-child(75), .letter-animation--delay--800 span:nth-child(75), .letter-animation--delay--1000 span:nth-child(75), .letter-animation--fast span:nth-child(75), .letter-animation--fast--delay span:nth-child(75), .letter-animation--fast--delay--800 span:nth-child(75), .letter-animation--fast--delay--1000 span:nth-child(75), .letter-animation path:nth-child(75), .letter-animation--delay path:nth-child(75), .letter-animation--delay--800 path:nth-child(75), .letter-animation--delay--1000 path:nth-child(75), .letter-animation--fast path:nth-child(75), .letter-animation--fast--delay path:nth-child(75), .letter-animation--fast--delay--800 path:nth-child(75), .letter-animation--fast--delay--1000 path:nth-child(75) {
  --nth-child: 75;
}

.letter-animation span:nth-child(76), .letter-animation--delay span:nth-child(76), .letter-animation--delay--800 span:nth-child(76), .letter-animation--delay--1000 span:nth-child(76), .letter-animation--fast span:nth-child(76), .letter-animation--fast--delay span:nth-child(76), .letter-animation--fast--delay--800 span:nth-child(76), .letter-animation--fast--delay--1000 span:nth-child(76), .letter-animation path:nth-child(76), .letter-animation--delay path:nth-child(76), .letter-animation--delay--800 path:nth-child(76), .letter-animation--delay--1000 path:nth-child(76), .letter-animation--fast path:nth-child(76), .letter-animation--fast--delay path:nth-child(76), .letter-animation--fast--delay--800 path:nth-child(76), .letter-animation--fast--delay--1000 path:nth-child(76) {
  --nth-child: 76;
}

.letter-animation span:nth-child(77), .letter-animation--delay span:nth-child(77), .letter-animation--delay--800 span:nth-child(77), .letter-animation--delay--1000 span:nth-child(77), .letter-animation--fast span:nth-child(77), .letter-animation--fast--delay span:nth-child(77), .letter-animation--fast--delay--800 span:nth-child(77), .letter-animation--fast--delay--1000 span:nth-child(77), .letter-animation path:nth-child(77), .letter-animation--delay path:nth-child(77), .letter-animation--delay--800 path:nth-child(77), .letter-animation--delay--1000 path:nth-child(77), .letter-animation--fast path:nth-child(77), .letter-animation--fast--delay path:nth-child(77), .letter-animation--fast--delay--800 path:nth-child(77), .letter-animation--fast--delay--1000 path:nth-child(77) {
  --nth-child: 77;
}

.letter-animation span:nth-child(78), .letter-animation--delay span:nth-child(78), .letter-animation--delay--800 span:nth-child(78), .letter-animation--delay--1000 span:nth-child(78), .letter-animation--fast span:nth-child(78), .letter-animation--fast--delay span:nth-child(78), .letter-animation--fast--delay--800 span:nth-child(78), .letter-animation--fast--delay--1000 span:nth-child(78), .letter-animation path:nth-child(78), .letter-animation--delay path:nth-child(78), .letter-animation--delay--800 path:nth-child(78), .letter-animation--delay--1000 path:nth-child(78), .letter-animation--fast path:nth-child(78), .letter-animation--fast--delay path:nth-child(78), .letter-animation--fast--delay--800 path:nth-child(78), .letter-animation--fast--delay--1000 path:nth-child(78) {
  --nth-child: 78;
}

.letter-animation span:nth-child(79), .letter-animation--delay span:nth-child(79), .letter-animation--delay--800 span:nth-child(79), .letter-animation--delay--1000 span:nth-child(79), .letter-animation--fast span:nth-child(79), .letter-animation--fast--delay span:nth-child(79), .letter-animation--fast--delay--800 span:nth-child(79), .letter-animation--fast--delay--1000 span:nth-child(79), .letter-animation path:nth-child(79), .letter-animation--delay path:nth-child(79), .letter-animation--delay--800 path:nth-child(79), .letter-animation--delay--1000 path:nth-child(79), .letter-animation--fast path:nth-child(79), .letter-animation--fast--delay path:nth-child(79), .letter-animation--fast--delay--800 path:nth-child(79), .letter-animation--fast--delay--1000 path:nth-child(79) {
  --nth-child: 79;
}

.letter-animation span:nth-child(80), .letter-animation--delay span:nth-child(80), .letter-animation--delay--800 span:nth-child(80), .letter-animation--delay--1000 span:nth-child(80), .letter-animation--fast span:nth-child(80), .letter-animation--fast--delay span:nth-child(80), .letter-animation--fast--delay--800 span:nth-child(80), .letter-animation--fast--delay--1000 span:nth-child(80), .letter-animation path:nth-child(80), .letter-animation--delay path:nth-child(80), .letter-animation--delay--800 path:nth-child(80), .letter-animation--delay--1000 path:nth-child(80), .letter-animation--fast path:nth-child(80), .letter-animation--fast--delay path:nth-child(80), .letter-animation--fast--delay--800 path:nth-child(80), .letter-animation--fast--delay--1000 path:nth-child(80) {
  --nth-child: 80;
}

.is-in.letter-animation span, .is-in.letter-animation--delay span, .is-in.letter-animation--delay--800 span, .is-in.letter-animation--delay--1000 span, .is-in.letter-animation--fast span, .is-in.letter-animation--fast--delay span, .is-in.letter-animation--fast--delay--800 span, .is-in.letter-animation--fast--delay--1000 span, .is-in.letter-animation path, .is-in.letter-animation--delay path, .is-in.letter-animation--delay--800 path, .is-in.letter-animation--delay--1000 path, .is-in.letter-animation--fast path, .is-in.letter-animation--fast--delay path, .is-in.letter-animation--fast--delay--800 path, .is-in.letter-animation--fast--delay--1000 path,
.is-in .letter-animation span,
.is-in .letter-animation--delay span,
.is-in .letter-animation--delay--800 span,
.is-in .letter-animation--delay--1000 span,
.is-in .letter-animation--fast span,
.is-in .letter-animation--fast--delay span,
.is-in .letter-animation--fast--delay--800 span,
.is-in .letter-animation--fast--delay--1000 span,
.is-in .letter-animation path,
.is-in .letter-animation--delay path,
.is-in .letter-animation--delay--800 path,
.is-in .letter-animation--delay--1000 path,
.is-in .letter-animation--fast path,
.is-in .letter-animation--fast--delay path,
.is-in .letter-animation--fast--delay--800 path,
.is-in .letter-animation--fast--delay--1000 path {
  animation: 400ms cubic-bezier(0.39, 0.575, 0.565, 1) both letter-opacity;
  animation-delay: calc(var(--nth-child) * 30ms - 30ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms);
}

.is-in.letter-animation--delay--800 span, .is-in.letter-animation--delay--800 path,
.is-in .letter-animation--delay--800 span,
.is-in .letter-animation--delay--800 path {
  animation-delay: calc(var(--nth-child) * 30ms - 30ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 800ms);
}

.is-in.letter-animation--delay--1000 span, .is-in.letter-animation--delay--1000 path,
.is-in .letter-animation--delay--1000 span,
.is-in .letter-animation--delay--1000 path {
  animation-delay: calc(var(--nth-child) * 30ms - 30ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 1000ms);
}

.is-in.letter-animation--fast, .is-in.letter-animation--fast--delay, .is-in.letter-animation--fast--delay--800, .is-in.letter-animation--fast--delay--1000,
.is-in .letter-animation--fast,
.is-in .letter-animation--fast--delay,
.is-in .letter-animation--fast--delay--800,
.is-in .letter-animation--fast--delay--1000 {
  opacity: 1;
}

.is-in.letter-animation--fast span, .is-in.letter-animation--fast--delay span, .is-in.letter-animation--fast--delay--800 span, .is-in.letter-animation--fast--delay--1000 span, .is-in.letter-animation--fast path, .is-in.letter-animation--fast--delay path, .is-in.letter-animation--fast--delay--800 path, .is-in.letter-animation--fast--delay--1000 path,
.is-in .letter-animation--fast span,
.is-in .letter-animation--fast--delay span,
.is-in .letter-animation--fast--delay--800 span,
.is-in .letter-animation--fast--delay--1000 span,
.is-in .letter-animation--fast path,
.is-in .letter-animation--fast--delay path,
.is-in .letter-animation--fast--delay--800 path,
.is-in .letter-animation--fast--delay--1000 path {
  animation: 400ms cubic-bezier(0.39, 0.575, 0.565, 1) both letter-opacity;
  animation-delay: calc(var(--nth-child) * 20ms - 20ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms);
}

.is-in.letter-animation--fast--delay--800 span, .is-in.letter-animation--fast--delay--800 path,
.is-in .letter-animation--fast--delay--800 span,
.is-in .letter-animation--fast--delay--800 path {
  animation-delay: calc(var(--nth-child) * 20ms - 20ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 800ms);
}

.is-in.letter-animation--fast--delay--1000 span, .is-in.letter-animation--fast--delay--1000 path,
.is-in .letter-animation--fast--delay--1000 span,
.is-in .letter-animation--fast--delay--1000 path {
  animation-delay: calc(var(--nth-child) * 20ms - 20ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 1000ms);
}

@keyframes letter-opacity {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/*!
 * pace.js v1.2.4 | Default theme
 * https://github.com/CodeByZach/pace/
 * Licensed MIT © HubSpot, Inc.
 */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-progress {
  opacity: 1;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 14rem;
  height: 14rem;
  transition: opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.5s, filter 1s linear;
}

@media screen and (min-width: 600px) {
  .pace-progress {
    width: 18rem;
    height: 18rem;
  }
}

@media screen and (min-width: 1024px) {
  .pace-progress {
    width: 20.83333333vw;
    height: 20.83333333vw;
  }
}

.pace-progress[data-progress-text="1%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 1%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="2%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 2%, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="3%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 3%, rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="4%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 4%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="5%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 5%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="6%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 6%, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="7%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 7%, rgba(255, 255, 255, 0) 7%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="8%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 8%, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="9%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 9%, rgba(255, 255, 255, 0) 9%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="10%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 10%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="11%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 11%, rgba(255, 255, 255, 0) 11%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="12%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 12%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="13%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 13%, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="14%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 14%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="15%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 15%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="16%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 16%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="17%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 17%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="18%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 18%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="19%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 19%, rgba(255, 255, 255, 0) 19%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="20%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 20%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="21%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 21%, rgba(255, 255, 255, 0) 21%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="22%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 22%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="23%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 23%, rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="24%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 24%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="25%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="26%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 26%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="27%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 27%, rgba(255, 255, 255, 0) 27%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="28%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 28%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="29%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 29%, rgba(255, 255, 255, 0) 29%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="30%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="31%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 31%, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="32%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 32%, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="33%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 33%, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="34%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 34%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="35%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 35%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="36%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 36%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="37%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 37%, rgba(255, 255, 255, 0) 37%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="38%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 38%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="39%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 39%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="40%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 40%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="41%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 41%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="42%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 42%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="43%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 43%, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="44%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 44%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="45%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 45%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="46%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 46%, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="47%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 47%, rgba(255, 255, 255, 0) 47%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="48%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 48%, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="49%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 49%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="50%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="51%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 51%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="52%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 52%, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="53%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 53%, rgba(255, 255, 255, 0) 53%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="54%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 54%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="55%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 55%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="56%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 56%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="57%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 57%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="58%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 58%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="59%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 59%, rgba(255, 255, 255, 0) 59%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="60%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="61%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 61%, rgba(255, 255, 255, 0) 61%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="62%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 62%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="63%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 63%, rgba(255, 255, 255, 0) 63%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="64%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 64%, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="65%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 65%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="66%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 66%, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="67%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 67%, rgba(255, 255, 255, 0) 67%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="68%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 68%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="69%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 69%, rgba(255, 255, 255, 0) 69%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="70%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 70%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="71%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 71%, rgba(255, 255, 255, 0) 71%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="72%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 72%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="73%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 73%, rgba(255, 255, 255, 0) 73%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="74%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 74%, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="75%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="76%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 76%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="77%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 77%, rgba(255, 255, 255, 0) 77%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="78%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 78%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="79%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 79%, rgba(255, 255, 255, 0) 79%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="80%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 80%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="81%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 81%, rgba(255, 255, 255, 0) 81%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="82%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 82%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="83%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 83%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="84%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 84%, rgba(255, 255, 255, 0) 84%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="85%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 85%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="86%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 86%, rgba(255, 255, 255, 0) 86%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="87%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 87%, rgba(255, 255, 255, 0) 87%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="88%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 88%, rgba(255, 255, 255, 0) 88%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="89%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 89%, rgba(255, 255, 255, 0) 89%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="90%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="91%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 91%, rgba(255, 255, 255, 0) 91%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="92%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 92%, rgba(255, 255, 255, 0) 92%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="93%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 93%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="94%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 94%, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="95%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 95%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="96%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 96%, rgba(255, 255, 255, 0) 96%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="97%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 97%, rgba(255, 255, 255, 0) 97%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="98%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 98%, rgba(255, 255, 255, 0) 98%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="99%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 99%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
}

.pace-progress[data-progress-text="100%"]:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 100%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}

.is-loaded .pace-progress {
  opacity: 0;
}

@media screen and (min-width: 1280px) {
  .is-loaded .pace-progress {
    filter: blur(1rem);
  }
}

.is-loaded .pace-progress:before {
  background: conic-gradient(from 180deg, rgba(255, 255, 255, 0.3) 0%, white 100%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}

.is-loaded .pace-progress:after {
  content: '100%';
}

.pace-progress:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: .1rem;
  border-radius: 100%;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.pace-progress:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: attr(data-progress-text);
  color: #ced4f0;
  font-size: 2.4rem;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .pace-progress:after {
    font-size: 3.125vw;
  }
}

@media screen and (min-width: 1280px) {
  .pace-progress:after {
    background: linear-gradient(to bottom, #edf1ff 0%, #edf1ff 20%, #afb7e2 80%, #afb7e2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.pace-progress-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - .2rem);
  height: calc(100% - .2rem);
  border-radius: 100%;
  background: linear-gradient(to bottom, #000110, #000658);
}

/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* customize */
.swiper {
  width: 100%;
}

.swiper-wrapper.linear {
  transition-timing-function: linear;
}

.swiper-pagination-bullet {
  opacity: .4;
  width: .8rem;
  height: .8rem;
  border: 0.1rem solid var(--gray-blue);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gray-blue);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .8rem;
}

.swiper-button-prev,
.swiper-button-next {
  width: 6rem;
  height: 4rem;
  transform: translate(0, -50%);
  margin-top: 0;
  border: 0.1rem solid var(--gray-blue);
  border-radius: calc(infinity * .1rem);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 7rem;
    height: 5rem;
  }
}

.swiper-button-prev:active:not(:disabled), .swiper-button-prev:hover:not(:disabled),
.swiper-button-next:active:not(:disabled),
.swiper-button-next:hover:not(:disabled) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .7rem;
  height: 1.2rem;
  background: var(--sub-text-color);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swiper-button-prev {
  left: 1rem;
}

@media screen and (min-width: 600px) {
  .swiper-button-prev {
    left: 2rem;
  }
}

.swiper-button-prev:after {
  transform: translate(-56%, -50%) scale(-1, 1);
}

.swiper-button-next {
  right: 1rem;
}

@media screen and (min-width: 600px) {
  .swiper-button-next {
    right: 2rem;
  }
}

/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-loading {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000110, #000658);
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s;
}

.is-loaded .l-loading {
  opacity: 0;
  pointer-events: none;
}

.l-loading picture:nth-of-type(1) {
  position: absolute;
  top: 31.6%;
  left: 70%;
  transform: translate(-52%, -50%);
  width: 82.93333333%;
  animation: 3s linear both cloud-01;
}

@media screen and (min-width: 600px) {
  .l-loading picture:nth-of-type(1) {
    top: 39.6%;
    width: 52.29166666%;
  }
}

@media screen and (min-width: 1280px) {
  .l-loading picture:nth-of-type(1) {
    top: 36%;
    left: 73%;
    width: 42.29166666%;
  }
}

.l-loading picture:nth-of-type(2) {
  position: absolute;
  top: 67.6%;
  left: 30%;
  transform: translate(-48%, -50%);
  width: 88.8%;
  animation: 3s linear both cloud-02;
}

@media screen and (min-width: 600px) {
  .l-loading picture:nth-of-type(2) {
    top: 59.6%;
    width: 55.72916666%;
  }
}

@media screen and (min-width: 1280px) {
  .l-loading picture:nth-of-type(2) {
    top: 58%;
    left: 24%;
    width: 45.72916666%;
  }
}

@keyframes cloud-01 {
  0% {
    transform: translate(-52%, -50%);
  }
  100% {
    transform: translate(-48%, -50%);
  }
}

@keyframes cloud-02 {
  0% {
    transform: translate(-48%, -50%);
  }
  100% {
    transform: translate(-52%, -50%);
  }
}

.l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media screen and (min-width: 600px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }
}

.l-container--pt-0 {
  padding-top: 0;
}

.l-container--pb-0 {
  padding-bottom: 0;
}

.l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
  padding-top: 2.33333rem;
  padding-bottom: 2.33333rem;
}

@media screen and (min-width: 1024px) {
  .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.l-container--xs--pt-0 {
  padding-top: 0;
}

.l-container--xs--pb-0 {
  padding-bottom: 0;
}

.l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 4.66667rem;
  padding-bottom: 4.66667rem;
}

@media screen and (min-width: 1024px) {
  .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.l-container--small--pt-0 {
  padding-top: 0;
}

.l-container--small--pb-0 {
  padding-bottom: 0;
}

.l-center, .l-center--large, .l-center--xl {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .l-center, .l-center--large, .l-center--xl {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center, .l-center--large, .l-center--xl {
    max-width: calc(120rem + 10rem);
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--large {
    max-width: calc(150rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-center--xl {
    max-width: calc(170rem + 10rem);
  }
}

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .l-header {
    position: absolute;
  }
}

.s-index .l-header .inner {
  opacity: 0;
  transition: opacity 0.35s ease-in 4s;
}

.s-index.is-loaded .l-header .inner {
  opacity: 1;
}

.s-index.is-scrolled .l-header .inner {
  opacity: 1;
  transition: none;
  animation: none;
}

@media screen and (min-width: 1024px) {
  .is-change .l-header {
    position: fixed;
    top: -11rem;
    transition: transform 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
  }
}

@media screen and (min-width: 1024px) {
  .is-change .l-header .inner {
    height: 11rem;
  }
}

.is-change .l-header .inner:before {
  opacity: 1;
  transition-duration: 0.25s;
}

@media screen and (min-width: 1024px) {
  .is-change .l-header .logo {
    transform: none;
    width: 21rem;
  }
}

@media screen and (min-width: 1024px) {
  .is-change .l-header .contact {
    transform: none;
  }
}

@media screen and (min-width: 1024px) {
  .is-header-slide .l-header {
    transform: translate(0, 100%);
    transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

.l-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 7rem;
  transition: background 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-header .inner {
    height: 18rem;
  }
}

.l-header .inner:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(to bottom, rgba(0, 2, 28, 0.6), rgba(0, 2, 28, 0));
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.96) 10%, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-header .inner:before {
    height: 130%;
  }
}

.l-header .logo {
  display: block;
  position: relative;
  z-index: 300;
  transform-origin: left center;
  width: 14.4rem;
  margin-left: 1.4rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    width: 28rem;
    transform: translate(0, -3rem);
    margin-left: 2.08333333%;
  }
}

.l-header .logo img, .l-header .logo svg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .l-header .contact {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .l-header .contact {
    transform: translate(0, -3rem);
    margin-right: 2.08333333%;
    margin-left: 0;
  }
}

.l-menu-button-wrap {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 400;
  line-height: 0;
}

@media screen and (min-width: 1024px) {
  .l-menu-button-wrap {
    display: none;
  }
}

.s-index .l-menu-button-wrap {
  opacity: 0;
  transition: opacity 0.35s ease-in 4s;
}

.s-index.is-loaded .l-menu-button-wrap {
  opacity: 1;
}

.s-index.is-scrolled .l-menu-button-wrap {
  opacity: 1;
  transition: none;
  animation: none;
}

.l-menu-button, .c-modal-close-button {
  position: relative;
  transform-origin: right top;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(0.15rem);
  backdrop-filter: blur(0.15rem);
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --menu-bar-margin-top: calc(-50% - .3rem);
  --menu-bar-margin-middle: -50%;
  --menu-bar-margin-bottom: calc(-50% + .3rem);
  --menu-bar-angle: 45deg;
}

@media screen and (min-width: 1280px) {
  .l-menu-button:active:not(:disabled), .c-modal-close-button:active:not(:disabled), .l-menu-button:hover:not(:disabled), .c-modal-close-button:hover:not(:disabled) {
    box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
    transition-duration: 0.4s;
  }
}

@media screen and (min-width: 1280px) {
  .l-menu-button:active:not(:disabled):before, .c-modal-close-button:active:not(:disabled):before, .l-menu-button:hover:not(:disabled):before, .c-modal-close-button:hover:not(:disabled):before {
    opacity: 0;
    transition-duration: 0.25s;
  }
}

@media screen and (min-width: 1280px) {
  .l-menu-button:active:not(:disabled):after, .c-modal-close-button:active:not(:disabled):after, .l-menu-button:hover:not(:disabled):after, .c-modal-close-button:hover:not(:disabled):after {
    opacity: 1;
    transition-duration: 0.25s;
  }
}

.l-menu-button:before, .c-modal-close-button:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-menu-button:after, .c-modal-close-button:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-menu-button, .c-modal-close-button {
    --menu-bar-margin-top: calc(-50% - .7rem);
    --menu-bar-margin-bottom: calc(-50% + .7rem);
  }
}

.l-menu-button span, .c-modal-close-button span {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: .1rem;
  background: var(--white);
  transition: background 0.35s ease;
}

.l-menu-button span:nth-child(1), .c-modal-close-button span:nth-child(1) {
  transform: translate(-50%, var(--menu-bar-margin-top));
}

.l-menu-button span:nth-child(2), .c-modal-close-button span:nth-child(2) {
  display: none;
  transform: translate(-50%, var(--menu-bar-margin-middle));
}

.l-menu-button span:nth-child(3), .c-modal-close-button span:nth-child(3) {
  transform: translate(-50%, var(--menu-bar-margin-bottom));
}

.l-menu-button.is-open span, .is-open.c-modal-close-button span {
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-open span:nth-child(1), .is-open.c-modal-close-button span:nth-child(1) {
  animation-name: menu-bar-top-open;
}

.l-menu-button.is-open span:nth-child(2), .is-open.c-modal-close-button span:nth-child(2) {
  animation-name: menu-bar-middle-open;
}

.l-menu-button.is-open span:nth-child(3), .is-open.c-modal-close-button span:nth-child(3) {
  animation-name: menu-bar-bottom-open;
}

.l-menu-button.is-close span, .is-close.c-modal-close-button span {
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-close span:nth-child(1), .is-close.c-modal-close-button span:nth-child(1) {
  animation-name: menu-bar-top-close;
}

.l-menu-button.is-close span:nth-child(2), .is-close.c-modal-close-button span:nth-child(2) {
  animation-name: menu-bar-middle-close;
}

.l-menu-button.is-close span:nth-child(3), .is-close.c-modal-close-button span:nth-child(3) {
  animation-name: menu-bar-bottom-close;
}

@keyframes menu-bar-top-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-middle-open {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes menu-bar-bottom-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
}

@keyframes menu-bar-middle-close {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-bar-bottom-close {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
}

@keyframes menu-bar-top-open--lg {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top--lg)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-bottom-open--lg {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--lg)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close--lg {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top--lg)) rotate(0);
  }
}

@keyframes menu-bar-bottom-close--lg {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--lg)) rotate(0);
  }
}

.l-gnav {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 20, 0.2);
  -webkit-backdrop-filter: blur(3rem);
  backdrop-filter: blur(3rem);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
    opacity: 1;
    position: relative;
    z-index: 300;
    width: fit-content;
    height: auto;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    pointer-events: visible !important;
  }
}

.is-in .l-gnav a {
  pointer-events: none;
}

@media screen and (min-width: 600px) {
  .is-in .l-gnav a {
    pointer-events: visible;
  }
}

@media screen and (min-width: 1024px) {
  .is-change .l-gnav .gnav-inner {
    align-items: center;
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .is-change .l-gnav .menu {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(4, auto);
  }
}

@media screen and (min-width: 1280px) {
  .is-change .l-gnav .menu {
    gap: .8rem 4rem;
  }
}

@media screen and (min-width: 1366px) {
  .is-change .l-gnav .menu {
    grid-template-rows: repeat(1, auto);
    grid-template-columns: auto;
    gap: 3.6rem;
  }
}

@media screen and (min-width: 1536px) {
  .is-change .l-gnav .menu {
    gap: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .is-change .l-gnav .menu > a, .is-change .l-gnav .menu > span {
    grid-row: auto !important;
    grid-column: auto !important;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .is-change .l-gnav .languages {
    transform: translate(5rem, 0);
  }
}

@media screen and (min-width: 1280px) {
  .is-change .l-gnav .languages {
    transform: translate(17rem, 0);
  }
}

@media screen and (min-width: 1366px) {
  .is-change .l-gnav .languages {
    transform: translate(4rem, 0);
  }
}

@media screen and (min-width: 1440px) {
  .is-change .l-gnav .languages {
    transform: translate(7rem, 0);
  }
}

@media screen and (min-width: 1536px) {
  .is-change .l-gnav .languages {
    transform: translate(10rem, 0);
  }
}

@media screen and (min-width: 1664px) {
  .is-change .l-gnav .languages {
    transform: translate(16rem, 0);
  }
}

@media screen and (min-width: 1792px) {
  .is-change .l-gnav .languages {
    transform: translate(22rem, 0);
  }
}

@media screen and (min-width: 1920px) {
  .is-change .l-gnav .languages {
    transform: translate(28rem, 0);
  }
}

@media screen and (min-width: 2560px) {
  .is-change .l-gnav .languages {
    transform: translate(57rem, 0);
  }
}

.l-gnav.is-open {
  -webkit-overflow-scrolling: touch;
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both gnav-in;
}

.l-gnav.is-open a {
  pointer-events: visible;
}

.l-gnav.is-close {
  -webkit-overflow-scrolling: auto;
  pointer-events: none;
  animation: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both gnav-out;
}

html[lang="ja"] .l-gnav .languages a:nth-of-type(2) {
  opacity: 1;
  pointer-events: none;
}

html[lang="en"] .l-gnav .languages a:nth-of-type(1) {
  opacity: 1;
  pointer-events: none;
}

@keyframes gnav-in {
  0% {
    opacity: 0;
    overflow: auto;
    z-index: 200;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    overflow: auto;
    z-index: 200;
    transform: scale(1);
  }
}

@keyframes gnav-out {
  0% {
    opacity: 1;
    overflow: auto;
    z-index: 200;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    overflow: hidden;
    z-index: -2;
    transform: scale(1.05);
  }
}

.l-gnav .gnav-inner {
  display: grid;
  gap: 7rem;
  position: relative;
  padding: 11rem 2rem 10rem;
}

@media screen and (min-width: 600px) {
  .l-gnav .gnav-inner {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .gnav-inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: start;
    gap: 4rem;
    padding: 0;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .gnav-inner {
    gap: 8rem;
  }
}

@media screen and (min-width: 1366px) {
  .l-gnav .gnav-inner {
    gap: 10rem;
  }
}

@media screen and (min-width: 1536px) {
  .l-gnav .gnav-inner {
    gap: 14rem;
  }
}

@media screen and (min-width: 1920px) {
  .l-gnav .gnav-inner {
    gap: 19rem;
  }
}

.l-gnav .menu {
  display: grid;
  gap: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(3, auto);
    grid-auto-flow: column;
    gap: .8rem 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .menu {
    gap: 0 8rem;
  }
}

@media screen and (min-width: 1366px) {
  .l-gnav .menu {
    gap: 0 10rem;
  }
}

@media screen and (min-width: 1536px) {
  .l-gnav .menu {
    gap: 0 14rem;
  }
}

@media screen and (min-width: 1920px) {
  .l-gnav .menu {
    gap: .8rem 20rem;
    gap: 0 20rem;
  }
}

.l-gnav .menu > a, .l-gnav .menu > span {
  opacity: .8;
  position: relative;
  width: fit-content;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu > a, .l-gnav .menu > span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .menu > a, .l-gnav .menu > span {
    line-height: 1.5;
  }
}

@media screen and (min-width: 1536px) {
  .l-gnav .menu > a, .l-gnav .menu > span {
    line-height: 2;
  }
}

.l-gnav .menu > a:active:not(:disabled), .l-gnav .menu > a:hover:not(:disabled), .l-gnav .menu > span:active:not(:disabled), .l-gnav .menu > span:hover:not(:disabled) {
  opacity: 1;
  transition-duration: 0.25s;
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .about {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .members {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .technology {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .career {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .publications {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .demonstration {
    grid-row: 3 / 4;
    grid-column: 3 / 4;
  }
}

.l-gnav .menu > div > span {
  cursor: default !important;
}

.l-gnav .languages {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4rem;
  position: relative;
  width: fit-content;
}

.l-gnav .languages:before {
  opacity: .5;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .1rem;
  height: 1.4rem;
  background: var(--white);
}

.l-gnav .languages a {
  opacity: .8;
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-gnav .languages a:active:not(:disabled), .l-gnav .languages a:hover:not(:disabled) {
  opacity: 1;
  transition-duration: 0.25s;
}

.s-index .l-gnav .index,
.s-news .l-gnav .news,
.s-news-detail .l-gnav .news,
.s-about .l-gnav .about,
.s-members .l-gnav .members,
.s-technology .l-gnav .technology,
.s-career .l-gnav .career,
.s-publications .l-gnav .publications,
.s-demonstration .l-gnav .demonstration,
.s-contact .l-gnav .contact {
  opacity: 1;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .s-index .l-gnav .index,
  .s-news .l-gnav .news,
  .s-news-detail .l-gnav .news,
  .s-about .l-gnav .about,
  .s-members .l-gnav .members,
  .s-technology .l-gnav .technology,
  .s-career .l-gnav .career,
  .s-publications .l-gnav .publications,
  .s-demonstration .l-gnav .demonstration,
  .s-contact .l-gnav .contact {
    padding-left: 1.6rem;
  }
}

.s-index .l-gnav .index:before,
.s-news .l-gnav .news:before,
.s-news-detail .l-gnav .news:before,
.s-about .l-gnav .about:before,
.s-members .l-gnav .members:before,
.s-technology .l-gnav .technology:before,
.s-career .l-gnav .career:before,
.s-publications .l-gnav .publications:before,
.s-demonstration .l-gnav .demonstration:before,
.s-contact .l-gnav .contact:before {
  content: '';
  display: block;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translate(0, -50%);
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .s-index .l-gnav .index:before,
  .s-news .l-gnav .news:before,
  .s-news-detail .l-gnav .news:before,
  .s-about .l-gnav .about:before,
  .s-members .l-gnav .members:before,
  .s-technology .l-gnav .technology:before,
  .s-career .l-gnav .career:before,
  .s-publications .l-gnav .publications:before,
  .s-demonstration .l-gnav .demonstration:before,
  .s-contact .l-gnav .contact:before {
    left: -1.4rem;
  }
}

.l-main {
  overflow: hidden;
  position: relative;
}

.l-mv, .l-mv--wide-links {
  display: grid;
  align-items: end;
  overflow: hidden;
  position: relative;
  padding-top: 22rem;
  padding-bottom: 5rem;
  padding-right: 6.25%;
  padding-left: 6.25%;
}

@media screen and (min-width: 600px) {
  .l-mv, .l-mv--wide-links {
    padding-top: 36rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv, .l-mv--wide-links {
    padding-top: 42rem;
    padding-bottom: 10rem;
  }
}

.l-mv > div:nth-of-type(1), .l-mv--wide-links > div:nth-of-type(1) {
  position: absolute;
  top: 30%;
  left: 14%;
  transform: translate(-50%, -50%);
  width: 178.4%;
  max-width: none;
  max-height: none;
}

@media screen and (min-width: 600px) {
  .l-mv > div:nth-of-type(1), .l-mv--wide-links > div:nth-of-type(1) {
    top: 48%;
    left: 86%;
    width: 72.03125%;
  }
}

@media screen and (min-width: 1280px) {
  .l-mv > div:nth-of-type(1), .l-mv--wide-links > div:nth-of-type(1) {
    width: 62.03125%;
  }
}

.l-mv > div:nth-of-type(1) img, .l-mv--wide-links > div:nth-of-type(1) img {
  width: 100%;
  animation: 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite circle-01;
}

.l-mv > div:nth-of-type(2), .l-mv--wide-links > div:nth-of-type(2) {
  position: absolute;
  top: 70%;
  left: 86%;
  transform: translate(-50%, -50%);
  width: 190.4%;
  max-width: none;
  max-height: none;
}

@media screen and (min-width: 600px) {
  .l-mv > div:nth-of-type(2), .l-mv--wide-links > div:nth-of-type(2) {
    top: 56%;
    left: 20%;
    width: 71.66666666%;
  }
}

@media screen and (min-width: 1280px) {
  .l-mv > div:nth-of-type(2), .l-mv--wide-links > div:nth-of-type(2) {
    width: 61.66666666%;
  }
}

.l-mv > div:nth-of-type(2) img, .l-mv--wide-links > div:nth-of-type(2) img {
  width: 100%;
  animation: 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite circle-02;
}

.l-mv > div:nth-of-type(3), .l-mv--wide-links > div:nth-of-type(3) {
  position: relative;
}

@media screen and (min-width: 600px) {
  .l-mv > div:nth-of-type(3), .l-mv--wide-links > div:nth-of-type(3) {
    display: grid;
    grid-template-columns: repeat(2, auto);
    place-content: end space-between;
    align-items: end;
  }
}

.l-mv > picture, .l-mv--wide-links > picture {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
}

.l-mv > picture img, .l-mv--wide-links > picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-mv h1, .l-mv--wide-links h1, .l-mv p, .l-mv--wide-links p {
  position: relative;
  line-height: 1;
}

.l-mv h1:has(span:nth-of-type(2)), .l-mv--wide-links h1:has(span:nth-of-type(2)), .l-mv p:has(span:nth-of-type(2)), .l-mv--wide-links p:has(span:nth-of-type(2)) {
  display: grid;
  gap: 1rem;
}

.l-mv h1 span:nth-of-type(1), .l-mv--wide-links h1 span:nth-of-type(1), .l-mv p span:nth-of-type(1), .l-mv--wide-links p span:nth-of-type(1) {
  position: relative;
  padding-left: 1.8rem;
  color: #B5A071;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .l-mv h1 span:nth-of-type(1), .l-mv--wide-links h1 span:nth-of-type(1), .l-mv p span:nth-of-type(1), .l-mv--wide-links p span:nth-of-type(1) {
    padding-left: 2.4rem;
  }
}

.l-mv h1 span:nth-of-type(1):before, .l-mv--wide-links h1 span:nth-of-type(1):before, .l-mv p span:nth-of-type(1):before, .l-mv--wide-links p span:nth-of-type(1):before {
  content: '';
  display: block;
  position: absolute;
  top: 48%;
  left: .3rem;
  transform: translate(-50%, -50%);
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: linear-gradient(to bottom, #c4a764, rgba(255, 230, 174, 0.2));
}

@media screen and (min-width: 1024px) {
  .l-mv h1 span:nth-of-type(1):before, .l-mv--wide-links h1 span:nth-of-type(1):before, .l-mv p span:nth-of-type(1):before, .l-mv--wide-links p span:nth-of-type(1):before {
    top: 56%;
    left: .4rem;
    width: .8rem;
    height: .8rem;
  }
}

.l-mv h1 span:nth-of-type(2), .l-mv--wide-links h1 span:nth-of-type(2), .l-mv p span:nth-of-type(2), .l-mv--wide-links p span:nth-of-type(2) {
  background: linear-gradient(to bottom, #edf1ff 0%, #edf1ff 20%, #afb7e2 80%, #afb7e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: .4rem;
  font-size: 5.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .l-mv h1 span:nth-of-type(2), .l-mv--wide-links h1 span:nth-of-type(2), .l-mv p span:nth-of-type(2), .l-mv--wide-links p span:nth-of-type(2) {
    font-size: 8.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv h1 span:nth-of-type(2), .l-mv--wide-links h1 span:nth-of-type(2), .l-mv p span:nth-of-type(2), .l-mv--wide-links p span:nth-of-type(2) {
    padding-bottom: .6rem;
    font-size: 12rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-mv h1 span:nth-of-type(2), .l-mv--wide-links h1 span:nth-of-type(2), .l-mv p span:nth-of-type(2), .l-mv--wide-links p span:nth-of-type(2) {
    padding-bottom: .8rem;
    font-size: 15rem;
  }
}

.l-mv h1.en, .l-mv--wide-links h1.en, .l-mv p.en, .l-mv--wide-links p.en {
  background: linear-gradient(to bottom, #edf1ff 0%, #edf1ff 20%, #afb7e2 80%, #afb7e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: .4rem;
  font-size: 5.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .l-mv h1.en, .l-mv--wide-links h1.en, .l-mv p.en, .l-mv--wide-links p.en {
    font-size: 8.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv h1.en, .l-mv--wide-links h1.en, .l-mv p.en, .l-mv--wide-links p.en {
    padding-bottom: .6rem;
    font-size: 12rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-mv h1.en, .l-mv--wide-links h1.en, .l-mv p.en, .l-mv--wide-links p.en {
    padding-bottom: .8rem;
    font-size: 15rem;
  }
}

.l-mv h1.en:before, .l-mv--wide-links h1.en:before, .l-mv p.en:before, .l-mv--wide-links p.en:before {
  content: '';
  display: block;
  position: absolute;
  top: .4rem;
  left: -.8rem;
  transform: translate(-50%, -50%);
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: linear-gradient(to bottom, #c4a764, rgba(255, 230, 174, 0.2));
}

@media screen and (min-width: 1024px) {
  .l-mv h1.en:before, .l-mv--wide-links h1.en:before, .l-mv p.en:before, .l-mv--wide-links p.en:before {
    top: .8rem;
    left: -1rem;
    width: .8rem;
    height: .8rem;
  }
}

.l-mv .selects, .l-mv--wide-links .selects {
  display: grid;
  gap: 1rem;
}

@media screen and (max-width: 599px) {
  .l-mv .selects, .l-mv--wide-links .selects {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .l-mv .selects, .l-mv--wide-links .selects {
    transform: translate(0, -1rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-mv .selects, .l-mv--wide-links .selects {
    transform: translate(0, -2.2rem);
  }
}

@media screen and (min-width: 1536px) {
  .l-mv .selects, .l-mv--wide-links .selects {
    grid-template-columns: repeat(2, auto);
    gap: 4rem;
  }
}

.l-mv .links, .l-mv--wide-links .links {
  display: grid;
  place-items: end;
  gap: .6rem;
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .l-mv .links, .l-mv--wide-links .links {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .l-mv .links, .l-mv--wide-links .links {
    transform: translate(0, -0.9rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-mv .links, .l-mv--wide-links .links {
    gap: 1rem;
    transform: translate(0, -1.8rem);
  }
}

@media screen and (min-width: 1280px) {
  .l-mv .links, .l-mv--wide-links .links {
    transform: translate(0, -2.4rem);
  }
}

.l-mv .links.flex, .l-mv--wide-links .links.flex {
  display: flex;
  gap: 0;
}

@media screen and (min-width: 1024px) {
  .l-mv .links.flex, .l-mv--wide-links .links.flex {
    gap: 0;
  }
}

.l-mv .links a, .l-mv--wide-links .links a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .8rem;
  width: fit-content;
  line-height: 1.3;
}

@media screen and (min-width: 600px) {
  .l-mv .links a, .l-mv--wide-links .links a {
    gap: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv .links a, .l-mv--wide-links .links a {
    gap: 1.4rem;
  }
}

.l-mv .links a:active:not(:disabled) span:nth-of-type(2), .l-mv--wide-links .links a:active:not(:disabled) span:nth-of-type(2), .l-mv .links a:hover:not(:disabled) span:nth-of-type(2), .l-mv--wide-links .links a:hover:not(:disabled) span:nth-of-type(2) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.l-mv .links a + a, .l-mv--wide-links .links a + a {
  margin-left: 2rem;
}

@media screen and (min-width: 600px) {
  .l-mv .links a + a, .l-mv--wide-links .links a + a {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv .links a + a, .l-mv--wide-links .links a + a {
    margin-left: 4rem;
  }
}

.l-mv .links span:nth-of-type(2), .l-mv--wide-links .links span:nth-of-type(2) {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 2.2rem;
  border-radius: calc(infinity * .1rem);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .l-mv .links span:nth-of-type(2), .l-mv--wide-links .links span:nth-of-type(2) {
    width: 4.8rem;
    height: 3.2rem;
  }
}

.l-mv .links svg, .l-mv--wide-links .links svg {
  transform: rotate(90deg);
}

@media screen and (min-width: 600px) {
  .l-mv--wide-links > div:nth-of-type(3) {
    grid-template-columns: none;
    place-content: normal;
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv--wide-links > div:nth-of-type(3) {
    gap: 3rem;
  }
}

@media screen and (min-width: 1536px) {
  .l-mv--wide-links > div:nth-of-type(3) {
    grid-template-columns: repeat(2, auto);
    gap: 0;
  }
}

@media screen and (min-width: 600px) {
  .l-mv--wide-links .links {
    margin-left: auto;
  }
}

@media screen and (max-width: 1535px) {
  .l-mv--wide-links .links {
    transform: none;
  }
}

@media screen and (max-width: 599px) {
  .l-mv--wide-links .links a {
    font-size: 1.2rem;
  }
}

.l-detail-mv {
  display: grid;
  align-items: end;
  overflow: hidden;
  position: relative;
  min-height: 30rem;
  padding-top: 12rem;
  padding-bottom: 3rem;
  padding-right: 6.25%;
  padding-left: 6.25%;
}

@media screen and (min-width: 600px) {
  .l-detail-mv {
    min-height: 40rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-detail-mv {
    min-height: 60rem;
    padding-top: 21rem;
    padding-bottom: 5.6rem;
  }
}

.l-detail-mv > picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-detail-mv > picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-detail-mv p time {
  margin-right: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .l-detail-mv p time {
    margin-right: 2.4rem;
  }
}

.l-detail-mv h1 {
  position: relative;
  margin-bottom: 7rem;
  color: var(--white);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .l-detail-mv h1 {
    margin-top: 1.6rem;
    margin-bottom: 11rem;
    font-size: 4.8rem;
  }
}

.l-page-path-wrap {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.l-page-path-wrap::-webkit-scrollbar {
  display: none;
}

.l-page-path {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  white-space: nowrap;
}

.l-page-path li {
  position: relative;
  margin-left: 1.4rem;
  padding-left: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .l-page-path li {
    margin-left: 1.8rem;
    padding-left: 1.8rem;
  }
}

.l-page-path li:before {
  content: '';
  display: block;
  position: absolute;
  top: 60%;
  left: -.05rem;
  opacity: .5;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: .1rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .l-page-path li:before {
    top: 68%;
  }
}

.l-page-path li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.l-page-path li:first-child:before {
  content: none;
}

.l-page-path a, .l-page-path span {
  display: inline-block;
  position: relative;
  padding-bottom: .2rem;
  color: var(--sub-text-color);
  font-size: 1.3rem;
  font-weight: 400;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .l-page-path a, .l-page-path span {
    font-size: 1.4rem;
  }
}

.l-page-path a {
  background: linear-gradient(90deg, var(--sub-text-color), var(--sub-text-color)) left bottom/100% 0.1rem no-repeat;
  transition: background-size 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-page-path a:active:not(:disabled), .l-page-path a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0% .1rem;
  transition-duration: 0.4s;
}

.l-page-path span {
  opacity: .6;
}

.l-bg-wrap {
  position: relative;
}

.l-bg-wrap > picture {
  position: absolute;
  top: -1%;
  left: 0;
  width: 100%;
  height: 101%;
}

@media screen and (min-width: 600px) {
  .l-bg-wrap > picture {
    top: 0;
    height: 103%;
  }
}

@media screen and (min-width: 1024px) {
  .l-bg-wrap > picture {
    height: 106%;
  }
}

.l-bg-wrap > picture img {
  width: 100%;
  height: 100%;
}

.l-bg-wrap > * {
  position: relative;
}

.l-deep-blue-bg {
  position: relative;
  border-top: 0.1rem solid rgba(28, 28, 28, 0.6);
  border-bottom: 0.1rem solid rgba(28, 28, 28, 0.6);
  background: url(../images/common/deep-blue-bg.png) center/39rem auto repeat;
  box-shadow: inset 0 0 2.6rem 0 #101546;
}

.l-deep-blue-bg:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 24, 70, 0.1), rgba(18, 24, 70, 0.8));
}

.l-deep-blue-bg > * {
  position: relative;
}

.l-join-us > div {
  overflow: hidden;
  display: grid;
  gap: 26rem;
  align-items: start;
  position: relative;
  padding: 4rem 4rem 5rem;
  border-radius: .8rem;
  background: linear-gradient(to bottom, #21064c, #0b0b5d);
  box-shadow: 0 0 2rem 0 rgba(228, 205, 154, 0.15);
}

@media screen and (min-width: 600px) {
  .l-join-us > div {
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 5rem 10%;
    background: linear-gradient(to right, #21064c, #0b0b5d);
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us > div {
    padding: 9.8rem 10%;
    border-radius: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-join-us > div {
    padding: 9.8rem 10%;
  }
}

.l-join-us > div:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-join-us > div:after {
    border-radius: 1.6rem;
  }
}

.l-join-us > div > * {
  position: relative;
  z-index: 1;
}

.l-join-us > div > svg {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .l-join-us > div > svg {
    top: 50%;
    left: 67%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 30%;
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us > div > svg {
    transform: translate(-50%, -50%) scale(1);
    width: auto;
  }
}

@media screen and (min-width: 1280px) {
  .l-join-us > div > svg {
    left: 71%;
  }
}

.l-join-us > div > svg path {
  animation: brightness--medium 5s infinite linear;
}

.l-join-us > div > p:nth-of-type(1) {
  opacity: .6;
  position: absolute;
  top: .9rem;
  left: 1.2rem;
  color: var(--sub-text-color);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .l-join-us > div > p:nth-of-type(1) {
    top: 1.6rem;
    left: 2.2rem;
    font-size: 1.6rem;
  }
}

.l-join-us h2 {
  margin-bottom: 1.6rem;
  font-size: 5.5rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .l-join-us h2 {
    margin-bottom: 2rem;
    font-size: 7.2rem;
  }
}

@media screen and (max-width: 599px) {
  .l-join-us a {
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us a {
    transform: translate(0, 1.5rem);
  }
}

.l-contact-us {
  overflow: hidden;
  position: relative;
  height: 38rem;
  background: linear-gradient(to bottom, #050536, #09098c);
}

@media screen and (min-width: 600px) {
  .l-contact-us {
    height: 41rem;
    margin-bottom: -3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact-us {
    height: 69rem;
    margin-bottom: -7rem;
  }
}

.l-contact-us:has(a:active) img:nth-of-type(1), .l-contact-us:has(a:hover) img:nth-of-type(1) {
  transform: translate(-40%, -50%);
}

.l-contact-us:has(a:active) img:nth-of-type(2), .l-contact-us:has(a:hover) img:nth-of-type(2) {
  transform: translate(-60%, -50%);
}

.l-contact-us img:nth-of-type(1) {
  position: absolute;
  top: 30%;
  left: 95%;
  transform: translate(-50%, -50%);
  width: 75.2%;
  transition: transform 3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 600px) {
  .l-contact-us img:nth-of-type(1) {
    left: 80%;
    width: 38.64583333%;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact-us img:nth-of-type(1) {
    top: 36%;
    left: 96%;
    width: 58.64583333%;
  }
}

@media screen and (min-width: 1920px) {
  .l-contact-us img:nth-of-type(1) {
    top: 41%;
    left: 91%;
    width: 38.64583333%;
  }
}

@media screen and (min-width: 2560px) {
  .l-contact-us img:nth-of-type(1) {
    left: 81%;
    width: 28.984375%;
  }
}

.l-contact-us img:nth-of-type(2) {
  position: absolute;
  top: 67%;
  left: 1%;
  transform: translate(-50%, -50%);
  width: 80.53333333%;
  transition: transform 3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 600px) {
  .l-contact-us img:nth-of-type(2) {
    left: 16%;
    width: 41.77083333%;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact-us img:nth-of-type(2) {
    top: 51%;
    left: 3%;
    width: 61.77083333%;
  }
}

@media screen and (min-width: 1920px) {
  .l-contact-us img:nth-of-type(2) {
    top: 46%;
    left: 8%;
    width: 41.77083333%;
  }
}

@media screen and (min-width: 2560px) {
  .l-contact-us img:nth-of-type(2) {
    left: 18%;
    width: 31.328125%;
  }
}

.l-contact-us > div {
  display: grid;
  gap: 1.4rem;
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1024px) {
  .l-contact-us > div {
    top: 44%;
    gap: 1.8rem;
  }
}

.l-contact-us a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1.6rem;
  font-size: 5.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .l-contact-us a {
    gap: 4rem;
    font-size: 13rem;
  }
}

.l-contact-us a:active:not(:disabled) span:nth-of-type(2), .l-contact-us a:hover:not(:disabled) span:nth-of-type(2) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.l-contact-us a:active:not(:disabled) span:nth-of-type(2):before, .l-contact-us a:hover:not(:disabled) span:nth-of-type(2):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.l-contact-us a:active:not(:disabled) span:nth-of-type(2):after, .l-contact-us a:hover:not(:disabled) span:nth-of-type(2):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.l-contact-us span:nth-of-type(2) {
  transform: translate(0, 0.4rem);
}

@media screen and (min-width: 1024px) {
  .l-contact-us span:nth-of-type(2) {
    transform: translate(0, 1.5rem);
  }
}

.l-contact-us p {
  color: var(--sub-text-color);
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-contact-us p {
    font-size: 1.6rem;
  }
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  display: grid;
  gap: 4rem;
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 600px) {
  .l-footer {
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
}

.l-footer > picture,
.l-footer > svg {
  position: absolute;
  top: -18rem;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -6rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -8rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -10rem;
  }
}

@media screen and (min-width: 1366px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -11rem;
  }
}

@media screen and (min-width: 1536px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -12rem;
  }
}

@media screen and (min-width: 1920px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -15rem;
  }
}

@media screen and (min-width: 2560px) {
  .l-footer > picture,
  .l-footer > svg {
    top: -20rem;
  }
}

.l-footer > div {
  display: grid;
  gap: 6rem;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .l-footer > div {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: auto 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > div {
    grid-template-columns: auto 60%;
  }
}

.l-footer > div > p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
}

@media screen and (min-width: 600px) {
  .l-footer > div > p {
    transform: translate(0, -5rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > div > p {
    font-size: 1.4rem;
  }
}

.l-footer > div > p a:before, .l-footer > div > p a:after {
  content: none;
}

.l-footer > div > div {
  display: grid;
  gap: 1.2rem;
}

@media screen and (min-width: 600px) {
  .l-footer > div > div {
    grid-template-columns: repeat(2, auto);
    align-items: end;
    gap: 2rem;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    width: fit-content;
    height: fit-content;
  }
}

.l-footer > div > div a {
  opacity: .6;
  display: grid;
  width: fit-content;
  color: var(--sub-text-color);
  font-size: 1rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(to right, var(--sub-text-color), var(--sub-text-color)) left bottom/100% 0.1rem no-repeat;
  transition: background-size 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer > div > div a {
    font-size: 1.2rem;
  }
}

.l-footer > div > div a:active:not(:disabled), .l-footer > div > div a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .1rem;
  transition-duration: 0.4s;
}

.l-footer .logo {
  display: block;
  position: relative;
  width: 22rem;
  height: fit-content;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-footer .logo {
    width: 28rem;
  }
}

.l-footer .logo img {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .l-footer section:nth-of-type(1) {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    padding-top: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer section:nth-of-type(1) {
    padding-top: 1.4rem;
    padding-bottom: 8rem;
  }
}

.l-footer section:nth-of-type(1) div {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 1.4rem 2rem;
}

@media screen and (min-width: 1024px) {
  .l-footer section:nth-of-type(1) div {
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .l-footer section:nth-of-type(1) div {
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: 30% 30% 40%;
  }
}

@media screen and (min-width: 1536px) {
  .l-footer section:nth-of-type(1) div {
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-footer section:nth-of-type(1) a {
  width: fit-content;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer section:nth-of-type(1) a {
    font-size: 2rem;
  }
}

.l-footer section:nth-of-type(1) a:active:not(:disabled), .l-footer section:nth-of-type(1) a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

@media screen and (max-width: 599px) {
  .l-footer section:nth-of-type(2) {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer section:nth-of-type(2) {
    grid-row: 3 / 5;
    grid-column: 2 / 3;
  }
}

.l-footer section:nth-of-type(2) div {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: .2rem 2rem;
}

@media screen and (min-width: 1024px) {
  .l-footer section:nth-of-type(2) div {
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .l-footer section:nth-of-type(2) div {
    grid-template-columns: 30% 30% 40%;
  }
}

@media screen and (min-width: 1536px) {
  .l-footer section:nth-of-type(2) div {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-footer section:nth-of-type(2) a {
  width: fit-content;
  height: fit-content;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-footer section:nth-of-type(2) a:active:not(:disabled), .l-footer section:nth-of-type(2) a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-footer section:nth-of-type(2) a svg {
  display: inline-block;
  margin-left: .4rem;
}

@media screen and (min-width: 1024px) {
  .l-footer section:nth-of-type(2) a svg {
    margin-left: .8rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .about {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .members {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .technology {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .career {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .publications {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .demonstration {
    grid-row: 3 / 4;
    grid-column: 3 / 4;
  }
}

.l-footer h2 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid rgba(139, 146, 185, 0.3);
  color: var(--sub-text-color);
  font-size: 1.2rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .l-footer h2 {
    margin-bottom: 3rem;
    padding-bottom: 1.4rem;
    font-size: 1.4rem;
  }
}

.l-footer small {
  opacity: .6;
  display: block;
  color: var(--sub-text-color);
  font-size: 1rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .l-footer small {
    font-size: 1.2rem;
  }
}

.l-stalker {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 1279px) {
  .l-stalker {
    display: none;
  }
}

.l-stalker.is-hover div {
  transform: translate(-50%, -50%) scale(1);
  transition-duration: 0.4s;
}

.l-stalker div {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: calc(infinity);
  transform: translate(-50%, -50%) scale(0);
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background: var(--primary-color);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-stalker p {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.no-stick * {
  pointer-events: none;
}

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-two-lang-heading, .c-two-lang-heading--small, .c-two-lang-heading--sm-break {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: end;
  gap: .6rem;
  position: relative;
  width: fit-content;
  margin-bottom: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .c-two-lang-heading, .c-two-lang-heading--small, .c-two-lang-heading--sm-break {
    padding-left: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading, .c-two-lang-heading--small, .c-two-lang-heading--sm-break {
    gap: 1.4rem;
    margin-bottom: 3.6rem;
  }
}

.c-two-lang-heading.is-in > span:nth-of-type(1):before, .is-in.c-two-lang-heading--small > span:nth-of-type(1):before, .is-in.c-two-lang-heading--sm-break > span:nth-of-type(1):before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.c-two-lang-heading > span:nth-of-type(1), .c-two-lang-heading--small > span:nth-of-type(1), .c-two-lang-heading--sm-break > span:nth-of-type(1) {
  position: relative;
  width: fit-content;
  padding-bottom: .7rem;
  background: linear-gradient(to bottom, #edf1ff 0%, #edf1ff 20%, #afb7e2 80%, #afb7e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.2rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: .66;
  letter-spacing: 0;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading > span:nth-of-type(1), .c-two-lang-heading--small > span:nth-of-type(1), .c-two-lang-heading--sm-break > span:nth-of-type(1) {
    padding-bottom: 1.3rem;
    font-size: 5.6rem;
  }
}

.c-two-lang-heading > span:nth-of-type(1):before, .c-two-lang-heading--small > span:nth-of-type(1):before, .c-two-lang-heading--sm-break > span:nth-of-type(1):before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: -.4rem;
  left: -.6rem;
  transform: translate(-50%, -50%) scale(20);
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: linear-gradient(to bottom, #c4a764, rgba(255, 230, 174, 0.2));
  filter: blur(1rem);
  transition: opacity 0.2s cubic-bezier(0.47, 0, 0.745, 0.715), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading > span:nth-of-type(1):before, .c-two-lang-heading--small > span:nth-of-type(1):before, .c-two-lang-heading--sm-break > span:nth-of-type(1):before {
    top: -1.4rem;
    left: -1.4rem;
    width: .8rem;
    height: .8rem;
  }
}

.c-two-lang-heading > span:nth-of-type(2), .c-two-lang-heading--small > span:nth-of-type(2), .c-two-lang-heading--sm-break > span:nth-of-type(2) {
  width: fit-content;
  padding-bottom: .7rem;
  font-size: 1.2rem;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading > span:nth-of-type(2), .c-two-lang-heading--small > span:nth-of-type(2), .c-two-lang-heading--sm-break > span:nth-of-type(2) {
    padding-bottom: 1.3rem;
    font-size: 1.6rem;
  }
}

.c-two-lang-heading--small > span:nth-of-type(1) {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading--small > span:nth-of-type(1) {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 599px) {
  .c-two-lang-heading--sm-break {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: none;
  }
}

@media screen and (max-width: 599px) {
  .c-two-lang-heading--sm-break > span:nth-of-type(2) {
    text-align: right;
  }
}

.c-bar-heading, .c-post h2 {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.4rem 1.4rem 1.4rem 3rem;
  border-radius: .4rem;
  background: linear-gradient(to right, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-bar-heading, .c-post h2 {
    padding: 1.9rem 2rem 2.1rem 5rem;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-bar-heading, .c-post h2 {
    margin-bottom: 3rem;
    border-radius: .8rem;
  }
}

.c-bar-heading:before, .c-post h2:before {
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: 1.5rem;
  transform: translate(-50%, -50%);
  width: .3rem;
  height: calc(100% - 3.1rem);
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, #e4cd9a, #c4a765);
}

@media screen and (min-width: 1024px) {
  .c-bar-heading:before, .c-post h2:before {
    left: 2.6rem;
    width: .4rem;
    height: calc(100% - 4rem);
  }
}

.c-dot-heading, .c-dot-heading--en, .c-post h3 {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 1.3rem;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-dot-heading, .c-dot-heading--en, .c-post h3 {
    margin-bottom: 2.8rem;
    padding-left: 2rem;
    font-size: 2.2rem;
  }
}

.c-dot-heading:before, .c-dot-heading--en:before, .c-post h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 1.24rem;
  left: .3rem;
  transform: translate(-50%, -50%);
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: linear-gradient(to bottom, #c4a764, rgba(255, 230, 174, 0.2));
}

@media screen and (min-width: 1024px) {
  .c-dot-heading:before, .c-dot-heading--en:before, .c-post h3:before {
    top: 1.72rem;
    left: .4rem;
    width: .8rem;
    height: .8rem;
  }
}

.c-dot-heading--en {
  font-size: 2.6rem;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .c-dot-heading--en {
    font-size: 4rem;
  }
}

.c-dot-heading--en:before {
  top: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-dot-heading--en:before {
    top: 3.1rem;
  }
}

.c-small-dot-heading, .c-post h4 {
  position: relative;
  margin-bottom: 1.4rem;
  padding-left: .9rem;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-small-dot-heading, .c-post h4 {
    margin-bottom: 2.4rem;
    padding-left: 1.6rem;
    font-size: 1.8rem;
  }
}

.c-small-dot-heading:before, .c-post h4:before {
  content: '';
  display: block;
  position: absolute;
  top: .95rem;
  left: .1rem;
  transform: translate(-50%, -50%);
  width: .3rem;
  height: .3rem;
  border-radius: 100%;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .c-small-dot-heading:before, .c-post h4:before {
    top: 1.42rem;
    left: .2rem;
    width: .5rem;
    height: .5rem;
  }
}

/*
  button
*/
.is-style-border-button a,
.c-border-button,
.is-style-border-button a--medium,
.c-border-button--medium {
  display: grid;
  place-items: center;
  position: relative;
  width: fit-content;
  min-width: 14rem;
  min-height: 5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.1rem 3rem 1rem;
  border-radius: calc(infinity * .1rem);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(1.5rem);
  backdrop-filter: blur(1.5rem);
  color: var(--white);
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .is-style-border-button a,
  .c-border-button,
  .is-style-border-button a--medium,
  .c-border-button--medium {
    min-width: 16rem;
    min-height: 6rem;
    padding: 1.5rem 4rem 1.4rem;
  }
}

.is-style-border-button a:active:not(:disabled), .is-style-border-button a:hover:not(:disabled),
.c-border-button:active:not(:disabled),
.is-style-border-button a--medium:active:not(:disabled),
.c-border-button--medium:active:not(:disabled),
.c-border-button:hover:not(:disabled),
.is-style-border-button a--medium:hover:not(:disabled),
.c-border-button--medium:hover:not(:disabled) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.is-style-border-button a:active:not(:disabled):before, .is-style-border-button a:hover:not(:disabled):before,
.c-border-button:active:not(:disabled):before,
.is-style-border-button a--medium:active:not(:disabled):before,
.c-border-button--medium:active:not(:disabled):before,
.c-border-button:hover:not(:disabled):before,
.is-style-border-button a--medium:hover:not(:disabled):before,
.c-border-button--medium:hover:not(:disabled):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.is-style-border-button a:active:not(:disabled):after, .is-style-border-button a:hover:not(:disabled):after,
.c-border-button:active:not(:disabled):after,
.is-style-border-button a--medium:active:not(:disabled):after,
.c-border-button--medium:active:not(:disabled):after,
.c-border-button:hover:not(:disabled):after,
.is-style-border-button a--medium:hover:not(:disabled):after,
.c-border-button--medium:hover:not(:disabled):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.is-style-border-button a:disabled,
.c-border-button:disabled,
.is-style-border-button a--medium:disabled,
.c-border-button--medium:disabled {
  opacity: .5;
  cursor: default;
}

.is-style-border-button a:before,
.c-border-button:before,
.is-style-border-button a--medium:before,
.c-border-button--medium:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.is-style-border-button a:after,
.c-border-button:after,
.is-style-border-button a--medium:after,
.c-border-button--medium:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@supports (-ms-ime-align: auto) {
  .is-style-border-button a,
  .c-border-button,
  .is-style-border-button a--medium,
  .c-border-button--medium {
    max-width: 16rem;
  }
}

.is-style-border-button a--medium,
.c-border-button--medium {
  min-width: 16rem;
}

@media screen and (min-width: 1024px) {
  .is-style-border-button a--medium,
  .c-border-button--medium {
    min-width: 20rem;
  }
}

.c-arrow-button-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  place-items: center;
  gap: 1.6rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-arrow-button-wrap {
    gap: 2.2rem;
    font-size: 2rem;
  }
}

.c-arrow-button {
  display: grid;
  place-items: center;
  position: relative;
  width: fit-content;
  min-width: 4.8rem;
  min-height: 3.2rem;
  border-radius: calc(infinity * .1rem);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(1.5rem);
  backdrop-filter: blur(1.5rem);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-arrow-button {
    min-width: 9rem;
    min-height: 6rem;
  }
}

.c-arrow-button:active:not(:disabled), .c-arrow-button:hover:not(:disabled) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.c-arrow-button:active:not(:disabled):before, .c-arrow-button:hover:not(:disabled):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.c-arrow-button:active:not(:disabled):after, .c-arrow-button:hover:not(:disabled):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.c-arrow-button:disabled {
  opacity: .5;
  cursor: default;
}

.c-arrow-button:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.c-arrow-button:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .c-arrow-button svg {
    width: 1.8rem;
    height: auto;
  }
}

/*
  list
*/
.c-dot-list, .c-post ul {
  display: grid;
  gap: .5rem;
}

.c-dot-list li, .c-post ul li {
  position: relative;
  padding-left: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-dot-list li, .c-post ul li {
    padding-left: 2.2rem;
  }
}

.c-dot-list li:before, .c-post ul li:before {
  content: '';
  display: block;
  position: absolute;
  top: 1.32rem;
  left: .6rem;
  transform: translate(-50%, -50%);
  width: .3rem;
  height: .3rem;
  border-radius: 100%;
  background: var(--sub-text-color);
}

@media screen and (min-width: 1024px) {
  .c-dot-list li:before, .c-post ul li:before {
    top: 1.6rem;
    left: .8rem;
    width: .4rem;
    height: .4rem;
  }
}

.c-number-list, .c-post ol {
  counter-reset: li;
  list-style: none;
  display: grid;
  gap: .4rem;
  margin-left: 0;
}

.c-number-list li, .c-post ol li {
  position: relative;
  padding-left: 2.2rem;
}

@media screen and (min-width: 1024px) {
  .c-number-list li, .c-post ol li {
    padding-left: 2.8rem;
  }
}

.c-number-list li:before, .c-post ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--sub-text-color);
  counter-increment: li;
  content: counter(li) ". ";
}

/*
  table
*/
.c-border-table, .c-post table {
  width: 100%;
  border-collapse: separate;
}

.c-border-table tr:first-child th, .c-post table tr:first-child th, .c-border-table tr:first-child td, .c-post table tr:first-child td {
  border-top: 0.1rem solid rgba(255, 255, 255, 0.4);
}

.c-border-table tr:first-child th:first-child, .c-post table tr:first-child th:first-child, .c-border-table tr:first-child td:first-child, .c-post table tr:first-child td:first-child {
  border-radius: .4rem 0 0 0;
}

@media screen and (min-width: 1024px) {
  .c-border-table tr:first-child th:first-child, .c-post table tr:first-child th:first-child, .c-border-table tr:first-child td:first-child, .c-post table tr:first-child td:first-child {
    border-radius: .8rem 0 0 0;
  }
}

.c-border-table tr:first-child th:last-child, .c-post table tr:first-child th:last-child, .c-border-table tr:first-child td:last-child, .c-post table tr:first-child td:last-child {
  border-radius: 0 .4rem 0 0;
}

@media screen and (min-width: 1024px) {
  .c-border-table tr:first-child th:last-child, .c-post table tr:first-child th:last-child, .c-border-table tr:first-child td:last-child, .c-post table tr:first-child td:last-child {
    border-radius: 0 .8rem 0 0;
  }
}

.c-border-table tr:last-child th:first-child, .c-post table tr:last-child th:first-child, .c-border-table tr:last-child td:first-child, .c-post table tr:last-child td:first-child {
  border-radius: 0 0 0 .4rem;
}

@media screen and (min-width: 1024px) {
  .c-border-table tr:last-child th:first-child, .c-post table tr:last-child th:first-child, .c-border-table tr:last-child td:first-child, .c-post table tr:last-child td:first-child {
    border-radius: 0 0 0 .8rem;
  }
}

.c-border-table tr:last-child th:last-child, .c-post table tr:last-child th:last-child, .c-border-table tr:last-child td:last-child, .c-post table tr:last-child td:last-child {
  border-radius: 0 0 .4rem 0;
}

@media screen and (min-width: 1024px) {
  .c-border-table tr:last-child th:last-child, .c-post table tr:last-child th:last-child, .c-border-table tr:last-child td:last-child, .c-post table tr:last-child td:last-child {
    border-radius: 0 0 .8rem 0;
  }
}

.c-border-table th, .c-post table th, .c-border-table td, .c-post table td {
  padding: 1.4rem 1rem;
  border-right: 0.1rem solid rgba(255, 255, 255, 0.4);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .c-border-table th, .c-post table th, .c-border-table td, .c-post table td {
    padding: 2rem 2rem;
  }
}

.c-border-table th:first-child, .c-post table th:first-child, .c-border-table td:first-child, .c-post table td:first-child {
  border-left: 0.1rem solid rgba(255, 255, 255, 0.4);
}

.c-border-table th, .c-post table th {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.c-border-bottom-table, .s-career .a-recruitment-information table {
  width: 100%;
}

.c-border-bottom-table th, .s-career .a-recruitment-information table th, .c-border-bottom-table td, .s-career .a-recruitment-information table td {
  padding: 3rem 1rem;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .c-border-bottom-table th, .s-career .a-recruitment-information table th, .c-border-bottom-table td, .s-career .a-recruitment-information table td {
    padding: 5.6rem 1.06666666%;
  }
}

.c-border-bottom-table th, .s-career .a-recruitment-information table th {
  width: 8rem;
  border-bottom: 0.1rem solid rgba(175, 183, 226, 0.6);
  color: var(--white);
}

@media screen and (min-width: 1024px) {
  .c-border-bottom-table th, .s-career .a-recruitment-information table th {
    width: 13.33333333%;
  }
}

.c-border-bottom-table td, .s-career .a-recruitment-information table td {
  border-bottom: 0.1rem solid rgba(175, 183, 226, 0.3);
}

/*
  post
*/
.c-date {
  display: inline-block;
  opacity: .6;
  margin-right: 1.6rem;
  color: var(--sub-text-color);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .c-date {
    margin-right: 2rem;
    font-size: 1.4rem;
  }
}

.c-category, .c-category--en {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  border: 0.1rem solid rgba(139, 146, 185, 0.4);
  border-radius: .2rem;
  color: var(--sub-text-color);
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-category, .c-category--en {
    font-size: 1.4rem;
  }
}

.c-category:last-child, .c-category--en:last-child {
  margin-right: 0;
}

.c-category--en {
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

.c-category-select-wrap, .c-category-select-wrap--en {
  position: relative;
  width: fit-content;
  margin-left: auto;
}

.c-category-select-wrap[data-heading="Category:"] select, .c-category-select-wrap--en[data-heading="Category:"] select {
  padding: 0.4rem 4rem 0.4rem 9rem !important;
}

@media screen and (min-width: 1024px) {
  .c-category-select-wrap[data-heading="Category:"] select, .c-category-select-wrap--en[data-heading="Category:"] select {
    padding: 0.4rem 5.4rem 0.4rem 12rem !important;
  }
}

.c-category-select-wrap[data-heading="Year:"] select, .c-category-select-wrap--en[data-heading="Year:"] select {
  padding: 0.4rem 4rem 0.4rem 6rem !important;
}

@media screen and (min-width: 1024px) {
  .c-category-select-wrap[data-heading="Year:"] select, .c-category-select-wrap--en[data-heading="Year:"] select {
    padding: 0.4rem 5.4rem 0.4rem 7.8rem !important;
  }
}

.c-category-select-wrap:before, .c-category-select-wrap--en:before {
  content: attr(data-heading);
  display: block;
  position: absolute;
  top: 50%;
  left: 2rem;
  z-index: 1;
  transform: translate(0, -50%);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .c-category-select-wrap:before, .c-category-select-wrap--en:before {
    left: 2.4rem;
    font-size: 2rem;
  }
}

.c-category-select-wrap select, .c-category-select-wrap--en select {
  width: fit-content;
  min-height: 3.6rem !important;
  border-radius: calc(infinity * .1rem);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  color: var(--sub-text-color);
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-category-select-wrap select, .c-category-select-wrap--en select {
    min-height: 5rem !important;
  }
}

@media screen and (min-width: 1280px) {
  .c-category-select-wrap select:active:not(:disabled), .c-category-select-wrap--en select:active:not(:disabled), .c-category-select-wrap select:hover:not(:disabled), .c-category-select-wrap--en select:hover:not(:disabled) {
    box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
    transition-duration: 0.4s;
  }
}

.c-category-select-wrap--en select {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .c-category-select-wrap--en select {
    font-size: 2rem;
  }
}

.c-date-wrap,
.c-category-wrap {
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

.c-text-articles article:first-child a, .c-text-articles--one-row article:first-child a, .c-text-articles--two-rows article:first-child a {
  border-top: 0.1rem solid var(--base-border-color);
}

.c-text-articles a, .c-text-articles--one-row a, .c-text-articles--two-rows a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .c-text-articles a, .c-text-articles--one-row a, .c-text-articles--two-rows a {
    gap: 2%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.c-text-articles a:active:not(:disabled) div:nth-of-type(2):before, .c-text-articles--one-row a:active:not(:disabled) div:nth-of-type(2):before, .c-text-articles--two-rows a:active:not(:disabled) div:nth-of-type(2):before, .c-text-articles a:hover:not(:disabled) div:nth-of-type(2):before, .c-text-articles--one-row a:hover:not(:disabled) div:nth-of-type(2):before, .c-text-articles--two-rows a:hover:not(:disabled) div:nth-of-type(2):before {
  transform: translate(-50%, 0) scaleY(100%);
  transform-origin: bottom center;
  transition-duration: 0.4s;
}

.c-text-articles a:active:not(:disabled) h2, .c-text-articles--one-row a:active:not(:disabled) h2, .c-text-articles--two-rows a:active:not(:disabled) h2, .c-text-articles a:active:not(:disabled) h3, .c-text-articles--one-row a:active:not(:disabled) h3, .c-text-articles--two-rows a:active:not(:disabled) h3, .c-text-articles a:hover:not(:disabled) h2, .c-text-articles--one-row a:hover:not(:disabled) h2, .c-text-articles--two-rows a:hover:not(:disabled) h2, .c-text-articles a:hover:not(:disabled) h3, .c-text-articles--one-row a:hover:not(:disabled) h3, .c-text-articles--two-rows a:hover:not(:disabled) h3 {
  opacity: .7;
  transition-duration: 0.25s;
}

.c-text-articles a:active:not(:disabled) svg, .c-text-articles--one-row a:active:not(:disabled) svg, .c-text-articles--two-rows a:active:not(:disabled) svg, .c-text-articles a:hover:not(:disabled) svg, .c-text-articles--one-row a:hover:not(:disabled) svg, .c-text-articles--two-rows a:hover:not(:disabled) svg {
  animation: 0.4s cubic-bezier(0.19, 1, 0.22, 1) both button-hover-animation;
}

.c-text-articles a:active:not(:disabled) g, .c-text-articles--one-row a:active:not(:disabled) g, .c-text-articles--two-rows a:active:not(:disabled) g, .c-text-articles a:active:not(:disabled) path, .c-text-articles--one-row a:active:not(:disabled) path, .c-text-articles--two-rows a:active:not(:disabled) path, .c-text-articles a:hover:not(:disabled) g, .c-text-articles--one-row a:hover:not(:disabled) g, .c-text-articles--two-rows a:hover:not(:disabled) g, .c-text-articles a:hover:not(:disabled) path, .c-text-articles--one-row a:hover:not(:disabled) path, .c-text-articles--two-rows a:hover:not(:disabled) path {
  fill: var(--primary-color);
  transition-duration: 0.4s;
}

.c-text-articles div:nth-of-type(2), .c-text-articles--one-row div:nth-of-type(2), .c-text-articles--two-rows div:nth-of-type(2) {
  display: grid;
  place-items: center;
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid var(--black);
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .c-text-articles div:nth-of-type(2), .c-text-articles--one-row div:nth-of-type(2), .c-text-articles--two-rows div:nth-of-type(2) {
    width: 4.6rem;
    height: 4.6rem;
  }
}

.c-text-articles div:nth-of-type(2):before, .c-text-articles--one-row div:nth-of-type(2):before, .c-text-articles--two-rows div:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0) scaleY(0);
  transform-origin: top center;
  width: 100%;
  height: calc(100% + .04rem);
  background: var(--black);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-text-articles div:nth-of-type(2) svg, .c-text-articles--one-row div:nth-of-type(2) svg, .c-text-articles--two-rows div:nth-of-type(2) svg {
  display: block;
  width: 1.2rem;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .c-text-articles div:nth-of-type(2) svg, .c-text-articles--one-row div:nth-of-type(2) svg, .c-text-articles--two-rows div:nth-of-type(2) svg {
    width: 1.8rem;
  }
}

.c-text-articles h2, .c-text-articles--one-row h2, .c-text-articles--two-rows h2, .c-text-articles h3, .c-text-articles--one-row h3, .c-text-articles--two-rows h3 {
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .c-text-articles h2, .c-text-articles--one-row h2, .c-text-articles--two-rows h2, .c-text-articles h3, .c-text-articles--one-row h3, .c-text-articles--two-rows h3 {
    font-size: 2rem;
    line-height: 1.9;
  }
}

.c-text-articles g, .c-text-articles--one-row g, .c-text-articles--two-rows g, .c-text-articles path, .c-text-articles--one-row path, .c-text-articles--two-rows path {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-text-articles--one-row div:nth-of-type(1) {
    display: grid;
    grid-template-columns: 30rem 1fr;
    gap: 3%;
  }
}

@media screen and (min-width: 1024px) {
  .c-text-articles--one-row p {
    transform: translate(0, 0.6rem);
    margin-bottom: 0;
  }
}

.c-articles a {
  display: grid;
  gap: 2rem;
  padding-top: 4.4rem;
  padding-bottom: 4rem;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: .8rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .c-articles a {
    grid-template-columns: 24.65753424% 1fr;
    align-items: center;
    gap: 3.42465753%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles a {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-right: 2rem;
    padding-left: 2rem;
    border-radius: 1.6rem;
  }
}

.c-articles a:active:not(:disabled), .c-articles a:hover:not(:disabled) {
  box-shadow: 0 0 3rem 0 rgba(58, 114, 239, 0.8);
}

.c-articles img {
  object-fit: cover;
  width: 100%;
  height: 56vw;
  border-radius: .4rem;
}

@media screen and (min-width: 600px) {
  .c-articles img {
    height: 14.72578125vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles img {
    height: 14.19069010vw;
    border-radius: .8rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-articles img {
    height: 14.6403125vw;
    max-height: 24rem;
  }
}

.c-articles h2, .c-articles h3, .c-articles h4 {
  color: var(--white);
  font-size: 1.7rem;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-articles h2, .c-articles h3, .c-articles h4 {
    font-size: 2.2rem;
  }
}

.c-articles h2 + p, .c-articles h3 + p, .c-articles h4 + p {
  line-height: 2.375;
}

.c-articles h2 svg, .c-articles h3 svg, .c-articles h4 svg {
  width: 1.2rem;
  height: auto;
}

.pagination {
  padding-top: 5rem;
}

@media screen and (min-width: 1024px) {
  .pagination {
    padding-top: 12rem;
  }
}

.screen-reader-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.nav-links > * {
  display: grid;
  place-items: center;
  position: relative;
  width: 3.6rem;
  height: 4.8rem;
  margin: .8rem;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  color: var(--white);
  font-size: 1.6rem;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .nav-links > * {
    width: 4.8rem;
    height: 6.4rem;
    margin: 1.2rem;
    font-size: 2rem;
  }
}

.nav-links > *:active:not(:disabled), .nav-links > *:hover:not(:disabled) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.nav-links > *:active:not(:disabled):before, .nav-links > *:hover:not(:disabled):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.nav-links > *:active:not(:disabled):after, .nav-links > *:hover:not(:disabled):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.nav-links > *:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-links > *:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-links .current {
  color: var(--white);
  pointer-events: none;
}

.nav-links .current:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * .1rem);
  background: linear-gradient(to right, #16BBEF 0%, #3D71EE 50%, #6657EA 100%);
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.nav-links .current:after {
  opacity: 1;
  content: '';
  display: block;
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  height: .2rem;
  padding: 0;
  border-radius: 0;
  background: var(--white);
  mask: none;
}

@media screen and (min-width: 1024px) {
  .nav-links .current:after {
    height: .3rem;
  }
}

.nav-links .next, .nav-links .prev {
  border: none;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links .next:active:not(:disabled):before, .nav-links .next:hover:not(:disabled):before, .nav-links .prev:active:not(:disabled):before, .nav-links .prev:hover:not(:disabled):before {
  opacity: 1;
}

.nav-links .next:before, .nav-links .prev:before {
  opacity: 1;
  content: '';
  display: block;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .7rem;
  height: 1rem;
  background: rgba(210, 213, 233, 0.6);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
  mask: none;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .nav-links .next:before, .nav-links .prev:before {
    width: .8rem;
    height: 1.2rem;
  }
}

.nav-links .next:after, .nav-links .prev:after {
  content: none;
}

.nav-links .prev:before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.c-detail-pagination {
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 7rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination {
    margin-top: 16rem;
  }
}

.c-detail-pagination .back {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back {
    gap: 3rem;
    font-size: 2rem;
  }
}

.c-detail-pagination .back a {
  min-width: 4.8rem;
  min-height: 3.2rem;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back a {
    min-width: 9rem;
    min-height: 6rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back svg {
    width: 1.8rem;
    height: auto;
  }
}

.c-detail-pagination .next, .c-detail-pagination .prev {
  display: grid;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) left bottom/100% 0.1rem no-repeat;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
  transition: background-size 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next, .c-detail-pagination .prev {
    font-size: 2rem;
  }
}

.c-detail-pagination .next:active:not(:disabled), .c-detail-pagination .next:hover:not(:disabled), .c-detail-pagination .prev:active:not(:disabled), .c-detail-pagination .prev:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .1rem;
  transition-duration: 0.4s;
}

.c-detail-pagination .next:after, .c-detail-pagination .prev:after {
  content: '';
  display: block;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .7rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next:after, .c-detail-pagination .prev:after {
    width: .8rem;
    height: 1.2rem;
  }
}

.c-detail-pagination .next img, .c-detail-pagination .next svg, .c-detail-pagination .prev img, .c-detail-pagination .prev svg {
  display: inline-block;
  width: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next img, .c-detail-pagination .next svg, .c-detail-pagination .prev img, .c-detail-pagination .prev svg {
    width: 1.6rem;
  }
}

.c-detail-pagination .next {
  right: 0;
  margin-right: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next {
    margin-right: 2.4rem;
  }
}

.c-detail-pagination .next:after {
  left: 150%;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next:after {
    left: 160%;
  }
}

.c-detail-pagination .prev {
  left: 0;
  margin-left: 1.8rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .prev {
    margin-left: 2.4rem;
  }
}

.c-detail-pagination .prev:after {
  left: -50%;
  transform: translate(-50%, -50%) scale(-1, 1);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .prev:after {
    left: -60%;
  }
}

@media screen and (max-width: 599px) {
  .c-post :where(.is-layout-flex) {
    gap: 2.4rem !important;
  }
}

@media screen and (min-width: 600px) {
  .c-post :where(.is-layout-flex) {
    gap: 4rem;
  }
}

.c-post > * {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-post > * {
    margin-bottom: 3rem;
  }
}

.c-post > *:last-child {
  margin-bottom: 0;
}

.c-post > *:has(+ h1), .c-post > *:has(+ h2), .c-post > *:has(+ h3), .c-post > *:has(+ h4), .c-post > *:has(+ h5), .c-post > *:has(+ h6) {
  margin-bottom: 4rem;
}

@media screen and (min-width: 1024px) {
  .c-post > *:has(+ h1), .c-post > *:has(+ h2), .c-post > *:has(+ h3), .c-post > *:has(+ h4), .c-post > *:has(+ h5), .c-post > *:has(+ h6) {
    margin-bottom: 6rem;
  }
}

.c-post > *:has(+ figure), .c-post > *:has(+ .wp-block-image figure), .c-post > *:has(+ table) {
  margin-bottom: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .c-post > *:has(+ figure), .c-post > *:has(+ .wp-block-image figure), .c-post > *:has(+ table) {
    margin-bottom: 5rem;
  }
}

.c-post img {
  border-radius: .8rem;
}

@media screen and (min-width: 1024px) {
  .c-post img {
    border-radius: 1.6rem;
  }
}

.c-post p {
  word-break: break-all;
}

.c-post strong {
  font-weight: 700;
}

/*
  form
*/
.c-form {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .c-form {
    gap: 0;
  }
}

.c-form > div {
  display: grid;
  gap: .4rem;
}

@media screen and (min-width: 600px) {
  .c-form > div {
    grid-template-columns: 1fr 75%;
    gap: 1.6%;
  }
}

.c-form > div:last-child > div:nth-of-type(2) {
  border-bottom: none;
}

@media screen and (min-width: 600px) {
  .c-form > div > div {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-form > div > div {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.c-form > div > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

@media screen and (min-width: 600px) {
  .c-form > div > div:nth-of-type(1) {
    padding-top: 4.1rem;
  }
}

.c-form > div > div:nth-of-type(2) {
  border-bottom: 0.1rem solid rgba(210, 213, 233, 0.4);
}

.c-form .error {
  color: #990000;
}

/*
  required, optional
*/
.c-required, .c-optional {
  display: inline-block;
  transform: translate(0, 0.3rem);
  padding: .5rem .7rem .4rem;
  border-radius: .2rem;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-required, .c-optional {
    transform: translate(0, 0.8rem);
    padding: .5rem .8rem .6rem;
    font-size: 1.2rem;
  }
}

.c-required {
  background: #B5A071;
}

/*
  accordion
*/
.c-accordion-button, .c-accordion-button--plus, .c-accordion-button--plus--white {
  position: relative;
}

.c-accordion-button:active:not(:disabled), .c-accordion-button--plus:active:not(:disabled), .c-accordion-button--plus--white:active:not(:disabled), .c-accordion-button:hover:not(:disabled), .c-accordion-button--plus:hover:not(:disabled), .c-accordion-button--plus--white:hover:not(:disabled) {
  cursor: pointer;
}

.c-accordion-button.is-open + *, .is-open.c-accordion-button--plus + *, .is-open.c-accordion-button--plus--white + * {
  grid-template-rows: 1fr;
  transition-duration: 0.4s;
}

.c-accordion-button + *, .c-accordion-button--plus + *, .c-accordion-button--plus--white + * {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.c-accordion-button + * > div, .c-accordion-button--plus + * > div, .c-accordion-button--plus--white + * > div {
  overflow: hidden;
}

.c-accordion-button--plus.is-open:after, .is-open.c-accordion-button--plus--white:after {
  transform: translate(-50%, -50%) scaleY(0);
}

.c-accordion-button--plus:before, .c-accordion-button--plus--white:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: .3rem;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: .1rem;
  background: var(--black);
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--plus:before, .c-accordion-button--plus--white:before {
    right: .4rem;
    width: 2rem;
  }
}

.c-accordion-button--plus:after, .c-accordion-button--plus--white:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: .1rem;
  height: 1.2rem;
  background: var(--black);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--plus:after, .c-accordion-button--plus--white:after {
    right: 2.3rem;
    height: 2rem;
  }
}

.c-accordion-button--plus--white:before, .c-accordion-button--plus--white:after {
  background: var(--white);
}

/*
  modal
*/
.c-modal-bg {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  z-index: 400;
  background: rgba(0, 2, 28, 0.85);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.c-modal-bg.is-show {
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-in;
}

.c-modal-bg.is-hide {
  pointer-events: none;
  animation: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-out;
}

@keyframes layer-in {
  0% {
    opacity: 0;
    z-index: 400;
  }
  100% {
    opacity: 1;
    z-index: 400;
  }
}

@keyframes layer-out {
  0% {
    opacity: 1;
    z-index: 400;
  }
  100% {
    opacity: 0;
    z-index: -2;
  }
}

@keyframes layer-slide-in {
  0% {
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}

@keyframes layer-slide-out {
  0% {
    opacity: 1;
    transform: translate(0%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(100%, 0);
  }
}

@keyframes modal-in {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes modal-out {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}

.c-modal-container {
  opacity: 0;
  display: grid;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  overflow: auto;
  transform: translate(100%, 0);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3rem);
  backdrop-filter: blur(3rem);
  pointer-events: none;
}

@media screen and (min-width: 1536px) {
  .c-modal-container {
    width: 91.14583333%;
    border-left: .1rem solid;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.16)) 1;
  }
}

@media screen and (min-width: 1920px) {
  .c-modal-container {
    width: 83.33333333%;
  }
}

@media screen and (min-width: 2560px) {
  .c-modal-container {
    width: 62.5%;
  }
}

.c-modal-container.is-open {
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-slide-in;
}

.c-modal-container.is-close {
  pointer-events: none;
  animation: 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) both layer-slide-out;
}

.c-modal {
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 7.6rem 2rem;
  background: linear-gradient(to bottom, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
}

@media screen and (min-width: 600px) {
  .c-modal {
    margin-left: auto;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-modal {
    padding: 10rem 5rem;
  }
}

@media screen and (min-width: 1536px) {
  .c-modal {
    padding: 10rem 3.25520833%;
  }
}

@media screen and (min-width: 1920px) {
  .c-modal {
    padding: 10rem 5.20833333%;
  }
}

@media screen and (min-width: 2560px) {
  .c-modal {
    padding: 10rem 3.90625%;
  }
}

.c-modal-open-button:active:not(:disabled), .c-modal-open-button:hover:not(:disabled) {
  cursor: pointer;
}

.c-modal-close-button {
  opacity: 0;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: -2;
  pointer-events: none;
  animation: 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) layer-out;
}

@media screen and (min-width: 1024px) {
  .c-modal-close-button {
    top: 4.6rem;
    right: 4.6rem;
  }
}

.c-modal-close-button.is-show {
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-in;
}

.c-modal-close-button.is-hide {
  pointer-events: none;
  animation: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both layer-out;
}

.c-modal-close-button span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
}

.c-modal-close-button span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
}

.c-text-bg {
  opacity: .2;
  margin-bottom: -3rem;
  background: linear-gradient(to bottom, #6166a2 0%, #6166a2 20%, rgba(97, 102, 255, 0.1) 80%, rgba(97, 102, 255, 0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

@media screen and (max-width: 599px) {
  .c-text-bg {
    margin-left: -52rem;
  }
}

@media screen and (min-width: 600px) {
  .c-text-bg {
    margin-left: -34rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-text-bg {
    margin-bottom: -8rem;
    margin-left: -44rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-text-bg {
    font-size: 20rem;
  }
}

.c-partner .swiper-slide {
  width: fit-content;
  padding-right: 4rem;
}

@media screen and (min-width: 1024px) {
  .c-partner .swiper-slide {
    padding-right: 10rem;
  }
}

.c-partner .swiper-slide img {
  width: auto;
  max-height: 5rem;
}

@media screen and (min-width: 1024px) {
  .c-partner .swiper-slide img {
    width: auto;
    min-height: 7rem;
    max-height: 7rem;
  }
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index.is-loaded .a-mv.is-in > picture:nth-of-type(2) img, .s-index.is-loaded .a-mv.is-in > picture:nth-of-type(3) img {
  transform: translate(0, 0);
}

.s-index.is-loaded .a-mv.is-in svg, .s-index.is-loaded .a-mv.is-in .horizon, .s-index.is-loaded .a-mv.is-in .quantum {
  transform: translate(0, 0);
}

.s-index.is-loaded .a-mv.is-in h1 > span span {
  transform: translate(0, 0);
}

.s-index.is-loaded .a-mv.is-in p {
  opacity: 1;
}

.s-index.is-loaded .a-mv.is-in a {
  opacity: 1;
  pointer-events: visible;
}

.s-index .a-mv {
  position: relative;
  height: 100svh;
}

.s-index .a-mv > div:nth-of-type(1) {
  position: absolute;
  top: 30%;
  left: 14%;
  transform: translate(-50%, -50%);
  width: 178.4%;
  max-width: none;
  max-height: none;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > div:nth-of-type(1) {
    top: 48%;
    left: 86%;
    width: 72.03125%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv > div:nth-of-type(1) {
    width: 62.03125%;
  }
}

.s-index .a-mv > div:nth-of-type(1) img {
  width: 100%;
  animation: 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) 4000ms infinite circle-01;
}

.s-index .a-mv > div:nth-of-type(2) {
  position: absolute;
  top: 70%;
  left: 86%;
  transform: translate(-50%, -50%);
  width: 190.4%;
  max-width: none;
  max-height: none;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > div:nth-of-type(2) {
    top: 56%;
    left: 20%;
    width: 71.66666666%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv > div:nth-of-type(2) {
    width: 61.66666666%;
  }
}

.s-index .a-mv > div:nth-of-type(2) img {
  width: 100%;
  animation: 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) 4000ms infinite circle-02;
}

.s-index .a-mv > div:nth-of-type(3), .s-index .a-mv > div:nth-of-type(4) {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 100%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > div:nth-of-type(3), .s-index .a-mv > div:nth-of-type(4) {
    top: 94%;
    width: 140%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv > div:nth-of-type(3), .s-index .a-mv > div:nth-of-type(4) {
    top: 96%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv > div:nth-of-type(3), .s-index .a-mv > div:nth-of-type(4) {
    top: 100%;
    width: 100%;
  }
}

.s-index .a-mv > div:nth-of-type(3) picture, .s-index .a-mv > div:nth-of-type(3) svg, .s-index .a-mv > div:nth-of-type(4) picture, .s-index .a-mv > div:nth-of-type(4) svg {
  width: 100%;
  height: auto;
}

@keyframes circle-01 {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(20vw, 50vh);
  }
  20% {
    transform: translate(50vw, -40vh);
  }
  30% {
    transform: translate(-30vw, 40vh);
  }
  40% {
    transform: translate(10vw, 0vh);
  }
  50% {
    transform: translate(-40vw, 10vh);
  }
  60% {
    transform: translate(-10vw, 30vh);
  }
  70% {
    transform: translate(10vw, -30vh);
  }
  80% {
    transform: translate(-30vw, 10vh);
  }
  90% {
    transform: translate(-50vw, -40vh);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes circle-02 {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(20vw, -50vh);
  }
  20% {
    transform: translate(-50vw, 50vh);
  }
  30% {
    transform: translate(0vw, -20vh);
  }
  40% {
    transform: translate(-40vw, 50vh);
  }
  50% {
    transform: translate(-20vw, -30vh);
  }
  60% {
    transform: translate(50vw, -10vh);
  }
  70% {
    transform: translate(30vw, -40vh);
  }
  80% {
    transform: translate(-40vw, 50vh);
  }
  90% {
    transform: translate(20vw, 0vh);
  }
  100% {
    transform: translate(0, 0);
  }
}

.s-index .a-mv > picture:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-index .a-mv > picture:nth-of-type(1) img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-index .a-mv > picture:nth-of-type(2) {
  position: absolute;
  top: 20%;
  left: 87%;
  transform: translate(-50%, -50%);
  width: 82.93333333%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > picture:nth-of-type(2) {
    top: 29%;
    left: 96%;
    width: 52.29166666%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv > picture:nth-of-type(2) {
    width: 42.29166666%;
  }
}

.s-index .a-mv > picture:nth-of-type(3) {
  position: absolute;
  top: 69%;
  left: 13%;
  transform: translate(-50%, -50%);
  width: 88.8%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > picture:nth-of-type(3) {
    top: 62%;
    left: 3%;
    width: 55.72916666%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv > picture:nth-of-type(3) {
    width: 45.72916666%;
  }
}

.s-index .a-mv svg, .s-index .a-mv .horizon {
  transform: translate(0, 4rem);
  transition-property: transform;
  transition-duration: 2100ms;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv svg, .s-index .a-mv .horizon {
    transform: translate(0, 8rem);
  }
}

.s-index .a-mv .quantum {
  transform: translate(0, 3rem);
  transition-property: transform;
  transition-duration: 2450ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv .quantum {
    transform: translate(0, 6rem);
  }
}

.s-index .a-mv hgroup {
  display: grid;
  gap: 1.6rem;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv hgroup {
    top: 45%;
    gap: 2.4rem;
  }
}

.s-index .a-mv h1 {
  font-size: 6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: .85;
  letter-spacing: 0;
  white-space: nowrap;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 {
    font-size: 8rem;
    line-height: .87;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv h1 {
    font-size: 9rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-mv h1 {
    font-size: 11rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-mv h1 {
    font-size: 13rem;
  }
}

.s-index .a-mv h1 > span {
  display: inline-block;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 > span:nth-of-type(1) {
    margin-right: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 > span:nth-of-type(1) {
    margin-right: 2.6rem;
  }
}

.s-index .a-mv h1 > span:nth-of-type(1) span {
  background-image: linear-gradient(to bottom, #edf1ff 0%, #dde2f8 100%);
}

@media screen and (max-width: 599px) {
  .s-index .a-mv h1 > span:nth-of-type(1) span {
    padding-right: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 > span:nth-of-type(1) span {
    background-image: linear-gradient(to bottom, #edf1ff 0%, #ced4f1 100%);
  }
}

.s-index .a-mv h1 > span:nth-of-type(2) span {
  background-image: linear-gradient(to bottom, #dde2f8 0%, #ced4f1 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 > span:nth-of-type(2) span {
    background-image: linear-gradient(to bottom, #edf1ff 0%, #ced4f1 100%);
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 > span:nth-of-type(3) {
    margin-right: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 > span:nth-of-type(3) {
    margin-right: 2.6rem;
  }
}

.s-index .a-mv h1 > span:nth-of-type(3) span {
  background-image: linear-gradient(to bottom, #ced4f1 0%, #bfc6ea 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 > span:nth-of-type(3) span {
    padding-bottom: .8rem;
    background-image: linear-gradient(to bottom, #ced4f1 0%, #afb7e2 100%);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 > span:nth-of-type(3) span {
    padding-bottom: 1.5rem;
  }
}

.s-index .a-mv h1 > span:nth-of-type(4) span {
  padding-bottom: .8rem;
  background-image: linear-gradient(to bottom, #bfc6ea 0%, #afb7e2 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 > span:nth-of-type(4) span {
    background-image: linear-gradient(to bottom, #ced4f1 0%, #afb7e2 100%);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 > span:nth-of-type(4) span {
    padding-bottom: 1.5rem;
  }
}

.s-index .a-mv h1 > span span {
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translate(0, 100%);
  transition-property: transform;
  transition-duration: 2800ms;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.s-index .a-mv b {
  background: linear-gradient(to bottom, white 0%, white 35%, #bc9e77 65%, #bc9e77 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.s-index .a-mv p {
  opacity: 0;
  font-size: 1.6rem;
  transition-property: opacity;
  transition-duration: 700ms;
  transition-timing-function: ease-in;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv p {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv p {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv p {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-mv p {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-mv p {
    font-size: 2.8rem;
  }
}

.s-index .a-mv a {
  opacity: 0;
  display: block;
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translate(-50%, 0);
  padding-bottom: 3rem;
  color: var(--sub-text-color);
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv a {
    bottom: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv a {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv a {
    bottom: 2rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-mv a {
    bottom: 4rem;
  }
}

.s-index .a-mv a:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1.4rem;
  height: .8rem;
  background: var(--sub-text-color);
  clip-path: polygon(10% 0, 50% 76%, 90% 0, 100% 6%, 50% 100%, 0% 6%);
  animation: 3s linear infinite scroll;
}

.s-index .a-mv a:after {
  opacity: .7;
  content: '';
  display: block;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1.4rem;
  height: .8rem;
  background: var(--sub-text-color);
  clip-path: polygon(10% 0, 50% 76%, 90% 0, 100% 6%, 50% 100%, 0% 6%);
  animation: 3s linear 1.2s infinite scroll;
}

.s-index .a-mv a span:before {
  opacity: .4;
  content: '';
  display: block;
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1.4rem;
  height: .8rem;
  background: var(--sub-text-color);
  clip-path: polygon(10% 0, 50% 76%, 90% 0, 100% 6%, 50% 100%, 0% 6%);
  animation: 3s linear 1.8s infinite scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

.s-index .a-about {
  position: relative;
}

@media screen and (max-width: 1023px) {
  .s-index .a-about {
    padding-top: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about {
    padding-top: 6rem;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-about:after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 36rem;
    background: var(--primary-color);
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-about > * {
    position: relative;
    z-index: 1;
  }
}

.s-index .a-about > div > div:nth-of-type(1) p {
  margin-bottom: 5rem;
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about > div > div:nth-of-type(1) p {
    margin-bottom: 8rem;
    font-size: 2.2rem;
  }
}

.s-index .a-about > div > div:nth-of-type(2) {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-about > div > div:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.s-index .a-about h2 {
  position: relative;
  width: fit-content;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h2 {
    margin-bottom: 3rem;
    font-size: 7.2rem;
  }
}

.s-index .a-about h2 span:nth-of-type(2) {
  display: block;
  position: absolute;
  top: 20%;
  left: 125%;
  transform: translate(-50%, -50%);
  width: 15.1rem;
  height: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-about h2 span:nth-of-type(2) {
    left: 120%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h2 span:nth-of-type(2) {
    width: 24.9rem;
  }
}

.s-index .a-about h2 span:nth-of-type(3) {
  display: block;
  position: absolute;
  top: 80%;
  left: -28%;
  transform: translate(-50%, -50%);
  width: 15.3rem;
  height: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-about h2 span:nth-of-type(3) {
    top: 85%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h2 span:nth-of-type(3) {
    width: 25.5rem;
  }
}

.s-index .a-about h2 svg, .s-index .a-about h2 img {
  width: 100%;
  height: auto;
}

.s-index .a-about article:nth-of-type(1) a {
  background: linear-gradient(to bottom, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
}

.s-index .a-about article:nth-of-type(2) a {
  background: linear-gradient(to bottom, rgba(146, 157, 255, 0.15), rgba(146, 157, 255, 0));
}

.s-index .a-about a {
  display: block;
  position: relative;
  height: 100%;
  padding: 2rem 2rem 3rem;
  border-radius: .8rem;
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-about a {
    padding: 2rem 7rem 7rem;
    border-radius: 1.6rem;
  }
}

.s-index .a-about a:active:not(:disabled), .s-index .a-about a:hover:not(:disabled) {
  box-shadow: 0 0 3rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.s-index .a-about a:active:not(:disabled):before, .s-index .a-about a:hover:not(:disabled):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.s-index .a-about a:active:not(:disabled):after, .s-index .a-about a:hover:not(:disabled):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.s-index .a-about a:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-about a:before {
    border-radius: 1.6rem;
  }
}

.s-index .a-about a:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-about a:after {
    border-radius: 1.6rem;
  }
}

.s-index .a-about a > p:nth-of-type(1) {
  opacity: .6;
  position: absolute;
  top: .9rem;
  left: 1.2rem;
  color: var(--sub-text-color);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about a > p:nth-of-type(1) {
    top: 1.6rem;
    left: 2.2rem;
    font-size: 1.6rem;
  }
}

.s-index .a-about a svg {
  display: block;
  margin-top: 4rem;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1280px) {
  .s-index .a-about a svg {
    width: auto;
    height: 30rem;
    margin-top: 10rem;
    margin-bottom: 6rem;
  }
}

.s-index .a-about a path {
  animation: brightness 5s infinite linear;
}

@keyframes brightness--small {
  0% {
    filter: brightness(1);
  }
  30% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5);
  }
  70% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes brightness {
  0% {
    filter: brightness(1);
  }
  30% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(2);
  }
  70% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes brightness--medium {
  0% {
    filter: brightness(1);
  }
  30% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(3);
  }
  70% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1);
  }
}

.s-index .a-about h3 {
  position: relative;
  width: fit-content;
  margin-bottom: .8rem;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h3 {
    margin-bottom: 1rem;
    font-size: 4.4rem;
  }
}

.s-index .a-about h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 52%;
  left: 126%;
  transform: translate(-50%, -50%);
  width: 3.6rem;
  height: 2.2rem;
  border-radius: calc(infinity * .1rem);
  background: rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h3:before {
    width: 5.6rem;
    height: 3.6rem;
  }
}

.s-index .a-about h3:after {
  content: '';
  display: block;
  position: absolute;
  top: 52%;
  left: 126%;
  transform: translate(-50%, -50%);
  width: .5rem;
  height: .8rem;
  background: var(--base-text-color);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h3:after {
    width: .6rem;
    height: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h3 + p {
    font-size: 1.8rem;
  }
}

.s-index .a-technology {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-technology {
    grid-template-columns: auto 50%;
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-technology hgroup + p {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-technology hgroup + p {
    max-width: 58rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-technology h2 {
    margin-bottom: 2.4rem;
  }
}

.s-index .a-technology h2 + p {
  margin-bottom: 3rem;
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .s-index .a-technology h2 + p {
    margin-bottom: 4rem;
    font-size: 5rem;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-technology figure {
    margin-right: -5rem;
    margin-left: -5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-technology figure {
    margin-top: 3rem;
    margin-left: -1rem;
    margin-right: -3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-technology figure {
    margin-top: 4rem;
    margin-right: -6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-technology figure {
    margin-top: -9rem;
    margin-bottom: -7rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-technology figure {
    margin-right: -1rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-technology figure {
    transform: translate(-5rem, 0);
    margin-top: -10rem;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-technology figure {
    transform: translate(2rem, 0);
    margin-top: -12rem;
  }
}

.s-index .a-technology svg {
  display: block;
  width: 100%;
  height: auto;
}

.s-index .a-technology .cloud {
  animation: brightness--small 5s infinite linear;
}

.s-index .a-technology .quantum {
  animation: brightness--small 5s infinite 1s linear;
}

.s-index .a-technology .line {
  animation: brightness 5s infinite 2s linear;
}

.s-index .a-partner {
  display: grid;
  gap: 4rem;
  position: relative;
}

@media screen and (max-width: 599px) {
  .s-index .a-partner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-partner > div:nth-of-type(1) {
    position: relative;
    z-index: 2;
    width: 100%;
  }
}

.s-index .a-partner h2 {
  gap: 0;
}

@media screen and (max-width: 599px) {
  .s-index .a-partner h2 {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner h2 {
    margin-bottom: 2.4rem;
  }
}

.s-index .a-partner h2 + p {
  font-size: 1.2rem;
}

@media screen and (max-width: 599px) {
  .s-index .a-partner h2 + p {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner h2 + p {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-partner .swiper {
    position: absolute;
    top: 50%;
    left: 73%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-partner .swiper {
    left: 76%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-partner .swiper {
    left: 71%;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-partner .swiper {
    left: 70%;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-partner .swiper {
    left: 68%;
  }
}

@media screen and (min-width: 1664px) {
  .s-index .a-partner .swiper {
    left: 69%;
  }
}

@media screen and (min-width: 1792px) {
  .s-index .a-partner .swiper {
    left: 72%;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-partner .swiper {
    left: 74%;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-partner .swiper {
    left: 80%;
  }
}

.s-index .p-articles {
  overflow: visible;
  margin-bottom: 3.6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .p-articles {
    margin-bottom: 5rem;
  }
}

.s-index .p-articles .swiper-slide {
  width: 95.52238805%;
}

@media screen and (min-width: 600px) {
  .s-index .p-articles .swiper-slide {
    width: 32rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .p-articles .swiper-slide {
    width: 44rem;
  }
}

.s-index .p-articles .swiper-slide a, .s-index .p-articles .swiper-slide div {
  display: block;
  min-height: 22rem;
  padding: 2.4rem 2rem 4.4rem;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .p-articles .swiper-slide a, .s-index .p-articles .swiper-slide div {
    min-height: 30rem;
    padding: 4rem 3.2rem 6rem;
  }
}

.s-index .p-articles .swiper-slide a:before, .s-index .p-articles .swiper-slide div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.s-index .p-articles .swiper-slide a:after, .s-index .p-articles .swiper-slide div:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(196, 167, 101, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.s-index .p-articles .swiper-slide a:active:not(:disabled), .s-index .p-articles .swiper-slide a:hover:not(:disabled) {
  box-shadow: 0 0 3rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.s-index .p-articles .swiper-slide a:active:not(:disabled):before, .s-index .p-articles .swiper-slide a:hover:not(:disabled):before {
  opacity: 0;
  transition-duration: 0.25s;
}

.s-index .p-articles .swiper-slide a:active:not(:disabled):after, .s-index .p-articles .swiper-slide a:hover:not(:disabled):after {
  opacity: 1;
  transition-duration: 0.25s;
}

.s-index .p-articles .swiper-slide a:active:not(:disabled) svg, .s-index .p-articles .swiper-slide a:hover:not(:disabled) svg {
  opacity: 1;
  transform: translate(0, 0);
  transition-duration: 0.25s;
}

@media screen and (min-width: 1024px) {
  .s-index .p-articles .swiper-slide h3 {
    font-size: 1.8rem;
  }
}

.s-index .p-articles .swiper-slide p:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 2.4rem;
  right: 2rem;
  width: fit-content;
  color: var(--sub-text-color);
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .p-articles .swiper-slide p:nth-of-type(2) {
    bottom: 3.8rem;
    right: 3.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .p-articles .swiper-slide svg {
    opacity: 0;
    transform: translate(-1rem, 0);
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

.s-index .p-buttons-wrap {
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-index .p-buttons-wrap {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
  }
}

@media screen and (max-width: 599px) {
  .s-index .p-buttons-wrap > div {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .s-index .p-buttons-wrap > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    width: fit-content;
  }
}

.s-index .p-buttons-wrap > div div {
  position: relative;
  right: auto !important;
  left: auto !important;
}

.s-index .a-news {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .s-index .a-news {
    padding-bottom: 11rem;
  }
}

.s-index .a-news:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4rem);
  height: .1rem;
  background: rgba(139, 146, 185, 0.3);
}

@media screen and (max-width: 1023px) {
  .s-index .a-publications {
    padding-bottom: 20rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-publications {
    padding-top: 11rem;
  }
}

.s-index .a-publications h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-publications h3 {
    font-size: 2rem;
  }
}

.s-index .a-publications h3:has(.number) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
}

.s-index .a-demonstration h2 {
  margin-right: auto;
  margin-left: auto;
}

.s-index .a-demonstration > p {
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration > p {
    font-size: 1.6rem;
  }
}

.s-index .a-demonstration .swiper {
  overflow: visible;
  padding-bottom: 5rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-demonstration .swiper {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration .swiper {
    margin-top: -7rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.s-index .a-demonstration .swiper-slide {
  opacity: .4;
  transform: scale(0.8);
  width: calc(100% - 4rem);
  filter: blur(0.5rem);
  transition: opacity 1000ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 1000ms cubic-bezier(0.215, 0.61, 0.355, 1), filter 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.s-index .a-demonstration .swiper-slide a {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 2rem;
  min-height: 46rem;
  padding: 1.6rem 1.6rem 4.4rem;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(123, 185, 255, 0.1), rgba(123, 185, 255, 0.03));
  pointer-events: none;
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration .swiper-slide a {
    min-height: 62rem;
    padding: 2.4rem 2.4rem 6.4rem;
    border-radius: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-demonstration .swiper-slide a {
    grid-template-rows: none;
    grid-template-columns: 55.68720379% 1fr;
    gap: 3.79146919%;
    min-height: auto;
    padding: 2.4rem 3.55555555% 2.4rem 2.4rem;
  }
}

.s-index .a-demonstration .swiper-slide a:active:not(:disabled), .s-index .a-demonstration .swiper-slide a:hover:not(:disabled) {
  box-shadow: 0 0 3rem 0 rgba(58, 114, 239, 0.8);
}

.s-index .a-demonstration .swiper-slide a:active:not(:disabled) svg, .s-index .a-demonstration .swiper-slide a:hover:not(:disabled) svg {
  opacity: 1;
  transform: translate(0, 0);
  transition-duration: 0.25s;
}

.s-index .a-demonstration .swiper-slide a:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration .swiper-slide a:before {
    border-radius: 1.6rem;
  }
}

.s-index .a-demonstration .swiper-slide a:after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(196, 167, 101, 0.8), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration .swiper-slide a:after {
    border-radius: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-demonstration .swiper-slide div {
    height: 100%;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-demonstration .swiper-slide div {
    padding-top: 4rem;
  }
}

.s-index .a-demonstration .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.s-index .a-demonstration .swiper-slide-active a {
  box-shadow: 0 0 2rem 0 rgba(228, 205, 154, 0.15);
  pointer-events: visible;
}

.s-index .a-demonstration .swiper-slide-active a:before {
  opacity: 0;
  transition-duration: 0.25s;
}

.s-index .a-demonstration .swiper-slide-active a:after {
  opacity: 1;
  transition-duration: 0.25s;
}

.s-index .a-demonstration figure {
  overflow: hidden;
  position: relative;
  border-radius: .4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration figure {
    border-radius: .8rem;
  }
}

.s-index .a-demonstration figure:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .4rem;
  background: linear-gradient(to bottom, rgba(182, 152, 117, 0.2), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration figure:before {
    border-radius: .8rem;
  }
}

.s-index .a-demonstration picture {
  height: 100%;
}

.s-index .a-demonstration img {
  object-fit: cover;
  width: 100%;
  height: 65.6vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-demonstration img {
    height: 33.52033312vw;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration img {
    height: 34.10904255vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-demonstration img {
    height: 19.51005651vw;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-demonstration img {
    height: 19.56305722vw;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-demonstration img {
    height: 19.65101950vw;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-demonstration img {
    height: 19.79166666vw;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-demonstration img {
    height: 19.93221908vw;
  }
}

.s-index .a-demonstration h3 {
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration h3 {
    font-size: 2.2rem;
  }
}

.s-index .a-demonstration p:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 2.4rem;
  right: 2rem;
  width: fit-content;
  color: var(--sub-text-color);
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration p:nth-of-type(2) {
    bottom: 3.8rem;
    right: 4.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration svg {
    opacity: 0;
    transform: translate(-1rem, 0);
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-demonstration .swiper-button-prev,
  .s-index .a-demonstration .swiper-button-next {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration .swiper-button-next {
    right: 10%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-demonstration .swiper-button-prev {
    left: 10%;
  }
}

_::-webkit-full-page-media, _:future, :root .s-index .a-mv .png {
  display: revert !important;
}

_::-webkit-full-page-media, _:future, :root .s-index .a-mv .svg {
  display: none !important;
}

/*------------------------------------------------------------
  news
------------------------------------------------------------*/
/*------------------------------------------------------------
  about
------------------------------------------------------------*/
.s-about .a-about > div > div {
  position: relative;
}

.s-about .a-about > div > div > img:nth-of-type(1) {
  position: absolute;
  top: 0%;
  left: 118%;
  transform: translate(-50%, -50%);
  width: 57%;
}

@media screen and (min-width: 600px) {
  .s-about .a-about > div > div > img:nth-of-type(1) {
    top: 10%;
    left: 101%;
    width: 29%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about > div > div > img:nth-of-type(1) {
    top: 3%;
    left: 104%;
    width: 32.94117647%;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-about > div > div > img:nth-of-type(1) {
    left: 98%;
  }
}

.s-about .a-about > div > div > img:nth-of-type(2) {
  position: absolute;
  top: 47%;
  left: -23%;
  transform: translate(-50%, -50%);
  width: 61%;
}

@media screen and (min-width: 600px) {
  .s-about .a-about > div > div > img:nth-of-type(2) {
    top: 37%;
    left: -4%;
    width: 32%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about > div > div > img:nth-of-type(2) {
    top: 27%;
    left: -8%;
    width: 35.88235294%;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-about > div > div > img:nth-of-type(2) {
    left: -3%;
  }
}

.s-about .a-about h2 {
  position: relative;
  width: fit-content;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about h2 {
    margin-bottom: 3rem;
    font-size: 7.2rem;
  }
}

.s-about .a-about h2 + p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about h2 + p {
    margin-bottom: -1rem;
    font-size: 2.2rem;
  }
}

.s-about .a-about h2 + p + div {
  overflow: hidden;
  display: grid;
  place-content: center;
  margin-bottom: -12rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about h2 + p + div {
    margin-bottom: -32rem;
  }
}

.s-about .a-about h2 + p + div img {
  width: auto;
  max-width: none;
  height: 20rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about h2 + p + div img {
    height: 54.5rem;
  }
}

.s-about .a-about article {
  display: grid;
  gap: 3rem;
  position: relative;
  padding: 3rem 2rem;
  border-radius: .8rem;
  background: linear-gradient(to bottom, #000651, var(--primary-color));
}

@media screen and (min-width: 1024px) {
  .s-about .a-about article {
    gap: 4.66666666%;
    padding: 6rem 4.66666666%;
    border-radius: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-about article {
    grid-template-columns: 50% 1fr;
    padding: 9rem 4.66666666%;
  }
}

@media screen and (min-width: 1920px) {
  .s-about .a-about article {
    align-items: center;
  }
}

.s-about .a-about article:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .3rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

@media screen and (min-width: 1024px) {
  .s-about .a-about article:before {
    padding: .6rem;
    border-radius: 1.6rem;
  }
}

.s-about .a-about article:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: .3rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (min-width: 1024px) {
  .s-about .a-about article:after {
    height: .6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-about a {
    margin-left: 0;
  }
}

.s-about .p-bg-wrap picture {
  height: 105%;
}

.s-about .a-embodiment > div {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-embodiment > div {
    grid-template-columns: auto 50%;
    gap: 0;
    align-items: start;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-embodiment figure {
    margin-left: -1rem;
    margin-right: -3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-embodiment figure {
    margin-right: -5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-embodiment figure {
    transform: translate(5rem, 0);
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1366px) {
  .s-about .a-embodiment figure {
    transform: translate(6rem, 0);
  }
}

@media screen and (min-width: 1536px) {
  .s-about .a-embodiment figure {
    transform: translate(10rem, 0);
  }
}

@media screen and (min-width: 1920px) {
  .s-about .a-embodiment figure {
    transform: translate(16rem, 0);
  }
}

.s-about .a-embodiment figure div {
  position: relative;
}

.s-about .a-embodiment figure div:before {
  content: '';
  display: block;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  background: linear-gradient(30deg, rgba(46, 62, 206, 0.35), rgba(70, 195, 249, 0.35));
  filter: blur(3rem);
}

@media screen and (min-width: 1024px) {
  .s-about .a-embodiment figure div:before {
    width: 102%;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-embodiment figure div:before {
    left: 0;
    transform: translate(0, -50%);
    width: 54rem;
  }
}

@media screen and (max-width: 1279px) {
  .s-about .a-embodiment svg {
    display: block;
    width: 100%;
    height: auto;
  }
}

.s-about .a-embodiment path {
  animation: brightness 5s infinite linear;
}

.s-about .a-strength {
  position: relative;
}

.s-about .a-strength > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.s-about .a-strength > picture img {
  width: 100%;
  height: 100%;
}

.s-about .a-strength > div:nth-of-type(1) div {
  position: relative;
  padding: 4rem 2rem;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
}

@media screen and (min-width: 600px) {
  .s-about .a-strength > div:nth-of-type(1) div {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-strength > div:nth-of-type(1) div {
    padding-top: 12rem;
    padding-bottom: 12rem;
    border-radius: 1.6rem;
  }
}

.s-about .a-strength > div:nth-of-type(1) div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

@media screen and (min-width: 1024px) {
  .s-about .a-strength > div:nth-of-type(1) div:before {
    padding: .3rem;
    border-radius: 1.6rem;
  }
}

.s-about .a-strength h2 + p {
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-about .a-strength h2 + p {
    font-size: 3.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-outline tbody {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 0 5.33333333%;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-outline tr {
    display: grid;
    grid-template-columns: 28.16901408% 1fr;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-outline th {
    width: 100%;
  }
}

/*------------------------------------------------------------
  members
------------------------------------------------------------*/
.s-members .a-members > div {
  display: grid;
  gap: 6rem;
}

@media screen and (min-width: 600px) {
  .s-members .a-members > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-members .a-members > div {
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem 3.515625%;
  }
}

@media screen and (min-width: 1280px) {
  .s-members .a-members > div {
    gap: 10rem 3.05084745%;
  }
}

@media screen and (min-width: 1366px) {
  .s-members .a-members > div {
    grid-template-columns: repeat(4, 1fr);
    gap: 10rem 2.4%;
  }
}

@media screen and (min-width: 1280px) {
  .s-members .a-members > div:before {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
    content: '';
  }
}

.s-members .a-members article > p,
.s-members .a-members article > div > p {
  position: relative;
  padding-left: 1.3rem;
  font-size: 1.3rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .s-members .a-members article > p,
  .s-members .a-members article > div > p {
    padding-left: 2rem;
    font-size: 1.4rem;
  }
}

.s-members .a-members article > p:before,
.s-members .a-members article > div > p:before {
  content: '';
  display: block;
  position: absolute;
  top: 1.3rem;
  left: .3rem;
  transform: translate(-50%, -50%);
  width: .6rem;
  height: .6rem;
  border-radius: 100%;
  background: linear-gradient(to bottom, #c4a764, rgba(255, 230, 174, 0.2));
}

@media screen and (min-width: 1024px) {
  .s-members .a-members article > p:before,
  .s-members .a-members article > div > p:before {
    top: 1.45rem;
    left: .4rem;
    width: .8rem;
    height: .8rem;
  }
}

.s-members .a-members figure {
  margin-bottom: 2.4rem;
}

.s-members .a-members figure img {
  object-fit: cover;
  width: 100%;
  height: 103.1728vw;
  border-radius: .4rem;
}

@media screen and (min-width: 600px) {
  .s-members .a-members figure img {
    height: 50.97864583vw;
  }
}

@media screen and (min-width: 1024px) {
  .s-members .a-members figure img {
    height: 32.29521484vw;
    border-radius: .8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-members .a-members figure img {
    height: 33.32398437vw;
  }
}

@media screen and (min-width: 1366px) {
  .s-members .a-members figure img {
    height: 24.83243045vw;
  }
}

@media screen and (min-width: 1536px) {
  .s-members .a-members figure img {
    height: 25.04934895vw;
  }
}

@media screen and (min-width: 1920px) {
  .s-members .a-members figure img {
    height: 20.93302083vw;
    max-height: 40.1914rem;
  }
}

.s-members .a-members h2 {
  display: grid;
  margin-bottom: 2.4rem;
}

.s-members .a-members h2 span:nth-of-type(1) {
  margin-bottom: -.4rem;
  font-size: 3.5rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.s-members .a-members h2 span:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (min-width: 600px) {
  .s-members .a-members .modal {
    display: grid;
    grid-template-columns: 36.72316384% 1fr;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-members .a-members .modal {
    grid-template-columns: 36.79653679% 1fr;
    gap: 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-members .a-members .modal {
    grid-template-columns: 35.5rem 1fr;
  }
}

@media screen and (min-width: 1536px) {
  .s-members .a-members .modal {
    gap: 3.84615384%;
  }
}

@media screen and (min-width: 1920px) {
  .s-members .a-members .modal {
    gap: 5%;
  }
}

@media screen and (min-width: 600px) {
  .s-members .a-members .modal figure img {
    height: 39.09908854vw;
  }
}

@media screen and (min-width: 1024px) {
  .s-members .a-members .modal figure img {
    height: 38.346875vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-members .a-members .modal figure img {
    height: 41rem;
  }
}

.s-members .a-members .modal h2 span:nth-of-type(1) {
  font-size: 4.4rem;
}

@media screen and (min-width: 1024px) {
  .s-members .a-members .modal h2 span:nth-of-type(1) {
    font-size: 5rem;
  }
}

.s-members .a-members th {
  width: 9rem;
}

@media screen and (min-width: 1024px) {
  .s-members .a-members th {
    width: 13rem;
  }
}

/*------------------------------------------------------------
  technology
------------------------------------------------------------*/
.s-technology .a-outline {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-technology .a-outline {
    grid-template-columns: auto 50%;
    gap: 0;
  }
}

.s-technology .a-outline h2 + p {
  margin-bottom: 3rem;
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.7;
}

@media screen and (min-width: 1024px) {
  .s-technology .a-outline h2 + p {
    margin-bottom: 4rem;
    font-size: 5rem;
  }
}

@media screen and (max-width: 599px) {
  .s-technology .a-outline figure {
    margin-right: -5rem;
    margin-left: -5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-technology .a-outline figure {
    margin-top: 3rem;
    margin-left: -1rem;
    margin-right: -3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-technology .a-outline figure {
    margin-top: 4rem;
    margin-right: -6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-technology .a-outline figure {
    margin-top: -9rem;
    margin-bottom: -7rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-technology .a-outline figure {
    margin-right: -2rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-technology .a-outline figure {
    margin-top: -10rem;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1920px) {
  .s-technology .a-outline figure {
    transform: translate(4rem, 0);
    margin-top: -12rem;
  }
}

.s-technology .a-outline svg {
  display: block;
  width: 100%;
  height: auto;
}

.s-technology .a-outline .cloud {
  animation: brightness--small 5s infinite linear;
}

.s-technology .a-outline .quantum {
  animation: brightness--small 5s infinite 1s linear;
}

.s-technology .a-outline .line {
  animation: brightness 5s infinite 2s linear;
}

.s-technology .p-bg-wrap picture {
  top: -2%;
  height: 105%;
}

@media screen and (min-width: 1024px) {
  .s-technology .p-bg-wrap picture {
    height: 110%;
  }
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility > p {
    margin-bottom: 0rem;
  }
}

.s-technology .a-possibility section {
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-technology .a-possibility section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility section {
    gap: 18rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-technology .a-possibility section {
    gap: 26rem;
  }
}

@media screen and (min-width: 600px) {
  .s-technology .a-possibility section:nth-of-type(2n) figure {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 600px) {
  .s-technology .a-possibility section:last-child p:nth-of-type(1):after {
    content: none;
  }
}

@media screen and (max-width: 599px) {
  .s-technology .a-possibility section div {
    margin-top: -2rem;
  }
}

.s-technology .a-possibility section p:nth-of-type(1) {
  display: grid;
  place-items: center;
  position: relative;
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
  border-radius: 100%;
  background: linear-gradient(to bottom, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
  box-shadow: inset 0 0 2.6rem 0 #c4d6ff;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 600px) {
  .s-technology .a-possibility section p:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility section p:nth-of-type(1) {
    width: 12rem;
    height: 12rem;
    border-width: .3rem;
    font-size: 4rem;
  }
}

.s-technology .a-possibility section p:nth-of-type(1):before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .2rem;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility section p:nth-of-type(1):before {
    padding: .3rem;
  }
}

.s-technology .a-possibility section p:nth-of-type(1):after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 10rem;
  transform: translate(0, -50%);
  width: 290%;
  height: .1rem;
  background: rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 600px) {
  .s-technology .a-possibility section p:nth-of-type(1):after {
    top: 15rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: .1rem;
    height: 360%;
  }
}

.s-technology .a-possibility section p:nth-of-type(2) {
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility section p:nth-of-type(2) {
    font-size: 1.8rem;
  }
}

.s-technology .a-possibility figure {
  transform: scale(1.2);
}

.s-technology .a-possibility svg {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility svg {
    margin-bottom: -10rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-technology .a-possibility svg {
    margin-top: -4rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-technology .a-possibility svg {
    margin-top: -10rem;
  }
}

.s-technology .a-possibility path, .s-technology .a-possibility circle:not([r="6"]) {
  animation: brightness 5s infinite linear;
}

.s-technology .a-possibility h3 {
  display: grid;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility h3 {
    margin-bottom: 3rem;
  }
}

.s-technology .a-possibility h3 span:nth-of-type(1) {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility h3 span:nth-of-type(1) {
    font-size: 2.2rem;
  }
}

.s-technology .a-possibility h3 span:nth-of-type(2) {
  font-size: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-technology .a-possibility h3 span:nth-of-type(2) {
    font-size: 4rem;
  }
}

.s-technology .a-members {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 600px) {
  .s-technology .a-members {
    grid-template-columns: 1fr 50%;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-technology .a-members {
    gap: 5.88235294%;
  }
}

/*------------------------------------------------------------
  career
------------------------------------------------------------*/
.s-career .a-career > p {
  margin-top: -2rem;
}

@media screen and (min-width: 1024px) {
  .s-career .a-career > p {
    margin-top: -4rem;
  }
}

.s-career .a-career > div > div:nth-of-type(1) {
  display: grid;
}

@media screen and (max-width: 599px) {
  .s-career .a-career > div > div:nth-of-type(1) {
    gap: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-career .a-career > div > div:nth-of-type(1) {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.s-career .a-career > div > div:nth-of-type(2) {
  position: relative;
}

.s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(1) {
  position: absolute;
  top: 30%;
  left: 118%;
  transform: translate(-50%, -50%);
  width: 57%;
}

@media screen and (min-width: 600px) {
  .s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(1) {
    top: 20%;
    left: 106%;
    width: 29%;
  }
}

@media screen and (min-width: 1024px) {
  .s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(1) {
    top: 22%;
    left: 110%;
    width: 46.66666666%;
  }
}

@media screen and (min-width: 1920px) {
  .s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(1) {
    left: 115%;
  }
}

.s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(2) {
  position: absolute;
  top: 67%;
  left: -23%;
  transform: translate(-50%, -50%);
  width: 61%;
}

@media screen and (min-width: 600px) {
  .s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(2) {
    left: -10%;
    width: 32%;
  }
}

@media screen and (min-width: 1024px) {
  .s-career .a-career > div > div:nth-of-type(2) > picture:nth-of-type(2) {
    top: 66%;
    left: -16%;
    width: 50.83333333%;
  }
}

.s-career .a-career h2 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.7;
}

@media screen and (min-width: 1024px) {
  .s-career .a-career h2 {
    font-size: 3.6rem;
  }
}

.s-career .a-desired-candidate > div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-career .a-desired-candidate > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
}

@media screen and (min-width: 1280px) {
  .s-career .a-desired-candidate > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.4rem;
  }
}

.s-career .a-desired-candidate section {
  display: block;
  position: relative;
  height: 100%;
  padding: 2rem 2rem 3rem;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
}

@media screen and (min-width: 600px) {
  .s-career .a-desired-candidate section {
    width: calc(50% - 1.5rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-career .a-desired-candidate section {
    width: calc(50% - 1.7rem);
    padding: 3rem 4rem 4rem;
    border-radius: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-career .a-desired-candidate section {
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .s-career .a-desired-candidate section:nth-of-type(3n+2) {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-career .a-desired-candidate section:nth-of-type(3n+2) {
    margin-left: 3.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-career .a-desired-candidate section:nth-of-type(3n+2) {
    margin-left: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-career .a-desired-candidate section:nth-of-type(n+3) {
    margin-top: 3.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-career .a-desired-candidate section:nth-of-type(n+3) {
    margin-top: 0;
  }
}

.s-career .a-desired-candidate section:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

@media screen and (min-width: 1024px) {
  .s-career .a-desired-candidate section:before {
    padding: .2rem;
    border-radius: 1.6rem;
  }
}

.s-career .a-desired-candidate section > p:nth-of-type(1) {
  opacity: .6;
  position: absolute;
  top: .9rem;
  left: 1.2rem;
  color: var(--sub-text-color);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-career .a-desired-candidate section > p:nth-of-type(1) {
    top: 1.6rem;
    left: 2.2rem;
    font-size: 1.6rem;
  }
}

.s-career .a-desired-candidate section div {
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2.6rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-career .a-desired-candidate section div {
    min-height: 26.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-career .a-desired-candidate section div {
    margin-bottom: 3rem;
  }
}

.s-career .a-desired-candidate section div:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem;
  height: 24rem;
  border-radius: 100%;
  background: linear-gradient(30deg, rgba(46, 62, 206, 0.35), rgba(70, 195, 249, 0.35));
  filter: blur(4rem);
}

.s-career .a-desired-candidate svg {
  display: block;
  position: relative;
}

.s-career .a-desired-candidate path {
  animation: brightness 5s infinite linear;
}

.s-career .a-desired-candidate h3 {
  margin-right: -1rem;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-career .a-desired-candidate h3 {
    margin-bottom: 2rem;
    font-size: 3.6rem;
  }
}

.s-career .a-work-environment > div > div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-career .a-work-environment > div > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

.s-career .a-work-environment section {
  display: grid;
  gap: 2.4rem;
  place-content: start;
  position: relative;
  padding: 1.4rem;
  border-radius: .8rem;
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment section {
    gap: 4rem;
    padding: 2rem;
    border-radius: 1.6rem;
  }
}

.s-career .a-work-environment section:nth-of-type(1) {
  background: linear-gradient(to bottom, rgba(56, 189, 255, 0.15), rgba(56, 189, 255, 0));
}

.s-career .a-work-environment section:nth-of-type(2) {
  background: linear-gradient(to bottom, rgba(146, 157, 255, 0.15), rgba(146, 157, 255, 0));
}

.s-career .a-work-environment section:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .8rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment section:before {
    border-radius: 1.6rem;
  }
}

.s-career .a-work-environment section div {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment section div {
    padding-right: 7%;
    padding-left: 7%;
  }
}

.s-career .a-work-environment figure {
  overflow: hidden;
  position: relative;
  margin-bottom: 0 !important;
  border-radius: .4rem;
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment figure {
    border-radius: .8rem;
  }
}

.s-career .a-work-environment figure:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  padding: .1rem;
  width: 100%;
  height: 100%;
  border-radius: .4rem;
  background: linear-gradient(to bottom, rgba(182, 152, 117, 0.2), rgba(255, 255, 255, 0.1));
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment figure:before {
    border-radius: .8rem;
  }
}

.s-career .a-work-environment figcaption {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin-top: 0 !important;
  padding: .6rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment figcaption {
    top: 2rem;
    right: 2rem;
    padding: .8rem 1.2rem;
  }
}

.s-career .a-work-environment h3 {
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-career .a-work-environment h3 {
    margin-bottom: 1.6rem;
    font-size: 3.6rem;
  }
}

/*------------------------------------------------------------
  publications
------------------------------------------------------------*/
.s-publications .a-publications .p-articles article {
  display: grid;
  gap: .6rem;
  padding: 4rem 1rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 1024px) {
  .s-publications .a-publications .p-articles article {
    gap: 1rem;
    padding: 6rem 2rem;
  }
}

.s-publications .a-publications .p-articles article > div:has(.number) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-publications .a-publications .p-articles article > div:has(.number) {
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-publications .a-publications .p-articles article > div:has(.number) {
    gap: 2.4%;
  }
}

.s-publications .a-publications .p-articles article > div p, .s-publications .a-publications .p-articles article > div h3 {
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-publications .a-publications .p-articles article > div p, .s-publications .a-publications .p-articles article > div h3 {
    font-size: 2.2rem;
  }
}

/*------------------------------------------------------------
  demonstration
------------------------------------------------------------*/
/*------------------------------------------------------------
  contact
------------------------------------------------------------*/
.s-contact .a-tel section {
  padding: 3.4rem 3.4rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 2rem 0 rgba(72, 147, 237, 0.3);
}

@media screen and (min-width: 600px) {
  .s-contact .a-tel section {
    display: grid;
    grid-template-columns: 22% 1fr;
    padding: 5rem 9%;
  }
}

@media screen and (min-width: 1024px) {
  .s-contact .a-tel section {
    grid-template-columns: 25% 1fr;
    padding: 7rem 10%;
  }
}

@media screen and (min-width: 1280px) {
  .s-contact .a-tel section {
    grid-template-columns: 32% 1fr;
    padding: 7rem 16%;
  }
}

.s-contact .a-tel div {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-tel div {
    gap: 1.4rem;
  }
}

.s-contact .a-tel p:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .6rem;
  width: fit-content;
  line-height: 1;
}

.s-contact .a-tel a {
  background-position: right bottom;
  background-size: 0% .1rem;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "Afacad", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-tel a {
    font-size: 4rem;
  }
}

.s-contact .a-tel a:active:not(:disabled), .s-contact .a-tel a:hover:not(:disabled) {
  background-position: left bottom;
  background-size: 100% .1rem;
}

.s-contact .a-tel a + span {
  display: inline-block;
  transform: translate(0, 0.2rem);
}

@media screen and (min-width: 1024px) {
  .s-contact .a-tel a + span {
    transform: translate(0, 0.3rem);
  }
}

/*------------------------------------------------------------
  privacy
------------------------------------------------------------*/
/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.u-dis-none {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .u-sm-dis-none {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-dis-none {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-md-dis-none {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-dis-none {
    display: none !important;
  }
}

.u-dis-block {
  display: block !important;
}

.u-dis-ib {
  display: inline-block !important;
}

.u-of-hidden {
  overflow: hidden;
}

.u-pos-relative {
  position: relative;
}

.u-before-con-none:before {
  content: none !important;
}

.u-after-con-none:after {
  content: none !important;
}

.u-opa-0 {
  opacity: 0;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-auto {
  margin-right: auto;
}

.u-ml-auto {
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .u-md-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mr-0 {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mr-0 {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ml-0 {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ml-0 {
    margin-left: 0 !important;
  }
}

.u-mt-xxxs {
  margin-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxxs {
    margin-top: 1rem !important;
  }
}

.u-mt-xxs {
  margin-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxs {
    margin-top: 2rem !important;
  }
}

.u-mt-xs {
  margin-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xs {
    margin-top: 4rem !important;
  }
}

.u-mt-small {
  margin-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-small {
    margin-top: 6rem !important;
  }
}

.u-mt-medium {
  margin-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-medium {
    margin-top: 8rem !important;
  }
}

.u-mt-large {
  margin-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 14rem !important;
  }
}

.u-mt-xl {
  margin-top: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xl {
    margin-top: 18rem !important;
  }
}

.u-mt-minus-xxxs {
  margin-top: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxxs {
    margin-top: -1rem !important;
  }
}

.u-mt-minus-xxs {
  margin-top: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxs {
    margin-top: -2rem !important;
  }
}

.u-mt-minus-xs {
  margin-top: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xs {
    margin-top: -4rem !important;
  }
}

.u-mt-minus-small {
  margin-top: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-small {
    margin-top: -6rem !important;
  }
}

.u-mt-minus-medium {
  margin-top: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-medium {
    margin-top: -8rem !important;
  }
}

.u-mt-minus-large {
  margin-top: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-large {
    margin-top: -14rem !important;
  }
}

.u-mb-xxxs {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxxs {
    margin-bottom: 1rem !important;
  }
}

.u-mb-xxs {
  margin-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxs {
    margin-bottom: 2rem !important;
  }
}

.u-mb-xs {
  margin-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xs {
    margin-bottom: 4rem !important;
  }
}

.u-mb-small {
  margin-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-small {
    margin-bottom: 6rem !important;
  }
}

.u-mb-medium {
  margin-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-medium {
    margin-bottom: 8rem !important;
  }
}

.u-mb-large {
  margin-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 14rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xl {
    margin-bottom: 18rem !important;
  }
}

.u-mb-minus-xxxs {
  margin-bottom: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxxs {
    margin-bottom: -1rem !important;
  }
}

.u-mb-minus-xxs {
  margin-bottom: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxs {
    margin-bottom: -2rem !important;
  }
}

.u-mb-minus-xs {
  margin-bottom: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xs {
    margin-bottom: -4rem !important;
  }
}

.u-mb-minus-small {
  margin-bottom: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-small {
    margin-bottom: -6rem !important;
  }
}

.u-mb-minus-medium {
  margin-bottom: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-medium {
    margin-bottom: -8rem !important;
  }
}

.u-mb-minus-large {
  margin-bottom: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-large {
    margin-bottom: -14rem !important;
  }
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pt-xxxs {
  padding-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxxs {
    padding-top: 1rem !important;
  }
}

.u-pt-xxs {
  padding-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxs {
    padding-top: 2rem !important;
  }
}

.u-pt-xs {
  padding-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xs {
    padding-top: 4rem !important;
  }
}

.u-pt-small {
  padding-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-small {
    padding-top: 6rem !important;
  }
}

.u-pt-medium {
  padding-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-medium {
    padding-top: 8rem !important;
  }
}

.u-pt-large {
  padding-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 14rem !important;
  }
}

.u-pt-xl {
  padding-top: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xl {
    padding-top: 18rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pt-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xxxs {
  padding-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxxs {
    padding-bottom: 1rem !important;
  }
}

.u-pb-xxs {
  padding-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxs {
    padding-bottom: 2rem !important;
  }
}

.u-pb-xs {
  padding-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xs {
    padding-bottom: 4rem !important;
  }
}

.u-pb-small {
  padding-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-small {
    padding-bottom: 6rem !important;
  }
}

.u-pb-medium {
  padding-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-medium {
    padding-bottom: 8rem !important;
  }
}

.u-pb-large {
  padding-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 14rem !important;
  }
}

.u-pb-xl {
  padding-bottom: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xl {
    padding-bottom: 18rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pb-0 {
    padding-bottom: 0 !important;
  }
}

.u-br-xs {
  border-radius: .4rem;
}

@media screen and (min-width: 1024px) {
  .u-br-xs {
    border-radius: .8rem;
  }
}

.u-br-small {
  border-radius: .8rem;
}

@media screen and (min-width: 1024px) {
  .u-br-small {
    border-radius: 1.6rem;
  }
}

.u-br-medium {
  border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
  .u-br-medium {
    border-radius: 4rem;
  }
}

.u-col-white {
  color: var(--white);
}

.u-col-gray {
  color: #555;
}

.u-col-black {
  color: var(--black);
}

.u-col-blue {
  color: var(--blue);
}

.u-col-green {
  color: var(--green);
}

.u-col-yellow {
  color: #EEBF18;
}

.u-col-red {
  color: #E63D5B;
}

.u-col-primary {
  color: var(--primary-color);
}

.u-col-secondary {
  color: var(--secondary-color);
}

.u-fs-0 {
  font-size: 0;
}

.u-fs-xs {
  font-size: .85714285em;
}

@media screen and (min-width: 1024px) {
  .u-fs-xs {
    font-size: .8125em;
  }
}

.u-fs-small {
  font-size: .92857142em;
}

@media screen and (min-width: 1024px) {
  .u-fs-small {
    font-size: .875em;
  }
}

.u-fs-medium {
  font-size: 1.07142857em;
}

@media screen and (min-width: 1024px) {
  .u-fs-medium {
    font-size: 1.125em;
  }
}

.u-fs-large {
  font-size: 1.14285714em;
}

@media screen and (min-width: 1024px) {
  .u-fs-large {
    font-size: 1.25em;
  }
}

.u-fw-100 {
  font-weight: 100;
}

.u-fw-200 {
  font-weight: 200;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

.u-lh-xxs {
  line-height: .4;
}

.u-lh-xs {
  line-height: .8;
}

.u-lh-1 {
  line-height: 1;
}

.u-lh-small {
  line-height: 1.2;
}

.u-lh-medium {
  line-height: 1.6;
}

.u-lh-large {
  line-height: 2;
}

.u-lh-xl {
  line-height: 2.4;
}

.u-lh-xxl {
  line-height: 2.8;
}

.u-ls-minus-large {
  letter-spacing: -.12em;
}

.u-ls-minus-medium {
  letter-spacing: -.08em;
}

.u-ls-minus-small {
  letter-spacing: -.04em;
}

.u-ls-0 {
  letter-spacing: 0;
}

.u-ls-small {
  letter-spacing: .04em;
}

.u-ls-medium {
  letter-spacing: .08em;
}

.u-ls-large {
  letter-spacing: .12em;
}

.u-ls-xl {
  letter-spacing: .16em;
}

.u-ls-xxl {
  letter-spacing: .2em;
}

@media screen and (min-width: 600px) {
  .u-md-ls-0 {
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ls-0 {
    letter-spacing: 0;
  }
}

.u-ta-center {
  text-align: center !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-center {
    text-align: center !important;
  }
}

.u-ta-right {
  text-align: right !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-right {
    text-align: right !important;
  }
}

.u-ta-left {
  text-align: left !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-left {
    text-align: left !important;
  }
}

.u-ws-nowrap {
  white-space: nowrap;
}

.u-pe-none {
  pointer-events: none !important;
}

/*
  other
*/
.u-blue-gradation {
  background: linear-gradient(to bottom, #edf1ff 0%, #edf1ff 20%, #afb7e2 80%, #afb7e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-gold-gradation {
  background: linear-gradient(to bottom, #e4cd9a 0%, #c4a765 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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