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

html {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
  font-size: 0.69444vw;
  font-size: clamp(6px, 0.69444vw, 10px);
}
@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 0.9765vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.30208vw;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 1.7361vw;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #000;
  word-break: break-all;
}
@media (max-width: 576px) {
  body {
    font-size: 1.8rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

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

a {
  /* color: inherit; */
  color: #fff;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

hr {
  height: 0;
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.2;
}

button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  padding: 0;
  border: 0;
  background: transparent;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
[role=button] {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.container {
  max-width: 1440px;
  padding: 0 5rem;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}

.text-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#093028), to(#237A57));
  background: linear-gradient(90deg, #093028 0%, #237A57 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-40 {
  font-size: 4rem;
}

.text-38 {
  font-size: 3.8rem;
}
@media (max-width: 768px) {
  .text-38 {
    font-size: 24px;
  }
}

.text-34 {
  font-size: 3.4rem;
}
@media (max-width: 768px) {
  .text-34 {
    font-size: 28px;
  }
}

.text-30 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .text-30 {
    font-size: 24px;
  }
}

.text-30-sp {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .text-30-sp {
    font-size: 20px;
  }
}

.text-28 {
  font-size: 2.8rem;
}

.text-24 {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .text-24 {
    font-size: 20px;
  }
}

.text-20 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .text-20 {
    font-size: 20px;
  }
}

.text-18 {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .text-18 {
    font-size: 18px;
  }
}

.text-white {
  color: white;
}

.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.text-18-sp {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .text-18-sp {
    font-size: 15px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gradient-bg {
  background: radial-gradient(ellipse 147% 100% at center, #003b79 0%, #000c63 100%);
}

@property --fv-reveal {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@-webkit-keyframes fv-semicircle-reveal {
  from {
    --fv-reveal: 0px;
  }
  to {
    --fv-reveal: 160vmax;
  }
}
@keyframes fv-semicircle-reveal {
  from {
    --fv-reveal: 0px;
  }
  to {
    --fv-reveal: 160vmax;
  }
}
.fv-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #ffffff;
  pointer-events: auto;
  --fv-reveal: 0px;
  -webkit-mask-image: radial-gradient(circle at 100% 0%, transparent var(--fv-reveal), #000 calc(var(--fv-reveal) + 1px));
  mask-image: radial-gradient(circle at 100% 0%, transparent var(--fv-reveal), #000 calc(var(--fv-reveal) + 1px));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.fv-intro.is-revealing {
  -webkit-animation: fv-semicircle-reveal 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fv-semicircle-reveal 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fv-intro.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

body.is-intro {
  overflow: hidden;
}

@-webkit-keyframes fv-content-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fv-content-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#first-view {
  position: relative;
  width: 100%;
  min-height: 1000px;
  padding: 128px 0 56px;
  opacity: 1;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 1024px) {
  #first-view {
    padding-top: 104px;
    min-height: 100vh;
  }
}
@media (max-width: 576px) {
  #first-view {
    padding: 96px 0 48px;
  }
}
#first-view.is-revealed {
  pointer-events: all;
}
#first-view.is-revealed:not(.is-content-animated) .first-view__inner .first-view__content > * {
  -webkit-animation: fv-content-fade-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fv-content-fade-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#first-view.is-revealed:not(.is-content-animated) .first-view__inner .first-view__content > *:nth-child(1) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
#first-view.is-revealed:not(.is-content-animated) .first-view__inner .first-view__content > *:nth-child(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#first-view.is-revealed:not(.is-content-animated) .first-view__inner .first-view__content > *:nth-child(3) {
  -webkit-animation-delay: 1.45s;
          animation-delay: 1.45s;
}
#first-view.is-revealed:not(.is-content-animated) .first-view__inner .first-view__content > *:nth-child(4) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
#first-view::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets_top/images/kv_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(55%, #000), color-stop(90%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 90%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(55%, #000), color-stop(90%, transparent));
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 90%);
}
#first-view .first-view__inner {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 2;
}
#first-view .first-view__inner .first-view__content {
  width: 55%;
}
#first-view .first-view__inner .first-view__content > * {
  opacity: 0;
}
#first-view .first-view__inner .first-view__content h1 {
  /* font-family: shin-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(60px, 4.81vw + 10.77px, 80px);
  font-size: clamp(48px, 3.85vw + 8.62px, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0;
}
#first-view .first-view__inner .first-view__content h3 {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 1.68vw + 12.8px, 37px);
  font-size: clamp(24px, 1.34vw + 10.24px, 30px);
  font-weight: 700;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: 0;
}
#first-view .first-view__inner .first-view__content p {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
}
#first-view .first-view__inner .first-view__content .first-view__btn {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #3177CD;
  background-color: #fff;
  padding: 12px 24px;
  border-radius: 35px;
  width: 256px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #first-view .first-view__inner .first-view__content .first-view__btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 17px;
    font-size: 14px;
  }
}
#first-view .first-view__inner .first-view__content .first-view__btn:hover {
  background-color: #fff;
  color: #000;
}
#first-view .first-view__inner .first-view__content .first-view__ourstory {
  width: 100%;
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
}
#first-view .first-view__inner .first-view__content .first-view__ourstory h3 {
  font-size: 24px;
}
#first-view .first-view__inner .first-view__content .first-view__ourstory p {
  font-size: 18px;
}
#first-view .first-view__inner .first-view__content .first-view__ourstory.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 1024px) {
  #first-view .first-view__inner .first-view__content {
    width: 70%;
  }
  #first-view .first-view__inner .first-view__content h1 {
    font-size: 60px;
  }
  #first-view .first-view__inner .first-view__content h3 {
    font-size: 30px;
  }
  #first-view .first-view__inner .first-view__content p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #first-view .first-view__inner .first-view__content {
    width: 100%;
  }
  #first-view .first-view__inner .first-view__content h1 {
    font-size: 48px;
  }
  #first-view .first-view__inner .first-view__content h3 {
    font-size: 26px;
  }
  #first-view .first-view__inner .first-view__content p {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media (max-width: 576px) {
  #first-view .first-view__inner .first-view__content h1 {
    font-size: 36px;
  }
  #first-view .first-view__inner .first-view__content h3 {
    font-size: 21px;
    margin-bottom: 18px;
  }
  #first-view .first-view__inner .first-view__content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  #first-view .first-view__inner .first-view__content .first-view__btn {
    width: 100%;
    max-width: 256px;
    height: 56px;
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  #first-view .first-view__inner .first-view__content h1 {
    font-size: 30px;
  }
  #first-view .first-view__inner .first-view__content h3 {
    font-size: 18px;
  }
}

#performance {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
#performance .performance__nebula {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 0;
  pointer-events: none;
}
#performance .performance__nebula--left-top {
  top: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#performance .performance__nebula--left-bottom {
  bottom: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
#performance .performance__nebula--right-top {
  top: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#performance .performance__nebula--right-bottom {
  bottom: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
#performance .performance__earth {
  position: absolute;
  top: 50%;
  right: -7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(900px, 66vw);
  aspect-ratio: 1/1;
  z-index: 1;
  pointer-events: none;
  -webkit-perspective: 2000px;
          perspective: 2000px;
}
@media (max-width: 768px) {
  #performance .performance__earth {
    width: 75%;
  }
}
#performance .performance__earth .performance__earth-globe {
  position: absolute;
  inset: 0;
}
#performance .performance__earth .performance__earth-globe canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
#performance .performance__earth .performance__earth-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#performance .performance__inner {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  height: 100dvh;
  width: 100%;
  padding-top: 128px;
  padding-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 1024px) {
  #performance .performance__inner {
    padding-top: 104px;
  }
}
@media (max-width: 576px) {
  #performance .performance__inner {
    padding: 96px 0 48px;
  }
}
#performance .performance__inner .performance__content {
  max-width: 55rem;
  width: 100%;
}
#performance .performance__inner .performance__content h2 {
  /* font-family: kozuka-bold; */
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: clamp(56px, 6.73vw - 12.9px, 84px);
  font-size: clamp(45px, 5.38vw - 10.32px, 67px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  #performance .performance__inner .performance__content h2 {
    font-size: 45px;
    text-align: center;
  }
}
#performance .performance__inner .performance__content .performance__subtitle {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  #performance .performance__inner .performance__content .performance__subtitle {
    text-align: center;
  }
}
@media (max-width: 768px) {
  #performance .performance__inner .performance__content .performance__subtitle {
    font-size: 18px;
  }
}
#performance .performance__inner .performance__content .performance__list {
  position: relative;
  width: min(560px, 85%);
  min-height: 440px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  #performance .performance__inner .performance__content .performance__list {
    width: 100%;
    min-height: 300px;
  }
}
#performance .performance__inner .performance__content .performance__list .performance__item {
  width: 100%;
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-img {
  width: 32rem;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  #performance .performance__inner .performance__content .performance__list .performance__item .performance__item-img {
    margin-bottom: 10px;
  }
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-title {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-text {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.08em;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-text .performance__value-slot {
  position: relative;
  display: inline-block;
  height: 1em;
  overflow: hidden;
  line-height: 1;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-text .performance__value-reel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-text .performance__value-cell {
  display: block;
  height: 1em;
  line-height: 1;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-text .performance__value-unit {
  font-size: 38px;
  font-size: 30px;
  line-height: 1;
}
#performance .performance__inner .performance__content .performance__list .performance__item .performance__item-text-sub {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

@-webkit-keyframes solution-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes solution-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#platform {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
#platform .platform__nebula {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 0;
  pointer-events: none;
}
#platform .platform__nebula--left-top {
  top: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#platform .platform__nebula--left-bottom {
  bottom: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
#platform .platform__nebula--right-top {
  top: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#platform .platform__nebula--right-bottom {
  bottom: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
#platform .platform__marquee {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#platform .platform__marquee .platform__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: solution-marquee 55s linear infinite;
          animation: solution-marquee 55s linear infinite;
  will-change: transform;
}
#platform .platform__marquee .platform__marquee-track span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0.45em;
  /* font-family: futura-regular; */
  font-family: "Jost", sans-serif;
  font-size: 146px;
  font-size: 117px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, right top, from(rgba(120, 150, 230, 0.18)), color-stop(70%, rgba(160, 180, 255, 0.5)), to(rgba(200, 220, 255, 0.62)));
  background: linear-gradient(90deg, rgba(120, 150, 230, 0.18) 0%, rgba(160, 180, 255, 0.5) 70%, rgba(200, 220, 255, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  #platform .platform__marquee .platform__marquee-track span {
    font-size: 90px;
    font-size: 72px;
  }
}
#platform .platform__inner {
  position: relative;
  z-index: 2;
}
#platform .platform__inner .platform__head .platform__title {
  /* font-family: kozuka-bold; */
  font-family: "Jost", sans-serif;
  font-size: 80px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__head .platform__title {
    font-size: 56px;
    font-size: 45px;
    text-align: center;
  }
}
#platform .platform__inner .platform__head .platform__subtitle {
  margin-top: 16px;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__head .platform__subtitle {
    font-size: 18px;
    font-size: 14px;
    text-align: center;
  }
}
#platform .platform__inner .platform__flow {
  position: relative;
  margin-top: 40px;
}
#platform .platform__inner .platform__flow::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 16.8rem;
  height: 72.4rem;
  background-image: url(../images/platform_stream.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__flow::before {
    left: 50%;
    right: unset;
  }
}
#platform .platform__inner .platform__flow::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 16.8rem;
  height: 72.4rem;
  background-image: url(../images/platform_stream.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__flow::after {
    left: 50%;
    right: unset;
  }
}
#platform .platform__inner .platform__flow .platform__step {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 400px;
  gap: 40px;
}
#platform .platform__inner .platform__flow .platform__step + .platform__step {
  margin-top: 96px;
}
@media (max-width: 1024px) {
  #platform .platform__inner .platform__flow .platform__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    flex-direction: column;
    min-height: auto;
  }
  #platform .platform__inner .platform__flow .platform__step + .platform__step {
    margin-top: 64px;
  }
}
#platform .platform__inner .platform__flow .platform__step .platform__step-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  #platform .platform__inner .platform__flow .platform__step .platform__step-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__step-title {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__step-title {
    font-size: 22px;
    font-size: 18px;
    text-align: center;
  }
}
#platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__step-desc {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__step-desc {
    font-size: 18px;
    font-size: 14px;
    text-align: center;
  }
}
#platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 256px;
  height: 62px;
  padding: 0 24px;
  margin-top: 20px;
  border-radius: 999px;
  background-color: #fff;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #3177CD;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 17px;
    font-size: 14px;
    margin: 20px auto 0;
  }
}
#platform .platform__inner .platform__flow .platform__step .platform__step-text .platform__btn:hover {
  opacity: 0.88;
}
#platform .platform__inner .platform__flow .platform__step .platform__step-art {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#platform .platform__inner .platform__flow .platform__step .platform__step-art img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  #platform .platform__inner .platform__flow .platform__step .platform__step-art {
    width: 78%;
    max-width: 420px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#platform .platform__inner .platform__flow .platform__step--1 .platform__step-art img:nth-child(1) {
  width: 14.7rem;
  height: auto;
}
#platform .platform__inner .platform__flow .platform__step--1 .platform__step-art img:nth-child(2) {
  width: auto;
  height: 25rem;
}
#platform .platform__inner .platform__flow .platform__step--2 {
  margin-top: 500px;
}
#platform .platform__inner .platform__flow .platform__step--2 .platform__step-art img {
  width: auto;
  height: 27.5rem;
}
@media (max-width: 768px) {
  #platform .platform__inner .platform__flow .platform__step--2 .platform__step-art img {
    width: auto;
    height: 18rem;
  }
}
#platform .platform__inner .platform__flow .platform__step--3 .platform__step-art img {
  width: auto;
  height: 34rem;
}

