@charset "UTF-8";
/* -------------------------------------------------------------
//  メディアクエリ
// ------------------------------------------------------------*/
/* -------------------------------------------------------------
//  コンテナクエリ
// ------------------------------------------------------------*/
/* -------------------------------------------------------------
//  css変数
// ------------------------------------------------------------*/
:root {
  --list-wrap-height: 0;
}

@keyframes section-cube-float {
  from {
    transform: translate3d(-12px, 18px, 0) rotate(-6deg);
  }
  to {
    transform: translate3d(16px, -30px, 0) rotate(6deg);
  }
}
@keyframes fv-scroll-arrow {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
button {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

ul,
ol {
  list-style-type: none;
}

em,
i,
strong,
th,
address {
  font-style: normal;
  /*text-align: left;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
object,
embed {
  border: 0;
  vertical-align: top;
}

hr {
  border: 0;
  height: 1px;
  background: #cccccc;
  margin: 1em 0;
  clear: both;
  width: 100%;
}

li {
  list-style-type: none;
}

area {
  outline: none !important;
  border: none !important;
}

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

input[type=submit],
input[type=button],
input[type=text],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

html {
  color: #251d1b;
  line-height: 1.6;
  color: #251d1b;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 104;
  display: flex;
  align-items: stretch;
  min-height: 96px;
  background: #fff;
}
.l-header__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(24px, 2.5vw, 48px);
  color: #111;
}
.l-header__brand--fixed {
  display: none;
}
.l-header__brandInner {
  width: fit-content;
}
.l-header__brandMark {
  display: grid;
  flex: 0 0 auto;
  place-items: center start;
  width: 71px;
  height: 51px;
  padding-right: 18px;
  border-right: 1px solid #b8b8b8;
}
.l-header__brandMark img {
  display: block;
  width: 71px;
  height: 51px;
  aspect-ratio: 88/95;
}
.l-header__brandName {
  display: block;
  flex: 0 0 auto;
  font-size: clamp(18px, 0.999rem + 0.52vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.l-header__brandName img {
  display: block;
  width: 144px;
  height: auto;
  aspect-ratio: 900/250;
}
@media screen and (max-width: 1280px) {
  .l-header__brandName img {
    width: 100px;
  }
}
.l-header__nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
.l-header__navList {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 1.9vw, 48px);
  padding-right: 20px;
}
.l-header__navList a {
  position: relative;
  display: grid;
  min-height: 72px;
  place-items: center;
  color: #004ea2;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.l-header__navList a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #e60012;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.l-header__navList a:is(:hover, :focus-visible) {
  color: #003b7d;
}
.l-header__navList a:is(:hover, :focus-visible)::after {
  width: 36px;
}
.l-header__english {
  display: flex;
  flex: 0 0 136px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  margin-left: clamp(20px, 1.7vw, 40px);
  background: #004ea2;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.25s ease;
}
.l-header__english:is(:hover, :focus-visible) {
  background: #003b7d;
}
.l-header__english--fixed {
  display: none;
}
.l-header__englishIcon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}
.l-header__sp {
  display: none;
}
.l-header__spOverlay {
  display: none;
}
@media screen and (max-width: 1280px) {
  .l-header {
    min-height: 72px;
  }
  .l-header__brandMark {
    width: 71px;
    height: 36px;
  }
  .l-header__brandMark img {
    width: 71px;
    height: 36px;
  }
  .l-header__brand {
    padding-inline: 24px;
  }
  .l-header__brandName {
    font-size: 20px;
  }
  .l-header__navList {
    gap: 20px;
  }
  .l-header__navList a {
    font-size: 13px;
  }
  .l-header__english {
    flex-basis: 120px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: none;
  }
  .l-header__english {
    display: none;
  }
  .l-header__spOverlay {
    position: fixed;
    z-index: 98;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }
  .l-header__spOverlay.-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s ease, visibility 0s;
  }
  .l-header__sp {
    position: fixed;
    z-index: 99;
    top: 51px;
    right: 0;
    left: auto;
    width: 85%;
    display: block;
    visibility: hidden;
    overflow-y: auto;
    min-height: calc(100dvh - 50px);
    max-height: calc(100dvh - 50px);
    pointer-events: none;
    opacity: 0;
    background: #fff;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    border-left: 15px solid #004ea2;
  }
  .l-header__sp.-active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
  }
  .l-header__spList {
    border-top: 1px solid #eeeeee;
  }
  .l-header__spList li + li {
    border-top: 1px solid #eeeeee;
  }
  .l-header__spList a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 80px;
    padding: 0 20px;
    color: #004ea2;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    transition: color 0.25s ease, background-color 0.25s ease;
  }
  .l-header__spList a span {
    position: relative;
    display: inline-block;
    width: 11em;
    text-align: center;
  }
  .l-header__spList a span::after {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #e60012;
    transition: width 0.25s ease;
  }
  .l-header__spList a:is(:hover, :focus-visible) {
    color: #003b7d;
    background-color: rgba(0, 78, 162, 0.06);
  }
  .l-header__spList a:is(:hover, :focus-visible) span::after {
    width: 36px;
  }
  .l-header__spEnglish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 72px;
    background: #004ea2;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.25s ease;
  }
  .l-header__spEnglish:is(:hover, :focus-visible) {
    background: #003b7d;
  }
}
@media screen and (max-width: 767px) {
  .l-header__brand {
    gap: 12px;
    padding-inline: 16px;
  }
  .l-header__brand--fixed {
    min-height: 72px;
  }
  .l-header__brandName {
    padding-left: 12px;
    font-size: 16px;
  }
  .l-header__english {
    flex-basis: 100px;
    min-height: 72px;
    margin-left: auto;
    font-size: 14px;
  }
  .l-header__englishIcon {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 479px) {
  .l-header__brandName {
    font-size: 14px;
  }
  .l-header__english {
    flex-basis: 86px;
    gap: 5px;
  }
}

.l-hamburger {
  display: none;
}

@media screen and (max-width: 1023px) {
  .l-hamburger {
    position: relative;
    display: grid;
    flex: 0 0 51px;
    min-height: 51px;
    place-items: center;
    padding: 0;
    border: 0;
    margin-left: auto;
    background: #004ea2;
    cursor: pointer;
    transition: background-color 0.25s ease;
  }
  .l-hamburger:is(:hover, :focus-visible) {
    background: #003b7d;
  }
  .l-hamburger span {
    position: absolute;
    width: 34px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .l-hamburger span:nth-child(1) {
    transform: translateY(-10px);
  }
  .l-hamburger span:nth-child(3) {
    transform: translateY(10px);
  }
  .l-hamburger.-active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .l-hamburger.-active span:nth-child(2) {
    opacity: 0;
  }
  .l-hamburger.-active span:nth-child(3) {
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    flex-basis: 51px;
    min-height: 51px;
  }
  .l-hamburger span {
    width: 30px;
  }
}
body.is-top-page .l-header {
  position: fixed;
  inset: 0 0 auto;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  min-height: 56px;
  transform: translateY(-100%);
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
}
body.is-top-page .l-header .l-header__navList a,
body.is-top-page .l-header .l-header__english {
  min-height: 51px;
}
@media screen and (max-width: 1280px) {
  body.is-top-page .l-header {
    min-height: 50px;
  }
  body.is-top-page .l-header .l-header__navList a,
  body.is-top-page .l-header .l-header__english {
    min-height: 50px;
  }
}
body.is-top-page .l-header.-show {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s;
}
body.is-top-page .l-header__brand--fixed {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  min-height: 56px;
  width: calc(100% - clamp(120px, 10.625vw, 136px));
  background: #fff;
  transition: background-color 0.35s ease, width 0.35s ease, min-height 0.35s ease, top 0.35s ease;
}
@media screen and (max-width: 1280px) {
  body.is-top-page .l-header__brand--fixed {
    min-height: 51px;
  }
}
body.is-top-page .l-header__brand--fixed .l-header__brandMark {
  transition: height 0.35s ease;
}
body.is-top-page .l-header__brand--fixed img {
  transition: width 0.35s ease, height 0.35s ease;
}
body.is-top-page .l-header__brand--fixed .l-header__brandName {
  font-size: 14px;
  transition: font-size 0.35s ease;
}
@media screen and (max-width: 1280px) {
  body.is-top-page .l-header__brand--fixed {
    width: calc(100% - 120px);
    min-height: 50px;
    padding-block: 0;
  }
  body.is-top-page .l-header__brand--fixed .l-header__brandMark {
    height: 40px;
  }
  body.is-top-page .l-header__brand--fixed .l-header__brandMark img {
    height: 40px;
  }
}
@media screen and (max-width: 1023px) {
  body.is-top-page .l-header__brand--fixed {
    width: 100%;
  }
}
body.is-top-page .l-header__brand--fixed.-withoutEnglish {
  width: 100%;
}
body.is-top-page .l-header__english--fixed {
  position: fixed;
  z-index: 105;
  top: 0;
  right: 0;
  display: flex;
  min-height: 56px;
  width: clamp(120px, 10.625vw, 136px);
  margin-left: 0;
  background: #004ea2;
  color: #fff;
  transition: background-color 0.25s ease, min-height 0.35s ease, top 0.35s ease;
}
body.is-top-page .l-header__english--fixed img {
  filter: none;
}
body.is-top-page .l-header__english--fixed:is(:hover, :focus-visible) {
  background: #003b7d;
}
@media screen and (max-width: 1280px) {
  body.is-top-page .l-header__english--fixed {
    width: 120px;
    min-height: 50px;
  }
}
@media screen and (max-width: 1023px) {
  body.is-top-page .l-header__english--fixed {
    display: none;
  }
}
body.is-top-page .l-header > .l-header__brand {
  visibility: hidden;
}
body.is-top-page .l-header > .l-header__english {
  visibility: hidden;
}

body.is-top-page:has(.l-header.-show) .l-header__brand--fixed {
  background: #fff;
  top: 0;
  width: fit-content;
}
body.is-top-page:has(.l-header.-show) .l-header__brand--fixed .l-header__brandMark {
  width: 71px;
  height: 51px;
}
body.is-top-page:has(.l-header.-show) .l-header__brand--fixed .l-header__brandMark img {
  width: 71px;
  height: 51px;
}
body.is-top-page:has(.l-header.-show) .l-header__brand--fixed .l-header__brandName {
  font-size: 14px;
}
@media screen and (max-width: 1280px) {
  body.is-top-page:has(.l-header.-show) .l-header__brand--fixed .l-header__brandMark {
    height: 40px;
  }
  body.is-top-page:has(.l-header.-show) .l-header__brand--fixed .l-header__brandMark img {
    height: 40px;
  }
}

body.is-top-page:has(.l-header.-show) .l-header__english--fixed {
  top: 0;
}

body.is-history-page .l-header {
  min-height: 56px;
}
body.is-history-page .l-header .l-header__navList a,
body.is-history-page .l-header .l-header__english {
  min-height: 51px;
}
@media screen and (max-width: 1280px) {
  body.is-history-page .l-header {
    min-height: 50px;
  }
  body.is-history-page .l-header .l-header__navList a,
  body.is-history-page .l-header .l-header__english {
    min-height: 50px;
  }
  body.is-history-page .l-header .l-header__brandMark {
    height: 40px;
  }
  body.is-history-page .l-header .l-header__brandMark img {
    height: 40px;
  }
}
@media screen and (max-width: 1023px) {
  body.is-history-page .l-header .l-hamburger {
    min-height: 51px;
  }
}

body.is-history-page .l-header__brandMark {
  width: 71px;
  height: 51px;
}
body.is-history-page .l-header__brandMark img {
  width: 71px;
  height: 51px;
}

body.is-history-page .l-header__brandName {
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  body.is-sp-nav-open .l-header {
    position: fixed;
    inset: 0 0 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.is-top-page .l-header,
  .l-header__navList a,
  .l-header__navList a::after,
  .l-header__english,
  .l-header__english span,
  body.is-top-page .l-header__brand--fixed,
  body.is-top-page .l-header__english--fixed,
  body.is-top-page .l-header__english--fixed img {
    transition: none;
  }
}
footer {
  background: #222222;
}

.c-headLine01 {
  position: relative;
  color: #004ea2;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-left: clamp(1.875rem, 1.3970588235rem + 1.9607843137vw, 3.75rem);
}
.c-headLine01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  background-image: url(../images/title-cube.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 50px;
  height: 50px;
  min-width: 30px;
  min-height: 30px;
}
@media screen and (max-width: 1599px) {
  .c-headLine01::before {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
  }
}
.c-headLine01 span {
  display: block;
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: #251d1b;
  font-weight: 700;
}
.c-headLine01.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.c-headLine01.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}

.c-section {
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section {
    padding: 0 20px;
  }
}
.c-section--p0 {
  padding: 0;
}
.c-section--grey {
  position: relative;
  background: #f3f3f3;
}
.c-section--grey::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/message-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(779px, 100%);
  aspect-ratio: 779/362.472;
}
.c-section--blue {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: linear-gradient(#cfeeff 0%, #e5f6ff 50%);
  overflow: hidden;
}
.c-section--blue::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  z-index: -1;
  background-image: url(../images/future-bk.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .c-section--blue::before {
    bottom: -180px;
  }
}
.c-section--blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../images/future-top.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 100%;
  width: 100%;
}
.c-section--blue .c-content {
  position: relative;
  z-index: 1;
}
.c-section__cubes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.c-section__cube {
  position: absolute;
  display: block;
  width: clamp(36px, 4vw, 76px);
  animation: section-cube-float var(--cube-duration, 7s) ease-in-out var(--cube-delay, 0s) infinite alternate;
  will-change: transform;
}
.c-section__cube img {
  display: block;
  width: 100%;
  height: auto;
}
.c-section__cube--01 {
  top: 355px;
  right: 12.5vw;
  width: clamp(5.6875rem, 4.237745098rem + 5.9477124183vw, 11.375rem);
  --cube-duration: 6.5s;
}
@media screen and (max-width: 1280px) {
  .c-section__cube--01 {
    top: 150px;
    right: 1.1979166667vw;
  }
}
@media screen and (max-width: 479px) {
  .c-section__cube--01 {
    display: none;
  }
}
.c-section__cube--02 {
  top: 748px;
  left: 0;
  width: clamp(7rem, 5.0404411765rem + 8.0392156863vw, 14.6875rem);
  --cube-duration: 8s;
  --cube-delay: -2.5s;
}
.c-section__cube--03 {
  top: 831px;
  right: 1.5625vw;
  width: clamp(4.25rem, 3.1666666667rem + 4.4444444444vw, 8.5rem);
  --cube-duration: 7.2s;
  --cube-delay: -4s;
}
.c-section__cube--04 {
  top: 1434px;
  left: 6.4583333333vw;
  width: clamp(4.75rem, 3.5232843137rem + 5.0326797386vw, 9.5625rem);
  --cube-duration: 6.8s;
  --cube-delay: -1.2s;
}
.c-section__cube--05 {
  top: 1726px;
  right: 6.1458333333vw;
  width: clamp(4.4375rem, 3.2904411765rem + 4.7058823529vw, 8.9375rem);
  --cube-duration: 7.6s;
  --cube-delay: -3.4s;
}
.c-section__cube--06 {
  top: 2422px;
  left: 3.59375vw;
  width: clamp(6.5rem, 4.8431372549rem + 6.7973856209vw, 13rem);
  --cube-duration: 8.4s;
  --cube-delay: -5s;
}
@media screen and (max-width: 1280px) {
  .c-section__cube--06 {
    top: 2022px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-section__cube {
    animation: none;
  }
}
.c-section--history {
  position: relative;
}
.c-section--history::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background-image: url(../images/history-bg-dec.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 13.0729166667vw;
}
.c-section--logo {
  position: relative;
}
.c-section--logo::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-image: url(../images/logo-bg.webp);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 13.0729166667vw;
}

.c-content {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.c-content--wide {
  width: 100%;
}

.c-history-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #808080;
  color: #251d1b;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  height: 50px;
  font-family: inherit;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
@media screen and (max-width: 375px) {
  .c-history-button {
    width: 100%;
  }
}
.c-history-button:is(:hover, :focus-visible) {
  background-color: #3e5684;
  border-color: #fff;
  color: #fff;
}
.c-history-button:is(:hover, :focus-visible) .c-history-button__icon {
  filter: brightness(0) invert(1);
  transform: translateX(4px);
}
.c-history-button__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.c-modal[data-modal-group] .c-modal__dialog {
  display: flex;
  flex-direction: column;
}
.c-modal[data-modal-group] .c-modal__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.c-modal[data-modal-group] .c-modal__titleWrap {
  flex-shrink: 0;
}
.c-modal[data-modal-group] .c-modal-episodeWrap {
  min-height: 0;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal__titleWrap {
  display: flex;
  gap: clamp(1rem, 0.7450980392rem + 1.045751634vw, 2rem);
  align-items: center;
  margin-bottom: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
}
@media screen and (max-width: 767px) {
  .c-modal__titleWrap {
    flex-direction: column;
  }
}
.c-modal__titleImage {
  flex: 0 1 50%;
  min-width: 0;
  max-width: 200px;
}
.c-modal__titleImage img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.c-modal__titleWrap .c-modal__title--ourfuture {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}
.c-modal.-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  /* autoprefixer: off */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.c-modal__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.c-modal__img--ourfuture {
  display: flex;
  gap: 23px;
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .c-modal__img--ourfuture {
    flex-direction: column;
  }
}
.c-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  overflow: hidden;
  max-height: 90vh;
  border-radius: 8px;
  padding-block: clamp(3.5rem, 3.5rem + 0vw, 3.5rem);
  padding-inline: clamp(1.25rem, 0.6764705882rem + 2.3529411765vw, 3.5rem);
  transform: translateY(12px);
  transition: transform 0.3s ease;
  background: transparent;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.08));
  /* autoprefixer: off */
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.6);
  /* (plus shape's fill blended on top as a separate layer with 60% opacity) */
}
@media screen and (max-width: 479px) {
  .c-modal__dialog {
    max-height: 85vh;
  }
}
.c-modal.-open .c-modal__dialog {
  transform: translateY(0);
}
.c-modal__dialog--ourfuture {
  width: min(1440px, 100%);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* autoprefixer: off */
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .c-modal__dialog {
    width: min(1000px, 100%);
  }
}
.c-modal__dialogCube {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: clamp(7.5rem, 6.8149509804rem + 2.8104575163vw, 10.1875rem);
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-modal__dialogCube {
    display: none;
  }
}
.c-modal__dialogInner {
  position: relative;
  width: min(1168px, 100%);
  margin-inline: auto;
}
.c-modal__close {
  position: absolute;
  z-index: 1;
  top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  right: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  width: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  height: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: #251d1b;
  transition: color 0.25s ease;
}
.c-modal__close span {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  color: inherit;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: background-color 0.25s ease;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close:is(:hover, :focus-visible) {
  color: #004ea2;
}
.c-modal__year {
  color: #004ea2;
  border-bottom: 1px solid #004ea2;
  font-size: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.c-modal__title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 700;
  margin-top: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
  color: #004ea2;
}
.c-modal__title--ourfuture {
  font-size: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
  color: #251d1b;
}
@media screen and (max-width: 1280px) {
  .c-modal__title--ourfuture {
    font-size: clamp(1.375rem, 1.2794117647rem + 0.3921568627vw, 1.75rem);
  }
}
.c-modal__text {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.8;
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-modal__closeBottom {
  position: relative;
  display: block;
  margin: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem) auto 0;
  border: 1px solid #b1b6b8;
  border-radius: 30px;
  background: #fff;
  color: #251d1b;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  font-family: inherit;
  font-weight: 700;
  padding: clamp(0.625rem, 0.5931372549rem + 0.1307189542vw, 0.75rem) clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.c-modal__closeBottom::before, .c-modal__closeBottom::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background: #646464;
  transition: background-color 0.25s ease;
}
.c-modal__closeBottom::before {
  transform: translateY(-50%) rotate(45deg);
}
.c-modal__closeBottom::after {
  transform: translateY(-50%) rotate(-45deg);
}
.c-modal__closeBottom:is(:hover, :focus-visible) {
  color: #004ea2;
  border-color: #004ea2;
}
.c-modal__closeBottom:is(:hover, :focus-visible)::before, .c-modal__closeBottom:is(:hover, :focus-visible)::after {
  background: #004ea2;
}

.is-modal-open {
  overflow: hidden;
}
.is-modal-open body .l-header,
.is-modal-open body .l-header.-show,
.is-modal-open body .l-header__brand--fixed,
.is-modal-open body .l-header__english--fixed {
  visibility: hidden;
  pointer-events: none;
}

.c-modal-episodeWrap {
  max-height: 60vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-modal-episode {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  padding-top: clamp(1.0625rem, 0.7916666667rem + 1.1111111111vw, 2.125rem);
  padding-bottom: clamp(1.0625rem, 0.7916666667rem + 1.1111111111vw, 2.125rem);
  padding-left: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  padding-right: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
}
.c-modal-episode p {
  margin-top: 10px;
}
.c-modal-episode__img {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .c-modal-episode__img {
    align-items: center;
  }
}
.c-modal-episode__img img {
  border-radius: 4px;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.c-modal-episode__imgItem {
  max-width: 424px;
  text-align: center;
}
.c-modal-episode__imgItem--flex {
  display: flex;
  gap: 24px;
}
.c-modal-episode__imgItem--flex > * {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-modal-episode__imgItem--flex > * {
    flex: 0 0 auto;
    width: calc((100% - 24px) / 2);
  }
}
.c-modal-episode__text {
  flex: 1;
}
.c-modal-episode__title {
  font-size: clamp(1.125rem, 1.0612745098rem + 0.2614379085vw, 1.375rem);
  font-weight: 700;
}
.c-modal-episode__inner {
  display: flex;
  gap: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-modal-episode__inner {
    flex-direction: column;
  }
}
.c-modal-episode__disruption {
  margin-top: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
}
.c-modal-episode__number {
  font-size: clamp(1.5rem, 1.4362745098rem + 0.2614379085vw, 1.75rem);
  color: #004ea2;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.c-modal-episode__number span {
  position: relative;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  color: rgba(0, 78, 162, 0.5);
  font-family: "Roboto", sans-serif;
}
.c-modal-episode__number span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -4px;
  transform: rotate(13deg);
  width: 1px;
  height: 14px;
  background: rgba(0, 78, 162, 0.5);
}

.c-modal-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 48px;
  margin-top: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
}
.c-modal-nav__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border: 1px solid #b1b6b8;
  border-radius: 30px;
  background: #fff;
  font: inherit;
  color: #251d1b;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.c-modal-nav__button::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.c-modal-nav__button--prev::before {
  left: 14px;
  transform: rotate(-135deg);
}
.c-modal-nav__button--next::before {
  right: 14px;
  transform: rotate(45deg);
}
.c-modal-nav__button:is(:hover, :focus-visible):not(:disabled) {
  background: #004ea2;
  border-color: #004ea2;
  color: #fff;
}
.c-modal-nav__button:disabled {
  opacity: 0.35;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .c-modal-nav__button {
    padding: 8px 22px;
    font-size: 13px;
  }
  .c-modal-nav__button--prev::before {
    left: 9px;
  }
  .c-modal-nav__button--next::before {
    right: 9px;
  }
}

