* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #333;
  scroll-behavior: smooth;
}

picture,
img {
  display: block;
}

body {
  position: relative;
  background: #e8eef4;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.text {
  font-size: 1.8rem;
  line-height: 2.2222222222em;
  font-weight: 300;
}
.text--fs16 {
  font-size: 1.6rem;
  line-height: 2em;
}

.heading__en {
  font: 1.8rem/1 "Playfair Display", serif;
  color: #004691;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 16px;
  }
}
.heading__jp {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-top: 16px;
  font: 600 3.6rem/1 "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .heading__jp {
    font-size: 28px;
  }
}
.heading--small .heading__en {
  font-size: 1.6rem;
}
.heading--small .heading__jp {
  font-size: 2.8rem;
}
.heading--center {
  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;
}

.tagline {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 4rem/1.5em "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .tagline {
    font-size: 24px;
    line-height: 1.6666666667em;
  }
}
.tagline--center {
  text-align: center;
}

.metal-sec {
  position: relative;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .metal-sec {
    padding-block: 50px;
  }
}
.metal-sec__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #b4c6d9;
  width: calc(100% - 60px);
  margin: auto;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1110px) {
  .metal-sec__bg {
    width: 100%;
    border-radius: 0;
  }
}
.metal-sec__img {
  position: absolute;
  top: -20.38%;
  left: 0;
  width: 100%;
  height: 153.39%;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.container {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 1060px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 20px;
  }
}