#solution {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
@-webkit-keyframes solutionCardZoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale(1.35);
            transform: scale(1.35);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes solutionCardZoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale(1.35);
            transform: scale(1.35);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#solution .solution-card-zoom-out {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  visibility: hidden;
}
#solution .solution-card-zoom-out.animated {
  visibility: visible;
  -webkit-animation-name: solutionCardZoomOut;
          animation-name: solutionCardZoomOut;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media (max-width: 1024px) {
  #solution {
    padding-bottom: 80px;
  }
}
#solution .solution__nebula {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 0;
  pointer-events: none;
}
#solution .solution__nebula--left-top {
  top: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#solution .solution__nebula--left-bottom {
  bottom: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
#solution .solution__nebula--right-top {
  top: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#solution .solution__nebula--right-bottom {
  bottom: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
@media (max-width: 768px) {
  #solution .solution__nebula--left-bottom, #solution .solution__nebula--right-top, #solution .solution__nebula--right-bottom {
    display: none;
  }
  #solution .solution__nebula--left-top {
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
#solution .solution__marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#solution .solution__marquee .solution__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: solution-marquee 70s linear infinite;
          animation: solution-marquee 70s linear infinite;
  will-change: transform;
}
#solution .solution__marquee .solution__marquee-track span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0.35em;
  /* font-family: futura-regular; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 146px;
  font-size: 117px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, right top, from(rgba(120, 150, 230, 0.18)), color-stop(70%, rgba(160, 180, 255, 0.5)), to(rgba(200, 220, 255, 0.62)));
  background: linear-gradient(90deg, rgba(120, 150, 230, 0.18) 0%, rgba(160, 180, 255, 0.5) 70%, rgba(200, 220, 255, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  #solution .solution__marquee .solution__marquee-track span {
    font-size: 90px;
    font-size: 72px;
  }
}
#solution .solution__inner {
  position: relative;
  z-index: 2;
}
#solution .solution__inner .solution__title {
  margin-top: 10px;
  text-align: center;
  /* font-family: kozuka-bold; */
  font-family: "Jost", sans-serif;
  font-size: 84px;
  font-size: 67px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 1024px) {
  #solution .solution__inner .solution__title {
    font-size: 56px;
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  #solution .solution__inner .solution__title {
    font-size: 44px;
    font-size: 35px;
  }
}
#solution .solution__inner .solution__subtitle {
  width: 100%;
  margin: 0 auto 48px;
  text-align: center;
  /* font-family: kozuka-bold; */
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 768px) {
  #solution .solution__inner .solution__subtitle {
    font-size: 16px;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 0 8px;
  }
}
#solution .solution__inner .solution__stage {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 200px);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  #solution .solution__inner .solution__stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    min-height: auto;
    padding: 32px 0 56px;
  }
}
#solution .solution__inner .solution__stage .solution__visual {
  width: 100%;
  max-width: 110rem;
}
#solution .solution__inner .solution__stage .solution__visual img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#solution .solution__inner .solution__stage .solution__card {
  position: absolute;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  #solution .solution__inner .solution__stage .solution__card {
    position: static;
    z-index: auto;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}