.c-page-top {
  position: fixed;
  z-index: 100;
  right: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  bottom: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  width: clamp(4rem, 3.362745098rem + 2.614379085vw, 6.5rem);
  aspect-ratio: 1;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.c-page-top img {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  transform: scale(1);
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.25s ease;
}
.c-page-top.-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-page-top.-show:is(:hover, :focus-visible) img {
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .c-page-top img {
    transition: none;
  }
}

html.is-loading-played .c-loading {
  display: none;
}

.c-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-loading__inner {
  text-align: center;
}
.c-loading__text {
  color: #251d1b;
  font-size: clamp(2rem, 1.6176470588rem + 1.568627451vw, 3.5rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: pre;
  min-height: 1.4em;
  transition: color 0.25s ease;
}
@media screen and (max-width: 479px) {
  .c-loading__text {
    font-size: 24px;
  }
}
.c-loading__bar {
  position: relative;
  left: 50%;
  margin: clamp(1.5rem, 1.2132352941rem + 1.1764705882vw, 2.625rem) 0 0;
  width: 100vw;
  height: clamp(0.25rem, 0.1544117647rem + 0.3921568627vw, 0.625rem);
  background: transparent;
  overflow: hidden;
  transform: translateX(-50%);
}
.c-loading__barInner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
}
.c-loading__barInner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(16.25rem, 13.5416666667rem + 11.1111111111vw, 26.875rem);
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(5, 101, 217, 0.12) 16%, rgba(27, 156, 244, 0.72) 74%, #1b9cf4 100%);
  box-shadow: 0 0 clamp(0.625rem, 0.5294117647rem + 0.3921568627vw, 1rem) rgba(27, 156, 244, 0.5);
  opacity: 0;
  transform: translateX(-100%);
}
.c-loading__barInner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(24.375rem, 20.7107843137rem + 15.0326797386vw, 38.75rem);
  height: clamp(0.125rem, 0.1090686275rem + 0.0653594771vw, 0.1875rem);
  background: linear-gradient(90deg, transparent 0%, rgba(27, 156, 244, 0.06) 16%, rgba(27, 156, 244, 0.24) 74%, rgba(82, 186, 255, 0.42) 100%);
  filter: blur(1px);
  opacity: 0;
  transform: translate(-100%, -50%);
}
.c-loading__barInner.-start::before {
  animation: loading-line-trail 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.c-loading__barInner.-start::after {
  animation: loading-line-haze 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.c-loading__char {
  opacity: 0;
  transform: translateY(4px);
  display: inline-block;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.c-loading__char.-show {
  opacity: 1;
  transform: translateY(0);
}
.c-loading.-loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes loading-line-trail {
  0%, 12% {
    left: 0;
    opacity: 0;
  }
  28%, 92% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes loading-line-haze {
  0%, 12% {
    left: 0;
    opacity: 0;
  }
  28%, 92% {
    opacity: 0.65;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-loading__barInner.-start {
    background: #0565d9;
    box-shadow: 0 0 10px rgba(27, 156, 244, 0.5);
    animation: none;
  }
  .c-loading__barInner.-start::before,
  .c-loading__barInner.-start::after {
    animation: none;
  }
}
.p-fv {
  height: 80vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .p-fv {
    height: 75vh;
  }
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: 70vh;
  }
}
@media screen and (max-width: 479px) {
  .p-fv {
    height: 55vh;
  }
}
.p-fv::before {
  content: "";
  position: absolute;
  top: -2.5751072961vw;
  right: 0;
  background-image: url(../images/fv-cube.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 77.7604166667vw;
  height: 44.0625vw;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .p-fv::before {
    top: auto;
    bottom: 0;
    height: 40.703125vw;
  }
}
@media screen and (max-width: 767px) {
  .p-fv::before {
    height: 47.9791395046vw;
    width: 76.4015645372vw;
  }
}
.p-fv__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.p-fv-logo {
  width: 15.625vw;
  margin-top: clamp(1.75rem, 1.2879901961rem + 1.8954248366vw, 3.5625rem);
}
@media screen and (max-width: 1280px) {
  .p-fv-logo {
    width: min(200px, 100%);
  }
}
@media screen and (max-width: 479px) {
  .p-fv-logo {
    width: min(150px, 100%);
  }
}
@media screen and (max-width: 767px) {
  .p-fv-logo {
    top: 72 px;
  }
}
.p-fv-logo img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-fv-title {
  font-size: clamp(1.375rem, 1.0245098039rem + 1.4379084967vw, 2.75rem);
  font-weight: 700;
}
.p-fv-title span {
  display: block;
  font-size: clamp(1rem, 0.7450980392rem + 1.045751634vw, 2rem);
}

.p-fv-titleWrap {
  position: absolute;
  top: 4.2708333333vw;
  left: 11.1458333333vw;
}
@media screen and (max-width: 1280px) {
  .p-fv-titleWrap {
    top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv-titleWrap {
    top: 112px;
  }
}

.p-fv-anchorWrap {
  position: relative;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  background: #fff;
  border-top: 1px solid #b4b4b4;
  padding-top: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
  padding-inline: 15px;
}

.p-fv-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.75rem, 1.3039215686rem + 1.8300653595vw, 3.5rem);
  width: min(1120px, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .p-fv-anchor {
    width: min(850px, 100%);
    gap: 12px;
  }
}
.p-fv-anchor__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - clamp(1.75rem, 1.3039215686rem + 1.8300653595vw, 3.5rem) * 3) / 4);
  position: relative;
  color: #32a4c9;
  font-weight: 700;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  padding-top: clamp(0.375rem, 0.3272058824rem + 0.1960784314vw, 0.5625rem);
  padding-bottom: 36px;
  padding-left: clamp(0.75rem, 0.5588235294rem + 0.7843137255vw, 1.5rem);
  padding-right: clamp(0.75rem, 0.5588235294rem + 0.7843137255vw, 1.5rem);
  border-bottom: 1px solid #251d1b;
  text-align: center;
  transition: color 0.25s ease;
}
@media screen and (max-width: 1280px) {
  .p-fv-anchor__item {
    font-size: 14px;
    padding-bottom: 30px;
    width: calc((100% - 36px) / 4);
  }
}
@media screen and (max-width: 767px) {
  .p-fv-anchor__item {
    width: calc((100% - 36px) / 2);
  }
}
.p-fv-anchor__item::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 10px solid #000;
}
.p-fv-anchor__item:is(:hover, :focus-visible) {
  color: #004ea2;
}
.p-fv-anchor__item:last-child {
  margin-right: 0;
}
.p-fv-anchor__scroll {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 30px;
  margin-inline: auto;
  padding-bottom: 30px;
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  color: #004ea2;
  font-weight: 700;
  text-align: center;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
}
.p-fv-anchor__scroll::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  bottom: 4px;
  left: 50%;
  background-image: url(../images/scroll-arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 17px;
  height: 23px;
  animation: fv-scroll-arrow 1.8s ease-in-out infinite;
  transition: filter 0.25s ease;
}
.p-fv-anchor__scroll:is(:hover, :focus-visible) {
  color: #003b7d;
}
.p-fv-anchor__scroll:is(:hover, :focus-visible)::before {
  filter: brightness(0.78);
}
@media (prefers-reduced-motion: reduce) {
  .p-fv-anchor__scroll::before {
    animation: none;
  }
}

.p-home-message {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-top: clamp(5rem, 4.681372549rem + 1.3071895425vw, 6.25rem);
  margin-top: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  padding-left: clamp(1.875rem, 1.4289215686rem + 1.8300653595vw, 3.625rem);
}
@media screen and (max-width: 1280px) {
  .p-home-message {
    width: min(100%, 980px);
    padding-left: 0;
  }
}
.p-home-message__box {
  display: flex;
  align-items: flex-end;
  gap: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
}
@media screen and (max-width: 767px) {
  .p-home-message__box {
    flex-direction: column;
    padding-top: 60px;
  }
}
.p-home-message__textWrap {
  width: min(100%, 600px);
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  margin-left: clamp(1.75rem, 1.2879901961rem + 1.8954248366vw, 3.5625rem);
  padding-bottom: 30px;
}
.p-home-message__textWrap.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-message__textWrap.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .p-home-message__textWrap {
    margin-left: 0;
    margin: auto;
  }
}
.p-home-message__text {
  font-size: 18px;
  margin-top: clamp(0.75rem, 0.5428921569rem + 0.8496732026vw, 1.5625rem);
  color: #251d1b;
}
.p-home-message__text:first-child {
  margin-top: 0;
}
.p-home-message__img {
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .p-home-message__img {
    max-width: 260px;
    margin-inline: auto;
  }
}
.p-home-message__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-home-president-name {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  text-align: right;
  margin-top: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
}
.p-home-president-name__position {
  display: flex;
  flex-direction: column;
}
.p-home-president-name p {
  line-height: 1.2;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.p-home-president-name span {
  font-weight: 700;
  line-height: 1.2;
}

.p-home-president-name.is-fade-ready,
.p-home-message__img.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-president-name.is-fade-visible,
.p-home-message__img.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-home-message__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-home-logo {
  padding-top: clamp(6.25rem, 4.6568627451rem + 6.5359477124vw, 12.5rem);
  padding-bottom: clamp(6.25rem, 5.931372549rem + 1.3071895425vw, 7.5rem);
}
.p-home-logo__cube {
  position: absolute;
  left: 80px;
  top: 30px;
  transform: scale(-1, 1);
  width: clamp(8.625rem, 6.4264705882rem + 9.0196078431vw, 17.25rem);
  height: clamp(5.6875rem, 4.237745098rem + 5.9477124183vw, 11.375rem);
}
@media screen and (max-width: 1280px) {
  .p-home-logo__cube {
    left: auto;
    right: 30px;
    top: 70px;
    width: clamp(5.1875rem, 2.112745098rem + 12.614379085vw, 17.25rem);
    height: clamp(3.375rem, 1.3357843137rem + 8.3660130719vw, 11.375rem);
  }
}
.p-home-logo__cube img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-home-logo-box {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(1.875rem, 0.3137254902rem + 6.4052287582vw, 8rem);
}
@media screen and (max-width: 767px) {
  .p-home-logo-box {
    flex-direction: column-reverse;
  }
}
.p-home-logo-box__text {
  width: min(100%, 626px);
  font-size: 18px;
}
.p-home-logo-box__img {
  width: min(100%, 284px);
}
@media screen and (max-width: 767px) {
  .p-home-logo-box__img {
    text-align: center;
    margin-inline: auto;
    width: min(200px, 100%);
  }
}
.p-home-logo-box__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-logo-box__img.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-logo-box__img.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-home-logo-box__description {
  margin-top: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  padding-left: clamp(1.875rem, 1.3970588235rem + 1.9607843137vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .p-home-logo-box__description {
    padding-left: 0;
  }
}
.p-home-logo-box__description.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-logo-box__description.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-home-history-scroll {
  position: relative;
  z-index: 1;
}
.p-home-history-scroll__track {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-home-history-scroll__track {
    padding-bottom: 0;
    overflow: visible;
  }
}
.p-home-history-scroll__list {
  display: block;
}
.p-home-history-scroll__indicator {
  display: none;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 39px;
  padding-left: 24px;
}
@media screen and (max-width: 1280px) {
  .p-home-history-scroll__indicator {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.p-home-history-scroll__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 78, 162, 0.9);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.p-home-history-scroll__arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.p-home-history-scroll__arrow--prev {
  left: clamp(12px, 2vw, 32px);
}
.p-home-history-scroll__arrow--prev::before {
  margin-left: 6px;
  transform: rotate(-135deg);
}
.p-home-history-scroll__arrow--next {
  right: clamp(12px, 2vw, 32px);
}
.p-home-history-scroll__arrow--next::before {
  margin-right: 6px;
  transform: rotate(45deg);
}
.p-home-history-scroll__arrow:not(:disabled):is(:hover, :focus-visible) {
  border-color: #fff;
  background-color: #003b7d;
}
.p-home-history-scroll__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.p-home-history-scroll__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.p-home-history-scroll__dot {
  padding: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #d6d6d6;
  border: 1px solid rgba(138, 138, 138, 0.5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.p-home-history-scroll__dot.is-active {
  border-color: #fff;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.4);
}
.p-home-history-scroll__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.p-home-history-scroll.is-history-carousel-ready .p-home-history-scroll__indicator {
  display: flex;
}
.p-home-history-scroll.is-history-carousel-ready .p-home-history-scroll__arrow {
  display: flex;
}
.p-home-history-scroll.is-history-carousel-ready .p-home-history-scroll__list {
  display: flex;
  width: max-content;
  will-change: transform;
  transition: transform 0.6s ease;
}
.p-home-history-scroll.is-history-carousel-ready .p-home-history {
  flex: 0 0 100vw;
  width: 100vw;
  padding-inline: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
}

@media (prefers-reduced-motion: reduce) {
  .p-home-history-scroll.is-history-carousel-ready .p-home-history-scroll__list {
    transition: none;
  }
}
.p-home-history {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem) clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  background-position: center;
  background-size: cover;
  padding-top: 30px;
}
@media screen and (max-width: 1023px) {
  .p-home-history {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .p-home-history:nth-child(1) {
    z-index: 1;
  }
  .p-home-history:nth-child(2) {
    z-index: 2;
  }
  .p-home-history:nth-child(3) {
    z-index: 3;
  }
  .p-home-history:nth-child(4) {
    z-index: 4;
  }
  .p-home-history:nth-child(5) {
    z-index: 5;
  }
  .p-home-history:nth-child(6) {
    z-index: 6;
  }
}
@media screen and (max-width: 375px) {
  .p-home-history {
    min-height: 70vh;
  }
}
.p-home-history--01 {
  background-image: url(../images/history-img01-bg.webp);
  background-repeat: no-repeat;
}
.p-home-history--02 {
  background-image: url(../images/history-img02-bg.webp);
  background-repeat: no-repeat;
}
.p-home-history--03 {
  background-image: url(../images/history-img03-bg.webp);
  background-repeat: no-repeat;
}
.p-home-history--04 {
  background-image: url(../images/history-img04-bg.webp);
  background-repeat: no-repeat;
}

.p-home-history-box {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  justify-content: center;
  width: min(1440px, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 1599px) {
  .p-home-history-box {
    width: min(1100px, 100%);
  }
}
@media screen and (max-width: 1280px) {
  .p-home-history-box {
    width: min(830px, 100%);
  }
}
@media screen and (max-width: 1023px) {
  .p-home-history-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-history-box {
    flex-direction: column;
    gap: 20px;
  }
}
.p-home-history-box__description.--shadow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 6px rgba(0, 0, 0, 0.65);
}
.p-home-history-box__text, .p-home-history-box__img {
  flex: 1;
  width: min(100%, 633px);
}
@media screen and (max-width: 1023px) {
  .p-home-history-box__text, .p-home-history-box__img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-home-history-box__img {
    max-width: 250px;
    margin-left: auto;
  }
}
@media screen and (max-width: 375px) {
  .p-home-history-box__img {
    display: none;
  }
}
.p-home-history-box__text {
  color: #fff;
  margin-top: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
}
.p-home-history-box__title {
  font-size: clamp(3.75rem, 2.7941176471rem + 3.9215686275vw, 7.5rem);
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
.p-home-history-box__subtitle {
  font-size: clamp(1rem, 0.7769607843rem + 0.9150326797vw, 1.875rem);
  font-weight: 700;
}
.p-home-history-box__year {
  font-size: clamp(1.25rem, 0.8039215686rem + 1.8300653595vw, 3rem);
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin-top: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
}
.p-home-history-box__lead {
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  font-weight: 700;
  border-top: 1px solid #fff;
  margin-top: clamp(0.3125rem, 0.2647058824rem + 0.1960784314vw, 0.5rem);
  padding-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.p-home-history-box__description {
  font-size: 18px;
  font-weight: 500;
  margin-top: clamp(0.5rem, 0.3884803922rem + 0.4575163399vw, 0.9375rem);
}
@media screen and (max-width: 1280px) {
  .p-home-history-box__description {
    font-size: 16px;
  }
}
.p-home-history-box__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.p-home-history-buttonWrap {
  width: min(460px, 100%);
  margin-top: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  display: flex;
  align-items: flex-start;
  gap: clamp(0.625rem, 0.449754902rem + 0.7189542484vw, 1.3125rem);
}
@media screen and (max-width: 1280px) {
  .p-home-history-buttonWrap {
    margin-top: 10px;
  }
}
@media screen and (max-width: 375px) {
  .p-home-history-buttonWrap {
    flex-direction: column;
  }
}

.p-home-history-buttonColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .p-home-history-buttonColumn {
    width: 100%;
  }
}

.p-home-ourfuture {
  margin-inline: auto;
  width: min(1218px, 100%);
  padding-top: clamp(6.25rem, 4.6568627451rem + 6.5359477124vw, 12.5rem);
}
@media screen and (max-width: 1280px) {
  .p-home-ourfuture {
    width: min(900px, 100%);
  }
}
.p-home-ourfuture__textBold {
  font-weight: 700;
}
.p-home-ourfuture__title {
  display: flex;
  flex-direction: column;
  width: min(1120px, 100%);
  margin-inline: auto;
  font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  color: #251d1b;
}
.p-home-ourfuture__title span {
  font-weight: 400;
  font-size: clamp(3.75rem, 2.9852941176rem + 3.137254902vw, 6.75rem);
  color: #004ea2;
  font-family: "Roboto", sans-serif;
}
.p-home-ourfuture__cube {
  width: clamp(7.5rem, 2.8799019608rem + 18.954248366vw, 25.625rem);
  position: absolute;
  top: 0;
  right: 9.375vw;
  z-index: -1;
}
.p-home-ourfuture__cube img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-ourfuture__lead {
  width: min(1120px, 100%);
  margin-inline: auto;
  margin-top: clamp(1.5625rem, 1.1642156863rem + 1.6339869281vw, 3.125rem);
}
.p-home-ourfuture__lead.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-ourfuture__lead.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-home-ourfuture__lead p {
  font-size: 18px;
}
.p-home-ourfuture__anchor {
  position: relative;
  width: min(1120px, 100%);
  margin-inline: auto;
  margin-top: clamp(2rem, 1.4901960784rem + 2.091503268vw, 4rem);
  border: 1px solid rgba(0, 78, 162, 0.24);
  border-radius: 4px;
  padding-top: clamp(2.25rem, 1.931372549rem + 1.3071895425vw, 3.5rem);
  padding-bottom: clamp(2.25rem, 1.931372549rem + 1.3071895425vw, 3.5rem);
  padding-left: clamp(0.625rem, 0.3860294118rem + 0.9803921569vw, 1.5625rem);
  padding-right: clamp(0.625rem, 0.3860294118rem + 0.9803921569vw, 1.5625rem);
}
.p-home-ourfuture__anchor p {
  position: absolute;
  font-weight: 500;
  top: -28px;
  left: 25px;
  display: inline-block;
  background: #d7f1ff;
  font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  padding: 5px;
}
.p-home-ourfuture__anchor ul {
  display: flex;
  justify-content: center;
  gap: clamp(1.5625rem, 1.2120098039rem + 1.4379084967vw, 2.9375rem);
}
@media screen and (max-width: 767px) {
  .p-home-ourfuture__anchor ul {
    flex-direction: column;
  }
}
.p-home-ourfuture__anchor li {
  width: calc((100% - clamp(1.5625rem, 1.2120098039rem + 1.4379084967vw, 2.9375rem)) / 3);
}
@media screen and (max-width: 767px) {
  .p-home-ourfuture__anchor li {
    width: 100%;
  }
}
.p-home-ourfuture__anchor a {
  position: relative;
  display: block;
  border-radius: 3px;
  font-weight: 700;
  background: #f4fbff;
  border: 1px solid #cdedff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.09);
  padding-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-bottom: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-left: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-right: 38px;
  color: #251d1b;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.p-home-ourfuture__anchor a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/blue-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 13px;
  height: 7px;
  transition: filter 0.25s ease;
}
.p-home-ourfuture__anchor a:is(:hover, :focus-visible) {
  background-color: #3e5684;
  border-color: #fff;
  color: #fff;
}
.p-home-ourfuture__anchor a:is(:hover, :focus-visible)::before {
  filter: brightness(0) invert(1);
}
.p-home-ourfuture__anchor.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-ourfuture__anchor.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-home-ourfuture__boxWrap {
  margin-top: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
}
.p-home-ourfuture__img {
  width: min(520px, 100%);
  flex: 1;
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 4px;
}
.p-home-ourfuture__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 78, 162, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.p-home-ourfuture__img:is(:hover, :focus-visible)::after {
  opacity: 1;
}
.p-home-ourfuture__img:focus-visible {
  outline: 2px solid #004ea2;
  outline-offset: 4px;
}
.p-home-ourfuture__img img {
  border-radius: 4px;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-ourfuture__text {
  flex: 1;
}
.p-home-ourfuture__description {
  border-top: 1px solid #b9dbff;
  margin-top: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  padding-top: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
}
.p-home-ourfuture__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: min(183px, 100%);
  padding-top: clamp(0.5rem, 0.4681372549rem + 0.1307189542vw, 0.625rem);
  padding-bottom: clamp(0.5rem, 0.4681372549rem + 0.1307189542vw, 0.625rem);
  padding-left: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-right: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  margin-top: clamp(1.125rem, 1.0772058824rem + 0.1960784314vw, 1.3125rem);
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 3px;
  background: #004ea2;
  color: #fff;
  text-align: center;
  transition: background-color 0.25s ease;
}
.p-home-ourfuture__link:is(:hover, :focus-visible) {
  background-color: #6caaff;
}
.p-home-ourfuture__linkIcon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.p-home-ourfuture__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  background: #fff;
  margin-top: clamp(2rem, 1.4901960784rem + 2.091503268vw, 4rem);
  padding-top: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  padding-bottom: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  padding-left: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  padding-right: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
}
@media screen and (max-width: 1023px) {
  .p-home-ourfuture__box {
    flex-direction: column;
  }
}
.p-home-ourfuture__box:first-child {
  margin-top: 0;
}
.p-home-ourfuture__box.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease var(--fade-delay, 0s), transform 0.8s ease var(--fade-delay, 0s);
  will-change: opacity, transform;
}
.p-home-ourfuture__box.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-home-ourfuture__boxtitle {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  font-weight: 700;
}
.p-home-ourfuture__boxtitle span {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}

.p-home-ending {
  position: relative;
  padding-top: clamp(6.25rem, 4.5772058824rem + 6.862745098vw, 12.8125rem);
  padding-bottom: 380px;
}
@media screen and (max-width: 1280px) {
  .p-home-ending {
    width: min(100%, 800px);
    margin-inline: auto;
    padding-bottom: 280px;
    padding-top: 100px;
  }
}
.p-home-ending::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 1920/265;
  background-image: url(../images/ending-bg.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
.p-home-ending__title {
  text-align: center;
  width: min(954px, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .p-home-ending__title {
    max-width: 550px;
  }
}
.p-home-ending__title img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-ending__title.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-ending__title.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-home-ending__text {
  text-align: center;
  line-height: 2;
  margin-top: clamp(2rem, 1.4901960784rem + 2.091503268vw, 4rem);
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
}
@media screen and (max-width: 1280px) {
  .p-home-ending__text {
    font-size: 16px;
    margint-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-home-ending__text {
    text-align: left;
  }
}
.p-home-ending__text.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-ending__text.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-home-footer {
  padding-top: 0;
  background: #fff;
}
.p-home-footer__logoWrap {
  padding-top: clamp(3.75rem, 2.7941176471rem + 3.9215686275vw, 7.5rem);
}
.p-home-footer__logoImage {
  width: min(150px, 100%);
  height: auto;
}
@media screen and (max-width: 479px) {
  .p-home-footer__logoImage {
    width: min(80px, 100%);
  }
}
.p-home-footer__logoImage img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.p-home-footer__logo {
  display: flex;
  gap: clamp(3.125rem, 0.6078431373rem + 10.3267973856vw, 13rem);
  justify-content: center;
  align-items: center;
  width: min(900px, 100% - 40px);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 1.6176470588rem + 1.568627451vw, 3.5rem);
}
.p-home-footer__logo.is-fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.p-home-footer__logo.is-fade-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-home-footer__logolinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 32px;
  margin-bottom: 60px;
  margin-left: 440px;
}
@media screen and (max-width: 767px) {
  .p-home-footer__logolinks {
    margin-left: 0;
  }
}
.p-home-footer__logolinks a {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.25s ease;
}
.p-home-footer__logolinks a:is(:hover, :focus-visible) {
  opacity: 0.7;
}
.p-home-footer__cube {
  vertical-align: middle;
  width: 100%;
  height: auto;
  flex: 1 1 0;
  min-width: 0;
  max-width: 294px;
}
.p-home-footer__cube--left {
  justify-self: end;
}
.p-home-footer__cube--right {
  justify-self: start;
}
.p-home-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 32px;
  justify-content: flex-start;
}
.p-home-footer__links a {
  color: #fff;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.25s ease;
}
.p-home-footer__links a:is(:hover, :focus-visible) {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-home-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-home-footer__bottom {
  display: flex;
  justify-content: center;
  background: #004ea2;
  padding: 25px 30px;
}
.p-home-footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1500px, 100%);
}
@media screen and (max-width: 767px) {
  .p-home-footer__bottomInner {
    display: block;
  }
}
.p-home-footer__copy {
  flex: 0 0 auto;
  text-align: right;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-home-footer__copy {
    margin-top: 20px;
    text-align: left;
    font-size: 12px;
  }
}

.p-history-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.history-wrap::before, .history-wrap::after {
  position: fixed;
  z-index: -1;
  top: 0;
  width: 20.8333333333vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  pointer-events: none;
}
.history-wrap::before {
  left: 0;
}
.history-wrap::after {
  right: 0;
  transform: scaleX(-1);
}
@media screen and (max-width: 1919px) {
  .history-wrap::before, .history-wrap::after {
    width: 400px;
  }
  .history-wrap::before {
    left: -120px;
  }
  .history-wrap::after {
    right: -120px;
  }
}
@media screen and (max-width: 767px) {
  .history-wrap::before {
    left: -300px;
  }
  .history-wrap::after {
    right: -300px;
  }
}
@media screen and (max-width: 479px) {
  .history-wrap::before {
    left: -350px;
  }
  .history-wrap::after {
    right: -350px;
  }
}
.history-wrap--01::before, .history-wrap--01::after {
  background-image: url(../images/history01-dec.svg);
}
.history-wrap--02::before, .history-wrap--02::after {
  background-image: url(../images/history02-dec.svg);
}
.history-wrap--03::before, .history-wrap--03::after {
  background-image: url(../images/history03-dec.svg);
}
.history-wrap--04::before, .history-wrap--04::after {
  background-image: url(../images/history04-dec.svg);
}

.history-fv {
  --history-fv-height: 85vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  height: var(--history-fv-height);
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .history-fv {
    --history-fv-height: 680px;
    padding: 60px 20px;
    height: var(--history-fv-height);
  }
}
@media screen and (max-width: 479px) {
  .history-fv {
    --history-fv-height: 550px;
    height: var(--history-fv-height);
  }
}
@media (min-width: 768px) and (min-height: 600px) and (orientation: portrait) {
  .history-fv {
    --history-fv-height: 600px;
    height: var(--history-fv-height);
  }
}
.history-fv--01 {
  background-image: url(../images/history-bg01.webp);
}
.history-fv--02 {
  background-image: url(../images/history-bg02.webp);
}
.history-fv--03 {
  background-image: url(../images/history-bg03.webp);
}
.history-fv--04 {
  background-image: url(../images/history-bg04.webp);
}
.history-fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(3.75rem, 1.5036764706rem + 9.2156862745vw, 12.5625rem);
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .history-fv__inner {
    width: min(100%, 900px);
  }
}
@media screen and (max-width: 767px) {
  .history-fv__inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    height: 800px;
    gap: 10px;
  }
}
@media screen and (max-width: 479px) {
  .history-fv__inner {
    margin-top: 0;
  }
}
.history-fv__title {
  color: #fff;
  display: block;
  font-size: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .history-fv__title {
    font-size: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
  }
}
.history-fv__title span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: clamp(5rem, 3.7254901961rem + 5.2287581699vw, 10rem);
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .history-fv__title span {
    font-size: clamp(3.75rem, 3.112745098rem + 2.614379085vw, 6.25rem);
  }
}
.history-fv__img {
  width: 31.25vw;
  margin-bottom: clamp(1.875rem, 1.3970588235rem + 1.9607843137vw, 3.75rem);
}
@media screen and (max-width: 1280px) {
  .history-fv__img {
    width: min(300px, 100%);
  }
}
@media screen and (max-width: 767px) {
  .history-fv__img {
    display: block;
    margin-left: auto;
    width: min(350px, 100%);
  }
}
.history-fv__img img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.history-nav__anchor {
  display: block;
  scroll-margin-top: 96px;
}