.nav-link {
  position: relative;
  font: 500 1.6rem "Noto Serif JP", serif;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  -webkit-transition: width 0.3s ease, left 0.3s ease;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.btn {
  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;
  width: 220px;
  padding-bottom: 6px;
  border-bottom: 1px solid #004691;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    max-width: 220px;
  }
}
.btn:hover .btn__icon, .btn:focus .btn__icon {
  background-color: #004691;
}
.btn:hover .btn__icon::before, .btn:focus .btn__icon::before {
  background-color: #fff;
}
.btn__label {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #004691;
}
.btn__icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid #004691;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btn__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 15px;
  height: 8px;
  margin: auto;
  background-color: #004691;
  -webkit-mask: url("./public/img/icons/arrow.svg") no-repeat center/contain;
          mask: url("./public/img/icons/arrow.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn-cta {
  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;
  position: relative;
  width: 160px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(11, 11, 25, 0.5)), to(rgba(77, 98, 128, 0.5)));
  background-image: linear-gradient(to right, rgba(11, 11, 25, 0.5), rgba(77, 98, 128, 0.5));
  font: 500 1.6rem/1 "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-cta {
    border-radius: 29px;
    width: 240px;
    height: 58px;
  }
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.btn-cta:hover::before, .btn-cta:focus::before {
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .header.is-active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
  }
}
.header--top:not(.is-scrolled, .is-active) .header__bar {
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 767px) {
  .header--top:not(.is-scrolled, .is-active) .header__bar {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
.header--top:not(.is-scrolled, .is-active) .header__logo {
  color: #fff;
}
.header--top:not(.is-scrolled, .is-active) .header__nav {
  color: #fff;
}
.header--top:not(.is-scrolled, .is-active) .header__nav .nav-link::after {
  background: #fff;
}
.header__bar {
  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;
  width: 100%;
  padding: 20px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.header.is-scrolled .header__bar {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .header__bar {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .header__bar {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__bar {
    height: 60px;
    padding: 7px 7px 7px 10px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo-sub {
  font: 500 1.6rem/1 "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .header__logo-sub {
    font-size: 14px;
  }
}
.header__logo-main {
  font: 600 2.4rem/1 "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .header__logo-main {
    font-size: 22px;
  }
}
.header__nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header__nav-group {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    -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: 50px;
    background-color: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .header__nav-group {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease, visibility 0s linear 0s;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-group .btn-cta {
    width: 240px;
    height: 58px;
    padding: 20px 32px;
    border-radius: 29px;
    font-size: 18px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav .nav-link {
    font-size: 18px;
  }
}
.header__toggle {
  border-radius: 50%;
  border: 1px solid transparent;
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  cursor: pointer;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(11, 11, 25, 0.5)), to(rgba(77, 98, 128, 0.5)));
  background-image: linear-gradient(to right, rgba(11, 11, 25, 0.5), rgba(77, 98, 128, 0.5));
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__toggle {
    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;
  }
}
.header--top:not(.is-scrolled, .is-active) .header__toggle {
  border-color: #fff;
}
.header__toggle-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -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__toggle-bar:nth-child(2) {
  margin-top: -6px;
}
.header__toggle-bar:nth-child(3) {
  margin-top: 7px;
}
.header.is-active .header__toggle-bar {
  margin-top: 0;
}
.header.is-active .header__toggle-bar:nth-child(1) {
  opacity: 0;
}
.header.is-active .header__toggle-bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(37.86deg);
          transform: translate(-50%, -50%) rotate(37.86deg);
}
.header.is-active .header__toggle-bar:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(142.14deg) scaleY(-1);
          transform: translate(-50%, -50%) rotate(142.14deg) scaleY(-1);
}

.footer {
  position: relative;
  font-weight: 300;
  background-color: #fff;
  z-index: 9;
}
.footer__contact {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -200px;
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 980px) {
  .footer__contact {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact {
    top: -68px;
    max-width: 450px;
  }
}
.footer__contact-wrap {
  padding-top: 60px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer__contact-wrap {
    padding-top: 40px;
  }
}
.footer__contact-bg {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #b4c6d9;
}
.footer__contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), color-stop(45%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 45%);
  mix-blend-mode: multiply;
}
.footer__contact-bg picture {
  width: 100%;
}
.footer__contact-bg img {
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.footer__contact-head {
  position: relative;
  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;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__contact-head {
    width: 100%;
    padding: 0 20px;
  }
}
.footer__contact-label {
  font: 300 1.8rem/1 "Playfair Display", serif;
  color: #004691;
}
@media screen and (max-width: 767px) {
  .footer__contact-label {
    font-size: 16px;
  }
}
.footer__contact-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-block: 16px 30px;
  font: 600 3.6rem/1 "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .footer__contact-title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.footer__contact-desc {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}
.footer__contact-cards {
  position: relative;
  display: grid;
  margin-top: 36px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 980px) {
  .footer__contact-cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-cards {
    margin-top: 30px;
  }
}
.footer__contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 160px;
  border-top: 1px solid #004691;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__contact-card {
    height: 105px;
  }
}
.footer__contact-card--phone {
  border-right: 1px solid #004691;
  border-radius: 0 0 0 6px;
  padding-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .footer__contact-card--phone {
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-card--phone {
    padding-top: 20px;
    gap: 4px;
    pointer-events: auto;
  }
}
.footer__contact-card--phone:hover, .footer__contact-card--phone:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.footer__contact-card--web {
  border-radius: 0 0 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__contact-card--web {
    padding: 40px 0;
  }
}
.footer__contact-card--web:hover, .footer__contact-card--web:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.footer__contact-card-label {
  font-size: 1.8rem;
  line-height: 2.22;
  text-align: center;
}
.footer__contact-card--phone .footer__contact-card-label {
  width: 301px;
}
@media screen and (max-width: 767px) {
  .footer__contact-card--phone .footer__contact-card-label {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
}
.footer__contact-card--web .footer__contact-card-label {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 2rem "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .footer__contact-card--web .footer__contact-card-label {
    font-size: 18px;
  }
}
.footer__contact-card-phone-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 301px;
}
@media screen and (max-width: 767px) {
  .footer__contact-card-phone-row {
    width: auto;
  }
}
.footer__contact-card-phone {
  background-image: -webkit-gradient(linear, left top, right top, from(#0b0b19), to(#4d6280));
  background-image: linear-gradient(to right, #0b0b19, #4d6280);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 4rem/1 "Noto Serif JP", serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__contact-card-phone {
    font-size: 28px;
  }
}
.footer__contact-card-sublabel {
  background-image: -webkit-gradient(linear, left top, right top, from(#0b0b19), to(#4d6280));
  background-image: linear-gradient(to right, #0b0b19, #4d6280);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 400 1.4rem/1 "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__contact-card-sublabel {
    font-size: 12px;
  }
}
.footer__contact-card-icon {
  position: absolute;
  left: 50px;
  inset-block: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .footer__contact-card-icon {
    left: 12px;
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-card--web .footer__contact-card-icon {
    left: 14px;
  }
}
.footer__contact-card-icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__flow {
  padding-block: 267px 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040 0%, #004691 100%);
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .footer__flow {
    padding-top: 420px;
  }
}
@media screen and (max-width: 767px) {
  .footer__flow {
    padding-block: 450px 30px;
  }
}
.footer__flow .splide__track {
  overflow: visible;
}
.footer__flow-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.footer__flow-label {
  color: #fff;
}
.footer__flow-label-en {
  display: block;
  font: 400 1.6rem/1 "Benne", serif;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer__flow-label-en {
    font-size: 14px;
  }
}
.footer__flow-label-jp {
  display: block;
  font: 600 2.8rem/1 "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .footer__flow-label-jp {
    font-size: 24px;
  }
}
.footer__flow-swipe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer__arrow-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  inset: auto;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  background: transparent;
}
.footer__arrow-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: #fff;
  -webkit-mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
          mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
}
.footer__arrow-btn:hover:not(:disabled) {
  opacity: 0.7;
}
.footer__arrow-btn--prev {
  -webkit-transform: rotate(180deg) scaleY(-1);
          transform: rotate(180deg) scaleY(-1);
}
.footer__flow-swipe-text {
  font: 400 1.6rem/1 "Playfair Display", serif;
  color: #fff;
}
.footer__flow-carousel .splide__track {
  padding-right: 13.4%;
}
@media screen and (max-width: 767px) {
  .footer__flow-carousel .splide__track {
    padding-right: 20px;
  }
}
.footer__flow-step {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  width: 400px;
  padding: 30px 38px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.footer__flow-step-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.footer__flow-step-number {
  font: 400 4rem/32px "Playfair Display", serif;
}
@media screen and (max-width: 767px) {
  .footer__flow-step-number {
    line-height: 24px;
  }
}
.footer__flow-step-title {
  font: 600 2rem/1 "Noto Serif JP", serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__flow-step-title {
    font-size: 17px;
  }
}
.footer__flow-step-desc {
  font-size: 1.6rem;
  line-height: 1.625;
}
.footer__bottom {
  padding: 60px 0 0;
  border-bottom: 4px solid transparent;
  -o-border-image: linear-gradient(to right, #000040 0%, #004691 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691)) 1;
     border-image: linear-gradient(to right, #000040 0%, #004691 100%) 1;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 30px 0 0;
  }
}
.footer__bottom-inner {
  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 screen and (max-width: 767px) {
  .footer__bottom-inner {
    -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;
  }
}
.footer__bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer__bottom-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 16px;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__logo-sub {
  font-size: 1.8rem;
}
.footer__logo-main {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
.footer__address {
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .footer__address {
    text-align: center;
  }
}
.footer__address span {
  display: block;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 252px;
    margin: auto;
  }
}
.footer__copyright {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 1060px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #8fa7bf;
  padding-block: 97px 20px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-block: 24px 20px;
    text-align: center;
  }
}

.news-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.news-item {
  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;
  gap: 20px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 6px;
  background-color: #fff;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-item {
    gap: 11px;
    padding: 20px;
  }
}
.news-item:hover, .news-item:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.news-item:hover .news-item__arrow, .news-item:focus .news-item__arrow {
  border-color: transparent;
}
.news-item:hover .news-item__arrow::before, .news-item:focus .news-item__arrow::before {
  background-color: #fff;
}
.news-item:hover .news-item__arrow::after, .news-item:focus .news-item__arrow::after {
  opacity: 1;
}
.news-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .news-item__body {
    gap: 10px;
  }
}
.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.news-item__date {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
}
.news-item__divider {
  width: 1px;
  height: 16px;
  background-color: #d9d9d9;
}
.news-item__category {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: #004691;
  white-space: nowrap;
}
.news-item__title {
  width: 100%;
  overflow: hidden;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.625;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .news-item__title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.news-item__arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #004691;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  z-index: 0;
}
.news-item__arrow::before, .news-item__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news-item__arrow::before {
  z-index: 1;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: #004691;
  -webkit-mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
          mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
}
.news-item__arrow::after {
  z-index: -1;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.staggered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .staggered {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.staggered__item {
  -webkit-box-ordinal-group: NaN;
      -ms-flex-order: var(--order, 0);
          order: var(--order, 0);
}
.staggered__number {
  text-align: center;
  position: relative;
  font: 400 8rem "Benne", serif;
  line-height: 0.7em;
  background: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background: linear-gradient(to right, #000040 0%, #004691 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.staggered__number::before {
  content: "";
  width: 1px;
  height: 40px;
  background: #fff;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .staggered__number::before {
    height: 29px;
    bottom: -26px;
  }
}
.staggered__photo {
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  margin-block: 17px 20px;
}
@media screen and (max-width: 767px) {
  .staggered__photo {
    border-radius: 6px;
    margin-block: 10px 15px;
  }
}
.staggered__photo::before {
  content: "";
  display: block;
  padding-top: 75%;
}
@media screen and (max-width: 767px) {
  .staggered__photo::before {
    padding-top: 74.93%;
  }
}
.staggered__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.2;
}
.staggered__photo img {
  position: absolute;
  inset: 0;
}
.staggered__title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  font: 600 2.4rem "Shippori Mincho", serif;
  color: #fff;
  line-height: 1.25em;
  text-align: center;
  margin-top: 23px;
  padding: 10px;
  width: 65.22%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 64, 0.5)), to(rgba(0, 70, 145, 0.5)));
  background: linear-gradient(to right, rgba(0, 0, 64, 0.5) 0%, rgba(0, 70, 145, 0.5) 100%);
  border: 1px solid #fff;
  border-radius: 4px;
}
@media screen and (max-width: 1023px) {
  .staggered__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .staggered__title {
    font-size: 18px;
    margin-top: 16px;
    padding: 7px 9px;
    border-radius: 3px;
  }
}
.staggered__caption {
  font-size: 1.6rem;
  color: #000;
  line-height: 2em;
  font-weight: 300;
}
.staggered__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 76px;
  width: min(46%, 460px);
}
@media screen and (max-width: 767px) {
  .staggered__col {
    width: 100%;
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .staggered__col--offset {
    margin-top: 140px;
  }
}

.pagebanner {
  padding: 229px 100px 207px;
}
@media screen and (max-width: 1024px) {
  .pagebanner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pagebanner {
    padding: 120px 20px 109px;
  }
}
@media screen and (min-width: 768px) {
  .pagebanner--sm {
    padding-bottom: 121px;
  }
}
.pagebanner__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #004691;
  line-height: 1em;
  display: block;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagebanner__subtitle {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.pagebanner__title {
  font: 600 6.6rem "Noto Serif JP", serif;
  line-height: 1em;
  background: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background: linear-gradient(to right, #000040 0%, #004691 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .pagebanner__title {
    font-size: 34px;
  }
}

.background__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 1366/1127;
}
@media screen and (max-width: 767px) {
  .background__image {
    aspect-ratio: 375/600;
  }
}
.background__circle-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.background__circle-2 {
  position: absolute;
  top: 241px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .background__circle-2 {
    top: 186px;
  }
}

.tab {
  margin-inline: auto;
  max-width: calc(1063px + 22.62%);
  display: grid;
  grid-template-columns: 39.5% 55.5%;
  padding-inline: 13.84% 8.78%;
}
@media screen and (min-width: 1024px) {
  .tab {
    gap: 53px;
  }
}
@media screen and (max-width: 1024px) {
  .tab {
    padding-inline: 30px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .tab {
    grid-template-columns: 100%;
    padding-inline: 0;
  }
}
@media screen and (max-width: 1023px) {
  .tab__nav {
    display: none;
  }
}
.tab__nav-track {
  overflow: visible;
}
.tab__nav-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tab__btn {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  border: none !important;
}
@media screen and (max-width: 1023px) {
  .tab__btn {
    background: 0 0/100% calc(100% + 12px) -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
    background: 0 0/100% calc(100% + 12px) linear-gradient(to right, #000040 0%, #004691 100%);
  }
}
.tab__btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -11px 0 0;
  background-image: inherit;
  -webkit-clip-path: polygon(calc(99% - 11px) max(0%, 50% - 10px), 100% 50%, calc(99% - 11px) min(100%, 50% + 10px), 50% 50%);
          clip-path: polygon(calc(99% - 11px) max(0%, 50% - 10px), 100% 50%, calc(99% - 11px) min(100%, 50% + 10px), 50% 50%);
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .tab__btn::before {
    inset: 0 0 -12px;
    -webkit-clip-path: polygon(min(100%, 50px) calc(100% - 12px), 40px 100%, max(0%, 30px) calc(100% - 12px), 50% 50%);
            clip-path: polygon(min(100%, 50px) calc(100% - 12px), 40px 100%, max(0%, 30px) calc(100% - 12px), 50% 50%);
    opacity: 1;
  }
}
.tab__btn:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (max-width: 1023px) {
  .tab__btn:not(:last-child) {
    margin-bottom: 22px;
  }
}
.tab__btn.is-active {
  background: 0/calc(100% + 11px) 100% -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background: 0/calc(100% + 11px) 100% linear-gradient(to right, #000040 0%, #004691 100%);
}
.tab__btn.is-active::before {
  opacity: 1;
}
.tab__btn.is-active .tab__btn-title {
  color: #fff;
  border-color: #004691;
}
@media screen and (min-width: 1024px) {
  .tab__btn.sp-1023 {
    display: none;
  }
}
.tab__btn-num {
  margin-right: 10px;
  width: 50px;
  font: 400 2.6rem "Playfair Display", serif;
  color: #8fa7bf;
  line-height: 1em;
  text-align: center;
  position: relative;
  top: -3px;
}
@media screen and (max-width: 1023px) {
  .tab__btn-num {
    margin-right: 0;
    width: 40px;
    font-size: 24px;
    top: -4px;
  }
}
.tab__btn-title {
  padding-left: 16px;
  border-left: 1px solid #e8e8e8;
  font: 600 1.8rem "Noto Serif JP", serif;
  line-height: 1.5555555556em;
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1023px) {
  .tab__btn-title {
    color: #fff;
    border-color: #004691;
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.6em;
  }
}
@media screen and (min-width: 1024px) {
  .tab__content {
    padding-top: 32px;
  }
}
.tab__media {
  overflow: hidden;
  position: relative;
  height: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 1023px) {
  .tab__media {
    border-radius: 4px;
  }
}
.tab__cover {
  position: relative;
  aspect-ratio: 590/600;
}
@media screen and (max-width: 1023px) {
  .tab__cover {
    aspect-ratio: 320/240;
  }
}
.tab__cover picture {
  width: 100%;
  height: 100%;
}
.tab__cover-count {
  position: absolute;
  top: 0;
  left: 11px;
  padding-top: 44px;
  width: 94px;
  font-family: "Benne", serif;
  font-size: 8rem;
  color: #fff;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .tab__cover-count {
    left: 10px;
    padding-top: 25px;
    width: 53px;
    font-size: 45px;
  }
}
.tab__cover-count::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .tab__cover-count::before {
    height: 25px;
  }
}
.tab__caption {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75em;
  padding: 16px 20px;
  width: calc(100% - 50px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
}
@media screen and (min-width: 1024px) {
  .tab__caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .tab__caption {
    padding-inline: 8.5px;
    width: 100%;
    line-height: 1.625em;
    border-radius: 0 0 4px 4px;
  }
}

.topics-navi .wp-pagenavi {
  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;
  gap: 22px;
}
.topics-navi .wp-pagenavi a,
.topics-navi .wp-pagenavi .current,
.topics-navi .wp-pagenavi .extend {
  font-size: 1.8rem;
}
.topics-navi .wp-pagenavi .current {
  color: #004691;
}
.topics-navi .wp-pagenavi .previouspostslink,
.topics-navi .wp-pagenavi .nextpostslink {
  position: relative;
  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;
  overflow: hidden;
  width: 24px;
  height: 24px;
  border: 1px solid #004691;
  border-radius: 50%;
  text-indent: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
}
.topics-navi .wp-pagenavi .previouspostslink::before,
.topics-navi .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: #004691;
  -webkit-mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
          mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
}
.topics-navi .wp-pagenavi .previouspostslink:hover,
.topics-navi .wp-pagenavi .nextpostslink:hover {
  background: #004691;
}
.topics-navi .wp-pagenavi .previouspostslink:hover::before,
.topics-navi .wp-pagenavi .nextpostslink:hover::before {
  background-color: #fff;
}
.topics-navi .wp-pagenavi .previouspostslink {
  margin-right: 12px;
  -webkit-transform: rotate(180deg) scaleY(-1);
          transform: rotate(180deg) scaleY(-1);
}
.topics-navi .wp-pagenavi .nextpostslink {
  margin-left: 12px;
}

.anchor {
  display: block;
  position: absolute;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    margin-top: -46px;
  }
}
.anchor--metal-sec {
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .anchor--metal-sec {
    margin-top: -46px;
  }
}
@media screen and (max-width: 767px) {
  .anchor--access {
    margin-top: -110px;
  }
}