#solution .solution__inner .solution__stage .solution__card--top-left {
  top: 6%;
  left: 0;
}
@media (max-width: 1024px) {
  #solution .solution__inner .solution__stage .solution__card--top-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
#solution .solution__inner .solution__stage .solution__card--bottom-left {
  bottom: 0;
  left: 8%;
}
@media (max-width: 1024px) {
  #solution .solution__inner .solution__stage .solution__card--bottom-left {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
#solution .solution__inner .solution__stage .solution__card--bottom-right {
  right: 23%;
  bottom: 10%;
  text-align: right;
}
@media (max-width: 1024px) {
  #solution .solution__inner .solution__stage .solution__card--bottom-right {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: center;
  }
}
#solution .solution__inner .solution__stage .solution__card .solution__card-lead {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #solution .solution__inner .solution__stage .solution__card .solution__card-lead {
    font-size: 14px;
    font-size: 11px;
    line-height: 1.65;
  }
}
#solution .solution__inner .solution__stage .solution__card .solution__card-title {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #solution .solution__inner .solution__stage .solution__card .solution__card-title {
    font-size: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
}
#solution .solution__inner .solution__stage .solution__card .solution__card-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 256px;
  height: 62px;
  padding: 0 24px;
  border-radius: 999px;
  background-color: #fff;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-weight: 700;
  color: #3177CD;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media (max-width: 768px) {
  #solution .solution__inner .solution__stage .solution__card .solution__card-btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 17px;
    font-size: 14px;
  }
}
#solution .solution__inner .solution__stage .solution__card .solution__card-btn:hover {
  opacity: 0.88;
}