.history-nav {
  position: relative;
  z-index: 1;
  width: min(1400px, 100% - 40px);
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .history-nav {
    width: min(800px, 100% - 40px);
  }
}
.history-nav--original {
  margin-top: -520px;
  padding-top: 310px;
}
@media screen and (max-width: 767px) {
  .history-nav--original {
    margin-top: -80px;
    padding-top: 80px;
  }
}
.history-nav--first {
  position: sticky;
  z-index: 103;
  top: 100px;
  right: auto;
  left: 0;
  display: flex;
  align-items: stretch;
  width: 256px;
  height: min(423px, 100dvh - 16px);
  margin: 0;
  overflow: visible;
  margin-top: 50px;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 1280px) {
  .history-nav--first {
    height: min(383px, 100dvh - 16px);
  }
}
.history-nav--first .history-nav__inner {
  display: flex;
  flex-direction: column;
  width: 256px;
  height: 100%;
  padding: 30px 24px 28px;
  overflow-y: auto;
  background: #f1f3f5;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 1280px) {
  .history-nav--first .history-nav__inner {
    padding: 20px;
  }
}
.history-nav--first .history-nav__title {
  margin: 0 0 24px;
  color: #004ea2;
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .history-nav--first .history-nav__title {
    font-size: 35px;
  }
}
.history-nav--first .history-nav__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
}
.history-nav--first .history-nav__item {
  flex: none;
  filter: none;
}
.history-nav--first .history-nav__item a {
  display: block;
  height: auto;
  padding: 0 0 0 22px;
  background: transparent;
  clip-path: none;
  color: #222;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}
.history-nav--first .history-nav__item a::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #cfcfcf;
  content: "";
}
.history-nav--first .history-nav__period,
.history-nav--first .history-nav__label {
  display: block;
}
.history-nav--first .history-nav__period {
  margin-bottom: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.history-nav--first .history-nav__label {
  font-size: 14px;
}
.history-nav--first .history-nav__item.is-active a {
  background: transparent;
  color: #004ea2;
}
.history-nav--first .history-nav__item.is-active a::before {
  background: #004ea2;
}
.history-nav--first .history-nav__item a:focus-visible {
  outline: 2px solid #004ea2;
  outline-offset: 4px;
}
.history-nav--first .history-nav__body {
  display: none;
}
.history-nav--first .history-nav__toggle {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0 3px 3px 0;
  place-items: center;
  cursor: pointer;
  background: #004ea2;
  color: #fff;
  transition: background-color 0.2s ease;
}
.history-nav--first .history-nav__toggle:is(:hover, :focus-visible) {
  background: #003b7d;
}
.history-nav--first .history-nav__toggle:focus-visible {
  outline: 2px solid #004ea2;
  outline-offset: -4px;
}
.history-nav--first .history-nav__toggleIcon {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}
.history-nav--first.is-collapsed {
  transform: translateX(-234px);
}
.history-nav--first.is-collapsed .history-nav__inner {
  pointer-events: none;
  transform: none;
}
.history-nav--first.is-collapsed .history-nav__toggleIcon {
  transform: rotate(180deg);
}
.history-nav__inner {
  display: flex;
  flex-direction: column;
}
.history-nav__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8039215686rem + 1.8300653595vw, 3rem);
  background: #fff;
  border-radius: 0px 0px 4px 4px;
  background: #fff;
  box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.16);
  padding-top: clamp(2.0625rem, 1.5367647059rem + 2.1568627451vw, 4.125rem);
  padding-bottom: clamp(2.0625rem, 1.5367647059rem + 2.1568627451vw, 4.125rem);
  padding-right: clamp(2.0625rem, 1.5367647059rem + 2.1568627451vw, 4.125rem);
  padding-left: clamp(2.0625rem, 1.5367647059rem + 2.1568627451vw, 4.125rem);
}
@media screen and (max-width: 767px) {
  .history-nav__body {
    flex-direction: column;
    gap: clamp(0.5rem, 0.3725490196rem + 0.522875817vw, 1rem);
  }
}
.history-nav__bodyinner {
  width: min(1200px, 100%);
  margin-inline: auto;
}
.history-nav__year {
  color: #004ea2;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.6176470588rem + 1.568627451vw, 3.5rem);
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .history-nav__year {
    font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
  }
}
.history-nav__lead {
  font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  font-weight: 700;
  color: #004ea2;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding-bottom: 8px;
}
@media screen and (max-width: 1280px) {
  .history-nav__lead {
    font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  }
}
.history-nav__description {
  margin-top: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
  font-size: clamp(0.9375rem, 0.8897058824rem + 0.1960784314vw, 1.125rem);
  font-weight: 500;
  color: #222;
  line-height: 1.7;
}
.history-nav__description--shadow {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
@media screen and (max-width: 1280px) {
  .history-nav__description {
    font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  }
}
.history-nav__list {
  display: flex;
  border-bottom: 2px solid #004ea2;
}
@media screen and (max-width: 767px) {
  .history-nav__list {
    flex-direction: column;
    gap: 8px;
  }
}
.history-nav__item {
  position: relative;
  flex: 1;
  filter: drop-shadow(3px 0 5px rgba(0, 0, 0, 0.161));
}
@media screen and (max-width: 767px) {
  .history-nav__item {
    filter: none;
  }
}
.history-nav__item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-right: 30px;
  height: clamp(4rem, 3.5539215686rem + 1.8300653595vw, 5.75rem);
  border: none;
  cursor: pointer;
  background: #fff;
  clip-path: url(#history-nav-tab-clip);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  color: rgba(34, 34, 34, 0.6);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .history-nav__item a {
    clip-path: none;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.161);
  }
}
.history-nav__item.is-active a {
  background: #004ea2;
  color: #fff;
  pointer-events: none;
}
.history-nav__item:not(.is-active) a:is(:hover, :focus-visible) {
  color: #004ea2;
}
.history-nav--footer {
  padding-top: 0;
  padding-bottom: clamp(3.5rem, 2.7352941176rem + 3.137254902vw, 6.5rem);
}

