html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

.pc-tel {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .pc-tel {
    pointer-events: auto;
  }
}
.header {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0 24px;
}
.header__inner {
  max-width: 1360px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0px;
}
.header__inner .header__logo {
  width: 160px;
  aspect-ratio: 160/79;
  background-image: url(/assets/images/header-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.header__inner .header__logo img {
  width: 100%;
}
.header__inner .header-right {
  max-width: 991px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
.header__inner .header-right .header-nav {
  max-width: 775px;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.header__inner .header-right .header-nav__item {
  max-width: 149px;
  width: 100%;
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--General-Neutral-main, #222);
  text-overflow: ellipsis;
  font-weight: 700;
  line-height: 112.5%; /* 18px */
}
.header__inner .header-right .header-nav__item:after {
  position: absolute;
  top: 0;
  right: -5px;
  content: "";
  display: block;
  width: 2px;
  height: 48px;
  background-color: rgb(34, 34, 34);
}
.header__inner .header-right .header-nav__item:last-child:after {
  display: none;
}

.hamburger-menu {
  z-index: 12;
  width: 40px;
  height: 23px;
  display: none;
  position: relative;
}
.hamburger-menu .menu-open-btn {
  width: 40px;
  height: 23px;
  display: block;
  position: relative;
}
.hamburger-menu .menu-open-btn__line {
  display: block;
  background-color: black;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
}
.hamburger-menu .menu-open-btn__line--middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu .menu-open-btn__line--bottom {
  position: absolute;
  bottom: 0;
}
.hamburger-menu .menu-open-btn--white .menu-open-btn__line {
  background-color: white;
}
.hamburger-menu .clicked .menu-open-btn__line {
  transition: all 0.4s;
  background-color: #222;
}
.hamburger-menu .clicked .menu-open-btn__line--top {
  transform: translateY(10px) rotate(-45deg);
}
.hamburger-menu .clicked .menu-open-btn__line--middle {
  display: none;
}
.hamburger-menu .clicked .menu-open-btn__line--bottom {
  transform: translateY(-10px) rotate(45deg);
}

.header-nav-hmb {
  display: none;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 11;
  width: 70vw;
  height: 100vh;
}
.header-nav-hmb .header-items {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}
.header-nav-hmb .header-items__item {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px dotted black;
}
.header-nav-hmb .header-items__item--cta {
  border-bottom: none;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.header-nav-hmb .header-items__item--cta .contact-section__hours-phone {
  text-align: center;
  color: #222;
  margin-bottom: 0;
}
.header-nav-hmb .header-items__item--cta .contact-section__hours {
  text-align: center;
  color: #222;
}
.header-nav-hmb .header-items__item--cta .contact-section__phone {
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #222;
}
.header-nav-hmb .header-items__item--cta .icon-phone svg {
  fill: #222;
}
.header-nav-hmb .header-items__item--cta .icon-phone svg path {
  fill: #222;
}
.header-nav-hmb .header-items__item--cta .contact-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000000;
  color: #fff;
  /* text/16- Bold -line-hgeiht:160% - -letter-padding:6% */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.64px;
  padding: 12px 0px;
  width: 100%;
}
.header-nav-hmb .header-items--reserve-btn {
  margin-top: 30px;
  text-align: center;
}
.header-nav-hmb .cta {
  max-width: none;
  height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav-hmb .cta--left {
  background: #5389db;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header-nav-hmb .cta--left__icon {
  background-image: url(../assets/svgs/download.svg);
  margin-right: 4px;
  margin-top: 6px;
}
.header-nav-hmb .cta--right {
  background: #fff;
  color: #5389db;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.filter-hmb {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

.footer {
  padding: 0 24px;
}
.footer__inner {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 80px 0px 72px;
  margin: 0 auto;
}
.footer__inner .footer-left .footer__logo {
  display: block;
  width: 160px;
  aspect-ratio: 160/79;
  background-image: url(/assets/images/header-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 22px;
}
.footer__inner .footer-left .footer-text {
  padding: 10px 12px;
}
.footer__inner .footer-left .footer-text p {
  color: var(--General-Neutral-main, #222);
  font-size: var(--Font-Size-Body-small, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Font-Line-height-Body-small, 21px); /* 150% */
}
.footer__inner .footer-right {
  max-width: 683px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
.footer__inner .footer-right .footer-nav {
  max-width: 683px;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.footer__inner .footer-right .footer-nav__item {
  max-width: 100px;
  width: 100%;
  padding: 11px 12px;
  display: flex;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  color: var(--General-Neutral-main, #222);
  text-align: center;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-height-Body-xs, 18px); /* 128.571% */
  text-overflow: ellipsis;
  font-weight: 700;
  line-height: 112.5%; /* 18px */
}
.footer__inner .footer-right .footer-nav__item:after {
  position: absolute;
  top: 0;
  right: -5px;
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background-color: rgba(34, 34, 34, 0.16);
}
.footer__inner .footer-right .footer-nav__item:last-child:after {
  display: none;
}

.copy-right {
  padding: 20px 24px;
  color: #fff;
  background: #0265dc;
  -webkit-text-stroke-width: 0.400000006px;
  -webkit-text-stroke-color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
  text-align: center;
}

.page-visual {
  margin-top: 89px;
  background-image: url(/assets/images/page-visual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.page-visual .right-shape {
  aspect-ratio: 100/100;
  width: 220px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/images/page-visual-right-shape.png) transparent 50%/cover no-repeat;
  mix-blend-mode: plus-lighter;
}
.page-visual__inner {
  padding-top: 68px;
  padding-bottom: 45px;
}

.breadcrumb {
  margin-top: 40px;
  margin-bottom: 80px;
}
.breadcrumb .breadcrumb-list {
  display: flex;
  color: #333;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 1.28px;
}
.breadcrumb .breadcrumb-list li:nth-child(1) {
  color: #1e4b9e;
  font-family: "M PLUS 1p", sans-serif;
  text-decoration-line: underline;
}

.shape-wrapper {
  position: relative;
  overflow: hidden;
}
.shape-wrapper .subp-left-shape {
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/assets/images/subp-left-shape.png);
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 421/794;
  max-width: 421px;
  width: 100%;
}
.shape-wrapper .subp-right-shape {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(/assets/images/subp-right-shape.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1440/2295;
  height: 100%;
}
.shape-wrapper .company-img {
  position: absolute;
  right: 0;
  bottom: 415px;
  background-image: url(/assets/images/company-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 40.8333333333vw;
  aspect-ratio: 588/1123;
  width: 100%;
}

.subp-content {
  position: relative;
  z-index: 1;
}

.two-col-table .table-row {
  color: #222;
  display: flex;
  padding-top: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e4b9e;
}
.two-col-table .table-row .key {
  width: 260px;
  margin-right: 40px;
  color: #0e318d;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}
.two-col-table .table-row .value {
  color: #000;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}
.two-col-table .table-row:first-child {
  padding-top: 0;
}
.two-col-table--black .table-row .key {
  color: #000;
}

.cmn-btn {
  padding: 12px 16px;
  max-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--Corner-Rounding-my-product, 0px);
  background: var(--CTA-GRADIENT, linear-gradient(270deg, #2f8ff7 0%, #16bce0 100%));
}
.cmn-btn__text {
  padding: 1px 12px;
  color: var(--General-Neutral-static-white, #fff);
  font-family: "M PLUS 1p", sans-serif;
  font-size: var(--Font-Size-Body-xl, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-height-Body-xl, 30px); /* 150% */
}
.cmn-btn__logo {
  display: flex;
  align-items: center;
}
.cmn-btn--reversed-color {
  background: var(--General-Neutral-static-white, #fff);
}
.cmn-btn--reversed-color .cmn-btn__text {
  color: var(--General-Primary-main, #0265dc);
}
.cmn-btn--reversed-color .cmn-btn__logo svg path {
  fill: #0265dc;
}

.cmn-head__en {
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 80px */
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.cmn-head__jp {
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 0.96px;
}
.cmn-head--blue .cmn-head__en {
  color: var(--General-Primary-light, #3892F3);
  font-family: "M PLUS 1p", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 100px */
  letter-spacing: 1px;
}
.cmn-head--blue .cmn-head__jp {
  color: var(--General-Primary-dark, #003571);
}
.cmn-head--mix-blend .cmn-head__en {
  mix-blend-mode: plus-lighter;
  color: #2174ba;
}
.cmn-head--mix-blend .cmn-head__jp {
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: 1.6px;
}

.c-box {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.c-box__inner {
  max-width: 1120px;
  width: 100%;
}

.subp-head {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-image: url(/assets/images/subp-head.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.subp-head__logo {
  width: 8px;
  height: 44px;
  background: linear-gradient(268deg, #c5d8f5 -6.64%, #f0f7fb 89.19%);
}
.subp-head__text {
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  letter-spacing: 1.92px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb64 {
  margin-bottom: 64px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb120 {
  padding-bottom: 100px;
}

@media screen and (max-width: 1000px) {
  .header {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.86);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0 24px;
  }
  .header__inner {
    max-width: 1360px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
  }
  .header__inner .header__logo {
    width: 160px;
    aspect-ratio: 160/79;
    background-image: url(/assets/images/header-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header__inner .header__logo img {
    width: 100%;
  }
  .header__inner .header-right {
    max-width: 991px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
    display: none;
  }
  .header__inner .header-right .header-nav {
    max-width: 775px;
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
  }
  .header__inner .header-right .header-nav__item {
    max-width: 149px;
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    position: relative;
    color: var(--General-Neutral-main, #222);
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 112.5%; /* 18px */
  }
  .header__inner .header-right .header-nav__item:after {
    position: absolute;
    top: 0;
    right: -5px;
    content: "";
    display: block;
    width: 2px;
    height: 48px;
    background-color: rgb(34, 34, 34);
  }
  .header__inner .header-right .header-nav__item:last-child:after {
    display: none;
  }
  .hamburger-menu {
    z-index: 12;
    width: 40px;
    height: 23px;
    display: flex;
    position: relative;
  }
  .hamburger-menu .menu-open-btn {
    width: 40px;
    height: 23px;
    display: block;
    position: relative;
  }
  .hamburger-menu .menu-open-btn__line {
    display: block;
    background-color: black;
    width: 100%;
    height: 2px;
    transition: all 0.4s;
  }
  .hamburger-menu .menu-open-btn__line--middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger-menu .menu-open-btn__line--bottom {
    position: absolute;
    bottom: 0;
  }
  .hamburger-menu .menu-open-btn--white .menu-open-btn__line {
    background-color: white;
  }
  .hamburger-menu .clicked .menu-open-btn__line {
    transition: all 0.4s;
    background-color: #222;
  }
  .hamburger-menu .clicked .menu-open-btn__line--top {
    transform: translateY(10px) rotate(-45deg);
  }
  .hamburger-menu .clicked .menu-open-btn__line--middle {
    display: none;
  }
  .hamburger-menu .clicked .menu-open-btn__line--bottom {
    transform: translateY(-10px) rotate(45deg);
  }
  .header-nav-hmb {
    display: none;
    position: fixed;
    z-index: 100;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 11;
    width: 70vw;
    height: 100vh;
  }
  .header-nav-hmb .header-items {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: black;
  }
  .header-nav-hmb .header-items__item {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px dotted black;
  }
  .header-nav-hmb .header-items__item--cta {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .header-nav-hmb .header-items__item--cta .contact-section__hours-phone {
    text-align: center;
    color: #222;
    margin-bottom: 0;
  }
  .header-nav-hmb .header-items__item--cta .contact-section__hours {
    text-align: center;
    color: #222;
  }
  .header-nav-hmb .header-items__item--cta .contact-section__phone {
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #222;
  }
  .header-nav-hmb .header-items__item--cta .icon-phone svg {
    fill: #222;
  }
  .header-nav-hmb .header-items__item--cta .icon-phone svg path {
    fill: #222;
  }
  .header-nav-hmb .header-items__item--cta .contact-section__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000000;
    color: #fff;
    /* text/16- Bold -line-hgeiht:160% - -letter-padding:6% */
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.64px;
    padding: 12px 0px;
    width: 100%;
  }
  .header-nav-hmb .header-items--reserve-btn {
    margin-top: 30px;
    text-align: center;
  }
  .header-nav-hmb .cta {
    max-width: none;
    height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-nav-hmb .cta--left {
    background: #5389db;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .header-nav-hmb .cta--left__icon {
    background-image: url(../assets/svgs/download.svg);
    margin-right: 4px;
    margin-top: 6px;
  }
  .header-nav-hmb .cta--right {
    background: #fff;
    color: #5389db;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .filter-hmb {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 24px;
  }
  .footer__inner {
    max-width: 1120px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0px 36px;
    margin: 0 auto;
  }
  .footer__inner .footer-left .footer__logo {
    display: block;
    width: 160px;
    aspect-ratio: 160/79;
    background-image: url(/assets/images/header-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 22px;
  }
  .footer__inner .footer-left .footer-text {
    padding: 10px 12px;
  }
  .footer__inner .footer-left .footer-text p {
    color: var(--General-Neutral-main, #222);
    font-size: var(--Font-Size-Body-small, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--Font-Line-height-Body-small, 21px); /* 150% */
  }
  .footer__inner .footer-right {
    max-width: 683px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
  }
  .footer__inner .footer-right .footer-nav {
    max-width: 683px;
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer__inner .footer-right .footer-nav__item {
    max-width: 100px;
    width: 100%;
    padding: 11px 12px;
    display: flex;
    justify-content: center;
    position: relative;
    white-space: nowrap;
    color: var(--General-Neutral-main, #222);
    text-align: center;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Line-height-Body-xs, 18px); /* 128.571% */
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 112.5%; /* 18px */
  }
  .footer__inner .footer-right .footer-nav__item:after {
    position: absolute;
    top: 0;
    right: -5px;
    content: "";
    display: none;
    width: 2px;
    height: 40px;
    background-color: rgba(34, 34, 34, 0.16);
  }
  .footer__inner .footer-right .footer-nav__item:last-child:after {
    display: none;
  }
  .footer .copy-right {
    padding: 20px 24px;
    color: #fff;
    background: #0265dc;
    -webkit-text-stroke-width: 0.400000006px;
    -webkit-text-stroke-color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 0.56px;
    text-align: center;
  }
  .copy-right {
    padding: 10px 12px;
    color: #fff;
    background: #0265dc;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.28px;
    text-align: center;
  }
  .page-visual {
    margin-top: 89px;
    background-image: url(/assets/images/page-visual.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
  }
  .page-visual .right-shape {
    aspect-ratio: 100/100;
    width: 80px;
    position: absolute;
    right: 0px;
    top: 100px;
    transform: translateY(-50%);
    background: url(/assets/images/page-visual-right-shape.png) transparent 50%/cover no-repeat;
    mix-blend-mode: plus-lighter;
  }
  .page-visual__inner {
    padding-top: 34px;
    padding-bottom: 22.5px;
  }
  .breadcrumb {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .breadcrumb .breadcrumb-list {
    display: flex;
    color: #333;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%;
    letter-spacing: 0.64px;
  }
  .breadcrumb .breadcrumb-list li:nth-child(1) {
    color: #1e4b9e;
    font-family: "M PLUS 1p", sans-serif;
    text-decoration-line: underline;
  }
  .shape-wrapper {
    position: relative;
    overflow: hidden;
  }
  .shape-wrapper .subp-left-shape {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(/assets/images/subp-left-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 421/794;
    max-width: 150px;
    width: 100%;
  }
  .shape-wrapper .subp-right-shape {
    position: absolute;
    right: auto;
    left: 0;
    top: 0;
    background-image: url(/assets/images/subp-right-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 1440/2295;
    height: 100%;
    width: 100%;
  }
  .shape-wrapper .company-img {
    position: absolute;
    right: 0;
    bottom: 380px;
    background-image: url(/assets/images/company-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 80vw;
    aspect-ratio: 588/1123;
    width: 100%;
  }
  .subp-content {
    position: relative;
    z-index: 1;
  }
  .two-col-table .table-row {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 6px;
    border-bottom: 0.5px solid #1e4b9e;
  }
  .two-col-table .table-row .key {
    width: 100%;
    margin-right: 20px;
    color: #0e318d;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
  .two-col-table .table-row .value {
    color: #000;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
  .two-col-table .table-row:first-child {
    padding-top: 0;
  }
  .two-col-table--black .table-row .key {
    color: #000;
  }
  .cmn-btn {
    padding: 10px;
    max-width: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--Corner-Rounding-my-product, 0px);
    background: var(--CTA-GRADIENT, linear-gradient(270deg, #2f8ff7 0%, #16bce0 100%));
  }
  .cmn-btn__text {
    padding: 0.5px 6px;
    color: var(--General-Neutral-static-white, #fff);
    font-family: "M PLUS 1p", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
  }
  .cmn-btn__logo {
    display: flex;
    align-items: center;
  }
  .cmn-btn--reversed-color {
    background: var(--General-Neutral-static-white, #fff);
  }
  .cmn-btn--reversed-color .cmn-btn__text {
    color: var(--General-Primary-main, #0265dc);
  }
  .cmn-btn--reversed-color .cmn-btn__logo svg path {
    fill: #0265dc;
  }
  .cmn-head__en {
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
  }
  .cmn-head__jp {
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.48px;
  }
  .cmn-head--blue .cmn-head__en {
    color: var(--General-Primary-light, #3892F3);
    font-family: "M PLUS 1p", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.5px;
  }
  .cmn-head--blue .cmn-head__jp {
    color: var(--General-Primary-dark, #003571);
  }
  .cmn-head--mix-blend .cmn-head__en {
    mix-blend-mode: plus-lighter;
    color: #2174ba;
  }
  .cmn-head--mix-blend .cmn-head__jp {
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.8px;
  }
  .c-box {
    display: flex;
    justify-content: center;
    padding: 0 24px;
  }
  .c-box__inner {
    max-width: none;
    width: 100%;
  }
  .subp-head {
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-image: url(/assets/images/subp-head.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .subp-head__logo {
    width: 8px;
    height: 26px;
    background: linear-gradient(268deg, #c5d8f5 -6.64%, #f0f7fb 89.19%);
  }
  .subp-head__text {
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
    letter-spacing: 0.96px;
  }
  .mb24 {
    margin-bottom: 12px;
  }
  .mb32 {
    margin-bottom: 16px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .mb48 {
    margin-bottom: 24px;
  }
  .mb64 {
    margin-bottom: 32px;
  }
  .pb80 {
    padding-bottom: 40px;
  }
  .pb100 {
    padding-bottom: 50px;
  }
  .pb120 {
    padding-bottom: 60px;
  }
}/*# sourceMappingURL=commons.css.map */