#sdg {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
@-webkit-keyframes sdg-photo-gather {
  from {
    opacity: 0;
    -webkit-transform: translate(var(--sdg-start-x, 0), var(--sdg-start-y, 0)) scale(0.9);
            transform: translate(var(--sdg-start-x, 0), var(--sdg-start-y, 0)) scale(0.9);
  }
  to {
    opacity: var(--sdg-final-opacity, 1);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@keyframes sdg-photo-gather {
  from {
    opacity: 0;
    -webkit-transform: translate(var(--sdg-start-x, 0), var(--sdg-start-y, 0)) scale(0.9);
            transform: translate(var(--sdg-start-x, 0), var(--sdg-start-y, 0)) scale(0.9);
  }
  to {
    opacity: var(--sdg-final-opacity, 1);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
#sdg .sdg__nebula {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 0;
  pointer-events: none;
}
#sdg .sdg__nebula--left-top {
  top: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#sdg .sdg__nebula--left-bottom {
  bottom: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
#sdg .sdg__nebula--right-top {
  top: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
#sdg .sdg__nebula--right-bottom {
  bottom: 0;
  right: 0;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(28%, #000));
  mask-image: linear-gradient(to top, transparent 0%, #000 28%);
}
@media (max-width: 768px) {
  #sdg {
    padding-bottom: 60px;
  }
}
#sdg .sdg__marquee {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
}
#sdg .sdg__marquee .sdg__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: solution-marquee 90s linear infinite;
          animation: solution-marquee 90s linear infinite;
  will-change: transform;
}
#sdg .sdg__marquee .sdg__marquee-track span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0.35em;
  /* font-family: futura-regular; */
  font-family: "Jost","Noto Sans JP", sans-serif;
  font-size: 146px;
  font-size: 117px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, right top, from(rgba(120, 150, 230, 0.18)), color-stop(70%, rgba(160, 180, 255, 0.5)), to(rgba(200, 220, 255, 0.62)));
  background: linear-gradient(90deg, rgba(120, 150, 230, 0.18) 0%, rgba(160, 180, 255, 0.5) 70%, rgba(200, 220, 255, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  #sdg .sdg__marquee .sdg__marquee-track span {
    font-size: 90px;
    font-size: 72px;
  }
}
#sdg .sdg__inner {
  position: relative;
  z-index: 2;
}
#sdg .sdg__inner .sdg__title {
  margin: 0;
  text-align: center;
  /* font-family: kozuka-bold; */
  font-family: "Jost", sans-serif;
  font-size: 84px;
  font-size: 67px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  #sdg .sdg__inner .sdg__title {
    font-size: 56px;
    font-size: 45px;
  }
}
#sdg .sdg__inner .sdg__subtitle {
  margin: 20px 0 72px;
  text-align: center;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 768px) {
  #sdg .sdg__inner .sdg__subtitle {
    font-size: 18px;
    font-size: 14px;
    margin-bottom: 48px;
  }
}
#sdg .sdg__inner .sdg__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1024px) {
  #sdg .sdg__inner .sdg__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 56px;
  }
}
#sdg .sdg__inner .sdg__body .sdg__content {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  #sdg .sdg__inner .sdg__body .sdg__content {
    width: 100%;
  }
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__lead {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  #sdg .sdg__inner .sdg__body .sdg__content .sdg__lead {
    font-size: 22px;
    font-size: 18px;
  }
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__text {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #sdg .sdg__inner .sdg__body .sdg__content .sdg__text {
    font-size: 16px;
    font-size: 13px;
  }
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__note {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 36px;
  color: white;
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__goals {
  position: relative;
  max-width: 41rem;
  margin: 0 auto 36px;
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__goals img {
  width: 100%;
  height: auto;
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__goal {
  width: 54px;
  height: 54px;
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__goal img {
  display: block;
  width: 100%;
  height: 100%;
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 256px;
  height: 62px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 999px;
  background-color: #fff;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #3177CD;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
#sdg .sdg__inner .sdg__body .sdg__content .sdg__btn:hover {
  opacity: 0.88;
}
#sdg .sdg__inner .sdg__body .sdg__gallery {
  position: relative;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 540px;
}
@media (max-width: 1024px) {
  #sdg .sdg__inner .sdg__body .sdg__gallery {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    min-height: 480px;
  }
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  will-change: transform, opacity;
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo--1 {
  top: 0;
  left: 46%;
  width: 30%;
  aspect-ratio: 3/2;
  --sdg-final-opacity: 0.55;
  --sdg-start-x: 72px;
  --sdg-start-y: -56px;
  z-index: 1;
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo--2 {
  top: 14%;
  left: 8%;
  width: 40%;
  aspect-ratio: 3/2;
  --sdg-final-opacity: 0.55;
  --sdg-start-x: -88px;
  --sdg-start-y: -48px;
  z-index: 2;
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo--3 {
  top: 34%;
  left: 20%;
  width: 56%;
  aspect-ratio: 3/2;
  --sdg-start-x: -96px;
  --sdg-start-y: 40px;
  z-index: 4;
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo--4 {
  top: 26%;
  right: 0;
  width: 34%;
  aspect-ratio: 3/2;
  --sdg-start-x: 92px;
  --sdg-start-y: -32px;
  z-index: 3;
}
#sdg .sdg__inner .sdg__body .sdg__gallery .sdg__photo--5 {
  bottom: 0;
  right: 4%;
  width: 50%;
  aspect-ratio: 3/2;
  --sdg-start-x: 80px;
  --sdg-start-y: 64px;
  z-index: 5;
}
#sdg .sdg__inner .sdg__body .sdg__gallery.is-animated .sdg__photo {
  -webkit-animation: sdg-photo-gather 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: sdg-photo-gather 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#sdg .sdg__inner .sdg__body .sdg__gallery.is-animated .sdg__photo--1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#sdg .sdg__inner .sdg__body .sdg__gallery.is-animated .sdg__photo--2 {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
#sdg .sdg__inner .sdg__body .sdg__gallery.is-animated .sdg__photo--3 {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
#sdg .sdg__inner .sdg__body .sdg__gallery.is-animated .sdg__photo--4 {
  -webkit-animation-delay: 0.42s;
          animation-delay: 0.42s;
}
#sdg .sdg__inner .sdg__body .sdg__gallery.is-animated .sdg__photo--5 {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}
#sdg .sdg__inner .sdg__closing {
  text-align: center;
  margin-top: 140px;
}
@media (max-width: 1024px) {
  #sdg .sdg__inner .sdg__closing {
    margin-top: 96px;
  }
}
#sdg .sdg__inner .sdg__closing .sdg__closing-title {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  #sdg .sdg__inner .sdg__closing .sdg__closing-title {
    font-size: 22px;
  }
}
#sdg .sdg__inner .sdg__closing .sdg__closing-text {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  #sdg .sdg__inner .sdg__closing .sdg__closing-text {
    font-size: 16px;
    font-size: 13px;
  }
}
#sdg .sdg__inner .sdg__closing .sdg__closing-cta {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 66px;
  font-size: 53px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #sdg .sdg__inner .sdg__closing .sdg__closing-cta {
    font-size: 32px;
    font-size: 26px;
  }
}