.history-timeline-wrap {
  width: 100%;
  margin-bottom: clamp(6rem, 4.6617647059rem + 5.4901960784vw, 11.25rem);
}

.history-timeline {
  padding: clamp(3rem, 2.2352941176rem + 3.137254902vw, 6rem) clamp(1.25rem, 0.612745098rem + 2.614379085vw, 3.75rem) 0;
  margin-top: -423px;
}
@media screen and (max-width: 1280px) {
  .history-timeline {
    width: min(800px, 100%);
    margin-inline: auto;
    margin-top: -383px;
  }
}
.history-timeline__inner {
  width: min(1104px, 100%);
  margin-inline: auto;
}
.history-timeline__title {
  margin-bottom: clamp(2rem, 1.4901960784rem + 2.091503268vw, 4rem);
  color: #004ea2;
  font-size: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.history-timeline__list {
  margin: 0;
  padding: 0;
}
.history-timeline__item {
  display: grid;
  grid-template-columns: minmax(250px, 23%) minmax(0, 1fr);
}
.history-timeline__item--opacity {
  opacity: 0.6;
}
.history-timeline__year {
  width: min(100%, 177px);
  justify-self: center;
  margin: 0;
  margin-top: -30px;
  padding: clamp(1rem, 0.7769607843rem + 0.9150326797vw, 1.875rem) clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem) 0 0;
  padding-top: 0;
  color: #004ea2;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .history-timeline__year {
    font-size: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
    justify-self: flex-end;
    padding-right: 0;
  }
}
.history-timeline__content {
  --history-line-progress: 0%;
  position: relative;
  min-width: 0;
  border-top: 1px solid rgba(34, 34, 34, 0.2);
  padding: clamp(2rem, 1.5539215686rem + 1.8300653595vw, 3.75rem) 0 clamp(2rem, 1.5539215686rem + 1.8300653595vw, 3.75rem) clamp(2.25rem, 1.5490196078rem + 2.8758169935vw, 5rem);
}
.history-timeline__content::before {
  position: absolute;
  z-index: 1;
  top: -6px;
  left: -5px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #004ea2;
  content: "";
}
.history-timeline__content::after {
  position: absolute;
  top: 6px;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, #004ea2 0, #004ea2 var(--history-line-progress), rgba(34, 34, 34, 0.2) var(--history-line-progress), rgba(34, 34, 34, 0.2) 100%);
  content: "";
}
.history-timeline__contentInner {
  min-width: 0;
}
.history-timeline__events {
  display: grid;
  gap: clamp(0.5rem, 0.4044117647rem + 0.3921568627vw, 0.875rem);
  margin: 0;
  padding: 0;
}
.history-timeline__event {
  position: relative;
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  color: #222;
  font-size: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1280px) {
  .history-timeline__event {
    font-size: 16px;
  }
}
.history-timeline__event::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}
.history-timeline__event--featured {
  color: #004ea2;
  font-size: clamp(1rem, 0.8406862745rem + 0.6535947712vw, 1.625rem);
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (max-width: 1280px) {
  .history-timeline__event--featured {
    font-size: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  }
}
.history-timeline__event--featured::before {
  top: 7px;
  width: 12px;
  height: 12px;
}
.history-timeline__media {
  width: fit-content;
  width: min(250px, 100%);
  margin: clamp(1.5rem, 1.3088235294rem + 0.7843137255vw, 2.25rem) 0 0;
  margin-bottom: 20px;
}
.history-timeline__media img {
  display: block;
  width: 100%;
  height: auto;
}
.history-timeline__media figcaption {
  margin-top: 8px;
}
.history-timeline__media--xlarge {
  width: min(350px, 100%);
}
.history-timeline__media--large {
  width: min(300px, 100%);
}
.history-timeline__media--small {
  width: min(180px, 100%);
}
.history-timeline__item:last-child .history-timeline__content {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .history-timeline__item {
    grid-template-columns: minmax(96px, 28%) minmax(0, 1fr);
  }
  .history-timeline__year {
    padding-right: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  }
  .history-timeline__content {
    padding-left: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
  }
  .history-timeline__event {
    line-height: 1.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .history-timeline__content {
    --history-line-progress: 100%;
  }
}

.u-p-none {
  padding: 0;
}

.u-w-100 {
  width: 100%;
}

.u-mt-10 {
  margin-top: 10px;
}

.br-767 {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-767 {
    display: inline;
  }
}

.u-br--sm,
.u-br--md,
.u-br--lg {
  display: none;
}

@media screen and (max-width: 479px) {
  .u-br--sm {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .u-br--md {
    display: inline;
  }
}

@media screen and (max-width: 1023px) {
  .u-br--lg {
    display: inline;
  }
}
