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

.header {
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0 24px;
}
.header__inner {
  max-width: 1340px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 5px;
}
.header__inner .header__logo {
  margin-left: 50px;
  width: 111px;
  aspect-ratio: 111/75;
  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: 1068px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__inner .header-right .header-nav {
  max-width: 692px;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-right: 16px;
}
.header__inner .header-right .header-nav__item {
  max-width: 149px;
  width: 100%;
  padding: 11px 10px;
  display: flex;
  justify-content: center;
  position: relative;
  color: #fff;
  font-family: "M PLUS 1 Code", sans-serif;
  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: 40px;
  background-color: #fff;
}
.header__inner .header-right .header-nav__item:last-child:after {
  display: none;
}
.header__inner .header-right .cmn-btn {
  margin-right: 20px;
}
.header__inner .header-right .socials {
  display: flex;
  gap: 24px;
}
.header__inner .header-right .socials__item img {
  width: 59px;
  height: 59px;
}

.changed-color {
  background: rgba(0, 0, 0, 0.7);
}

.spbr {
  display: none;
}

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

@media (max-width: 768px) {
  .spbr {
    display: inline;
  }
  .tel-link {
    pointer-events: auto;
  }
}
.subp-header {
  background: #676767;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0 24px;
}
.subp-header__inner {
  max-width: 1340px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 0;
}
.subp-header__inner .header__logo {
  margin-left: 50px;
  width: 111px;
  aspect-ratio: 111/75;
  background-image: url(/assets/images/header-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.subp-header__inner .header__logo img {
  width: 100%;
}
.subp-header__inner .header-right {
  max-width: 1068px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.subp-header__inner .header-right .header-nav {
  max-width: 864px;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-right: 16px;
}
.subp-header__inner .header-right .header-nav__item {
  max-width: 166px;
  width: 100%;
  padding: 11px 10px;
  display: flex;
  justify-content: center;
  position: relative;
  color: #fff;
  font-family: "M PLUS 1 Code", sans-serif;
  font-weight: 700;
  line-height: 112.5%; /* 18px */
}
.subp-header__inner .header-right .header-nav__item:after {
  position: absolute;
  top: 0;
  right: -5px;
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background-color: #fff;
}
.subp-header__inner .header-right .header-nav__item:last-child:after {
  display: none;
}
.subp-header__inner .header-right .socials {
  display: flex;
  gap: 24px;
}
.subp-header__inner .header-right .socials__item img {
  width: 59px;
  height: 59px;
}

.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: #fff;
  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 .socials {
  display: flex;
  gap: 24px;
}
.header-nav-hmb .header-items .socials__item img {
  width: 59px;
  height: 59px;
}
.header-nav-hmb .header-items--reserve-btn {
  margin-top: 30px;
  text-align: center;
}
.header-nav-hmb .header-items .include-content {
  display: flex;
  justify-content: 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 (max-width: 1100px) {
  .header {
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0 24px;
  }
  .header__inner {
    max-width: 1340px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 5px;
  }
  .header__inner .header__logo {
    margin-left: 0px;
    width: 111px;
    width: 80px;
    aspect-ratio: 111/75;
    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: 1068px;
    width: 100%;
    display: none;
    justify-content: flex-end;
    align-items: center;
  }
  .header__inner .header-right .header-nav {
    max-width: 692px;
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-right: 16px;
  }
  .header__inner .header-right .header-nav__item {
    max-width: 149px;
    width: 100%;
    padding: 11px 10px;
    display: flex;
    justify-content: center;
    position: relative;
    color: #fff;
    font-family: "M PLUS 1 Code", sans-serif;
    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: 40px;
    background-color: #fff;
  }
  .header__inner .header-right .header-nav__item:last-child:after {
    display: none;
  }
  .header__inner .header-right .cmn-btn {
    margin-right: 20px;
  }
  .header__inner .header-right .socials {
    display: flex;
    gap: 24px;
  }
  .header__inner .header-right .socials__item img {
    width: 59px;
    height: 59px;
  }
  .subp-header {
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0 24px;
  }
  .subp-header__inner {
    max-width: 1340px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 5px;
  }
  .subp-header__inner .header__logo {
    margin-left: 0px;
    width: 111px;
    width: 80px;
    aspect-ratio: 111/75;
    background-image: url(/assets/images/header-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .subp-header__inner .header__logo img {
    width: 100%;
  }
  .subp-header__inner .header-right {
    max-width: 1068px;
    width: 100%;
    display: none;
    justify-content: flex-end;
    align-items: center;
  }
  .subp-header__inner .header-right .header-nav {
    max-width: 692px;
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-right: 16px;
  }
  .subp-header__inner .header-right .header-nav__item {
    max-width: 149px;
    width: 100%;
    padding: 11px 10px;
    display: flex;
    justify-content: center;
    position: relative;
    color: #fff;
    font-family: "M PLUS 1 Code", sans-serif;
    font-weight: 700;
    line-height: 112.5%; /* 18px */
  }
  .subp-header__inner .header-right .header-nav__item:after {
    position: absolute;
    top: 0;
    right: -5px;
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    background-color: #fff;
  }
  .subp-header__inner .header-right .header-nav__item:last-child:after {
    display: none;
  }
  .subp-header__inner .header-right .cmn-btn {
    margin-right: 20px;
  }
  .subp-header__inner .header-right .socials {
    display: flex;
    gap: 24px;
  }
  .subp-header__inner .header-right .socials__item img {
    width: 59px;
    height: 59px;
  }
  .hamburger-menu {
    display: block;
  }
}
.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: #F16420;
}
.cmn-btn__text {
  padding: 1px 12px;
  color: #fff;
  font-family: "M PLUS 1 Code", 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: #232b52;
  font-family: "Open Sans", sans-serif;
  font-size: 52px;
  color: #fcf0dc;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #232b52;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 76.923% */
  letter-spacing: -0.52px;
  margin-bottom: 6px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}
.cmn-head__en span {
  font-size: 40px;
}
.cmn-head__jp {
  color: #232b52;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 166.667% */
  letter-spacing: 1.92px;
}

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

.footer {
  padding: 0 24px;
  background: #F88248;
  position: relative;
}
.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: 90px;
  aspect-ratio: 93/63;
  background-image: url(/assets/images/footer-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 12px;
}
.footer__inner .footer-left .footer-text {
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer__inner .footer-left .footer-text p {
  color: #fff;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: var(--Font-Size-Body-small, 14px);
  font-style: normal;
  font-weight: 700;
  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;
  text-align: center;
  text-overflow: ellipsis;
  color: #fff;
  text-align: center;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-height-Body-xs, 18px); /* 112.5% */
}
.footer__inner .footer-right .footer-nav__item:after {
  position: absolute;
  top: 0;
  right: -5px;
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.16);
}
.footer__inner .footer-right .footer-nav__item:last-child {
  max-width: 125px;
}
.footer__inner .footer-right .footer-nav__item:last-child:after {
  display: none;
}

.copy-right {
  padding: 10px 24px;
  color: #FFF;
  text-align: center;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-height-Body-small, 21px); /* 150% */
  background: #232B52;
}

.blue-line {
  height: 58px;
  background: #232b52;
  width: 100%;
}

.page-visual {
  background-image: url(/assets/images/page-visual.jpg);
  background-size: cover;
  position: relative;
}
.page-visual .bg-letters {
  position: absolute;
  bottom: 0;
  right: 0;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #64df90;
  font-family: "Open Sans", sans-serif;
  font-size: 140px;
  font-style: normal;
  font-weight: 700;
  line-height: 81.7%; /* 114.38px */
  letter-spacing: 2.8px;
}
.page-visual__inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-top: 200px;
  padding-bottom: 112px;
}
.page-visual__inner .ttl {
  color: #222;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: 1.6px;
}

.bread-crumb {
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  padding: 0px 24px;
}
.bread-crumb__wrapper {
  max-width: 1120px;
  width: 100%;
  display: flex;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 23.2px */
  letter-spacing: 1.28px;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.bread-crumb__left {
  color: #64df90;
  text-decoration-line: underline;
}
.bread-crumb__right {
  color: #333;
}

.subp-head {
  color: #000;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.92px;
  background: var(--33, linear-gradient(90deg, #e3ffe8 0%, #bfffc4 100%));
  padding: 11px 24px 11px 19px;
  border-left: 5px solid #232b52;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb64 {
  margin-bottom: 64px;
}

.mb80 {
  margin-bottom: 80px;
}

.desc16 {
  color: #000;
  font-family: "M PLUS 1 Code", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
}

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

@media screen and (max-width: 768px) {
  .cmn-btn {
    padding: 6px 8px;
    max-width: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--Corner-Rounding-my-product, 0px);
    background: #F16420;
  }
  .cmn-btn__text {
    padding: 1px 12px;
    color: #fff;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: var(--Font-Size-Body-xl, 16px);
    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: #232b52;
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 2.08px;
    color: #fcf0dc;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #232b52;
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .cmn-head__en span {
    font-size: 20px;
  }
  .cmn-head__jp {
    color: #232b52;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 166.667% */
    letter-spacing: 1.92px;
  }
  .footer {
    padding: 0 24px;
    background: #F88248;
  }
  .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: 90px;
    aspect-ratio: 93/63;
    background-image: url(/assets/images/footer-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 12px;
  }
  .footer__inner .footer-left .footer-text {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer__inner .footer-left .footer-text p {
    color: #fff;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: var(--Font-Size-Body-small, 14px);
    font-style: normal;
    font-weight: 700;
    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;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
  }
  .footer__inner .footer-right .footer-nav__item {
    max-width: 80px;
    width: 100%;
    padding: 6px;
    display: flex;
    justify-content: center;
    position: relative;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
    color: #fff;
    text-align: center;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Line-height-Body-xs, 18px); /* 112.5% */
  }
  .footer__inner .footer-right .footer-nav__item:after {
    position: absolute;
    top: 0;
    right: -5px;
    content: "";
    display: none;
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.16);
  }
  .footer__inner .footer-right .footer-nav__item:last-child {
    max-width: 105px;
  }
  .footer__inner .footer-right .footer-nav__item:last-child:after {
    display: none;
  }
  .copy-right {
    padding: 10px 24px;
    color: #FFF;
    text-align: center;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Line-height-Body-small, 21px); /* 150% */
    background: #232B52;
  }
  .blue-line {
    height: 28px;
    background: #232b52;
    width: 100%;
  }
  .page-visual {
    background-image: url(/assets/images/page-visual.jpg);
    background-size: cover;
    position: relative;
    padding: 0 24px;
  }
  .page-visual .bg-letters {
    position: absolute;
    bottom: 0;
    right: 0;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #64df90;
    font-family: "Open Sans", sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 81.7%; /* 114.38px */
    letter-spacing: 2.8px;
  }
  .page-visual__inner {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 62px;
  }
  .page-visual__inner .ttl {
    color: #222;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    letter-spacing: 1.6px;
  }
  .bread-crumb {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    padding: 0px 24px;
  }
  .bread-crumb__wrapper {
    max-width: 1120px;
    width: 100%;
    display: flex;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%; /* 23.2px */
    letter-spacing: 1.28px;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  .bread-crumb__left {
    color: #64df90;
    text-decoration-line: underline;
  }
  .bread-crumb__right {
    color: #333;
  }
  .subp-head {
    color: #000;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 38.4px */
    letter-spacing: 1.92px;
    background: var(--33, linear-gradient(90deg, #e3ffe8 0%, #bfffc4 100%));
    padding: 5px 12px;
    border-left: 5px solid #232b52;
  }
  .mb32 {
    margin-bottom: 15px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .mb48 {
    margin-bottom: 24px;
  }
  .mb64 {
    margin-bottom: 32px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .desc16 {
    color: #000;
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.28px;
  }
  .two-col-table .table-row {
    font-family: "M PLUS 1 Code", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
  }
  .two-col-table .table-row .key {
    width: 100%;
    margin-right: 0px;
    color: #232b52;
  }
  .two-col-table .table-row .value {
    color: #000;
  }
  .two-col-table .table-row:first-child {
    padding-top: 0;
  }
}/*# sourceMappingURL=commons.css.map */