#partners {
  position: relative;
  padding: 80px 0 60px 0;
}
@-webkit-keyframes partners-slide-in-x {
  from {
    opacity: 0;
    -webkit-transform: translateX(var(--partners-start-x, -96px));
            transform: translateX(var(--partners-start-x, -96px));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes partners-slide-in-x {
  from {
    opacity: 0;
    -webkit-transform: translateX(var(--partners-start-x, -96px));
            transform: translateX(var(--partners-start-x, -96px));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 768px) {
  #partners {
    padding: 64px 0 40px 0;
  }
}
#partners .partners__inner .partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  max-width: 99rem;
  margin: 0 auto;
}
#partners .partners__inner .partners__list .partners__item {
  width: 100%;
  opacity: 0;
  will-change: transform, opacity;
}
#partners .partners__inner .partners__list .partners__item:nth-child(odd) {
  --partners-start-x: -96px;
}
#partners .partners__inner .partners__list .partners__item:nth-child(even) {
  --partners-start-x: 96px;
}
#partners .partners__inner .partners__list .partners__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#partners .partners__inner .partners__list.is-animated .partners__item {
  -webkit-animation: partners-slide-in-x 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: partners-slide-in-x 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#partners .partners__inner .partners__list.is-animated .partners__item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#partners .partners__inner .partners__list.is-animated .partners__item:nth-child(2) {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