.tech {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .tech {
    padding-bottom: 68px;
  }
}
.tech__hero {
  position: relative;
  margin-inline: auto;
  width: calc(100% - 60px);
  aspect-ratio: 1306/500;
}
@media screen and (max-width: 767px) {
  .tech__hero {
    width: calc(100% - 40px);
    aspect-ratio: 335/180;
  }
}
.tech__hero::after {
  content: "Technology/Equipment";
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  color: #fff;
  line-height: 1em;
  text-align: right;
  opacity: 0.5;
  position: absolute;
  top: -62px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .tech__hero::after {
    font-size: 60px;
    top: -36px;
  }
}
@media screen and (max-width: 767px) {
  .tech__hero::after {
    font-size: 40px;
    top: -65px;
    content: "Technology/\a Equipment";
    white-space: pre-line;
  }
}
.tech__hero img {
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .tech__hero img {
    border-radius: 4px;
  }
}
.tech__intro {
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .tech__intro {
    padding-top: 50px;
  }
}
.tech__intro-inner {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 888px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .tech__intro-inner {
    max-width: 100%;
    padding-inline: 20px;
  }
}
.tech__intro-title {
  padding-bottom: 20px;
}
.tech__intro-diagram {
  position: relative;
  z-index: -1;
  aspect-ratio: 1200/1200;
  margin-block: -163px -156px;
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 1260px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .tech__intro-diagram {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tech__intro-diagram {
    margin-block: -61px -59px;
    padding-inline: 0;
    aspect-ratio: 375/525;
  }
}
.tech__intro-diagram img {
  width: 100%;
  height: 100%;
}
.tech__feature {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .tech__feature {
    padding-bottom: 80px;
  }
}
.tech__equip-inner {
  padding-bottom: 34px;
}
@media screen and (max-width: 1023px) {
  .tech__equip-inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tech__equip-inner {
    padding-bottom: 20px;
  }
}
.tech__works {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .tech__works {
    padding-block: 50px 70px;
  }
}
.tech__works-desc {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .tech__works-desc {
    padding-top: 20px;
  }
}
.tech__works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .tech__works-list {
    grid-template-columns: 100%;
    padding: 20px 11.5px 0;
  }
}
.tech__works-card-image {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 312/234;
  border-radius: 0 6px 6px;
  overflow: hidden;
}
.tech__works-card-category {
  display: inline-block;
  padding: 8px 10px;
  background: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background: linear-gradient(to right, #000040 0%, #004691 100%);
  font-weight: 300;
  font-size: 1.4rem;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.tech__works-card-client {
  display: block;
  padding-bottom: 6px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #004691;
}
.tech__works-card-name {
  font-size: 1.6rem;
  line-height: 1.625em;
}

.company {
  padding-bottom: 312px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 77px;
  }
}
.company__hero {
  position: relative;
  margin-inline: auto;
  width: calc(100% - 60px);
  aspect-ratio: 1306/500;
}
@media screen and (max-width: 767px) {
  .company__hero {
    width: calc(100% - 40px);
    aspect-ratio: 335/180;
  }
}
.company__hero::after {
  content: "Company Profile";
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  color: #fff;
  line-height: 1em;
  text-align: right;
  opacity: 0.5;
  position: absolute;
  top: -62px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .company__hero::after {
    font-size: 60px;
    top: -36px;
  }
}
@media screen and (max-width: 767px) {
  .company__hero::after {
    font-size: 40px;
    top: -65px;
    content: "Company\aProfile";
    white-space: pre-line;
  }
}
.company__hero img {
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .company__hero img {
    border-radius: 4px;
  }
}
.company__pres {
  display: grid;
  grid-template-columns: 48.7% 42.8%;
  margin-top: 104px;
  -webkit-column-gap: 8.5%;
     -moz-column-gap: 8.5%;
          column-gap: 8.5%;
  grid-template-rows: auto auto 1fr;
}
@media screen and (max-width: 980px) {
  .company__pres {
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
}
@media screen and (max-width: 767px) {
  .company__pres {
    margin-top: 30px;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
}
.company__pres-tagline {
  margin-bottom: 54px;
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .company__pres-tagline {
    margin-bottom: 20px;
    grid-column: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.company__pres-text {
  grid-row: 2/4;
}
@media screen and (max-width: 767px) {
  .company__pres-text {
    grid-row: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.company__pres-photo {
  margin-top: 13px;
  width: 100%;
  aspect-ratio: 428/476;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__pres-photo {
    margin: 0 auto 20px;
    width: 280px;
    height: 312px;
  }
}
.company__pres-name {
  margin-top: 20px;
  grid-column: 2/3;
  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: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__pres-name {
    grid-column: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    gap: 21px;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 20px;
  }
}
.company__pres-role {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 1.4rem/1 "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .company__pres-role {
    font-size: 14px;
  }
}
.company__pres-person {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 2.4rem/1 "Noto Serif JP", serif;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .company__pres-person {
    font-size: 24px;
  }
}
.company__qual {
  padding-block: 140px 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__qual {
    padding-block: 50px;
  }
}
.company__qual-tagline {
  margin-block: 86px 34px;
}
@media screen and (max-width: 767px) {
  .company__qual-tagline {
    margin-block: 20px;
  }
}
.company__qual-staggered {
  margin-top: 41px;
}
@media screen and (max-width: 767px) {
  .company__qual-staggered {
    margin-top: 30px;
  }
}
.company__table-card {
  margin-top: 55px;
  padding: 28px 50px 58px;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .company__table-card {
    margin-top: 20px;
    padding: 10px 17px;
  }
}
.company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 29px;
  min-height: 70px;
  padding-block: 22px;
  border-bottom: 1px solid #c2c2c2;
}
@media screen and (max-width: 767px) {
  .company__row {
    -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: 10px;
    min-height: 0;
    padding-block: 20px;
  }
}
.company__row:last-child {
  border-bottom: none;
}
.company__row-label {
  width: 162px;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  color: #004691;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__row-label {
    width: 100%;
    text-align: left;
    font-size: 16px;
  }
}
.company__row-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 767px) {
  .company__row-value {
    font-size: 16px;
    line-height: 1.625em;
  }
}
.company__history {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .company__history {
    padding-block: 50px 111px;
  }
}
@media screen and (max-width: 767px) {
  .company__access {
    padding-block: 50px;
  }
}
.company__access-container {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company__access-badge {
  display: inline-block;
  margin-top: 55px;
  padding: 10px 27px;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background: linear-gradient(to right, #000040 0%, #004691 100%);
  font: 600 1.8rem/28px "Noto Serif JP", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .company__access-badge {
    margin-top: 20px;
  }
}
.company__access-map {
  margin-top: 20px;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 460/301;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .company__access-map {
    aspect-ratio: 334/219;
  }
}
.company__access-map iframe {
  width: 100%;
  height: 100%;
}
.company__access-address {
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: 1.6111111111em;
  color: #333;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .company__access-address {
    margin-top: 20px;
  }
}
.company__pres-section {
  margin-top: 110px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .company__pres-section {
    margin-top: 50px;
  }
}
.company__qual-circle {
  position: absolute;
  top: -187px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .company__qual-circle {
    top: -117px;
  }
}

.top {
  padding-bottom: 312px;
}
@media screen and (max-width: 767px) {
  .top {
    padding-bottom: 138px;
  }
}

@-webkit-keyframes top-mv-zoom-out {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes top-mv-zoom-out {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.top-mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
@media screen and (max-width: 767px) {
  .top-mv {
    max-height: 667px;
  }
}
.top-mv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top-mv__bg .splide__track,
.top-mv__bg .splide__list,
.top-mv__bg .splide__slide {
  height: 100%;
}
.top-mv__bg .splide__slide .image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.top-mv__bg .splide__slide .image.is-zooming {
  -webkit-animation: top-mv-zoom-out 5.7s linear forwards;
          animation: top-mv-zoom-out 5.7s linear forwards;
}
.top-mv__bg .splide__slide picture {
  width: 100%;
  height: 100%;
}
.top-mv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 23.4vh 56px;
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 1276px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-mv__container {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-height: 630px) {
  .top-mv__container {
    padding-top: 16vh;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__container {
    padding-block: 88px 20px;
  }
}
.top-mv__vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-mv__vertical {
    padding-right: 6px;
  }
}
.top-mv__vertical-item {
  padding: 0 12px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-font-feature-settings: "vrt2" 1;
          font-feature-settings: "vrt2" 1;
  border-left: 1px solid #fff;
  font: 300 2.8rem/1.0714285714em "Noto Serif JP", serif;
  color: #fff;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .top-mv__vertical-item {
    padding: 0 7px;
    font-size: 18px;
    line-height: 1.1111111111em;
  }
}
.top-mv__vertical-item:first-child {
  border-right: 1px solid #fff;
}
.top-mv__tagline {
  font: 400 2rem/1.6em "Playfair Display", serif;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top-mv__tagline {
    font-size: 16px;
    line-height: 2em;
  }
}

.top-message {
  padding-block: 173px 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-message {
    padding-block: 84px 50px;
  }
}
.top-message__title {
  position: absolute;
  font: 400 20rem "Playfair Display", serif;
  color: #fff;
  z-index: -1;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0.5;
}
@media screen and (max-width: 980px) {
  .top-message__title {
    top: 42px;
    font-size: 160px;
  }
}
@media screen and (max-width: 767px) {
  .top-message__title {
    top: 4px;
    font-size: 97.88px;
  }
}
.top-message__container {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 900px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-message__container {
    max-width: 100%;
    padding-inline: 20px;
  }
}
.top-message__btn {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .top-message__btn {
    margin-top: 30px;
  }
}
.top-message__bg-circle {
  position: absolute;
  z-index: -1;
  width: 27.8vw;
  aspect-ratio: 38/60;
  max-width: 380px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-message__bg-circle {
    aspect-ratio: 144/225;
    width: 144px;
  }
}
.top-message__bg-circle--1 {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top-message__bg-circle--1 {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}
.top-message__bg-circle--2 {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
@media screen and (max-width: 767px) {
  .top-message__bg-circle--2 {
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
}
.top-message__bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  aspect-ratio: 1366/600;
}
@media screen and (max-width: 767px) {
  .top-message__bg-image {
    aspect-ratio: 375/600;
  }
}

.top-oem {
  z-index: 2;
}
.top-oem__intro {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .top-oem__intro {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-oem__intro {
    margin-bottom: 30px;
  }
}
.top-oem__heading {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top-oem__heading {
    margin-bottom: 20px;
  }
}
.top-oem__tab-content {
  margin-top: auto;
}
.top-oem__links {
  margin: 48px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  max-width: calc(1063px + 22.62%);
  padding-inline: 13.84% 8.78%;
}
@media screen and (max-width: 1024px) {
  .top-oem__links {
    padding-inline: 30px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-oem__links {
    margin-top: 30px;
    padding-inline: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-company {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .top-company {
    padding-block: 50px;
  }
}
.top-company__inner {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 1366px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-company__inner {
    max-width: 100%;
    padding-inline: 20px;
  }
}
.top-company__intro {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top-company__intro {
    margin-top: 20px;
  }
}
.top-company__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top-company__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
}
.top-company__link-card {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 16px 16px 30px;
  border-radius: 6px;
  background-color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .top-company__link-card {
    gap: 12px;
    padding: 12px 12px 24px;
  }
}
.top-company__link-card:hover .top-company__link-card-image::after, .top-company__link-card:focus .top-company__link-card-image::after {
  opacity: 1;
}
.top-company__link-card:hover .top-company__link-card-arrow, .top-company__link-card:focus .top-company__link-card-arrow {
  border-color: transparent;
}
.top-company__link-card:hover .top-company__link-card-arrow::before, .top-company__link-card:focus .top-company__link-card-arrow::before {
  background-color: #fff;
}
.top-company__link-card:hover .top-company__link-card-arrow::after, .top-company__link-card:focus .top-company__link-card-arrow::after {
  opacity: 1;
}
.top-company__link-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 395/198;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .top-company__link-card-image {
    aspect-ratio: 311/156;
    border-radius: 3px;
  }
}
.top-company__link-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(6, 18, 42, 0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-company__link-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.top-company__link-card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.top-company__link-card-label {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #004691;
}
.top-company__link-card-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 2rem "Noto Serif JP", serif;
}
.top-company__link-card-arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #004691;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  z-index: 0;
}
.top-company__link-card-arrow::before, .top-company__link-card-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-company__link-card-arrow::before {
  z-index: 1;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: #004691;
  -webkit-mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
          mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
}
.top-company__link-card-arrow::after {
  z-index: -1;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.top-topics {
  display: grid;
  gap: 60px 16px;
  grid-template-columns: 242px 1fr;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 767px) {
  .top-topics {
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.top-topics__list {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .top-topics__list {
    grid-area: auto;
  }
}
@media screen and (max-width: 767px) {
  .top-topics__more {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.top-topics__more-btn {
  width: 160px;
}

.contact {
  padding-bottom: 372px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 138px;
  }
}
.contact--complete {
  padding-block: 268px 332px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact--complete {
    padding-block: 138px;
  }
}
.contact__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    gap: 30px;
  }
}
.contact__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__phone {
    margin-inline: auto;
    gap: 15px;
  }
}
.contact__phone:hover {
  opacity: 0.7;
}
.contact__phone-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .contact__phone-icon {
    width: 50px;
    height: 50px;
  }
}
.contact__phone-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contact__phone-number {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 600 4rem "Noto Serif JP", serif;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .contact__phone-number {
    font-size: 32px;
  }
}
.contact__phone-sublabel {
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font: 400 1.4rem "Noto Sans JP", sans-serif;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .contact__phone-sublabel {
    font-size: 12px;
  }
}
.contact__form {
  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;
  margin-top: 69px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 60px;
  }
}
.contact__card {
  width: 100%;
  padding: 80px 90px;
  background-color: #fff;
  border-radius: 6px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .contact__card {
    padding: 30px 18px;
  }
}
.contact__card--privacy {
  margin-top: 80px;
  padding: 4px 0;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .contact__card--privacy {
    margin-top: 40px;
  }
}
.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: none;
}
.contact__card > .contact__field:not(:first-child) {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .contact__card > .contact__field:not(:first-child) {
    margin-top: 20px;
  }
}
.contact__label {
  font-weight: 300;
}
.contact__required {
  color: #004691;
  font-weight: 700;
}
.contact__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px 30px;
  padding: 18px 30px;
  background-color: #e8eef4;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .contact__radio-group {
    -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;
    height: auto;
    gap: 26px;
  }
}
.contact__radio-group label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.6rem;
}
.contact__radio-group input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid #004691;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.contact__radio-group input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background-color: #004691;
}
.contact__input, .contact__textarea {
  width: 100%;
  height: 60px;
  margin-top: 0;
  padding: 0 20px;
  background-color: #e8eef4;
  border: none;
  border-radius: 2px;
  font-weight: 300;
  font-size: 1.8rem;
  font-family: inherit;
}
.contact__input::-webkit-input-placeholder, .contact__textarea::-webkit-input-placeholder {
  color: #8fa7bf;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: #8fa7bf;
}
.contact__input:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: #8fa7bf;
}
.contact__input::-ms-input-placeholder, .contact__textarea::-ms-input-placeholder {
  color: #8fa7bf;
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: #8fa7bf;
}
@media screen and (max-width: 767px) {
  .contact__input, .contact__textarea {
    font-size: 16px;
  }
}
.contact__textarea {
  height: 232px;
  padding: 20px;
  line-height: 1.4;
  resize: none;
}
.contact__zip-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
}
@media screen and (max-width: 767px) {
  .contact__zip-row {
    -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;
  }
}
.contact__input--address {
  padding-block: 16px;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__input--address {
    line-height: 1.7777777778em;
  }
}
@media screen and (max-width: 530px) {
  .contact__input--address {
    height: 90px;
  }
}
.contact__input--zip {
  width: 347px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__input--zip {
    width: 100%;
  }
}
.contact__hint {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1.375em;
  font-weight: 300;
}
.contact__note {
  font-size: 1.6rem;
  line-height: 2.5em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .contact__note {
    font-size: 14px;
  }
}
.contact__privacy-inner {
  padding: 68px 90px;
  overflow-y: auto;
  height: 556px;
  scrollbar-width: thin;
}
@media screen and (max-width: 767px) {
  .contact__privacy-inner {
    padding: 26px 18px;
    height: 305px;
  }
}
.contact__privacy-title {
  font: 500 2.4rem "Noto Serif JP", serif;
  line-height: 1.3333333333em;
  color: #000;
  text-align: center;
}
.contact__privacy-body {
  margin-top: 48px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__privacy-body {
    margin-top: 20px;
  }
}
.contact__agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  margin-top: 48px;
  cursor: pointer;
  font-size: 1.8rem;
  color: #000;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .contact__agree label {
    margin-top: 27px;
    font-size: 16px;
  }
}
.contact__agree input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin: 0;
  border: 1px solid #004691;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.contact__agree input[type=checkbox]::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 10px;
  background: url("./public/img/icons/icon-checkbox-check.svg") no-repeat center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact__agree input[type=checkbox]:checked {
  background-color: #fff;
}
.contact__agree input[type=checkbox]:checked::after {
  opacity: 1;
}
.contact__submit-btn {
  margin-top: 80px;
  width: 264px;
  height: 64px;
  padding: 0 32px;
  border-radius: 32px;
  font-size: 2.2rem;
  z-index: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__submit-btn {
    margin-top: 27px;
  }
}
.contact__complete-title {
  font-size: 3.2rem;
  line-height: 1.25em;
  margin-bottom: 102px;
}
@media screen and (max-width: 767px) {
  .contact__complete-title {
    font-size: 24px;
    line-height: 1.6666666667em;
    margin-bottom: 80px;
  }
}
.contact__complete-text {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact__complete-text {
    margin-bottom: 30px;
    text-align: left;
  }
}
.contact__complete-phone {
  margin: 0 auto 44px;
}
@media screen and (max-width: 767px) {
  .contact__complete-phone {
    margin-bottom: 30px;
  }
}
.contact__complete-hours {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .contact__complete-hours {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.contact__back {
  margin-top: 27px;
}

.topics-list {
  padding-bottom: 318px;
}
@media screen and (max-width: 767px) {
  .topics-list {
    padding-bottom: 138px;
  }
}
.topics-list__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .topics-list__filters {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.topics-list__filter {
  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: 76px;
  height: 30px;
  border: 1px solid #004691;
  background-color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  color: #004691;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.topics-list__filter.is-active {
  background-color: #004691;
  color: #fff;
}
.topics-list__filter:hover {
  opacity: 0.7;
}
.topics-list__navi {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .topics-list__navi {
    margin-top: 56px;
  }
}

.topics-detail {
  padding-bottom: 271px;
}
@media screen and (max-width: 767px) {
  .topics-detail {
    padding-bottom: 138px;
  }
}
.topics-detail__container {
  padding: 100px;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .topics-detail__container {
    padding: 70px 8%;
  }
}
@media screen and (max-width: 767px) {
  .topics-detail__container {
    padding: 40px 18px 49px;
  }
}
.topics-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.topics-detail__date {
  padding-right: 20px;
  border-right: 1px solid #d9d9d9;
  font-weight: 300;
  font-size: 1.6rem;
}
.topics-detail__category {
  font-weight: 300;
  font-size: 1.6rem;
  color: #004691;
}
.topics-detail__title {
  margin-top: 50px;
  font: 600 2.8rem/1.7142857143em "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: -webkit-gradient(linear, left top, right top, from(#000040), to(#004691));
  background-image: linear-gradient(to right, #000040, #004691);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .topics-detail__title {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.6666666667em;
  }
}
.topics-detail__body {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .topics-detail__body {
    margin-top: 30px;
  }
}
.topics-detail__heading, .topics-detail__body h2 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2em;
  color: #004691;
}
@media screen and (max-width: 767px) {
  .topics-detail__heading, .topics-detail__body h2 {
    font-size: 18px;
    line-height: 2.2222222222em;
  }
}
.topics-detail__text, .topics-detail__body p {
  margin-top: 32px;
  font-size: 1.8rem;
  line-height: 2.2222222222em;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .topics-detail__text, .topics-detail__body p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2em;
  }
}
.topics-detail__image, .topics-detail__body .wp-block-image img {
  margin-top: 45px;
  width: 100%;
  aspect-ratio: 800/473;
  background-color: #d9d9d9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .topics-detail__image, .topics-detail__body .wp-block-image img {
    margin-top: 30px;
    aspect-ratio: 300/195;
  }
}
@media screen and (max-width: 767px) {
  .topics-detail__navi {
    margin-top: 49px;
  }
}
.topics-detail__article-nav {
  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;
  gap: 50px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .topics-detail__article-nav {
    margin: 101px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 50px;
    max-width: 300px;
  }
}
.topics-detail__article-nav > div {
  min-width: 114px;
}
.topics-detail__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 300;
  font-size: 1.6rem;
  color: #525252;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.topics-detail__nav-link--prev .topics-detail__nav-arrow {
  -webkit-transform: rotate(180deg) scaleY(-1);
          transform: rotate(180deg) scaleY(-1);
}
.topics-detail__nav-link:hover {
  color: #004691;
}
.topics-detail__nav-link:hover .topics-detail__nav-arrow {
  background: #004691;
}
.topics-detail__nav-link:hover .topics-detail__nav-arrow::before {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .topics-detail__nav-link--back {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.topics-detail__nav-arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #004691;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
}
.topics-detail__nav-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: #004691;
  -webkit-mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
          mask: url("./public/img/icons/arrow-small.svg") no-repeat center/contain;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.nowrap {
  white-space: nowrap;
}

.relative {
  position: relative;
}

.page-404 {
  padding-bottom: 320px;
}
@media screen and (max-width: 767px) {
  .page-404 {
    padding-bottom: 138px;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

span.wpcf7-list-item {
  margin: 0;
}

span.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 5px;
}

.wpcf7-response-output,
.wpcf7-spinner {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}