#partners .partners__inner .partners__list.is-animated .partners__item:nth-child(3) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
#partners .partners__inner .partners__list.is-animated .partners__item:nth-child(4) {
  -webkit-animation-delay: 0.42s;
          animation-delay: 0.42s;
}

#news {
  position: relative;
  width: 100%;
  padding: 92px 0 120px;
}
#news .news__inner {
  max-width: 1200px;
}
#news .news__inner .news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
#news .news__inner .news__head .news__title {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-size: 27px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
#news .news__inner .news__head .news__filter {
  position: relative;
  min-width: 160px;
}
#news .news__inner .news__head .news__filter::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #B3B3B3;
  border-bottom: 1.5px solid #B3B3B3;
  -webkit-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
#news .news__inner .news__head .news__filter select {
  width: 100%;
  height: 40px;
  border: 1px solid #B3B3B3;
  border-radius: 0;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 14px;
  color: #808080;
  padding: 0 36px 0 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
#news .news__inner .news__board .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 22px;
  padding: 28px 26px 24px;
  border-top: 1px solid #CCCCCC;
}
#news .news__inner .news__board .news__item:first-child {
  border-top: none;
}
#news .news__inner .news__board .news__item .news__date {
  width: 122px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
#news .news__inner .news__board .news__item .news__date span {
  font-size: 16px;
  font-size: 13px;
}
#news .news__inner .news__board .news__item .news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
#news .news__inner .news__board .news__item .news__body .news__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
#news .news__inner .news__board .news__item .news__body .news__tags span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  background-color: #E6E6E6;
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 11px;
  font-weight: 700;
  color: #808080;
  white-space: nowrap;
}
#news .news__inner .news__board .news__item .news__body .news__text {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  #news {
    padding: 64px 0 80px;
  }
  #news .news__inner .news__head .news__title {
    font-size: 28px;
    font-size: 22px;
  }
  #news .news__inner .news__board .news__item {
    padding: 24px 8px 22px;
    gap: 18px;
  }
  #news .news__inner .news__board .news__item .news__date {
    width: 104px;
    font-size: 20px;
    font-size: 16px;
  }
  #news .news__inner .news__board .news__item .news__date span {
    font-size: 15px;
    font-size: 12px;
  }
  #news .news__inner .news__board .news__item .news__body .news__text {
    font-size: 16px;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  #news {
    padding: 48px 0 64px;
  }
  #news .news__inner .news__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 8px;
  }
  #news .news__inner .news__head .news__title {
    font-size: 24px;
    font-size: 19px;
  }
  #news .news__inner .news__head .news__filter {
    min-width: 100%;
  }
  #news .news__inner .news__board .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 12px;
    padding: 20px 4px 18px;
  }
  #news .news__inner .news__board .news__item .news__date {
    width: auto;
    font-size: 16px;
    font-size: 13px;
  }
  #news .news__inner .news__board .news__item .news__date span {
    font-size: 13px;
    font-size: 10px;
  }
  #news .news__inner .news__board .news__item .news__body .news__tags {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  #news .news__inner .news__board .news__item .news__body .news__tags span {
    height: 24px;
    padding: 0 12px;
    font-size: 12px;
    font-size: 10px;
  }
  #news .news__inner .news__board .news__item .news__body .news__text {
    font-size: 15px;
    font-size: 12px;
    line-height: 1.6;
  }
}

#last-view {
  position: relative;
  width: 100%;
  padding: 92px 0 120px;
}
#last-view .last-view__inner .last-view__content .last-view__img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
#last-view .last-view__inner .last-view__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 80px;
  gap: 32px;
}
#last-view .last-view__inner .last-view__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#last-view .last-view__inner .last-view__item .last-view__item-img {
  width: 335px;
  height: 124px;
  overflow: hidden;
  margin-bottom: 20px;
}
#last-view .last-view__inner .last-view__item .last-view__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#last-view .last-view__inner .last-view__item .last-view__item-content .last-view__item-title {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
#last-view .last-view__inner .last-view__item .last-view__item-content .last-view__item-text {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
@media (max-width: 1024px) {
  #last-view .last-view__inner .last-view__list {
    gap: 24px;
  }
  #last-view .last-view__inner .last-view__item {
    width: 100%;
    max-width: 360px;
  }
  #last-view .last-view__inner .last-view__item .last-view__item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 335/124;
  }
}
@media (max-width: 768px) {
  #last-view {
    padding: 64px 0 80px;
  }
  #last-view .last-view__inner .last-view__content .last-view__img {
    height: 260px;
  }
  #last-view .last-view__inner .last-view__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-top: 48px;
    gap: 32px 24px;
  }
  #last-view .last-view__inner .last-view__item {
    width: calc(50% - 12px);
    max-width: none;
  }
}
@media (max-width: 576px) {
  #last-view {
    padding: 48px 0 64px;
  }
  #last-view .last-view__inner .last-view__content .last-view__img {
    height: 180px;
  }
  #last-view .last-view__inner .last-view__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-top: 36px;
    gap: 28px;
  }
  #last-view .last-view__inner .last-view__item {
    width: 100%;
  }
  #last-view .last-view__inner .last-view__item .last-view__item-img {
    margin-bottom: 14px;
  }
  #last-view .last-view__inner .last-view__item .last-view__item-content .last-view__item-title {
    font-size: 20px;
    font-size: 16px;
  }
  #last-view .last-view__inner .last-view__item .last-view__item-content .last-view__item-text {
    font-size: 16px;
    font-size: 13px;
  }
}

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

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
}
#header .header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px;
}
#header .header__inner .header__logo {
  width: 164px;
  z-index: 120;
}
#header .header__inner .header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  #header .header__inner .header__logo {
    width: 132px;
  }
}
#header .header__inner .header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
#header .header__inner .header__nav ul li a {
  /* font-family: kozuka-bold; */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
#header .header__inner .header__lang {
  position: absolute;
  top: 0;
  right: 116px;
}
#header .header__inner .header__lang a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
#header .header__toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 120;
}
#header .header__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
#header .header__overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(4, 8, 28, 0.55);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media (max-width: 1024px) {
  #header {
    padding: 12px 0;
  }
  #header .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header .header__inner .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 115;
    width: min(82vw, 340px);
    height: 100vh;
    height: 100dvh;
    padding: 104px 32px 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: -webkit-gradient(linear, left top, left bottom, from(#0a1a4a), to(#060f38));
    background: linear-gradient(180deg, #0a1a4a 0%, #060f38 100%);
    -webkit-box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
            box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
  #header .header__inner .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 28px;
  }
  #header .header__inner .header__nav ul li a {
    font-size: 20px;
  }
  #header .header__inner .header__nav .header__lang {
    position: static;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
#header.is-open .header__inner .header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#header.is-open .header__overlay {
  opacity: 1;
  visibility: visible;
}
#header.is-open .header__toggle span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
#header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}
#header.is-open .header__toggle span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

footer {
  background: #00246E;
  padding: 60px 0;
  margin-top: 150px;
}

@media (max-width: 991px) {
  footer {
    padding: 48px 0;
    margin-top: 80px;
  }
}
footer .footerInner {
  width: 90%;
  max-width: 1344px;
  margin: 0 auto;
}

footer .footerTopWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}

@media (max-width: 991px) {
  footer .footerTopWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
footer .footerTopWrap .addressWrap {
  width: 39.5833333333%;
}

@media (max-width: 991px) {
  footer .footerTopWrap .addressWrap {
    width: 100%;
  }
}
footer .footerTopWrap .addressWrap .addressBox {
  margin-top: 24px;
}

footer .footerTopWrap .addressWrap p {
  color: #fff;
}

footer .footerTopWrap .addressWrap p.addressTtl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}

footer .footerTopWrap .addressWrap p.addressTxt {
  font-size: 10px;
  line-height: 1.5em;
  margin-top: 16px;
}

footer .footerTopWrap .footerMenuWrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 991px) {
  footer .footerTopWrap .footerMenuWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
  }
}
@media (min-width: 992px) {
  footer .footerTopWrap .footerMenuWrap .footerMenuList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 32px;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li {
    line-height: 0;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li > a {
    color: #fff;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li .spSubMenuList {
    display: block !important;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li .spSubMenuList > li {
    margin-top: 24px;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li .spSubMenuList > li a {
    color: #D1D5DB;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 600;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li .spSubMenuList > li a.top {
    display: none;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li .subsMenuList > li {
    margin-top: 16px;
    padding-left: 15px;
  }
  footer .footerTopWrap .footerMenuWrap .footerMenuList > li .subsMenuList > li a {
    color: #D1D5DB;
    font-size: 12px;
    line-height: 1.2em;
    font-weight: 500;
  }
}
@media (max-width: 991px) {
  footer .footerTopWrap .footerMenuWrap .subsMenuList {
    display: none;
  }
}
footer .footerBtmWrap {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 991px) {
  footer .footerBtmWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 24px;
  }
}
footer .footerBtmWrap small {
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  color: #fff;
}

footer .footerBtmWrap .utilityList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

@media (max-width: 991px) {
  footer .footerBtmWrap .utilityList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 16px;
  }
}
footer .footerBtmWrap .utilityList li {
  line-height: 0;
}

footer .footerBtmWrap .utilityList li a {
  color: #fff;
  line-height: 1;
  font-size: 11px;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */
