@charset "UTF-8";
* {
  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;
}

@font-face {
  font-family: Outfit;
  src: url("./public/fonts/Outfit-Bold.woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #1e1e1e;
  scroll-behavior: smooth;
}

main {
  position: relative;
}

.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding-right: 17px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .header {
    padding-right: 17px;
  }
}
.header__content {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__content {
    padding: 15px 20px;
  }
}
.header__logo {
  width: auto;
  height: 55px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1100px) {
  .header__logo {
    z-index: 1;
    height: 35px;
  }
}
.header__logo:hover {
  opacity: 0.5;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .header__menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 0;
    overflow: hidden scroll;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: #005baa;
  }
}
.header__menu.toggle {
  max-height: 10000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media screen and (max-width: 767px) {
  .header__menu.toggle {
    padding-bottom: 100px;
  }
}
.header__menu-wrap {
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__menu-wrap {
    gap: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-wrap {
    gap: 0;
    width: 100%;
    -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;
    padding: 75px 30px 30px;
  }
}
.header__menu-link {
  gap: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.06em;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1200px) {
  .header__menu-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link {
    gap: 0;
    width: 100%;
    color: #fff;
    padding: 15px 0;
    font-weight: 700;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: 0.75px solid #fff;
  }
}
.header__menu-link--drpdwn::after {
  height: 4px;
  content: "";
  width: 7.66px;
  background: url("./public/img/icons/icon-caret-down.svg") no-repeat center/contain;
}
@media screen and (max-width: 1100px) {
  .header__menu-link--drpdwn::after {
    width: 10px;
    height: 10px;
    background: url("./public/img/icons/icon-open.svg") no-repeat center/contain;
  }
}
.header__menu-link--drpdwn.toggle-sp {
  border-bottom: none;
}
@media screen and (max-width: 1100px) {
  .header__menu-link--drpdwn.toggle-sp::after {
    background: url("./public/img/icons/icon-close.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link span {
    width: 65px;
    letter-spacing: 0.04em;
    font: 700 1rem "Outfit", sans-serif;
  }
}
.header__menu-link::before {
  right: 0;
  width: 0;
  content: "";
  height: 1px;
  bottom: -2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  background-color: #005baa;
}
@media screen and (max-width: 1100px) {
  .header__menu-link::before {
    content: none;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link::after {
    content: "";
    margin-left: auto;
  }
}
.header__menu-link:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.header__menu-icon {
  gap: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 29.8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .header__menu-icon {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.header__menu-icon-item {
  width: auto;
  height: 16.7px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__menu-icon-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu-icon-item:hover {
  opacity: 0.5;
}
.header__menu-btn {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .header__menu-btn {
    gap: 15px;
    width: 100%;
    padding: 0 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.header__menu-btn-item {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  padding: 8.9px 15.99px;
  letter-spacing: 0.06em;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #005baa;
  border: 0.5px solid #005baa;
}
@media screen and (max-width: 1200px) {
  .header__menu-btn-item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-btn-item {
    width: 200px;
    padding: 8px 5px;
    font-size: 1.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: transparent;
  }
}
.header__menu-btn-item::before {
  content: "";
  width: 9.75px;
  height: 12.5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  background: url("./public/img/icons/icon-man.svg") no-repeat center/contain;
}
.header__menu-btn-item--contact::before {
  height: 9.6px;
  width: 14.25px;
  background: url("./public/img/icons/icon-mail.svg") no-repeat center/contain;
}
.header__drpdwn {
  left: 50%;
  top: 0;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  position: absolute;
  padding: 108px 2% 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .header__drpdwn {
    display: none;
  }
}
.header__drpdwn.toggle {
  opacity: 1;
  visibility: visible;
}
.header__drpdwn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__drpdwn-wrap .button__text {
  font-weight: 700;
}
.header__title {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #005baa;
  margin-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__title-en {
  letter-spacing: 0.1em;
  font: 700 1.6rem "Outfit", sans-serif;
  line-height: getem(16, 28);
}
.header__title-jp {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: getem(30, 52);
}
.header__drpdwn-link {
  gap: 15px 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 700px;
  margin-left: 40px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.header__drpdwn-link--service {
  gap: 15px 1%;
  max-width: 800px;
}
.header__drpdwn-link--service .header__drpdwn-link-item {
  width: 33%;
}
.header__drpdwn-link--service .header__drpdwn-link-item:nth-child(3n-2) {
  width: 20%;
}
.header__drpdwn-link--service .header__drpdwn-link-item:nth-child(3) {
  width: 45%;
}
.header__drpdwn-link--strength {
  gap: 15px 5%;
  max-width: 600px;
}
.header__drpdwn-link--strength .header__drpdwn-link-item {
  width: 55%;
}
.header__drpdwn-link--strength .header__drpdwn-link-item:nth-child(even) {
  width: 40%;
}
.header__drpdwn-link-item {
  width: 22%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1e1e1e;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.625em;
}
.header__drpdwn-link-item span {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header__drpdwn-link-item span::after {
  right: 0;
  width: 0;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  background-color: #000;
}
.header__drpdwn-link-item::before {
  content: "›";
  margin-right: 10px;
}
.header__drpdwn-link-item:hover span::after {
  left: 0;
  right: auto;
  width: 100%;
}
.header__drpdwn-link-item--none::before {
  content: none;
}
.header__drpdwn-img {
  width: 256px;
  height: 183px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.header__drpdwn-img--service {
  height: 138px;
}
.header__drpdwn-img img {
  top: 0;
  left: 0;
  opacity: 0;
  overflow: visible;
  position: absolute;
}
.header__drpdwn-img picture:first-child img {
  opacity: 1;
}
.header__drpdwn-img .show {
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .header__menubar {
    gap: 5px;
    z-index: 1;
    width: 23px;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.header__menubar-line {
  height: 1px;
  width: 100%;
  display: block;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #000;
}
.header__menubar-text {
  letter-spacing: 0.04em;
  font: 700 0.8rem "Outfit", sans-serif;
}
.header.toggle .header__menubar {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.header.toggle .header__menubar-line:nth-child(1) {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.header.toggle .header__menubar-line:nth-child(2) {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.header.toggle .header__logo {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 1100px) {
  .header__menu-link-sp {
    width: 100%;
    color: #fff;
    padding: 0 30px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link-sp-wrap {
    row-gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link-sp-wrap:first-child {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link-sp-item {
    font-size: 1.4rem;
    line-height: 1em;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-link-sp-item:first-child {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #fff;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-text {
    width: 100%;
    color: #fff;
    padding: 0 30px;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    font: 700 1rem "Outfit", sans-serif;
  }
}
.header__menu-sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  .header__menu-sp {
    width: 100%;
    max-height: 0;
    display: block;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-sp.toggle-sp {
    overflow: visible;
    max-height: 10000px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-sp-wrap {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 65px;
    padding-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 1100px) {
  .header__menu-sp-sub {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
}
.header__search {
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__search {
    padding: 0 30px;
  }
}
.header__search.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__search-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  background-color: #0082dc;
  mix-blend-mode: multiply;
  z-index: 999;
}
.header__search-bg.show {
  display: block;
}
.header__search-wrap {
  padding: 55px 61.5px;
  max-width: 628px;
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__search-wrap {
    padding: 25px;
    max-width: 420px;
  }
}
.header__search-label {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  color: #004ea2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header__search-label::before {
  content: "";
  width: 24px;
  height: 17px;
  background: url("./public/img/icons/icon-logo.png") no-repeat center/contain;
}
.header__search-close {
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  display: block;
  cursor: pointer;
  position: absolute;
  background: url("./public/img/icons/icon-x.svg") no-repeat center/contain;
}
.header.white {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}
.header.white .header__logo,
.header.white .header__menu-link,
.header.white .header__menu-icon-item {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 1100px) {
  .header.white .header__logo,
  .header.white .header__menu-link,
  .header.white .header__menu-icon-item {
    -webkit-filter: unset;
            filter: unset;
  }
}
.header.white .header__menu-btn-item {
  border-color: #fff;
  background-color: transparent;
}
.header.white .header__menu-btn-item::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.header.white .header__menu-btn-item:hover {
  background: rgba(255, 255, 255, 0.15);
}
.header.white .header__menu-btn-item:hover ::before {
  -webkit-filter: unset;
          filter: unset;
}
@media screen and (max-width: 1100px) {
  .header.white .header__logo,
  .header.white .header__menubar {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.header.bg-white {
  background: #fff;
}
@media screen and (max-width: 1100px) {
  .header.hovered {
    background: transparent !important;
  }
}
.header.hovered .header__menu-link {
  color: #1e1e1e;
  -webkit-filter: unset !important;
          filter: unset !important;
}
@media screen and (max-width: 1100px) {
  .header.hovered .header__menu-link {
    color: #fff;
  }
}
.header.hovered .header__menu-icon-item {
  -webkit-filter: unset !important;
          filter: unset !important;
}
.header.hovered .header__menu-btn-item {
  border-color: #005baa !important;
  background-color: #005baa !important;
}
@media screen and (max-width: 1100px) {
  .header.hovered .header__menu-btn-item {
    color: #fff;
    background-color: transparent !important;
  }
}
.header.hovered .header__logo,
.header.hovered .header__menubar {
  -webkit-filter: unset !important;
          filter: unset !important;
}
@media screen and (max-width: 1100px) {
  .header.hovered .header__logo,
  .header.hovered .header__menubar {
    -webkit-filter: brightness(0) invert(1) !important;
            filter: brightness(0) invert(1) !important;
  }
}
.header .header__drpdwn {
  padding-inline: 2% calc(2% + 17px);
}
@media screen and (max-height: 690px) {
  .header .header__menu,
  .header a:has(.header__logo),
  .header .header__drpdwn-container {
    -webkit-transform: scale(var(--top-scale));
            transform: scale(var(--top-scale));
  }
}
@media screen and (max-width: 767px) {
  .header .header__menu,
  .header a:has(.header__logo),
  .header .header__drpdwn-container {
    -webkit-transform: unset;
            transform: unset;
  }
}
.header .header__menu {
  -webkit-transform-origin: right;
          transform-origin: right;
}
.header a:has(.header__logo) {
  -webkit-transform-origin: left;
          transform-origin: left;
}
.header .header__drpdwn-container {
  -webkit-transform-origin: top;
          transform-origin: top;
}
@media screen and (min-width: 767px) and (max-height: 690px) {
  .header .header__content {
    padding-block: 0;
    height: calc(var(--top-scale) * 78px);
  }
}

.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;
}

.container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1100px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 5%;
  }
}

.button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14.5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button__text {
  padding-block: 10px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1e1e1e;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .button__text {
    font-size: 14px;
  }
}
.button__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #005baa)) right;
  background: linear-gradient(to right, transparent 50%, #005baa 50%) right;
  background-size: 200% 100% !important;
  -webkit-transition: inherit;
  transition: inherit;
}
.button__arrow {
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #005baa;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
  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;
}
.button__arrow svg {
  -webkit-transition: inherit;
  transition: inherit;
  width: 10.5px;
  height: 6.5px;
}
.button__arrow svg polygon {
  fill: #fff;
}
.button:hover .button__text::after {
  background-position: left;
}
.button:hover .button__arrow {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.button--white .button__text {
  color: #fff;
}
.button--white .button__text::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fff)) right;
  background: linear-gradient(to right, transparent 50%, #fff 50%) right;
}
.button--white .button__arrow {
  background: #fff;
}
.button--white .button__arrow svg polygon {
  fill: #005baa;
}
.button--white:hover::after {
  background: #fff;
}

.buttont2 {
  position: relative;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 67px;
  margin: 0 auto;
  padding: 0 110px 0 40px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #005baa;
  border-radius: 33px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .buttont2 {
    height: auto;
    width: 100%;
    padding: 8px 60px 8px 25px;
    font-size: 2.6rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 500px) {
  .buttont2 {
    font-size: 1.8rem;
  }
}
.buttont2::before {
  content: "";
  position: absolute;
  height: 85%;
  width: 0;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 33px;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .buttont2::before {
    margin-left: auto;
  }
}
.buttont2::after {
  content: "";
  position: absolute;
  height: 85%;
  width: auto;
  aspect-ratio: 1;
  background: url("./public/img/icons/icon-arrow.svg") center/13px 8px no-repeat;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .buttont2::after {
    margin-left: auto;
  }
}
.buttont2__entx {
  margin-right: 35px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .buttont2__entx {
    width: 100%;
    font-size: 1.4rem;
  }
}
.buttont2__notx {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .buttont2__notx {
    font-size: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .buttont2__notx {
    font-size: 2.2rem;
  }
}
.buttont2:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4196078431);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4196078431);
  color: #005baa;
}
.buttont2:hover::before {
  width: calc(100% - 10px);
}
.buttont2--s2 {
  min-height: 34px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding: 4px 50px 4px 20px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  border-radius: 17px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .buttont2--s2 {
    font-size: 1.4rem;
    padding: 3px 50px 5px 12px;
  }
}
.buttont2--s2::after {
  height: 24px;
}
.buttont2--org {
  min-height: 34px;
  height: 55px;
  width: 100%;
  padding: 4px 50px 4px 20px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  border-radius: 33px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .buttont2--org {
    font-size: 1.4rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 50px 0 12px;
  }
}
.buttont2--org::after {
  height: 40px;
}
@media screen and (max-width: 767px) {
  .buttont2--org::after {
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .buttont2--pad {
    padding: 3px 50px 5px 12px;
  }
}

.page-banner {
  margin-top: 110px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-banner {
    margin-top: 80px;
  }
}
.page-banner__bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1240px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-banner__bread {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.page-banner__bread-item {
  margin-inline: 14px;
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-banner__bread-item {
    margin-inline: 10px;
    font-size: 10px;
  }
}
.page-banner__bread-item:first-child {
  margin-left: 0;
}
.page-banner__bread-item:last-child {
  width: 100%;
  margin-right: 0;
}
.page-banner__bread-item:not(:last-child) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-banner__bread-item:not(:last-child) {
    max-width: 45%;
  }
}
.page-banner__bread-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -15px;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .page-banner__bread-item:not(:last-child)::after {
    right: -11px;
  }
}
.page-banner__bread-text {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.page-banner a.page-banner__bread-item:hover .page-banner__bread-text {
  color: #005baa;
}
.page-banner__header {
  margin-top: 45px;
}
@media screen and (max-width: 1225px) {
  .page-banner__header {
    padding-right: calc(4% + 30px);
  }
}
@media screen and (max-height: 700px) {
  .page-banner__header {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__header {
    padding-right: 5%;
    margin-top: 22px;
  }
}
.page-banner__titles {
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 212px;
  color: #005baa;
}
@media screen and (max-height: 700px) {
  .page-banner__titles {
    min-height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__titles {
    min-height: unset;
  }
}
.page-banner__title-en {
  margin-bottom: 5px;
  margin-left: -5px;
  font-family: "Outfit", sans-serif;
  font-size: 10rem;
  line-height: 0.9em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
  position: relative;
}
@media screen and (max-height: 700px) {
  .page-banner__title-en {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title-en {
    margin-left: -2px;
    letter-spacing: 0.1em;
    font-size: 45px;
    line-height: 1.2em;
  }
}
@media screen and (min-height: 701px) {
  .page-banner__title-en--long {
    font-size: clamp(8.2rem, -1.128rem + 12.162vw, 10rem);
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title-en--long {
    font-size: clamp(3.2rem, 0.331rem + 8.966vw, 4.5rem);
    letter-spacing: 0;
  }
}
.page-banner__title-jp {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-banner__title-jp {
    font-size: 16px;
  }
}
.page-banner__title-en::after, .page-banner__title-jp::after, .page-banner__picture::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #005baa;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
  -webkit-animation-name: text-revealer;
          animation-name: text-revealer;
}
.page-banner__title-en, .page-banner__title-en::after, .page-banner__title-jp, .page-banner__title-jp::after, .page-banner__picture, .page-banner__picture::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.page-banner__picture {
  height: 100%;
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
  position: relative;
}
.page-banner__img {
  margin-top: 80px;
  position: relative;
  height: auto;
  aspect-ratio: 1200/400;
  width: 88%;
}
@media screen and (max-height: 700px) {
  .page-banner__img {
    margin-top: 55px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__img {
    margin-top: 24px;
    width: calc(100vw - 7.5%);
    aspect-ratio: 370/123;
  }
}
@media screen and (min-width: 767px) {
  .page-banner__img--greeting {
    margin-top: 160px;
    aspect-ratio: 1200/406;
  }
}
@media screen and (max-height: 700px) {
  .page-banner__img--greeting {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__img--greeting {
    aspect-ratio: 2/1;
  }
}
.page-banner__img--greeting .page-banner__picture {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-banner__img--greeting .page-banner__picture picture {
  position: absolute;
  width: 100%;
  height: 100%;
}
.page-banner__copyright {
  position: absolute;
  top: 146px;
  right: 34px;
  letter-spacing: 0.06em;
  font: 700 1.2rem "Outfit", sans-serif;
  color: #005baa;
  -webkit-transform: rotate(90deg) translateX(50%);
          transform: rotate(90deg) translateX(50%);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
@media screen and (max-width: 767px) {
  .page-banner__copyright {
    display: none;
  }
}
.page-banner__greeting {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(840px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-banner__greeting {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.page-banner__greeting-title {
  margin-bottom: 10px;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #005baa;
}
@media screen and (max-width: 850px) {
  .page-banner__greeting-title {
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__greeting-title {
    margin-right: 105px;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.3em;
  }
}
.page-banner__greeting-title .small {
  font-size: 1.6rem;
  line-height: 3em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .page-banner__greeting-title .small {
    font-size: 1rem;
    line-height: 1.5em;
  }
}
.page-banner__greeting-title .fs30 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .page-banner__greeting-title .fs30 {
    font-size: 2rem;
  }
}
.page-banner__greeting-label1 {
  margin-right: 18px;
  display: inline-block;
  position: relative;
  top: -4px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-banner__greeting-label1 {
    margin-right: 12px;
    top: 0;
    font-size: 10px;
  }
}
.page-banner__greeting-label2 {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-banner__greeting-label2 {
    font-size: 14px;
    display: block;
  }
}
.page-banner__support-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .page-banner__support-title-wrap {
    font-size: 16px;
    line-height: 1.4em;
  }
}
.page-banner__support-title {
  font-size: 4rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-banner__support-title {
    font-size: 26px;
  }
}
.page-banner__support-sub {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-banner__support-sub {
    font-size: 20px;
    line-height: 1.4em;
  }
}
.page-banner__support-par {
  padding-block: 25px 32px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .page-banner__support-par {
    padding-block: 18px 0;
    font-size: 13px;
  }
}
.page-banner__scroll-down {
  top: -37.92px;
  right: -37.92px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page-banner__scroll-down {
    top: -13px;
    right: -13px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__scroll-down .text-rotate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__scroll-down .text-rotate span {
    font-size: 0.8rem;
    -webkit-transform-origin: 0 25px;
            transform-origin: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__scroll-down .text-rotate svg {
    width: 11px;
    height: 7px;
  }
}
.page-banner__info-anim {
  opacity: 0;
  -webkit-animation: 0.6s fade-in 1.8s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: 0.6s fade-in 1.8s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.page-scroll-up {
  position: fixed;
  right: 30px;
  bottom: 30px;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .page-scroll-up {
    right: 19px;
    bottom: 19px;
  }
}
.page-scroll-up.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.page-scroll-up.lift {
  bottom: 130px;
}
@media screen and (max-width: 767px) {
  .page-scroll-up.lift {
    bottom: 19px;
  }
}
.page-scroll-up .text-rotate {
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .page-scroll-up .text-rotate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40.09px;
    height: 40.09px;
  }
}
@media screen and (max-width: 767px) {
  .page-scroll-up .text-rotate span {
    top: -6px;
    font-size: 0.6rem;
    -webkit-transform-origin: 0 26px;
            transform-origin: 0 26px;
  }
}
.page-scroll-up .text-rotate svg {
  position: absolute;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .page-scroll-up .text-rotate svg {
    width: 13px;
    height: 7px;
  }
}

.heading {
  font-weight: 700;
  color: #005baa;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.heading--white {
  color: #fff;
}
.heading__en {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 12px;
  }
}
.heading__en--io {
  font-size: 6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .heading__en--io {
    font-size: 3.3rem;
  }
}
.heading__en--lg {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .heading__en--lg {
    font-size: 14px;
  }
}
.heading__en--sm {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .heading__en--sm {
    font-size: 12px;
  }
}
.heading__en--xs {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .heading__en--xs {
    font-size: 10px;
  }
}
.heading__en--ls-lg {
  letter-spacing: 0.3em;
}
.heading__jp {
  font-size: 3rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .heading__jp {
    font-size: 22px;
  }
}
.heading__jp--lg {
  font-size: 4rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .heading__jp--lg {
    font-size: 26px;
    line-height: 1.4em;
  }
}
.heading__jp--sm {
  font-size: 2.4rem;
  line-height: 1.625em;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .heading__jp--sm {
    font-size: 18px;
    margin-top: 2.5px;
  }
}
.heading__jp--xs {
  font-size: 2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .heading__jp--xs {
    font-size: 14px;
  }
}
.heading__jp--ls-lg {
  letter-spacing: 0.1em;
}
.heading__jp--lh-sm {
  line-height: 1.625em;
}
.heading__jp--mt5 {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .heading__jp--mt5 {
    margin-top: 2.5px;
  }
}
.heading__jp--ioj {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .heading__jp--ioj {
    font-size: 1.6rem;
  }
}
.heading__jp--mb30 {
  margin-bottom: 30px;
}
.heading__jp--mt0 {
  margin-top: 0;
}

.heading-count {
  padding-top: 26px;
  min-height: 117px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .heading-count {
    margin-left: 50px;
  }
}
@media screen and (max-height: 700px) {
  .heading-count {
    min-height: 92px;
  }
}
@media screen and (max-width: 767px) {
  .heading-count {
    padding-top: 15px;
    min-height: 80px;
    margin-inline: 5.5%;
    margin-bottom: 20px;
  }
}
.heading-count__counter {
  position: absolute;
  top: -42px;
  left: -40px;
  font: 700 16rem "Outfit", sans-serif;
  letter-spacing: 0.06em;
  color: #e5ecf1;
  pointer-events: none;
}
@media screen and (max-height: 700px) {
  .heading-count__counter {
    top: -32px;
    font-size: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .heading-count__counter {
    top: -24px;
    left: -18px;
    font-size: 90px;
  }
}
@media screen and (max-width: 767px) and (max-height: 680px) {
  .heading-count__counter {
    font-size: 86px;
  }
}
.heading-count__text {
  position: relative;
  font-size: 4rem;
  color: #005baa;
  letter-spacing: 0.06em;
  line-height: 1.625em;
}
@media screen and (max-height: 700px) {
  .heading-count__text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .heading-count__text {
    font-size: 26px;
    line-height: 1.4em;
  }
}

.sec-banner {
  position: relative;
}
.sec-banner__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0082dc;
}
.sec-banner__img img {
  mix-blend-mode: multiply;
}
.sec-banner__img--blur img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.sec-banner__container {
  padding-block: 95px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec-banner__container {
    padding-block: 80px;
  }
}

.info-list__box:not(:last-child) {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .info-list__box:not(:last-child) {
    margin-bottom: 30px;
  }
}
.info-list__header {
  border-left: 5px solid #004ea2;
  padding: 2px 14px;
  width: 100%;
  background: #f3f8fd;
}
@media screen and (max-width: 767px) {
  .info-list__header {
    border-width: 3.5px;
    padding-inline: 10px;
  }
}
.info-list__title {
  font-size: 1.8rem;
  color: #004ea2;
  letter-spacing: 0.06em;
  line-height: 1.8333333333em;
}
@media screen and (max-width: 767px) {
  .info-list__title {
    font-size: 16px;
  }
}
.info-list__detail {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .info-list__detail {
    margin-top: 16px;
  }
}
.info-list__detail > * {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .info-list__detail > * {
    font-size: 14px;
    line-height: 2.0714285714em;
  }
}
.info-list__detail > p:not(:first-child) {
  margin-top: 14px;
}
.info-list__detail > ol {
  list-style: none;
}
.info-list--num {
  counter-reset: count;
}
.info-list--num .info-list__header::before {
  counter-increment: count;
  content: counter(count);
  font: 700 2rem "Outfit", sans-serif;
  color: #004ea2;
}
.info-list--num .info-list__title {
  display: inline;
  margin-left: 8px;
}

.page-intro__contents {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .page-intro__contents {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page-intro__title {
  position: relative;
  font-size: 8rem;
  line-height: 1em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-intro__title {
    font-size: 40px;
    letter-spacing: 0.06em;
    line-height: 1.1em;
  }
}
@media screen and (max-width: 767px) {
  .page-intro__title--long {
    font-size: clamp(3.5rem, 1.9rem + 5vw, 4rem);
  }
}
.page-intro__title--fs70 {
  font-size: 7rem;
}
.page-intro__info {
  min-height: 295px;
}
@media screen and (max-width: 767px) {
  .page-intro__info {
    min-height: unset;
  }
}
.page-intro__tagline {
  margin-block: 32px 40px;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .page-intro__tagline {
    margin-block: 10px;
    font-size: 22px;
  }
}
.page-intro__par {
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .page-intro__par {
    font-size: 14px;
  }
}
.page-intro__par--fs18 {
  line-height: 2.3888888889em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .page-intro__par--fs18 {
    font-size: 1.8rem;
  }
}
.page-intro__img-wrap {
  margin-top: -38px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page-intro__img-wrap {
    margin-top: 0;
    padding-bottom: 0;
  }
}
.page-intro__img-wrap--rows {
  display: grid;
  grid-template-rows: 47.3% 47.3%;
  gap: 5.4%;
}
@media screen and (max-width: 767px) {
  .page-intro__img-wrap--rows {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 550px) {
  .page-intro__img-wrap--rows {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
@media screen and (min-width: 767px) {
  .page-intro__img-wrap--pb58 {
    padding-bottom: 58px;
  }
}
@media screen and (min-width: 767px) {
  .page-intro__img-wrap--pb22 {
    padding-bottom: 22px;
  }
}
.page-intro__img-wrap--pb0 {
  padding-bottom: 0;
}
.page-intro__img {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .page-intro__img {
    height: auto;
    aspect-ratio: 5/3.4;
  }
}
.page-intro__img img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tab__nav {
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tab__panel {
  display: none;
}
.tab__panel.active {
  display: block;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .tabs {
    scroll-margin-top: 60px;
  }
}
.tabs--s2 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .tabs--s2 {
    grid-template-columns: auto auto;
  }
}
.tabs--s3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.tabs-item {
  min-height: 44px;
  padding: 8px 12px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #005baa;
  background-color: #f3f8fd;
  border-radius: 23px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .tabs-item {
    min-height: unset;
    font-size: 1.4rem;
  }
}
.tabs-item.s2 {
  background-color: #f0f0f0;
}
.tabs-item.s3 {
  border-radius: 50px;
  min-height: 98px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tabs-item.s3 {
    min-height: 60px;
  }
}
.tabs-item.active, .tabs-item:hover {
  color: #fff;
  background-color: #005baa;
}

.text-rotate {
  width: 75.84px;
  height: 75.84px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .text-rotate {
    display: none;
  }
}
.text-rotate p {
  width: 100%;
  height: 100%;
  position: absolute;
  letter-spacing: 0.06em;
  -webkit-animation: rotate-text 8s linear infinite;
          animation: rotate-text 8s linear infinite;
}
.text-rotate img {
  width: 100%;
  height: 100%;
  -webkit-animation: rotate-text 8s linear infinite;
          animation: rotate-text 8s linear infinite;
}
.text-rotate span {
  left: 50%;
  top: -10px;
  color: #005baa;
  position: absolute;
  letter-spacing: 0.13em;
  -webkit-transform-origin: 0 48px;
          transform-origin: 0 48px;
  font: 700 1rem "Outfit", sans-serif;
}
.text-rotate svg {
  width: 20px;
  height: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.text-rotate svg polygon {
  fill: #005baa;
}

.footer {
  z-index: 1;
  position: relative;
  margin-top: 172.3px;
  background-color: #f3f8fd;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 98px;
  }
}
.footer--top {
  margin-top: 0;
}
.footer::before {
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 695.97px;
  height: 473.47px;
  position: absolute;
  background: url("./public/img/footer/footer-bg.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer::before {
    width: 210.7px;
    height: 134.55px;
  }
}
.footer__content {
  padding-top: 315px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding-top: 128px;
  }
}
.footer__content--form {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer__content--form {
    padding-top: 50px;
  }
}
.footer__contact {
  top: 0;
  left: 50%;
  width: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1100px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    max-width: 100%;
    padding-inline: 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact {
    padding-inline: 7.5%;
  }
}
.footer__contact--support {
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
}
.footer__contact:hover .button__text::after {
  background-position: left;
}
.footer__contact:hover .button__arrow {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.footer__support-text {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #005baa;
}
.footer__contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.64%;
}
@media screen and (max-width: 767px) {
  .footer__contact-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.footer__contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 100px 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("./public/img/footer/contact-bg.jpg") no-repeat;
  background-size: cover;
  background-position: 0 75%;
}
@media screen and (max-width: 767px) {
  .footer__contact-wrap {
    padding: 24px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__contact-wrap::before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: #0082dc;
}
.footer__contact-wrap--half {
  width: 48.18%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 40px;
  min-height: 240px;
}
@media screen and (max-width: 1280px) {
  .footer__contact-wrap--half {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-wrap--half {
    min-height: 175px;
    width: 100%;
  }
}
.footer__contact-wrap--link {
  background-image: url("./public/img/support/contact-link.jpg");
  background-position: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__contact-wrap--link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__contact-wrap--link .footer__contact-title-jp {
  margin-bottom: 10px;
}
.footer__contact-wrap--tel {
  background-image: url("./public/img/support/contact-number.jpg");
  background-position: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__contact-label {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__contact-label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__contact-label--support {
  -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__contact-title {
  letter-spacing: 0.04em;
  font: 700 4.8rem "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__contact-title {
    font-size: 4rem;
  }
}
.footer__contact-title--tel {
  position: relative;
  font-size: 6rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1280px) {
  .footer__contact-title--tel {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-title--tel {
    font-size: 3rem;
  }
}
.footer__contact-title--tel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32px;
  margin: auto;
  display: block;
  width: 30px;
  height: 44px;
  background-image: url("./public/img/icons/icon-tel.svg");
}
@media screen and (max-width: 1280px) {
  .footer__contact-title--tel::before {
    left: -25px;
    width: 24px;
    height: 35px;
  }
}
.footer__contact-label-text {
  font-size: 1.6rem;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .footer__contact-label-text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-label-text {
    margin-top: 10px;
  }
}
.footer__contact-title-jp {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .footer__contact-title-jp {
    font-size: 1.4rem;
  }
}
.footer__contact-text {
  margin-top: 35px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__contact-text {
    margin-top: 14px;
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-btn {
    margin-top: 9.5px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-btn .button__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-btn .button__arrow {
    width: 30.01px;
    height: 30.01px;
  }
}
.footer__contact-btn--sp-mt0 {
  margin-top: 9.5px;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn--sp-mt0 {
    margin-top: 0;
  }
}
.footer__nav {
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo {
  width: 197.1px;
  height: 57.96px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 159.85px;
    height: 47.01px;
  }
}
.footer__btn {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__btn {
    display: none;
  }
}
.footer__btn-item {
  gap: 5px;
  width: 200px;
  height: 35.47px;
  font-size: 1.6rem;
  color: #005baa;
  border-radius: 20px;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 0.75px solid #005baa;
  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;
}
.footer__btn-item::before {
  content: "";
  width: 9.95px;
  height: 12.74px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url("./public/img/icons/icon-man.svg") no-repeat center/contain;
}
.footer__btn-item--contact::before {
  height: 9.7px;
  width: 14.34px;
  background: url("./public/img/icons/icon-mail.svg") no-repeat center/contain;
}
.footer__btn-item:hover {
  color: #fff;
  background-color: #005baa;
}
.footer__btn-item:hover::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__nav-links {
  display: grid;
  grid-template-columns: 165px 340px auto;
}
@media screen and (max-width: 1100px) {
  .footer__nav-links {
    gap: 10px;
    grid-template-columns: 190px 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .footer__nav-links {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-links {
    display: none;
  }
}
.footer__nav-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__main-link {
  font-size: 1.6rem;
  color: #005baa;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer__main-link--mb25 {
  margin-bottom: 25px;
}
.footer__main-link::before {
  right: 0;
  width: 0;
  content: "";
  height: 1px;
  bottom: -3px;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #005baa;
}
.footer__main-link:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.footer__sub-link {
  font-size: 1.4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.footer__sub-link--mb25 {
  margin-bottom: 25px;
}
.footer__sub-link::before {
  right: 0;
  width: 0;
  content: "";
  height: 1px;
  bottom: -3px;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #005baa;
}
.footer__sub-link:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.footer__icon {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__icon {
    display: none;
  }
}
.footer__icon-item {
  width: 16.72px;
  height: 16.72px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__icon-item--yt {
  width: 23.64px;
}
.footer__icon-item:hover {
  opacity: 0.6;
}
.footer__end {
  padding: 40px 0 80px;
  margin-top: 80px;
  border-top: 0.5px solid #005baa;
}
@media screen and (max-width: 767px) {
  .footer__end {
    margin-top: 27px;
    border-top: none;
    padding: 0 0 18px;
  }
}
.footer__end-content {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .footer__end-content {
    -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__end-wrap{
  display: flex;
      flex-wrap: wrap;
      gap: 20px 0px;

}
.footer__end-link, .footer__end-num {
  font-size: 1.4rem;
  line-height: 1em;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.2em;
  display: inline-block;
}
.footer__end-num{
  margin-top: 20px;
}
.footer__end-link:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #1e1e1e;
}
.footer__end-link:nth-of-type(4){
  border-right: transparent;
}
.footer__end-link span {
  position: relative;
}
.footer__end-link span::before {
  right: 0;
  width: 0;
  content: "";
  height: 1px;
  bottom: -3px;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #005baa;
}
.footer__end-link span:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.footer__copyright {
  color: #005baa;
  letter-spacing: 0.06em;
  font: 700 1.2rem "Outfit", sans-serif;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1rem;
  }
}
.footer__scroll-up {
  right: 36px;
  bottom: 135px;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .footer__scroll-up {
    bottom: 170px;
  }
}
@media screen and (max-width: 767px) {
  .footer__scroll-up {
    right: 19px;
    bottom: 19px;
  }
}
.footer__scroll-up .text-rotate {
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .footer__scroll-up .text-rotate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40.09px;
    height: 40.09px;
  }
}
@media screen and (max-width: 767px) {
  .footer__scroll-up .text-rotate span {
    top: -6px;
    font-size: 0.6rem;
    -webkit-transform-origin: 0 26px;
            transform-origin: 0 26px;
  }
}
.footer__scroll-up .text-rotate svg {
  position: absolute;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .footer__scroll-up .text-rotate svg {
    width: 13px;
    height: 7px;
  }
}
@media screen and (max-height: 690px) {
  .footer .footer__contact-wrap,
  .footer .footer__nav,
  .footer .footer__end {
    -webkit-transform: scale(var(--top-scale));
            transform: scale(var(--top-scale));
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__contact-wrap,
  .footer .footer__nav,
  .footer .footer__end {
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (min-width: 767px) and (max-height: 690px) {
  .footer .footer__nav {
    /* height: calc(425px * var(--top-scale)); */
  }
}
@media screen and (min-width: 767px) and (max-height: 690px) {
  .footer .footer__content {
    padding-top: calc(52vh * var(--top-scale));
  }
}

@media screen and (min-width: 767px) {
  .fpslider {
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__wrap {
    margin-top: calc(-1 * (100vh - var(--fpslider-slide0-col-height)) / 2);
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__track {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    left: 0;
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__track:not(.fpslider__track--clone) .slide-box__img img,
  .fpslider__track:not(.fpslider__track--clone) .slide-box__img picture {
    display: none;
  }
}
.fpslider__track--clone {
  width: 100%;
  overflow: visible;
  pointer-events: none;
  height: 100%;
  position: absolute;
  padding-block: var(--fpslider-wrap-padding-block);
}
@media screen and (max-width: 767px) {
  .fpslider__track--clone {
    display: none;
  }
}
.fpslider__track--clone .fpslider__slide {
  position: absolute;
  top: 0;
  padding-block: 0 !important;
  min-height: unset;
}
.fpslider__slide {
  position: relative;
  top: 0;
  height: auto;
  min-height: 100vh;
  scroll-margin-top: 250px;
}
@media screen and (max-width: 1280px) {
  .fpslider__slide {
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .fpslider__slide {
    padding-inline: 0;
    min-height: unset;
    scroll-margin-top: 60px;
  }
}
.fpslider__slide.active {
  opacity: 1;
  visibility: visible;
}
.fpslider__slide.active .fpslider__slide-content > * {
  pointer-events: auto;
}
@media screen and (min-width: 767px) {
  .fpslider__slide, .fpslider__heading {
    width: 100%;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination {
    position: absolute;
    top: 0;
    left: -52px;
    height: 100%;
    padding-block: calc(50vh - var(--fpslider-pagi-height) / 2);
  }
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
  .fpslider__pagination {
    left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-list {
    position: sticky;
    top: calc(50vh - var(--fpslider-pagi-height) / 2);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-list::after {
    content: "";
    position: absolute;
    margin: auto;
    inset: 0;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, transparent, transparent 8px, #005baa 8px, #005baa 48px);
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-page {
    border: 1px solid #005baa;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-page:not(:last-child) {
    margin-bottom: 40px;
  }
}
.fpslider__pagination-page::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #005baa;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
@media screen and (max-width: 767px) {
  .fpslider__pagination-page::before {
    content: none;
  }
}
.fpslider__pagination-page.active {
  -webkit-animation: pulse 1.5s 0.15s;
          animation: pulse 1.5s 0.15s;
}
.fpslider__pagination-page.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
  }
}
.fpslider__pin {
  height: calc(100% - 100vh);
  width: 2px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .fpslider__pin {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__wrap {
    margin-top: calc(-1 * (100vh - var(--fpslider-slide0-col-height) - var(--fpslider-heading-content-height) - 40px) / 2);
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__slide {
    padding-top: calc(var(--fpslider-heading-content-height) + 40px);
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__pagination {
    padding-top: calc(50vh - var(--fpslider-pagi-height) / 2 + var(--fpslider-heading-content-height) - 40px);
    padding-bottom: calc(100vh - (50vh - var(--fpslider-pagi-height) / 2 + var(--fpslider-heading-content-height) - 40px) - var(--fpslider-pagi-height));
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__pagination-list {
    top: calc(50vh - var(--fpslider-pagi-height) / 2 + var(--fpslider-heading-content-height) - 40px);
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading.hidden {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading .fpslider__slide-content {
    padding-bottom: 550px;
  }
}
@media screen and (min-width: 767px) and (max-height: 850px) {
  .fpslider__heading .fpslider__slide-content {
    padding-bottom: calc(40px + 70vh - var(--fpslider-heading-content-height));
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading .fpslider__slide-content > * {
    pointer-events: auto;
  }
}
@media screen and (min-width: 767px) and (min-width: 1280px) {
  .fpslider--rev .fpslider__pagination {
    left: -62px;
  }
}
.fpslider__anchor {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .fpslider__anchor {
    top: -58px;
  }
}
.fpslider__clone-list {
  position: sticky;
  top: 0;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  gap: 40px;
}
.fpslider__clone-list .fpslider__slide-content {
  padding-block: 0;
}
.fpslider__clone-images {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.fpslider__clone-images .fpslider__slide {
  position: static;
  padding-block: 0;
  min-height: unset;
}
.fpslider__clone-images .fpslider__slide-content {
  position: relative;
}
.fpslider__clone-images .fpslider__slide-content > picture,
.fpslider__clone-images .fpslider__slide-content > img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.fpslider__clone-images .fpslider__slide-content > picture.active,
.fpslider__clone-images .fpslider__slide-content > img.active {
  opacity: 1;
  visibility: visible;
}
.fpslider__slide-content {
  scroll-margin-top: 250px;
}
@media screen and (max-width: 767px) {
  .fpslider__slide-content {
    scroll-margin-top: 60px;
  }
}

.slide-box {
  position: relative;
}
@media screen and (max-width: 767px) {
  .slide-box {
    margin-bottom: 38px;
  }
}
.slide-box:only-child {
  padding-block: 40px;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .slide-box:only-child {
    padding-block: 0;
  }
}
.slide-box:has(.slide-box__col) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col).slide-box--rev {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col).slide-box--rev .slide-box__col:first-child {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col).slide-box--rev .slide-box__col:nth-child(2) {
    padding-right: 0;
  }
}
.slide-box__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 47%;
}
@media screen and (max-width: 767px) {
  .slide-box__col {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col:has(.slide-box__info) {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col:first-child {
    padding-left: 0;
    height: 35%;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col:nth-child(2) {
    height: 60%;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col--fit-content:nth-child(2) {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.slide-box__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-height: 820px) {
  .slide-box__img {
    height: 55vh;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__img {
    aspect-ratio: unset;
    height: 230px !important;
  }
}
.slide-box__img picture {
  display: block;
  width: 100%;
}
.slide-box__img img {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .slide-box__img img {
    aspect-ratio: unset;
    height: 100%;
  }
}
.slide-box__img--has-bg {
  background: #e0e0e0;
}
.slide-box__info {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .slide-box__info {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.slide-box__info-par, .slide-box__bullet-list {
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .slide-box__info-par, .slide-box__bullet-list {
    font-size: 14px;
  }
}
.slide-box__info-par {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .slide-box__info-par {
    margin-top: 12px;
  }
}
.slide-box__info-par a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.slide-box__info-par a:hover {
  color: #005baa;
  opacity: 0.8;
}
@media screen and (min-width: 767px) {
  .slide-box__info-par--overflow-pc {
    overflow: visible;
  }
}
.slide-box__button {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .slide-box__button {
    margin-top: 15px;
  }
}
.slide-box__bullet-list {
  margin-top: 22px;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .slide-box__bullet-list {
    margin-top: 15px;
  }
}
.slide-box__bullet-list > li::before {
  content: "■";
  color: #004ea2;
}
.slide-box__bullet-list > li {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .slide-box--center:has(.slide-box__col) {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
.slide-box__note {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.2142857143em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .slide-box__note {
    font-size: 12px;
  }
}

.table {
  border-collapse: collapse;
  width: 100%;
}
.table__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.table__row:last-of-type .table__header,
.table__row:last-of-type .table__data {
  border-bottom: 1px solid #98a9d6;
}
.table__header, .table__data {
  border-collapse: collapse;
  border-top: 1px solid #98a9d6;
  padding-block: 35px;
}
@media screen and (max-width: 767px) {
  .table__header, .table__data {
    padding-block: 20px;
  }
}
.table__header {
  width: 19.16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .table__header {
    -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;
  }
}
.table__header-en {
  width: 75px;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Outfit", sans-serif;
  line-height: 1em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .table__header-en {
    width: 100%;
    font-size: 14px;
  }
}
.table__header-jp {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1em;
  letter-spacing: 0.06em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .table__header-jp {
    font-size: 18px;
  }
}
.table__data {
  width: 100%;
  font-size: 2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .table__data {
    font-size: 14px;
  }
}
.table__data--flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .table__data--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.table__data .outfit {
  font-weight: 600;
}
.table__data .fs40 {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .table__data .fs40 {
    font-size: 20px;
  }
}
.table__data .fs30 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .table__data .fs30 {
    font-size: 18px;
  }
}
.table__data .fs24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .table__data .fs24 {
    font-size: 16px;
  }
}
.table__data .fs16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .table__data .fs16 {
    font-size: 14px;
  }
}
.table__data .fs14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .table__data .fs14 {
    font-size: 12px;
  }
}
.table__data iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table__data iframe {
    height: 250px;
  }
}
.table__data-button {
  display: block;
  background-color: #005baa;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  padding: 4px 20px 6px;
}
@media screen and (max-width: 767px) {
  .table__data-button {
    font-size: 14px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(2, auto);
    -webkit-transform: scale(0.63);
            transform: scale(0.63);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media screen and (max-width: 767px) {
  .gallery {
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.gallery__item {
  background: #e0e0e0;
  width: 349.77px;
  height: 244px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .gallery__item {
    width: 100%;
    height: 115px;
  }
}
.gallery__item--1 {
  grid-area: 1/1/3/4;
  width: 730px;
  height: 508px;
}
@media screen and (max-width: 767px) {
  .gallery__item--1 {
    grid-area: 1/1/2/3;
    width: 100%;
    height: 200px;
  }
}
.gallery__item--2 {
  grid-area: 1/4/2/5;
}
@media screen and (max-width: 767px) {
  .gallery__item--2 {
    grid-area: 2/1/3/2;
  }
}
.gallery__item--3 {
  grid-area: 2/4/3/5;
}
@media screen and (max-width: 767px) {
  .gallery__item--3 {
    grid-area: 2/2/3/3;
  }
}
.gallery__item--4 {
  grid-area: 3/1/4/3;
  width: 540px;
  height: 377px;
}
@media screen and (max-width: 767px) {
  .gallery__item--4 {
    grid-area: 3/1/4/3;
    width: 100%;
    height: 200px;
  }
}
.gallery__item--5 {
  grid-area: 3/3/4/5;
  width: 540px;
  height: 377px;
}
@media screen and (max-width: 767px) {
  .gallery__item--5 {
    grid-area: 4/1/5/3;
    width: 100%;
    height: 200px;
  }
}
.gallery__item--6 {
  grid-area: 4/1/5/2;
}
@media screen and (max-width: 767px) {
  .gallery__item--6 {
    grid-area: 5/1/6/2;
  }
}
.gallery__item--7 {
  grid-area: 5/1/6/2;
}
@media screen and (max-width: 767px) {
  .gallery__item--7 {
    grid-area: 5/2/6/3;
  }
}
.gallery__item--8 {
  grid-area: 4/2/6/5;
  width: 730px;
  height: 508px;
}
@media screen and (max-width: 767px) {
  .gallery__item--8 {
    grid-area: 6/1/7/3;
    width: 100%;
    height: 200px;
  }
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.form__label {
  width: 200px;
  height: 43px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .form__label {
    width: 100%;
    height: unset;
    font-size: 14px;
  }
}
.form__label.required::after {
  content: "必須";
  position: relative;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1em;
  text-align: center;
  color: #fff;
  background-color: #e50032;
  padding: 2.5px 6.25px 3.75px;
  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;
}
.form__input-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  position: relative;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .form__input-wrapper {
    -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: 6px;
    font-size: 16px;
  }
}
.form__input {
  width: 100%;
  padding: 14px;
  border: none;
  background-color: #f3f8fd;
  font: inherit;
  font-size: 16px;
}
.form__input::-webkit-input-placeholder {
  color: #787878;
}
.form__input::-moz-placeholder {
  color: #787878;
}
.form__input:-ms-input-placeholder {
  color: #787878;
}
.form__input::-ms-input-placeholder {
  color: #787878;
}
.form__input::placeholder {
  color: #787878;
}
.form__input--w50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .form__input--w50 {
    width: 100%;
  }
}
.form__input--textarea {
  height: 217px;
  resize: none;
}
.form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  font-weight: 500;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .form__radio-group {
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form__radio-group--max600 {
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .form__radio-group--sprow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.form__radio-group .mwform-radio-field.vertical-item {
  margin-top: 0 !important;
}
.form__radio-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  margin-right: 7px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
}
.form__radio::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: #005baa;
  border-radius: 50%;
  opacity: 0;
}
.form__radio:checked::before {
  opacity: 1;
}
.form__agree {
  position: relative;
  margin: 0 auto 55px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .form__agree {
    font-size: 14px;
  }
}
.form__agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__agree .error {
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.form__agree-link {
  border-bottom: 1px solid #000;
}
.form__button-wrap {
  width: 170px;
  margin: 0 auto;
}
.form__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14.5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1e1e1e;
  border: none;
  background: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .form__button {
    font-size: 14px;
  }
}
.form__button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #005baa)) right;
  background: linear-gradient(to right, transparent 50%, #005baa 50%) right;
  background-size: 200% 100% !important;
  -webkit-transition: inherit;
  transition: inherit;
}
.form__button::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  right: -64px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding-left: 20px;
  background: url("./public/img/icons/icon_button.png") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
  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;
}
.form__button:hover::before {
  background-position: left;
}
.form__button:hover::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.form__button--back::after {
  right: unset;
  left: -64px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.form__button--back:hover::after {
  -webkit-transform: rotate(180deg) translateX(10px);
          transform: rotate(180deg) translateX(10px);
}

.link-box-bg {
  position: relative;
  display: block;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.link-box-bg__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
.link-box-bg__button {
  pointer-events: none;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.link-box-bg__content {
  height: 100%;
}

a.link-box-bg:hover .link-box-bg__bg {
  opacity: 0.6;
}
a.link-box-bg:hover .button {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.searchform {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .searchform {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.searchform__input {
  width: 100%;
  border: none;
  font-size: 1.6rem;
  font-family: inherit;
  padding: 11px 45px;
  border-radius: 23px;
  background: url("./public/img/icons/icon-mg.svg") no-repeat center/contain;
  background-size: 17px 17px;
  background-position: 15px 50%;
  background-color: #f0f5fa;
}
.searchform__input::-webkit-input-placeholder {
  color: #004ea2;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 1;
}
.searchform__input::-moz-placeholder {
  color: #004ea2;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 1;
}
.searchform__input:-ms-input-placeholder {
  color: #004ea2;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 1;
}
.searchform__input::-ms-input-placeholder {
  color: #004ea2;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 1;
}
.searchform__input::placeholder {
  color: #004ea2;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  opacity: 1;
}
.searchform__btn {
  min-width: 95px;
  cursor: pointer;
  color: #fff;
  padding: 8.6px 0;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 23px;
  font-weight: 700;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #1c65b0;
  background-color: #004ea2;
  font-family: inherit;
}
@media screen and (max-width: 767px) {
  .searchform__btn {
    font-size: 1.6rem;
  }
}
.searchform__btn:hover {
  color: #005baa;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .searchform-wrap--sp-full .searchform {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .searchform-wrap--sp-full .searchform__input {
    padding-inline: 40px 20px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .searchform-wrap--sp-full .searchform__btn {
    font-size: 1.5rem;
    min-width: 75px;
  }
}
.searchform__error {
  border-radius: 15px;
  margin-left: 30px;
  padding: 6px 16px;
  position: absolute;
  top: 135%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
  background: #005baa;
  -webkit-animation: fade-in 0.5s ease forwards;
          animation: fade-in 0.5s ease forwards;
}
@media screen and (max-width: 767px) {
  .searchform__error {
    margin-left: 0;
    top: unset;
    bottom: 112%;
    left: 30px;
  }
}
.searchform__error::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #005baa;
  display: block;
  position: absolute;
  bottom: 100%;
  left: 18px;
}
@media screen and (max-width: 767px) {
  .searchform__error::before {
    left: 18px;
    bottom: unset;
    top: 100%;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.searchform__error.fade-out {
  -webkit-animation: fade-out 0.5s ease forwards;
          animation: fade-out 0.5s ease forwards;
}

.top {
  position: relative;
}
.top__mv {
  color: #fff;
  position: relative;
}
.top__mv-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
}
.top__mv-bg::before {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: #b4b4b4;
}
.top__mv-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__mv-wrap {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
}
@media screen and (max-width: 767px) {
  .top__mv-wrap {
    height: 100dvh;
  }
}
.top__mv-title {
  margin: auto 100px;
}
@media screen and (max-width: 767px) {
  .top__mv-title {
    margin: auto 8%;
  }
}
.top__mv-title-jp {
  font-size: 5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .top__mv-title-jp {
    font-size: 2.5rem;
  }
}
.top__mv-title-eng {
  letter-spacing: 0.18em;
  font: 700 1.4rem "Outfit", sans-serif;
  line-height: 2.0714285714em;
}
@media screen and (max-width: 767px) {
  .top__mv-title-eng {
    font-size: 1.2rem;
  }
}
.top__mv-news {
  padding: 0 110px 0 8%;
}
@media screen and (max-width: 767px) {
  .top__mv-news {
    padding: 0 8%;
  }
}
.top__mv-news-wrap {
  display: grid;
  grid-template-columns: 80% 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
  max-width: 1000px;
  padding-bottom: 55px;
  margin: auto auto 0;
  border-top: 0.75px solid #fff;
}
@media screen and (max-width: 767px) {
  .top__mv-news-wrap {
    margin-right: 0;
    grid-template-columns: 100%;
  }
}
.top__mv-news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top__mv-news-item {
    padding: 15px 0 0;
    -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;
  }
}
.top__mv-news-details {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .top__mv-news-details {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-news-details {
    gap: 10px;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top__mv-news-details::before {
  right: 0;
  width: 0;
  content: "";
  height: 1px;
  bottom: -5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  background-color: #fff;
}
.top__mv-news-details:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.top__mv-news-details svg {
  height: 9px;
  min-width: 16px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .top__mv-news-details svg {
    margin-left: 0;
  }
}
.top__mv-news-details svg polygon {
  fill: #fff;
}
.top__mv-news-date {
  min-width: 115px;
  margin-right: 10px;
  letter-spacing: 0.1em;
  font: 700 1.6rem "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .top__mv-news-date {
    margin-right: 0;
    min-width: 85px;
    font-size: 1.2rem;
  }
}
.top__mv-news-tag {
  min-width: 100px;
  color: #005baa;
  font-size: 1.2rem;
  line-height: 1em;
  margin-right: 10px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top__mv-news-tag {
    font-size: 1rem;
    min-width: 85px;
    margin-right: 0;
  }
}
.top__mv-news-tag span {
  display: block;
  padding: 3px 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
}
.top__news-tag-wrap {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__mv-news-text {
  width: 100%;
  overflow: hidden;
  font-size: 1.6rem;
  white-space: nowrap;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .top__mv-news-text {
    width: 90%;
    font-size: 1.4rem;
  }
}
.top__mv-news-btn {
  margin-top: 20px;
  margin-left: auto;
  grid-row: 1/3;
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .top__mv-news-btn {
    margin-top: 10px;
    grid-row: auto;
    grid-column: auto;
  }
}
.top__mv-news-btn .button__text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .top__mv-news-btn .button__arrow {
    width: 30px;
    height: 30px;
  }
}
.top__mv-news-btn:hover .button__arrow {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top__mv-movie-text {
  font-size: 1.2rem;
  color: #005baa;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.top__copyright {
  top: 50%;
  z-index: 5;
  right: -79px;
  color: #fff;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.06em;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  font: 700 1.2rem "Outfit", sans-serif;
}
@media screen and (min-width: 767px) and (max-height: 690px) {
  .top__copyright {
    -webkit-transform: translateY(-50%) rotate(90deg) scale(var(--top-scale));
            transform: translateY(-50%) rotate(90deg) scale(var(--top-scale));
  }
}
@media screen and (max-width: 1260px) {
  .top__copyright {
    right: -100px;
  }
}
@media screen and (max-width: 767px) {
  .top__copyright {
    display: none;
  }
}
.top__copyright--mv {
  top: 40%;
  color: #fff;
}
.top__message {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 120px;
  padding-bottom: 120px;
  -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;
}
@media screen and (max-height: 900px) {
  .top__message {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__message {
    min-height: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.top__message-title {
  font-size: 10.3rem;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__message-title {
    font-size: 5rem;
  }
}
.top__message-title-jp {
  font-size: 4rem;
  margin-top: 30px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .top__message-title-jp {
    font-size: 2rem;
    margin-top: 20px;
  }
}
.top__message-text {
  margin-top: 25px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 2.3888888889em;
}
@media screen and (max-width: 767px) {
  .top__message-text {
    font-size: 1.6rem;
    line-height: 1.6em;
  }
}
.top__section-bg {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.top__section-bg::before {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: #0082dc;
}
.top__strength, .top__service, .top__innovation, .top__recruit, .top__sustain, .top__vision {
  height: 100vh;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__strength, .top__service, .top__innovation, .top__recruit, .top__sustain, .top__vision {
    height: 100dvh;
  }
}
@media screen and (max-width: 767px) {
  .top__strength {
    min-height: 100%;
  }
}
.top__strength-wrap {
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  position: relative;
}
.top__section-heading {
  width: 100%;
  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;
}
@media screen and (max-width: 767px) {
  .top__section-heading {
    -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;
  }
}
.top__section-heading--column {
  margin-top: -130px;
  -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;
}
@media screen and (max-width: 767px) {
  .top__section-heading--column {
    margin-top: 0;
  }
}
.top__section-heading-wrap {
  width: 100%;
}
.top__section-title {
  z-index: 1;
  letter-spacing: 0;
  position: relative;
  font: 700 10rem "Outfit", sans-serif;
  line-height: 0.95em;
}
@media screen and (max-height: 770px) {
  .top__section-title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .top__section-title {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .top__section-title--sustain {
    font-size: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .top__section-title--sustain {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .top__section-title--sustain {
    font-size: 3.5rem;
  }
}
.top__section-title-jp {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top__section-title-jp {
    font-size: 1.6rem;
  }
}
.top__section-text {
  margin-top: 35px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.25em;
}
@media screen and (max-height: 770px) {
  .top__section-text {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .top__section-text {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 2.0714285714em;
  }
}
.top__section-btn {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top__section-btn {
    margin-bottom: 25px;
  }
}
.top__section-btn--column {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .top__section-btn--column {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__section-btn--sp {
    padding: 0 8%;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__section-btn--sp .button {
    margin: 0;
  }
}
.top__strength-list {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: cs;
}
@media screen and (max-width: 767px) {
  .top__strength-list {
    margin-top: 0;
  }
}
.top__strength-list--recruit {
  gap: 40px;
}
.top__strength-list--recruit .top__strength-item {
  width: 245px;
  padding: 0 20px;
}
.top__strength-item {
  z-index: 1;
  width: 204px;
  padding: 0 6px;
  height: 338.05px;
  position: relative;
  counter-increment: cs;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-height: 770px) {
  .top__strength-item {
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .top__strength-item {
    height: 300px;
  }
}
.top__strength-item:nth-child(even) {
  margin-top: 20px;
}
.top__strength-item::before {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: #b4b4b4;
}
.top__strength-item::after {
  top: -19px;
  left: -15px;
  position: absolute;
  letter-spacing: 0.06em;
  content: "0" counter(cs);
  font: 700 3rem "Outfit", sans-serif;
}
.top__strength-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.top__strength-item:hover .button__arrow {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top__strength-item-link {
  gap: 15px;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
}
.top__strength-item-btn {
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  position: absolute;
}
.top__strength-label {
  letter-spacing: 0.3em;
  font: 700 1.4rem "Outfit", sans-serif;
}
.top__strength-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5555555556em;
}
.top__strength-img {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  position: absolute;
  overflow-clip-margin: unset;
}
.top__strength-img.lazy {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .top__service {
    min-height: 100%;
  }
}
.top__service-img {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .top__service-img {
    display: none;
  }
}
.top__service-img.show {
  opacity: 1;
}
.top__service-circle {
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.3s, height 0.3s, border-radius 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, border-radius 0.3s, opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .top__service-circle {
    display: none;
  }
}
.top__service-circle.hovered {
  width: 465.48px;
  height: 465.48px;
  border-radius: 0;
}
.top__service-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
}
.top__service-list {
  gap: 20px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  position: relative;
  counter-reset: service;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__service-list {
    gap: 0;
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.top__service-item {
  width: 510px;
}
@media screen and (max-width: 767px) {
  .top__service-item {
    width: 100%;
  }
}
.top__service-item:last-child {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__service-item:last-child {
    margin-top: 0;
  }
}
.top__service-item-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  visibility: hidden;
  font-size: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  counter-increment: service;
  border-bottom: 1px solid #fff;
  -webkit-transition: background-color 0.3s ease, opacity 0.4s ease 0.4s, -webkit-transform 0.4s ease 0.4s !important;
  transition: background-color 0.3s ease, opacity 0.4s ease 0.4s, -webkit-transform 0.4s ease 0.4s !important;
  transition: background-color 0.3s ease, opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s !important;
  transition: background-color 0.3s ease, opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s, -webkit-transform 0.4s ease 0.4s !important;
}
@media screen and (max-width: 767px) {
  .top__service-item-link {
    gap: 10px;
    padding: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-link--sp-bdr {
    border-top: 1px solid #fff !important;
  }
}
.top__service-item-link:first-child {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .top__service-item-link:first-child {
    border-top: none;
  }
}
.top__service-item-link::before {
  width: 40.28px;
  height: 40.28px;
  margin-right: 20px;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.06em;
  border: 1px solid #fff;
  content: "0" counter(service);
  font: 700 1.4rem "Outfit", sans-serif;
  line-height: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__service-item-link::before {
    width: 25px;
    height: 25px;
    margin-right: 0;
    font-size: 1.2rem;
  }
}
.top__service-item-link p {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .top__service-item-link p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.top__service-item-link svg {
  width: 10.46px;
  height: 6.54px;
}
.top__service-item-link:hover {
  background-color: #fff;
}
.top__service-item-link:hover p {
  color: #005baa;
}
.top__service-item-link:hover .button__arrow {
  background: #005baa;
  pointer-events: none;
}
.top__service-item-link:hover .button__arrow svg polygon {
  fill: #fff;
}
.top__service-item-link:hover::before {
  border-color: #005baa;
  color: #005baa;
}
.top__service-item-link.aos-animate {
  visibility: visible;
}
.top__service-btn {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top__service-btn .button__arrow {
    width: 33px;
    height: 33px;
  }
}
@media screen and (max-width: 767px) {
  .top__innovation {
    min-height: 100%;
  }
}
.top__innovation-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__innovation-wrap {
    gap: 20px;
    -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;
  }
}
.top__innovation-wrap .top__section-heading {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .top__innovation-wrap .top__section-heading {
    width: 100%;
  }
}
.top__innovation-img {
  width: 47%;
  height: 412px;
  max-width: 510px;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .top__innovation-img {
    width: 100%;
    height: 150px;
  }
}
.top__innovation-img img {
  overflow-clip-margin: unset;
}
@media screen and (max-width: 767px) {
  .top__recruit {
    min-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__sustain {
    min-height: 100%;
  }
}
.top__vision {
  opacity: 1;
  position: relative;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  background: url("./public/img/top/vision-bg.jpg") no-repeat center/cover;
  background-position: 10%;
  background-position: bottom;
}
@media screen and (max-width: 767px) {
  .top__vision {
    min-height: 100%;
  }
}
.top__vision::before {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  mix-blend-mode: multiply;
  background: -webkit-gradient(linear, left top, left bottom, from(#0082dc), to(#fff));
  background: linear-gradient(to bottom, #0082dc, #fff);
}
.top__vision::after {
  bottom: 0;
  content: "";
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(to bottom, transparent, #fff);
}
.top__vision.fade {
  opacity: 0;
}
.top__vision-wrap {
  z-index: 1;
  height: 100%;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
.top__vision-title-jp {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .top__vision-title-jp {
    font-size: 2rem;
  }
}
.top__vision-text {
  font-size: 1.8rem;
  text-align: center;
  margin: 40px 0 50px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 2.25em;
}
@media screen and (max-height: 800px) {
  .top__vision-text {
    margin: 10px 0 -30px;
  }
}
@media screen and (max-width: 767px) {
  .top__vision-text {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.top__about {
  overflow: hidden;
}
.top__about-list {
  gap: 60px;
  height: 100vh;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 50px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .top__about-list {
    gap: 40px;
    height: auto;
    padding-top: 60px;
    margin-bottom: 75px;
    grid-template-columns: unset;
    grid-template-rows: repeat(3, 1fr);
  }
}
.top__about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__about-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #005baa;
  margin-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font: 700 5rem "Outfit", sans-serif;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .top__about-item-title {
    font-size: 4rem;
    margin-bottom: 10px;
  }
}
.top__about-item-title-jp {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.3125em;
}
@media screen and (max-width: 767px) {
  .top__about-item-title-jp {
    font-size: 1.6rem;
  }
}
.top__about-item-img {
  width: 100%;
  height: 225px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top__about-item-img {
    height: 200px;
  }
}
.top__about-item-img img {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow-clip-margin: unset;
}
.top__about-item-img img.lazy {
  opacity: 1;
}
.top__about-item-btn {
  margin-top: 20px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top__about-item-btn {
    margin-top: 10px;
  }
}
.top__about-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  margin-bottom: 160px;
  max-height: 680px;
}
@media screen and (max-width: 1500px) {
  .top__about-img {
    height: auto;
    aspect-ratio: 1300/592;
    max-height: unset;
  }
}
@media screen and (max-height: 690px) {
  .top__about-img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img {
    height: auto;
    margin-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__about-img::before, .top__about-img::after {
  content: "";
  z-index: -1;
  position: absolute;
}
.top__about-img::before {
  right: 0;
  top: -150px;
  width: 482px;
  height: 438px;
  background: url("./public/img/top/about-decor_01.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__about-img::before {
    top: -90px;
    width: 422px;
    height: 378px;
  }
}
.top__about-img::after {
  left: 0;
  width: 522px;
  height: 338px;
  bottom: -210px;
  background: url("./public/img/top/about-decor_02.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__about-img::after {
    left: -60px;
    width: 350px;
    height: 240px;
    bottom: -150px;
  }
}
.top__about-wave {
  z-index: -1;
  position: absolute;
  right: 0;
  top: -289px;
  width: 209px;
  height: 373px;
  -webkit-transform: rotate(-124deg);
          transform: rotate(-124deg);
}
@media screen and (max-width: 767px) {
  .top__about-wave {
    top: -96px;
    width: 130px;
    height: 150px;
  }
}
.top__about-img-wrap {
  width: 64.6%;
}
@media screen and (max-width: 767px) {
  .top__about-img-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 385px;
  }
}
@media screen and (max-width: 550px) {
  .top__about-img-wrap {
    aspect-ratio: 400/280;
  }
}
.top__about-img-wrap img {
  overflow-clip-margin: unset;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 1500px) {
  .top__about-img-wrap img {
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img-wrap img {
    -o-object-fit: center;
       object-fit: center;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img-wrap picture {
    width: 100%;
  }
}
.top__about-img-wrap--column {
  width: 35.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1500px) {
  .top__about-img-wrap--column {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img-wrap--column {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-height: 185px;
  }
}
@media screen and (max-width: 550px) {
  .top__about-img-wrap--column {
    aspect-ratio: 400/134;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.top__about-img-wrap--column picture {
  height: 50%;
}
@media screen and (max-width: 767px) {
  .top__about-img-wrap--column picture {
    width: 50%;
    height: 100%;
  }
}
.top__news {
  z-index: 1;
  position: relative;
  margin-bottom: -80px;
}
.top__news::before {
  right: 0;
  z-index: -1;
  content: "";
  bottom: 80px;
  width: 656px;
  height: 260px;
  position: absolute;
  background: url("./public/img/top/about-decor_03.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__news::before {
    width: 596px;
    height: 200px;
  }
}
.top__news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .top__news-wrap {
    gap: 20px;
    padding: 30px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__news-item {
  position: relative;
  border-bottom: 0.75px solid #b4b4b4;
}
.top__news-item-link {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__news-item-link {
    padding: 15px 0;
  }
}
.top__news-item-link:hover .button__arrow {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top__news-label {
  width: 100%;
  max-width: 236px;
}
@media screen and (max-width: 767px) {
  .top__news-label {
    max-width: 100%;
  }
}
.top__news-list {
  width: 100%;
}
.top__news-cat {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top__news-cat {
    -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;
  }
}
.top__news-date {
  color: #005baa;
  letter-spacing: 0.1em;
  font: 700 1.6rem "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 1.4rem;
  }
}
.top__news-tag {
  color: #fff;
  line-height: 1em;
  font-size: 1.2rem;
  padding: 3px 13px;
  letter-spacing: 0.06em;
  background-color: #005baa;
}
@media screen and (max-width: 767px) {
  .top__news-tag {
    font-size: 1rem;
  }
}
.top__news-text {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.1875em;
}
@media screen and (max-width: 767px) {
  .top__news-text {
    font-size: 1.4rem;
  }
}
.top__related {
  padding: 200px 0;
  position: relative;
  margin-bottom: 160px;
  background: url("./public/img/top/related-bg.png") no-repeat center/cover;
}
@media screen and (max-height: 690px) {
  .top__related {
    padding: calc(20vh * var(--top-scale)) 0;
  }
}
@media screen and (max-width: 767px) {
  .top__related {
    padding: 100px 0;
    margin-bottom: 80px;
  }
}
.top__related::before, .top__related::after {
  left: 0;
  content: "";
  width: 100%;
  height: 160px;
  position: absolute;
}
.top__related::before {
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
  background: linear-gradient(to bottom, #fff, transparent);
}
.top__related::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
  background: linear-gradient(to top, #fff, transparent);
}
.top__related-wrap {
  position: relative;
  z-index: 1;
}
.top__related-decor::before, .top__related-decor::after {
  z-index: 1;
  content: "";
  position: absolute;
}
.top__related-decor::before {
  left: 0;
  width: 350px;
  height: 275px;
  bottom: -275px;
  background: url("./public/img/top/about-decor_04.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__related-decor::before {
    bottom: 0;
    width: 120px;
    height: 90px;
  }
}
.top__related-decor::after {
  right: 0;
  width: 690px;
  height: 380px;
  bottom: -370px;
  background: url("./public/img/top/about-decor_05.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__related-decor::after {
    bottom: 0;
    width: 240px;
    height: 140px;
  }
}
.top__related-list {
  gap: 20px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__related-item {
  width: 353px;
  border: 1px solid #dc1d2d;
}
@media screen and (max-width: 767px) {
  .top__related-item {
    width: 100%;
    max-width: 353px;
  }
}
.top__related-item a {
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top__related-item:hover a {
  opacity: 0.6;
}
.top__related-logo {
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top__related-logo {
    padding: 10px;
  }
}
.top__related-logo img {
  margin: 0 auto;
  width: 290.442px;
  height: 30.5078px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .top__related-logo img {
    height: 25px;
  }
}
.top__related-logo--long {
  padding: 15.5px;
}
@media screen and (max-width: 767px) {
  .top__related-logo--long {
    padding: 5px;
  }
}
.top__related-logo--long img {
  width: 315px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top__related-logo--long img {
    width: auto;
    height: 35px;
  }
}
.top__related-label {
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1em;
  text-align: center;
  font-weight: 700;
  background-color: #dc1d2d;
}
@media screen and (max-width: 767px) {
  .top__related-label {
    padding: 8px;
    font-size: 1.6rem;
  }
}
.top__scroll-down {
  right: 30px;
  bottom: 30px;
  position: fixed;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  z-index: 99;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top__scroll-down.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 767px) and (max-height: 690px) {
  .top__scroll-down.show {
    -webkit-transform: translateX(0) scale(var(--top-scale));
            transform: translateX(0) scale(var(--top-scale));
  }
}
.top__cursor {
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 10;
  width: 15px;
  height: 15px;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, border-radius 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, border-radius 0.3s, opacity 0.3s;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__cursor {
    display: none !important;
  }
}
.top__cursor.hovered {
  width: 50px;
  height: 50px;
}
.top__scroll-up {
  right: 30px;
  bottom: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.top__scroll-up.white {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.top__scroll-up.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 767px) and (max-height: 690px) {
  .top__scroll-up.show {
    -webkit-transform: translateX(0) scale(var(--top-scale));
            transform: translateX(0) scale(var(--top-scale));
  }
}
.top__scroll-up.lift {
  bottom: 130px;
}
@media screen and (max-width: 767px) {
  .top .container {
    padding-inline: 8%;
  }
}
@media screen and (max-height: 690px) {
  .top__message, .top__mv-wrap, .top__strength-wrap, .top__service-wrap, .top__innovation-wrap, .top__recruit-wrap, .top__vision-wrap, .top__about-wrap, .top__news-wrap, .top__related-wrap {
    -webkit-transform: scale(var(--top-scale));
            transform: scale(var(--top-scale));
  }
}
@media screen and (max-width: 767px) {
  .top__message, .top__mv-wrap, .top__strength-wrap, .top__service-wrap, .top__innovation-wrap, .top__recruit-wrap, .top__vision-wrap, .top__about-wrap, .top__news-wrap, .top__related-wrap {
    -webkit-transform: unset;
            transform: unset;
  }
}

.investment {
  padding: 130px 0 200px;
}
.investment__wrapper {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .investment__wrapper {
    margin-top: 80px;
  }
}
.investment__organization, .investment__effort, .investment__indicator {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.investment__dgrm {
  margin-top: 165px;
}
@media screen and (max-width: 767px) {
  .investment__dgrm {
    margin-top: 75px;
  }
}
.investment__dgrm img {
  margin-top: 50px;
}
.investment__organization-img {
  max-width: 695px;
  width: 100%;
  height: auto;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .investment__organization-img {
    margin-top: 25px;
  }
}
.investment__effort-heading {
  margin-inline: auto;
  width: 72%;
  max-width: 620px;
}
@media screen and (max-width: 767px) {
  .investment__effort-heading {
    max-width: 508px;
  }
}
.investment__effort-content {
  margin-block: -60px -30px;
  -webkit-transform: scale(0.72);
          transform: scale(0.72);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.6%;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .investment__effort-content {
    margin-block: -140px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}
.investment__effort-item {
  width: 30.2%;
  padding: 30px 12px 22px;
  background-color: #f3f8fd;
  text-align: center;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .investment__effort-item {
    width: 100% !important;
    padding: 20px 12px 12px;
  }
}
.investment__effort-item img {
  display: block;
  height: 90px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .investment__effort-item img {
    height: 65px;
  }
}
.investment__effort-item p {
  margin-top: 13px;
  color: #005baa;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  .investment__effort-item p {
    font-size: 1.5rem;
  }
}
.investment__effort-item--cl2 {
  width: 47.7%;
  padding: 40px 12px;
}
@media screen and (max-width: 767px) {
  .investment__effort-item--cl2 {
    padding: 30px 12px;
  }
}
.investment__effort-item--cl2 p {
  margin-top: 30px;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .investment__effort-item--cl2 p {
    margin-top: 20px;
    min-height: unset;
    font-size: 1.8rem;
  }
}
.investment__effort-item--cl2 img {
  height: 219px;
}
@media screen and (max-width: 767px) {
  .investment__effort-item--cl2 img {
    height: 150px;
  }
}
.investment__effort-item-num {
  font: 700 7.8rem "Outfit", sans-serif;
  color: #005baa;
  line-height: 1em;
  position: relative;
}
@media screen and (max-width: 980px) {
  .investment__effort-item-num {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .investment__effort-item-num {
    font-size: 6rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.investment__effort-item-sym {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .investment__effort-item-sym {
    font-size: 4.5rem;
  }
}
.investment__effort-item-note {
  position: absolute;
  right: -22px;
  bottom: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
}
@media screen and (max-width: 767px) {
  .investment__effort-item-note {
    bottom: 6px;
    right: -40px;
    font-size: 11px;
  }
}
@media screen and (max-width: 880px) {
  .investment__indicator-table-wrap {
    overflow-x: scroll;
  }
}
.investment__indicator-table {
  width: 100%;
  margin: 35px 0 20px;
  border: 0.75px solid #1e1e1e;
  border-collapse: collapse;
}
@media screen and (max-width: 880px) {
  .investment__indicator-table {
    width: 860px;
  }
}
@media screen and (max-width: 767px) {
  .investment__indicator-table {
    margin: 18px 0;
  }
}
.investment__indicator-table td,
.investment__indicator-table th {
  padding: 12px 25px;
  font-size: 1.6rem;
  font-weight: 500;
  border: 0.75px solid #1e1e1e;
  border-collapse: collapse;
  background-color: #f3f8fd;
}
@media screen and (max-width: 767px) {
  .investment__indicator-table td,
  .investment__indicator-table th {
    padding: 12px 10px;
    font-size: 1.4rem;
  }
}
.investment__indicator-table td.bgwhite,
.investment__indicator-table th.bgwhite {
  background-color: #fff;
}
.investment__indicator-table td.bold,
.investment__indicator-table th.bold {
  font-weight: 700;
}
.investment__indicator-table td:last-child, .investment__indicator-table td:nth-last-child(2),
.investment__indicator-table th:last-child,
.investment__indicator-table th:nth-last-child(2) {
  width: 134px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .investment__indicator-table td:last-child, .investment__indicator-table td:nth-last-child(2),
  .investment__indicator-table th:last-child,
  .investment__indicator-table th:nth-last-child(2) {
    width: unset;
  }
}
.investment__indicator-table th {
  background-color: #005baa;
  font-weight: 700;
}
.investment__indicator-table .w360 {
  width: 360px;
}
@media screen and (max-width: 767px) {
  .investment__indicator-table .w360 {
    width: 300px;
  }
}
.investment__indicator-notes {
  margin-bottom: 120px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1.7142857143em;
  letter-spacing: 0.06em;
}
.investment__indicator-notes li {
  margin-left: 32px;
}
.investment__indicator-notes li::marker {
  content: "※" counter(list-item) ": ";
}

.organization {
  margin-top: 130px;
  padding-bottom: 200px;
}
.organization__dg {
  padding: 120px 0 130px;
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .organization__dg {
    padding: 50px 0 60px;
    width: 100%;
  }
}
.organization__dg img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 87vh;
}
@media screen and (max-width: 767px) {
  .organization__dg img {
    max-height: unset;
    max-width: 100%;
  }
}
.organization__org {
  margin: 0 auto;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(820px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .organization__org {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.organization__org-diagram {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .organization__org-diagram {
    margin-top: 35px;
  }
}
.organization__slider-buttons {
  margin-top: 28px;
  display: grid;
  gap: 5px;
}

.office {
  padding: 160px 0 200px;
}
.office__wrapper {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(860px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .office__wrapper {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.office__content-group {
  max-height: 0;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  overflow: clip;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.office__content-group.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  max-height: 99999px;
}
.office__content {
  position: relative;
  margin-top: 30px;
  border: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .office__content {
    margin-top: 20px;
  }
}
.office__content::before {
  content: none;
}
.office__content-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 0.75px solid #98a9d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .office__content-item {
    padding: 18px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.office__content-item::after {
  content: "";
  position: absolute;
  width: 18.8%;
  height: 1.5px;
  background-color: #005baa;
  left: 0;
  bottom: -0.75px;
}
@media screen and (max-width: 767px) {
  .office__content-item::after {
    width: 22%;
  }
}
.office__content-item:first-child {
  border-top: 0.75px solid #98a9d6;
}
.office__content-item:first-child::before {
  content: "";
  position: absolute;
  width: 18.8%;
  height: 1.5px;
  background-color: #005baa;
  left: 0;
  top: -0.75px;
}
@media screen and (max-width: 767px) {
  .office__content-item:first-child::before {
    width: 22%;
  }
}
.office__item-label {
  width: 18.8%;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .office__item-label {
    width: 100%;
    margin-bottom: 6px;
  }
}
.office__item-contact {
  width: 72.5%;
  padding: 0 40px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .office__item-contact {
    width: calc(100% - 64px);
    margin-right: auto;
    padding: 0 22px 0 0;
    font-size: 1.4rem;
  }
}
.office__item-map {
  min-height: unset;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 71px;
  padding: 4px 10px 4px 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background-color: #005baa;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .office__item-map {
    padding-block: 5px;
    margin-top: 8px;
    min-height: unset;
    min-width: unset;
    font-size: 1.6rem;
  }
}
.office__map {
  width: 688px;
  height: 576px;
  position: relative;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .office__map {
    width: 335px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 0 auto 60px;
  }
}
.office__map-tab {
  top: 0;
  left: 28%;
  opacity: 0;
  width: 100px;
  height: 30px;
  display: block;
  cursor: pointer;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .office__map-tab {
    left: 23%;
    width: 70px;
    height: 17px;
  }
}
.office__map-tab--2 {
  left: 18%;
  top: 7.5%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--2 {
    left: 9%;
  }
}
.office__map-tab--3 {
  left: 13%;
  top: 15.5%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--3 {
    left: 2%;
  }
}
.office__map-tab--4 {
  top: 24%;
  left: 40%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--4 {
    left: 35%;
  }
}
.office__map-tab--5 {
  top: 34%;
  left: 20%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--5 {
    left: 11%;
  }
}
.office__map-tab--6 {
  top: 44%;
  left: 42%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--6 {
    left: 37%;
  }
}
.office__map-tab--7 {
  top: 35%;
  left: 52%;
}
.office__map-tab--8 {
  top: 75%;
  left: 47%;
}
.office__map-tab--9 {
  top: 83%;
  left: 28%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--9 {
    left: 20%;
  }
}
.office__map-tab--10 {
  top: 86%;
  left: 63%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--10 {
    left: 66%;
  }
}
.office__map-tab--11 {
  top: 68%;
  left: 35%;
}
@media screen and (max-width: 767px) {
  .office__map-tab--11 {
    left: 30%;
  }
}

.group {
  padding: 190px 0 100px;
}
.group__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: 100px;
}
@media screen and (max-width: 767px) {
  .group__list {
    gap: 50px;
  }
}
.group__company-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 1100px) {
  .group__company-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .group__company-list {
    grid-template-columns: 337px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
}
.group__company-list--mt0 {
  margin-top: 0;
}
.group__company-image {
  height: 190px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .group__company-image {
    margin-bottom: 10px;
  }
}
.group__company-image img {
  max-height: 95px;
}
.group__company-image--gokyo img {
  max-width: 226px;
}
.group__company-image--mx35 img {
  max-height: 35px;
}
.group__company-image--mx70 img {
  max-height: 70px;
}
.group__company-name {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .group__company-name {
    font-size: 14px;
  }
}
.group__company-name::after {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  right: -14px;
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("./public/img/group/open-link.svg");
}
.group__company-name:hover {
  opacity: 0.5;
}
.group__company-name--no-ext::after {
  content: none;
}
.group__note {
  margin-top: 80px;
  font-size: 1.4rem;
  text-indent: -1.8em;
  padding-left: 1.8em;
  font-weight: 500;
}
.group__note + .group__note {
  margin-top: 0;
}
.group .heading__jp {
  font-size: 2.4rem;
}

.news {
  padding: 160px 0 200px;
}
.news__list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
}
@media screen and (max-width: 767px) {
  .news__list-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 29px;
  }
}
.news__sidenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .news__sidenav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.news__sidenav-link {
  width: 107px;
  height: 35px;
  background: #f3f8fd;
  border-radius: 18px;
  color: #005baa;
  font-weight: 700;
  font-size: 1.6rem;
  padding-bottom: 2px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .news__sidenav-link {
    width: 85px;
    height: 28px;
    font-size: 12px;
  }
}
.news__sidenav-link:hover {
  background: #005baa;
  color: #f3f8fd;
  opacity: 0.6;
}
.news__sidenav-link.active {
  background: #005baa;
  color: #fff;
  pointer-events: none;
}
.news__list-wrap {
  width: 83%;
}
@media screen and (max-width: 767px) {
  .news__list-wrap {
    width: 100%;
  }
}
.news__item {
  width: 100%;
  border-top: 1px solid rgba(180, 180, 180, 0.5);
  padding: 36px 0 32px;
  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: 40px;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding: 30px 0;
    gap: 14px;
  }
}
.news__item:last-of-type {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
.news__item:hover .button__arrow {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.news__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news__item-content {
    gap: 14px;
  }
}
.news__item-img {
  width: 168px;
  aspect-ratio: 168/109;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news__item-img {
    width: 103px;
  }
}
.news__item-text {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__item-row {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news__item-row {
    gap: 7px 10px;
  }
}
.news__item-date {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 14px;
  }
}
.news__item-category {
  background: #005baa;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 0 12.5px;
}
@media screen and (max-width: 767px) {
  .news__item-category {
    padding: 0 7px 1px;
  }
}
.news__item-title {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 2.1666666667em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.news__item-button {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .news__item-button .button__arrow {
    width: 30px;
    height: 30px;
  }
}
.news__pagination {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .news__pagination {
    margin-top: 30px;
  }
}
.news__detail-container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(940px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__detail-container {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.news__detail-title {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.06em;
  line-height: 1.2em;
  padding-bottom: 29px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
@media screen and (max-width: 767px) {
  .news__detail-title {
    font-size: 24px;
    padding-bottom: 18px;
  }
}
.news__detail-content {
  margin: 75px 0 55px;
}
@media screen and (max-width: 767px) {
  .news__detail-content {
    margin: 40px 0 30px;
  }
}
.news__detail-row {
  margin-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .news__detail-row {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news__detail-date {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .news__detail-date {
    font-size: 14px;
  }
}
.news__detail-category {
  background: #005baa;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 0 12.5px;
}
@media screen and (max-width: 767px) {
  .news__detail-category {
    padding: 0 7px 1px;
  }
}
.news__detail-text {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .news__detail-text {
    font-size: 14px;
  }
}
.news__detail-text a {
  color: #005baa;
  text-decoration: underline;
}
.news__detail-img {
  max-width: 699px;
  max-height: 465px;
  width: 74.37%;
  aspect-ratio: 699/465;
  margin: 55px auto;
}
.news__detail-img a{
  display: block;
  width: 100%;
  height: 100%;
  transition: .3s;
}
.news__detail-img a:hover{
  opacity: .8;
  transition: .3s;
}
@media screen and (max-width: 767px) {
  .news__detail-img {
    width: 100%;
    margin: 25px auto;
  }
}
.news__detail-pagination {
  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;
}
.news__detail-page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #005baa;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
.news__detail-page::before {
  content: "";
  width: 10.5px;
  height: 6.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("./public/img/icons/icon-arrow-white.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__detail-page--prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.news__detail-page:hover {
  opacity: 0.6;
}

.strength {
  padding: 130px 0 200px;
}
.strength__list {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .strength__list {
    margin-top: 80px;
  }
}
.strength__item {
  width: 100%;
  min-height: 357.45px;
}
@media screen and (max-width: 767px) {
  .strength__item {
    min-height: unset;
  }
}
.strength__item:not(:last-of-type) {
  margin-bottom: 60px;
}
.strength__item-content {
  min-height: 357.45px;
  padding: 70px 90px 40px 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .strength__item-content {
    min-height: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 60px 30px 20px;
    gap: 10px;
  }
}
.strength__item-content:hover .button {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.strength__item-content:hover .heading,
.strength__item-content:hover .heading__jp,
.strength__item-content:hover .strength__text,
.strength__item-content:hover .strength__subheading {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.strength__subheading {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  line-height: 1.2916666667em;
  color: #005baa;
  margin: 30px 0 20px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .strength__subheading {
    font-size: 18px;
    margin: 15px 0 10px;
  }
}
.strength__text {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.9375em;
  max-width: 820px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.strength__button {
  right: 40px;
  bottom: 40px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .strength__button {
    left: unset;
    bottom: unset;
    position: unset;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.inquiry {
  padding-block: 160px 190px;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(940px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .inquiry {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.inquiry__intro {
  margin-bottom: 55px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .inquiry__intro {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 2.0714285714em;
  }
}
.inquiry__date {
  margin-top: 55px;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .inquiry__date {
    margin-top: 25px;
    font-size: 14px;
  }
}

.service-subpage {
  padding-block: 120px;
}
.service-subpage__intro {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .service-subpage__intro {
    margin-bottom: 75px;
  }
}
.service-subpage__slider {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .service-subpage__slider {
    padding-top: 25px;
  }
}

.manufacturer {
  padding: 160px 0 200px;
}
.manufacturer__wrapper {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1100px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .manufacturer__wrapper {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.manufacturer__content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .manufacturer__content {
    margin-top: 35px;
  }
}
.manufacturer__content-container {
  margin-bottom: 80px;
  display: none;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-container {
    margin-bottom: 45px;
  }
}
.manufacturer__content-container.active {
  display: block;
}
.manufacturer__content-title {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-title {
    margin-bottom: 22px;
  }
}
.manufacturer__content-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.75px;
  background-color: #98a9d6;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.manufacturer__content-title span {
  position: relative;
  padding-right: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #005baa;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-title span {
    font-size: 1.6rem;
  }
}
.manufacturer__content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-items {
    padding-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.manufacturer__content-gr {
  width: 33.33%;
  padding-right: 12px;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-gr {
    width: 100%;
  }
}
.manufacturer__content-gr:not(:first-child) {
  padding-left: 25px;
  border-left: 0.75px solid #98a9d6;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-gr:not(:first-child) {
    padding: 20px 0 0;
    border-left: none;
    border-top: 0.75px solid #98a9d6;
  }
}
.manufacturer__content-gr span {
  position: relative;
  display: block;
  padding-left: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .manufacturer__content-gr span {
    font-size: 1.4rem;
  }
}
.manufacturer__content-gr span::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -6px;
}

.privacy-st {
  padding-block: 160px 200px;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(940px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .privacy-st {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.privacy-st__intro {
  margin-bottom: 55px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .privacy-st__intro {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 2.0714285714em;
  }
}
.privacy-st__date {
  margin-top: 55px;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .privacy-st__date {
    margin-top: 25px;
    font-size: 14px;
  }
}

.philosophy {
  padding-block: 160px 200px;
}
.philosophy__intro-content {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 8.33%;
}
@media screen and (max-width: 767px) {
  .philosophy__intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.philosophy__intro-text {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .philosophy__intro-text {
    padding-top: 30px;
  }
}
.philosophy__heading-jp {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .philosophy__heading-jp {
    font-size: 30px;
  }
}
.philosophy__intro-heading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.8333333333em;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .philosophy__intro-heading {
    font-size: 18px;
    margin-top: 15px;
  }
}
.philosophy__intro-image-wrap {
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .philosophy__intro-image-wrap {
    margin-top: 0;
  }
}
.philosophy__intro-image {
  height: 400px;
}
@media screen and (max-width: 767px) {
  .philosophy__intro-image {
    height: 100%;
  }
}
.philosophy__policy {
  margin-inline: auto;
  padding-top: 145px;
  max-width: 780px;
}
@media screen and (max-width: 767px) {
  .philosophy__policy {
    padding-top: 70px;
  }
}
.philosophy__policy-list {
  border-top: 0.75px solid #98a9d6;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .philosophy__policy-list {
    margin-top: 25px;
  }
}
.philosophy__policy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  letter-spacing: 0.1em;
  border-bottom: 0.75px solid #98a9d6;
  padding-block: 10px;
}
@media screen and (max-width: 767px) {
  .philosophy__policy-item {
    gap: 30px;
  }
}
.philosophy__policy-number {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .philosophy__policy-number {
    font-size: 10px;
  }
}
.philosophy__policy-number--fs64 {
  font-size: 5.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .philosophy__policy-number--fs64 {
    font-size: 36px;
  }
}
.philosophy__policy-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .philosophy__policy-text {
    font-size: 16px;
  }
}
.philosophy__values {
  text-align: center;
  padding-block: 140px 155px;
  max-width: 780px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .philosophy__values {
    padding-block: 100px 60px;
    padding-inline: 0;
  }
}
.philosophy__logo-image {
  width: 350px;
  height: 335px;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .philosophy__logo-image {
    width: 75%;
    height: auto;
    margin-left: 0;
    padding-left: 60px;
  }
}
.philosophy__tagline {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75em;
  padding-block: 55px 74px;
}
@media screen and (max-width: 767px) {
  .philosophy__tagline {
    font-size: 16px;
    padding-block: 30px;
  }
}
.philosophy__values-list {
  border-top: 0.75px solid #98a9d6;
}
.philosophy__values-item {
  border-bottom: 0.75px solid #98a9d6;
  padding-block: 30px;
}
@media screen and (max-height: 650px) {
  .philosophy__values-item {
    padding-block: 3.5vh;
  }
}
@media screen and (max-width: 767px) {
  .philosophy__values-item {
    padding-block: 24px;
  }
}
.philosophy__values-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .philosophy__values-heading {
    gap: 10px;
  }
}
.philosophy__values-jp {
  width: 91px;
  height: 38px;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: #fff;
  background-color: #005baa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-height: 650px) {
  .philosophy__values-jp {
    width: auto;
    height: 5.6vh;
    font-size: 3.25vh;
    aspect-ratio: 91/38;
  }
}
@media screen and (max-width: 767px) {
  .philosophy__values-jp {
    width: 65px;
    height: 26px;
    font-size: 16px;
    aspect-ratio: unset;
  }
}
.philosophy__values-jp--ls60 {
  letter-spacing: 0.06em;
}
.philosophy__values-en {
  font-size: 5rem;
  line-height: 1em;
  font-weight: 300;
}
@media screen and (max-height: 650px) {
  .philosophy__values-en {
    font-size: 7.8vh;
  }
}
@media screen and (max-width: 767px) {
  .philosophy__values-en {
    font-size: 40px;
  }
}
.philosophy__values-en--bold {
  font-weight: 700;
}
.philosophy__values-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-height: 650px) {
  .philosophy__values-text {
    margin-top: 2vh;
    font-size: 3.1vh;
  }
}
@media screen and (max-width: 767px) {
  .philosophy__values-text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.philosophy__logo {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .philosophy__logo {
    text-align: left;
  }
}
.philosophy__logo-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .philosophy__logo-text {
    font-size: 14px;
    margin-top: 15px;
  }
}

.contact {
  padding-top: 160px;
}
.contact__container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(940px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact__container {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.contact__text {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 14px;
  }
}
.contact__text--center {
  text-align: center;
}
.contact__progress {
  margin: 75px 0;
  gap: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__progress {
    margin: 30px 0;
    gap: 50px;
  }
}
.contact__progress-item {
  width: 113px;
  height: 113px;
  border-radius: 50%;
  background-color: #f3f8fd;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  color: #005baa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__progress-item {
    width: 80px;
    height: 80px;
    gap: 4px;
  }
}
.contact__progress-item:not(.contact__progress-item:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -90px;
  width: 80px;
  height: 1px;
  background-color: #005baa;
}
@media screen and (max-width: 767px) {
  .contact__progress-item:not(.contact__progress-item:last-of-type)::after {
    right: -42.5px;
    width: 35px;
  }
}
.contact__progress-item.active {
  background-color: #005baa;
  color: #fff;
}
.contact__progress-num {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .contact__progress-num {
    font-size: 11px;
  }
}
.contact__progress-text {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .contact__progress-text {
    font-size: 11px;
  }
}
.contact__tab-navigation {
  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: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact__tab-navigation {
    gap: 10px;
  }
}
.contact__tab-button {
  cursor: pointer;
  width: 50%;
  padding: 9px;
  background-color: #fff;
  border: 1px solid #005baa;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #005baa;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__tab-button {
    height: 66px;
    font-size: 14px;
    border-radius: 35px;
  }
}
.contact__tab-button.active {
  background-color: #005baa;
  color: #fff;
}
.contact__tab-content {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .contact__tab-content {
    margin-top: 30px;
  }
}
.contact__tab-content-item {
  display: none;
}
.contact__tab-content-item.active {
  display: block;
}
.contact__complete-button {
  margin: 50px auto 0;
}

.history {
  padding-block: 150px 200px;
}
.history__list {
  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;
  gap: 60px;
  padding: 0 90px;
}
@media screen and (max-width: 1100px) {
  .history__list {
    padding: 0;
  }
}
.history__list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 246px;
  z-index: -1;
  width: 2px;
  height: 100%;
  background-color: #98a9d6;
}
@media screen and (max-width: 1100px) {
  .history__list::after {
    left: 156px;
  }
}
@media screen and (max-width: 767px) {
  .history__list::after {
    left: 92px;
  }
}
.history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .history__item {
    gap: 20px;
  }
}
.history__year {
  display: block;
  position: relative;
  min-width: 164px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: #98a9d6;
}
@media screen and (max-width: 767px) {
  .history__year {
    min-width: 100px;
    font-size: 24px;
  }
}
.history__year::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 9px;
  height: 9px;
  background-color: #005baa;
  border-radius: 50%;
  border: 3px solid #98a9d6;
}
.history__month {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .history__month {
    font-size: 16px;
  }
}
.history__text {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .history__text {
    font-size: 14px;
  }
}
.history__text--caption {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .history__text--caption {
    font-size: 12px;
  }
}
.history__text.primary.bold {
  min-width: 40px;
}
@media screen and (max-width: 767px) {
  .history__text.primary.bold {
    min-width: 35px;
  }
}
.history__info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.history__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .history__info {
    gap: 20px;
    padding-top: 0;
  }
}
.history__image-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .history__image-list {
    gap: 20px;
    margin-top: 20px;
  }
}
.history__image-list--mb20 {
  margin-bottom: 20px;
}
.history__image-item {
  max-width: 298px;
}
.history__image {
  margin-bottom: 5px;
}

.terms {
  padding-block: 160px 200px;
}
.terms__container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(940px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .terms__container {
    max-width: 100%;
    padding-inline: 5%;
  }
}

.bcp {
  padding-top: 120px;
}
.bcp__sec-banner {
  margin-block: 150px 120px;
}
@media screen and (max-width: 767px) {
  .bcp__sec-banner {
    margin-block: 40px;
  }
}
.bcp__slide-full {
  width: 100%;
}
.bcp__alc-list {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 767px) and (max-height: 850px) {
  .bcp__alc-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .bcp__alc-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .bcp__alc-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.bcp__alc-item {
  width: 47.27%;
}
@media screen and (max-width: 600px) {
  .bcp__alc-item {
    width: 100%;
  }
}
.bcp__alc-img {
  margin-bottom: 10px;
  aspect-ratio: 520/328;
}
@media screen and (min-width: 767px) and (max-height: 850px) {
  .bcp__alc-img {
    height: 30vh;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 600px) {
  .bcp__alc-img {
    aspect-ratio: unset;
    height: 230px;
    width: 100%;
  }
}
.bcp__alc-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .bcp__alc-text {
    font-size: 16px;
  }
}
.bcp__heading1 {
  margin-top: 18px;
}

.alc {
  padding-top: 130px;
}
.alc__video-wrap {
  margin-inline: auto;
  max-width: 880px;
}
.alc__video-text {
  margin-block: 55px 15px;
}
@media screen and (max-width: 767px) {
  .alc__video-text {
    margin-block: 25px 10px;
    font-size: 14px;
  }
}
.alc__video {
  margin-bottom: 192px;
  width: 100%;
  aspect-ratio: 1100/618;
}
@media screen and (max-width: 767px) {
  .alc__video {
    margin-bottom: 40px;
  }
}
.alc__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.alc__sec-banner {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .alc__sec-banner {
    margin-bottom: 40px;
  }
}
.alc__slider {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .alc__slider {
    margin-top: 40px;
  }
}
.alc__slider2 {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .alc__slider2 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .alc__slider-heading {
    margin-inline: 5.5%;
  }
}
.alc__slide-subheading {
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #005baa;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .alc__slide-subheading {
    font-size: 14px;
  }
}
.alc__slide-full {
  width: 100%;
}
.alc__list-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .alc__list-wrap {
    margin: 30px auto 10px;
    max-width: 400px;
    width: 85%;
  }
}
@media screen and (min-width: 767px) {
  .alc__list {
    display: grid !important;
    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1100px) {
  .alc__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .alc__list {
    gap: 0;
  }
}
.alc__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.alc__list-img {
  aspect-ratio: 326/210;
}
@media screen and (min-width: 767px) and (max-height: 700px) {
  .alc__list-img {
    aspect-ratio: unset;
    height: 50%;
  }
}
.alc__list-img picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.alc__list-title {
  margin-top: 14px;
  color: #005baa;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1100px) {
  .alc__list-title {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .alc__list-title {
    font-size: 16px;
  }
}
.alc__list-par {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .alc__list-par {
    margin-top: 8px;
    font-size: 14px;
    height: 85px;
  }
}
.alc__container {
  padding-block: 160px 80px;
}
@media screen and (max-width: 767px) {
  .alc__container {
    padding-block: 40px;
  }
}

.numbers {
  padding-block: 160px 150px;
}
.numbers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.numbers__list .numbers__item:nth-child(even) {
  background-color: #f3f8fd;
}
.numbers__item {
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 340px;
  height: 368px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding: 40px 26px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .numbers__item {
    width: 315px;
    height: 345px;
    padding: 30px 12px;
  }
}
.numbers__image--1 {
  width: 132px;
  height: 147px;
  margin-bottom: 25px;
}
.numbers__image--2 {
  width: 260px;
  height: 76px;
  margin-bottom: 40px;
}
.numbers__image--3 {
  width: 156px;
  height: 129px;
  margin-bottom: 30px;
}
.numbers__image--4 {
  width: 75px;
  height: 126px;
  margin-bottom: 30px;
}
.numbers__image--5 {
  width: 149px;
  height: 149px;
  margin-bottom: 30px;
}
.numbers__image--6 {
  width: 211px;
  height: 112px;
  margin-bottom: 35px;
}
.numbers__image--7 {
  width: 191px;
  height: 112px;
  margin-bottom: 35px;
}
.numbers__image--8 {
  width: 100px;
  height: 118px;
  margin-bottom: 16px;
}
.numbers__image--9 {
  width: 168px;
  height: 149px;
  margin-bottom: 25px;
}
.numbers__link {
  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-transition: 0.3s ease;
  transition: 0.3s ease;
}
.numbers__text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2em;
  text-align: center;
}
.numbers__text--fs30 {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
}
.numbers__text--note {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 40px;
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.numbers__text--note + .numbers__text--note {
  margin-top: 0;
}
.numbers__number {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
}
.numbers__item-note {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.numbers__item-note--rel {
  position: relative;
  top: -3px;
}
.numbers__item-note--bottom {
  position: absolute;
  bottom: 22px;
}
@media screen and (max-width: 767px) {
  .numbers__item-note--bottom {
    position: static;
  }
}
.numbers__see-more {
  margin-top: 10px;
  font-size: 1.4rem;
  position: relative;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .numbers__see-more {
    margin-top: 5px;
  }
}
.numbers__see-more::before {
  right: 0;
  width: 0;
  content: "";
  height: 1px;
  bottom: -3px;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #005baa;
}
.numbers__see-more:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}

.privacy-policy {
  width: 940px;
  margin: 0 auto;
  padding-block: 160px 200px;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.privacy-policy__content {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
  word-break: break-all;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .privacy-policy__content {
    font-size: 14px;
    line-height: 2.0714285714em;
    letter-spacing: 0;
  }
}

.error-404 {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .error-404 {
    padding-bottom: 55px;
  }
}

.greeting {
  position: relative;
  z-index: 3;
}
.greeting__container {
  margin-top: -40px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .greeting__container {
    padding-bottom: 55px;
  }
}
.greeting__content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .greeting__content {
    width: 100%;
    padding: 16px;
  }
}
.greeting__text {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .greeting__text {
    font-size: 14px;
    line-height: 2.2857142857em;
  }
}
.greeting__text:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .greeting__text:not(:last-child) {
    margin-bottom: 30px;
  }
}

.sustain {
  padding-block: 160px 200px;
}
.sustain__sec {
  margin-block: 150px;
}
@media screen and (max-width: 767px) {
  .sustain__sec {
    margin-block: 40px;
  }
}
.sustain__tabs-contents {
  padding-top: 50px;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .sustain__tabs-contents {
    padding-top: 25px;
  }
}
.sustain__panel {
  max-height: 0;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  overflow: clip;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.sustain__panel.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  max-height: 99999px;
}
.sustain__main-txt {
  margin-bottom: 60px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .sustain__main-txt {
    margin-bottom: 35px;
    font-size: 1.4rem;
  }
}
.sustain__panel-gt1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 5.5%;
}
@media screen and (max-width: 980px) {
  .sustain__panel-gt1 {
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 767px) {
  .sustain__panel-gt1 {
    grid-template-columns: auto;
    gap: 40px;
  }
}
.sustain__gt1-img {
  margin-bottom: 25px;
  width: 200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sustain__gt1-img {
    margin-bottom: 18px;
  }
}
.sustain__gt1-lnt {
  margin-bottom: 22px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00973b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .sustain__gt1-lnt {
    margin-bottom: 18px;
    font-size: 1.6rem;
  }
}
.sustain__gt1-lnt span {
  padding: 0 8px 2px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #00973b;
}
@media screen and (max-width: 767px) {
  .sustain__gt1-lnt span {
    font-size: 1.4rem;
  }
}
.sustain__gt1-lnt.ruby {
  color: #e83819;
}
.sustain__gt1-lnt.ruby span {
  background: #e83819;
}
.sustain__gt1-lnt.yellow {
  color: #fabd00;
}
.sustain__gt1-lnt.yellow span {
  background-color: #fabd00;
}
.sustain__gt1-lnt.tart {
  color: #f5a200;
}
.sustain__gt1-lnt.tart span {
  background-color: #f5a200;
}
.sustain__gt1-lnt.dgreen {
  color: #427935;
}
.sustain__gt1-lnt.dgreen span {
  background-color: #427935;
}
.sustain__gt1-lnt.blu {
  color: #003067;
}
.sustain__gt1-lnt.blu span {
  background-color: #003067;
}
.sustain__gt1-item {
  counter-reset: gtcounter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sustain__gt1-txt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .sustain__gt1-txt {
    font-size: 1.4rem;
  }
}
.sustain__gt1-txt--listed {
  position: relative;
  padding-left: 22px;
}
@media screen and (max-width: 767px) {
  .sustain__gt1-txt--listed {
    padding-left: 18px;
  }
}
.sustain__gt1-txt--listed::before {
  counter-increment: gtcounter;
  content: counter(gtcounter) "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #1e1e1e;
  border-radius: 50%;
  left: 0;
  top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .sustain__gt1-txt--listed::before {
    width: 10px;
    height: 10px;
  }
}
.sustain__gt2 {
  display: grid;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .sustain__gt2 {
    gap: 38px;
  }
}
.sustain__gt2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .sustain__gt2-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 40px;
  }
}
.sustain__gt2-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sustain__gt2-img {
  width: 47.5%;
  height: 330px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sustain__gt2-img {
    width: 100%;
    height: 200px;
  }
}
.sustain__gt2-img img {
  overflow: visible;
  object-fit: contain;
}
.sustain__gt2-txts {
  width: 47.5%;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .sustain__gt2-txts {
    width: 100%;
  }
}
.sustain__gt2-txts span:not(.nowrap) {
  display: block;
  margin-bottom: 10px;
  font: 700 1.6rem "Outfit", sans-serif;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .sustain__gt2-txts span:not(.nowrap) {
    margin-bottom: 6px;
    font-size: 1.6rem;
  }
}
.sustain__gt2-txts h3 {
  margin-bottom: 25px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .sustain__gt2-txts h3 {
    margin-bottom: 12px;
    font-size: 2rem;
  }
}
.sustain__gt2-txts p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .sustain__gt2-txts p {
    font-size: 1.4rem;
  }
}
.sustain__gt2-smtxt {
  margin-top: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143em;
  letter-spacing: 0.04em;
}
.sustain__gt2-smtxt--indent {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.sustain__gt4 {
  display: block;
  max-width: 540px;
  margin: 0 auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sustain__gt4:hover {
  opacity: 0.8;
}
.sustain__auth-list {
  margin-block: 46px 200px;
  display: grid;
  gap: 55px 5.45%;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media screen and (max-width: 767px) {
  .sustain__auth-list {
    margin-block: 40px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .sustain__auth-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sustain__auth-name {
  padding-block: 6px;
  position: relative;
  min-height: 65px;
  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;
}
.sustain__auth-name-text {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5555555556em;
  letter-spacing: 0.06em;
  text-align: center;
  color: #005baa;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sustain__auth-name-text {
    font-size: 16px;
  }
}
.sustain__auth-btn-group {
  margin-block: auto 0;
}
.sustain__auth-cert-link {
  border-radius: 17px;
  border: 0.5px solid #005baa;
  margin: 4px auto 15px;
  padding: 4.5px 27.5px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #005baa;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sustain__auth-cert-link:hover {
  color: #fff;
  background: #005baa;
}
.sustain__auth-btn {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sustain__auth-btn {
    margin-block: auto 0;
  }
}
.sustain__auth-img {
  height: 195px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .sustain__auth-img {
    margin-inline: auto;
    width: 100%;
    max-width: 230px;
    height: 150px;
  }
}
.sustain__auth-img > picture {
  width: 80%;
  height: 100%;
}
.sustain__auth-img--w100 > picture {
  width: 100%;
}
.sustain__auth-img--w75 > picture {
  width: 75%;
}
.sustain__auth-img--w72 > picture {
  width: 72%;
}
.sustain__auth-img--w54 > picture {
  width: 54%;
}
.sustain__eff {
  padding-top: 190px;
}
@media screen and (max-width: 767px) {
  .sustain__eff {
    padding-top: 40px;
  }
}
.sustain__eff-intro {
  margin-block: 24px 200px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sustain__eff-intro {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
.sustain__slide-vid-list {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .sustain__slide-vid-list {
    margin-top: 20px;
    gap: 15px;
    grid-template-columns: 1fr;
    grid-template-rows: 50% 50%;
    max-height: 55%;
  }
}
@media screen and (max-width: 767px) {
  .sustain__slide-vid-list--solo {
    grid-template-rows: auto;
  }
}
@media screen and (max-width: 767px) {
  .sustain__slide-vid-list--two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sustain__slide-vid {
  aspect-ratio: 240/135;
  width: auto;
  height: 100%;
  max-width: 100%;
}
.sustain__slide-vid > iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.sustain__footer {
  padding-top: 170px;
}
@media screen and (max-width: 767px) {
  .sustain__footer {
    padding-top: 40px;
  }
}
.sustain__footer-img {
  width: 100%;
  margin-inline: auto;
}
.sustain__footer-img--1 {
  max-width: 534px;
}
.sustain__footer-img--2 {
  max-width: 590px;
}
.sustain__footer-box {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sustain__footer-box:not(:last-child) {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .sustain__footer-box:not(:last-child) {
    margin-bottom: 40px;
  }
}
.sustain__footer-box:hover {
  opacity: 0.7;
}
.sustain__footer-text {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375em;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sustain__footer-text {
    font-size: 14px;
  }
}

.profile {
  padding-block: 160px 200px;
}
.profile__container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(860px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .profile__container {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.profile__container:first-child {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .profile__container:first-child {
    margin-bottom: 80px;
  }
}
.profile__list {
  margin-top: 30px;
}
.profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  padding-block: 22px;
}
@media screen and (max-width: 767px) {
  .profile__item {
    gap: 20px;
    font-size: 14px;
  }
}
.profile__item:first-child::before, .profile__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #005baa 163px, transparent 163px), linear-gradient(to bottom, transparent 0.5px, #98a9d6 0.5px, #98a9d6 1.5px, transparent 1.5px);
}
@media screen and (max-width: 767px) {
  .profile__item:first-child::before, .profile__item::after {
    background: linear-gradient(to right, #005baa 110px, transparent 110px), linear-gradient(to bottom, transparent 0.5px, #98a9d6 0.5px, #98a9d6 1.5px, transparent 1.5px);
  }
}
.profile__item:first-child::before {
  top: 0;
}
.profile__item::after {
  bottom: 0;
}
.profile__label {
  min-width: 163px;
  font-weight: 700;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .profile__label {
    min-width: 110px;
  }
}
.profile__info {
  width: 100%;
}
.profile__map {
  width: 100%;
  height: 336px;
  margin-block: 10px 8px;
}

.company {
  padding-block: 160px 200px;
}
.company__list {
  width: 100%;
  display: grid;
  grid-template-columns: 47.27% 47.27%;
  gap: 60px 55px;
}
@media screen and (max-width: 1024px) {
  .company__list {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .company__list {
    grid-template-columns: 100%;
  }
}
.company__item {
  width: 100%;
  height: 227.14px;
  position: relative;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .company__item {
    height: 190px;
  }
}
.company__item:hover .company__item-bg {
  opacity: 0.8;
}
.company__item:hover .company__item-button .button__arrow {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.company__item:hover .company__item-content {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.company__item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
.company__item-content {
  height: 100%;
  padding: 15px 20px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .company__item-content {
    padding: 15px;
  }
}
.company__item-num {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .company__item-num {
    font-size: 36px;
  }
}
.company__item-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: 8px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .company__item-text {
    padding-left: 15px;
    gap: 5px;
  }
}
.company__item-text-en {
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .company__item-text-en {
    font-size: 12px;
  }
}
.company__item-text-jp {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.06em;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .company__item-text-jp {
    font-size: 26px;
  }
}
.company__item-button {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.innovation {
  padding-block: 175px 200px;
}
.innovation__intro-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .innovation__intro-container {
    margin-top: 75px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.innovation__intro-image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .innovation__intro-image {
    width: 270px;
  }
}
.innovation__intro-text-wrap {
  width: 50%;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .innovation__intro-text-wrap {
    width: 100%;
    padding-left: 0;
  }
}
.innovation__intro-slogan {
  display: block;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .innovation__intro-slogan {
    margin-block: 15px;
    font-size: 14px;
  }
}
.innovation__intro-title {
  margin: 0 auto 60px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .innovation__intro-title {
    width: 200px;
    margin-bottom: 30px;
  }
}
.innovation__intro-text {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .innovation__intro-text {
    font-size: 14px;
  }
}
.innovation__description {
  position: relative;
  margin-block: 160px;
  padding-block: 75px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .innovation__description {
    margin-block: 80px;
    padding-block: 40px;
  }
}
.innovation__description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 550px);
  height: 100%;
  background: #f3f8fd;
  z-index: -1;
}
.innovation__description-container {
  display: grid;
  grid-template-columns: 46.5% 53.5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.25%;
}
@media screen and (max-width: 767px) {
  .innovation__description-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.innovation__description-heading-jp {
  display: block;
}
.innovation__description-arch {
  margin-inline: 0.1em;
  display: inline-block;
  width: auto;
  height: 1em;
}
@media screen and (max-width: 767px) {
  .innovation__description-arch {
    width: 77px;
    height: 26px;
  }
}
.innovation__description-text {
  margin-top: 45px;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .innovation__description-text {
    margin-top: 20px;
    font-size: 14px;
  }
}
.innovation__description-image {
  width: 570px;
  height: 344px;
}
@media screen and (max-width: 767px) {
  .innovation__description-image {
    width: 100%;
    height: unset;
    aspect-ratio: 540/344;
  }
}
.innovation__table-section:not(.innovation__table-section:last-of-type) {
  margin-bottom: 75px;
}
.innovation__table-heading {
  margin-bottom: 40px;
}
.innovation__conference {
  padding-block: 80px 130px;
}
@media screen and (max-width: 767px) {
  .innovation__conference {
    padding-block: 60px 70px;
  }
}
.innovation__tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-block: 40px;
}
.innovation__tab-nav {
  padding: 10px;
  border-radius: 25px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: #005baa;
  background: #f3f8fd;
}
@media screen and (max-width: 767px) {
  .innovation__tab-nav {
    font-size: 1.8rem;
  }
}
.innovation__tab-nav.active {
  color: #fff;
  background: #005baa;
}
.innovation__accordion-toggle {
  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;
  position: relative;
}
.innovation__accordion-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color: #005baa;
}
.innovation__accordion-text-en {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .innovation__accordion-text-en {
    font-size: 14px;
  }
}
.innovation__accordion-text-jp {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .innovation__accordion-text-jp {
    font-size: 18px;
  }
}
.innovation__accordion-line {
  width: 100%;
  border-bottom: 1px solid #98a9d6;
}
.innovation__accordion-content {
  padding-block: 37px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.innovation__accordion-content.active {
  display: block;
}
.innovation__accordion-content-text {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 35px;
}
.innovation__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .innovation__list {
    grid-template-columns: 1fr;
  }
}
.innovation__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .innovation__item {
    margin-inline: 10px;
  }
}
.innovation__item-header {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: -5px;
}
@media screen and (max-width: 767px) {
  .innovation__item-header {
    width: 100%;
  }
}
.innovation__item-header span {
  font-weight: 700;
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  color: #005baa;
  line-height: 0.725em;
}
@media screen and (max-width: 767px) {
  .innovation__item-header span {
    font-size: 30px;
  }
}
.innovation__item-header img {
  width: 100%;
  height: 29px;
}
@media screen and (max-width: 767px) {
  .innovation__item-header img {
    height: 20px;
  }
}
.innovation__item-image {
  width: 100%;
  aspect-ratio: 340/235;
  background-color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .innovation__item-image {
    aspect-ratio: initial;
    height: auto;
  }
}
.innovation__item-name {
  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: 10px;
  margin-top: 15px;
}
.innovation__item-name-jp {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .innovation__item-name-jp {
    font-size: 16px;
  }
}
.innovation__item-name-en {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .innovation__item-name-en {
    font-size: 14px;
  }
}
.innovation__special {
  background-color: #f3f8fd;
}
.innovation__special-header {
  position: relative;
  top: -30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .innovation__special-header {
    top: -15px;
    margin-bottom: 15px;
  }
}
.innovation__special-text-stroke {
  font-size: 6rem;
  line-height: 1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .innovation__special-text-stroke {
    font-size: 32px;
  }
}
.innovation__special-subheader {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: #005baa;
}
@media screen and (max-width: 767px) {
  .innovation__special-subheader {
    font-size: 16px;
  }
}
.innovation__about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .innovation__about {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.innovation__about-text-wrap .fs48 {
  font-size: 4.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .innovation__about-text-wrap .fs48 {
    font-size: 30px;
  }
}
.innovation__about-text {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2em;
  margin-block: 35px;
}
@media screen and (max-width: 767px) {
  .innovation__about-text {
    margin-block: 20px;
  }
}
.innovation__about-detail-header {
  font-size: 1.8rem;
  color: #005baa;
  margin-block: 16px;
}
.innovation__about-detail-header .small {
  font-size: 1.6rem;
}
.innovation__about-detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.innovation__about-item-text {
  width: 60%;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .innovation__about-item-text {
    font-size: 14px;
    width: 50%;
  }
}
.innovation__about-item-text--left {
  font-weight: 700;
  width: 190px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .innovation__about-item-text--left {
    width: 50%;
  }
}
.innovation__about-item-text--left::after {
  content: "";
  margin: 11px 10px 10px;
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #98a9d6;
}
@media screen and (max-width: 767px) {
  .innovation__about-item-text--left::after {
    content: none;
  }
}
@media screen and (max-width: 1100px) {
  .innovation__about-image {
    width: 75%;
    min-width: 315px;
    margin: 0 auto;
  }
}
.innovation__special-about {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .innovation__special-about {
    margin-bottom: 75px;
  }
}
.innovation__ato-about {
  padding-block: 115px 78px;
}
@media screen and (max-width: 767px) {
  .innovation__ato-about {
    padding-block: 60px 40px;
  }
}
.innovation__plants-about {
  padding-top: 115px;
}
@media screen and (max-width: 767px) {
  .innovation__plants-about {
    padding-top: 60px;
  }
}
.innovation__youtube {
  margin-bottom: 190px;
}
@media screen and (max-width: 767px) {
  .innovation__youtube {
    margin-bottom: 90px;
  }
}
.innovation__youtube-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 600px 250px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .innovation__youtube-list {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 250px);
  }
}
.innovation__youtube-item {
  grid-row-start: 2;
}
@media screen and (max-width: 767px) {
  .innovation__youtube-item {
    grid-row-start: unset;
  }
}
.innovation__youtube-item--1 {
  grid-row-start: 1;
  grid-column: span 3/span 3;
}
@media screen and (max-width: 767px) {
  .innovation__youtube-item--1 {
    grid-column: unset;
    grid-row-start: unset;
  }
}
.innovation__youtube-item iframe {
  width: 100%;
  height: 100%;
}
.innovation__text {
  margin-top: 35px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.innovation__sched {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .innovation__sched {
    overflow-x: scroll;
  }
}
.innovation__sched img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .innovation__sched img {
    min-width: 500px;
  }
}
.innovation__gallery {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .innovation__gallery {
    margin-top: 40px;
  }
}
.innovation__first-images {
  display: grid;
  margin: 40px 0 135px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 245px 245px 375px 245px 245px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .innovation__first-images {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 150px);
  }
}
.innovation__first-images picture:nth-child(1) {
  grid-column: span 3/span 3;
  grid-row: span 2/span 2;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(1) {
    grid-column: span 2/span 2;
    grid-row: unset;
  }
}
.innovation__first-images picture:nth-child(2) {
  grid-column-start: 4;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(2) {
    grid-row-start: 2;
    grid-column-start: unset;
  }
}
.innovation__first-images picture:nth-child(3) {
  grid-column-start: 4;
  grid-row-start: 2;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(3) {
    grid-row-start: 2;
    grid-column-start: unset;
  }
}
.innovation__first-images picture:nth-child(4) {
  grid-column: span 2/span 2;
  grid-row-start: 3;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(4) {
    grid-row-start: 3;
    grid-column: unset;
  }
}
.innovation__first-images picture:nth-child(5) {
  grid-column: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 3;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(5) {
    grid-row-start: 3;
    grid-column: unset;
    grid-column-start: unset;
  }
}
.innovation__first-images picture:nth-child(6) {
  grid-row-start: 4;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(6) {
    grid-row-start: 4;
  }
}
.innovation__first-images picture:nth-child(7) {
  grid-column-start: 1;
  grid-row-start: 5;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(7) {
    grid-row-start: 4;
    grid-column-start: unset;
  }
}
.innovation__first-images picture:nth-child(8) {
  grid-column: span 3/span 3;
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 4;
}
@media screen and (max-width: 767px) {
  .innovation__first-images picture:nth-child(8) {
    grid-row: unset;
    grid-column: span 2/span 2;
    grid-row-start: 5;
  }
}
.innovation__video-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  margin-block: 30px 145px;
}
@media screen and (max-width: 767px) {
  .innovation__video-list {
    margin-bottom: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.innovation__video-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.innovation__video {
  aspect-ratio: 530/330;
}
.innovation__video iframe {
  border: none;
  width: 100%;
  height: 100%;
}
.innovation__video-title {
  margin-bottom: 16px;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .innovation__video-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.medical {
  padding-block: 120px 200px;
}
.medical__intro {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .medical__intro {
    padding-bottom: 100px;
  }
}
.medical__intro-tagline {
  margin-block: 30px;
}
@media screen and (max-width: 767px) {
  .medical__intro-tagline {
    margin-block: 15px;
  }
}
.medical__intro-par {
  letter-spacing: 0.05em;
}
.medical__intro-button {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .medical__intro-button {
    margin-top: 15px;
  }
}
.medical__intro-img-wrap {
  padding-bottom: 0;
  min-height: 515px;
}
@media screen and (max-width: 767px) {
  .medical__intro-img-wrap {
    min-height: unset;
  }
}
.medical__outline {
  padding-block: 115px;
}
@media screen and (max-width: 767px) {
  .medical__outline {
    padding-block: 60px;
  }
}
.medical__text {
  padding-bottom: 75px;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .medical__text {
    padding-bottom: 30px;
    font-size: 14px;
  }
}
.medical__heading {
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .medical__heading {
    padding-bottom: 15px;
  }
}
.medical__highlight-button {
  padding-block: 110px;
}
@media screen and (max-width: 767px) {
  .medical__highlight-button {
    padding-block: 60px;
  }
}
.medical__gallery {
  padding-bottom: 115px;
}
@media screen and (max-width: 767px) {
  .medical__gallery {
    padding-bottom: 60px;
  }
}
.medical__past-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .medical__past-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.medical__past-item {
  position: relative;
  width: 100%;
  height: 45px;
  margin: 0 auto;
  padding-inline: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #005baa;
  border-radius: 33px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .medical__past-item {
    height: auto;
    width: 100%;
    padding-block: 8px;
    font-size: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 450px) {
  .medical__past-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.medical__past-item::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 0;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 33px;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .medical__past-item::before {
    margin-left: auto;
  }
}
.medical__past-item::after {
  content: "";
  position: absolute;
  height: 80%;
  width: auto;
  aspect-ratio: 1;
  background: url("./public/img/icons/icon-arrow.svg") center/13px 8px no-repeat;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .medical__past-item::after {
    margin-left: auto;
  }
}
.medical__past-item:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4196078431);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4196078431);
  color: #005baa;
}
.medical__past-item:hover::before {
  width: calc(100% - 10px);
}
.medical__past-item-year {
  font-weight: 600;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .medical__past-item-year {
    font-size: 14px;
  }
}
.medical__banner {
  margin: 120px auto 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .medical__banner {
    margin-top: 60px;
    max-width: 405px;
  }
}
.medical__banner:hover .medical__banner-bg {
  opacity: 0.8;
}
.medical__banner:hover .medical__banner-content > span {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.medical__banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
.medical__banner-content {
  padding: 25px 32px;
  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;
}
@media screen and (max-width: 767px) {
  .medical__banner-content {
    padding: 24px;
  }
}
.medical__banner-content > span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.medical__banner-logo {
  height: 26px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .medical__banner-logo {
    height: auto;
  }
}
.medical__banner-text-jp {
  margin-top: 8px;
  font: 900 4rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .medical__banner-text-jp {
    font-size: 38px;
    line-height: 1.15em;
  }
}
.medical__banner-text-en {
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .medical__banner-text-en {
    margin-top: 6px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

.platform__intro {
  padding-block: 132px 240px;
}
@media screen and (max-width: 767px) {
  .platform__intro {
    padding-block: 0 120px;
  }
}
.platform__heading-block {
  padding-block: 50px 158px;
}
@media screen and (max-width: 767px) {
  .platform__heading-block {
    padding-block: 25px 79px;
  }
}
.platform__heading-block--02 {
  padding-block: 130px 80px;
}
@media screen and (max-width: 767px) {
  .platform__heading-block--02 {
    padding-block: 65px 40px;
  }
}
.platform__bg-blue-f4 {
  background-color: #f4f8fd;
  padding-bottom: 160px;
  margin-bottom: 370px;
}
@media screen and (max-width: 767px) {
  .platform__bg-blue-f4 {
    padding-bottom: 0;
    margin-bottom: 185px;
  }
}

.professional__intro {
  padding-block: 122px 149px;
}
@media screen and (max-width: 767px) {
  .professional__intro {
    padding-block: 0 74.5px;
  }
}
.professional__heading-block {
  padding-block: 129px 153px;
}
@media screen and (max-width: 767px) {
  .professional__heading-block {
    padding-block: 64.5px 76.5px;
  }
}
.professional__heading-block--02 {
  padding-block: 130px 144px;
}
@media screen and (max-width: 767px) {
  .professional__heading-block--02 {
    padding-block: 65px 72px;
  }
}
.professional__bg-blue-f4 {
  background-color: #f4f8fd;
  padding-bottom: 0;
  margin-bottom: 370px;
}
@media screen and (max-width: 767px) {
  .professional__bg-blue-f4 {
    padding-bottom: 0;
    margin-bottom: 185px;
  }
}

.support__intro {
  padding-bottom: 190px;
}
@media screen and (max-width: 767px) {
  .support__intro {
    padding-bottom: 95px;
  }
}
.support__intro .page-intro__tagline {
  letter-spacing: 0.065em;
}
.support__text {
  margin-block: 150px 355px;
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.8333333333em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support__text {
    margin-bottom: 100px 250px;
    font-size: 1.9rem;
  }
}
.support__steps-heading {
  margin-block: 76px 58px;
}
@media screen and (max-width: 767px) {
  .support__steps-heading {
    margin-block: 40px;
  }
}
.support__transfer {
  padding-block: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1020px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .support__transfer {
    max-width: 100%;
    padding-inline: 5%;
  }
}
@media screen and (max-width: 767px) {
  .support__transfer {
    padding-block: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.support__transfer-cycle {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .support__transfer-cycle {
    margin-inline: auto;
    width: 100%;
    max-width: 400px;
  }
}
.support__transfer-title {
  margin-bottom: 45px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .support__transfer-title {
    margin-bottom: 30px;
  }
}
.support__transfer-par {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9375em;
}
@media screen and (max-width: 767px) {
  .support__transfer-par {
    margin-top: 30px;
    font-size: 14px;
  }
}
.support__transfer-par + .support__transfer-par {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .support__transfer-par + .support__transfer-par {
    margin-top: 15px;
  }
}
.support__example {
  padding-block: 116px 120px;
}
@media screen and (max-width: 767px) {
  .support__example {
    padding-block: 40px;
  }
}
.support__checklist {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .support__checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 670px) {
  .support__checklist {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}
.support__checklist-item {
  border-radius: 10px;
  padding: 10px 42px;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  background: url("./public/img/icons/icon-check.svg") 15px/18px 17px no-repeat, #005baa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .support__checklist-item {
    margin-inline: auto;
    width: 100%;
    max-width: 420px;
    font-size: 14px;
  }
}

.service__intro {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .service__intro {
    padding-bottom: 80px;
  }
}
.service__slider {
  margin-top: 155px;
}
@media screen and (max-width: 767px) {
  .service__slider {
    margin-top: 77.5px;
  }
}
.service__solution-grid {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: repeat(3, 30.9%);
  gap: 30px 3.64%;
  margin-block: 150px 360px;
}
@media screen and (max-width: 980px) {
  .service__solution-grid {
    grid-template-columns: repeat(2, 47%);
    gap: 30px 6%;
  }
}
@media screen and (max-width: 767px) {
  .service__solution-grid {
    margin-block: 75px 0;
  }
}
@media screen and (max-width: 500px) {
  .service__solution-grid {
    grid-template-columns: 1fr;
  }
}
.service__solution-item {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-height: 100%;
  isolation: isolate;
}
.service__solution-item:nth-child(odd) .service__solution-background::before {
  background-color: #fff;
}
.service__solution-item:nth-child(even) .service__solution-background::before {
  background-color: #f3f8fd;
}
.service a[href].service__solution-item:hover .button {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.service a[href].service__solution-item:hover .service__solution-heading,
.service a[href].service__solution-item:hover .service__solution-text {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.service__solution-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.service__solution-background::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  mix-blend-mode: multiply;
}
.service__solution-background img {
  display: block;
}
.service__solution-overlay {
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 10% 70px;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .service__solution-overlay {
    padding: 20px 6% 70px;
  }
}
.service__solution-heading {
  font-size: 2.4rem;
  color: #005baa;
  line-height: 1.6666666667em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .service__solution-heading {
    font-size: 2.1rem;
    font-weight: 800;
  }
}
.service__solution-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .service__solution-text {
    font-size: 1.3rem;
  }
}
.service__solution-note {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .service__solution-note {
    font-size: 1.2rem;
  }
}

.partner {
  padding-block: 130px 200px;
}
.partner__sec-banner {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .partner__sec-banner {
    margin-top: 40px;
  }
}
.partner__sec {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .partner__sec {
    padding-top: 40px;
  }
}
.partner__info {
  margin-block: 95px 110px;
  font-size: 1.6rem;
  line-height: 1.9375em;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .partner__info {
    margin-block: 30px;
    font-size: 14px;
  }
}
.partner__link-list {
  margin-block: 160px 200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-weight: 500;
  gap: 60px;
}
@media screen and (max-width: 980px) {
  .partner__link-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .partner__link-list {
    margin-block: 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .partner__link-list {
    grid-template-columns: 1fr;
  }
}
.partner__link-list-item {
  min-height: 326px;
}
@media screen and (max-width: 767px) {
  .partner__link-list-item {
    min-height: unset;
  }
}
.partner__link {
  height: 100%;
}
.partner__link-wrap {
  padding: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .partner__link-wrap {
    padding: 40px 20px;
  }
}
.partner__link-wrap:hover .partner__link-title,
.partner__link-wrap:hover .partner__link-par,
.partner__link-wrap:hover .partner__link-note {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.partner__link-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 160px;
}
@media screen and (max-width: 767px) {
  .partner__link-content {
    min-height: unset;
  }
}
.partner__link-title {
  margin-bottom: 14px;
  font-size: 2.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
  line-height: 1.4166666667em;
  color: #005baa;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .partner__link-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.partner__link-par {
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 2em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .partner__link-par {
    font-size: 14px;
  }
}
.partner__link-note {
  font-size: 1.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 2.0714285714em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .partner__link-note {
    font-size: 12px;
  }
}
.partner__link-box-btn {
  position: absolute;
  right: 14px;
  bottom: 15px;
  pointer-events: none;
}
.partner__slider2 {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .partner__slider2 {
    padding-block: 40px;
  }
}
@media screen and (max-width: 767px) {
  .partner__slide-img {
    height: 250px !important;
  }
}
.partner__slide-anchor {
  position: relative;
  top: -100px;
}
@media screen and (max-width: 767px) {
  .partner__slide-anchor {
    top: -80px;
  }
}

.search {
  padding-block: 120px 200px;
}
.search__main-info {
  display: block;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 0.5px solid #b4b4b4;
}
.search__sub-info {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .search__sub-info {
    font-size: 14px;
  }
}
.search__list {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .search__list {
    margin-top: 30px;
  }
}
.search__item {
  margin-bottom: 46px;
  display: block;
}
@media screen and (max-width: 767px) {
  .search__item {
    margin-bottom: 30px;
  }
}
.search__item-title {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .search__item-title {
    font-size: 14px;
  }
}
.search__item-title:hover {
  opacity: 0.8;
}
.search__item-cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-block: 5px;
}
.search__item-cat {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  background: #005baa;
  color: #fff;
  padding: 2px 8px;
  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) {
  .search__item-cat {
    font-size: 12px;
  }
}
.search__item-cat:hover {
  opacity: 0.8;
}
.search__item-desc {
  margin-top: 8px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .search__item-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .search__item-desc.clamp {
    -webkit-line-clamp: 2;
  }
}
.search__pagination {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .search__pagination {
    margin-top: 40px;
  }
}
.search__form-wrap {
  margin-top: 30px;
  max-width: 505px;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 14px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .nextpostslink:hover {
  background: #005baa;
  color: #fff;
  opacity: 0.6;
}
.wp-pagenavi .page {
  background: #f3f8fd;
  color: #005baa;
}
.wp-pagenavi .current {
  background: #005baa;
  color: #fff;
  pointer-events: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: #f3f8fd;
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  width: 10.5px;
  height: 6.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("./public/img/icons/icon-arrow.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background: url("./public/img/icons/icon-arrow-white.svg") center/contain no-repeat;
}
.wp-pagenavi .previouspostslink::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.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;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

@media screen and (max-width: 1100px) {
  .pc-tab {
    display: none;
  }
}

.sp-tab {
  display: none;
}
@media screen and (max-width: 1100px) {
  .sp-tab {
    display: block;
  }
}

.sp-tab-flex {
  display: none;
}
@media screen and (max-width: 1100px) {
  .sp-tab-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.outfit {
  font-family: "Outfit", sans-serif;
}

.yugo {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}

.semibold {
  font-weight: 600;
}

.palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.primary {
  color: #005baa;
}

.blue-a2 {
  color: #004ea2;
}

.white {
  color: #fff;
}

.bg-gray-fd {
  background-color: #f3f8fd;
}

.black {
  color: #000;
}

.blue-004 {
  color: #004ea2;
}

.gray-e8 {
  color: #e8edf2;
}

.bg-blue-f4 {
  background-color: #f4f8fd;
}

.ls-0 {
  letter-spacing: 0;
}

.ls-40 {
  letter-spacing: 0.04em;
}

.ls-50 {
  letter-spacing: 0.05em;
}

.ls-60 {
  letter-spacing: 0.06em;
}

.ls-narrow {
  letter-spacing: -0.1em;
}

.indent {
  text-indent: -20px;
  padding-left: 20px;
}

.text-stroke {
  -webkit-text-stroke-width: 0.75px;
  -webkit-text-stroke-color: #005baa;
  color: transparent;
}
.text-stroke--white {
  -webkit-text-stroke-color: #fff;
}
.text-stroke--tsw1 {
  -webkit-text-stroke-width: 1px;
}

.clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.nowrap {
  white-space: nowrap;
}

.anchor {
  position: relative;
  top: -80px;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -50px;
  }
}
.page-content .news__detail-img .image{
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .page-content {
    padding-block: 30px 55px;
  }
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.block {
  display: block;
}

.thin {
  font-weight: 100;
}

.link-underline {
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

.negative-offset {
  margin-left: -20px;
}

.regular {
  font-weight: 400;
}

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

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

@media screen and (max-width: 767px) {
  .mw-anchor {
    top: -50px;
    position: relative;
  }
}

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

.grecaptcha-badge {
  display: none;
}

.fp-watermark {
  display: none;
}

.fp-right {
  left: 30px;
  opacity: 0 !important;
  right: unset !important;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
@media screen and (max-width: 1260px) {
  .fp-right {
    left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .fp-right {
    left: 12px;
  }
}
.fp-right ul {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-height: 690px) {
  .fp-right ul {
    -webkit-transform: scale(var(--top-scale));
            transform: scale(var(--top-scale));
  }
}
@media screen and (max-width: 767px) {
  .fp-right ul {
    -webkit-transform: unset;
            transform: unset;
  }
}
.fp-right li {
  border-radius: 50%;
  margin: 0 !important;
  width: 8px !important;
  height: 8px !important;
  border: 1px solid #fff !important;
}
.fp-right li:not(:nth-child(1))::before, .fp-right li:not(:nth-child(7))::before, .fp-right li:not(:nth-child(8))::before {
  left: 50%;
  width: 1px;
  content: "";
  height: 40px;
  bottom: -40px;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fp-right li:nth-child(6)::before {
  content: none;
}
.fp-right a {
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.fp-right a::before {
  inset: 0;
  opacity: 0;
  width: 100%;
  content: "";
  margin: auto;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #fff;
}
.fp-right span {
  display: none;
  background-color: transparent;
}
.fp-right.show {
  opacity: 1 !important;
}
.fp-right .current {
  background-color: #fff;
  -webkit-animation: pulse 1.5s 0.15s;
          animation: pulse 1.5s 0.15s;
}
.fp-right .current::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
@keyframes pulse {
  0% {
    border-radius: 50%;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(225, 225, 225, 0.7);
            box-shadow: 0 0 0 0 rgba(225, 225, 225, 0.7);
  }
  70% {
    border-radius: 50%;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(225, 225, 225, 0);
            box-shadow: 0 0 0 10px rgba(225, 225, 225, 0);
  }
  100% {
    border-radius: 50%;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(225, 225, 225, 0);
            box-shadow: 0 0 0 0 rgba(225, 225, 225, 0);
  }
}

.fp-right ul li:nth-child(1), .fp-right ul li:nth-child(7), .fp-right ul li:nth-child(8) {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .fp-section {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    will-change: transform;
  }
}

@-webkit-keyframes rotate-text {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-text {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes clip-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes clip-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.top .splide {
  padding: 0 4%;
}
@media screen and (max-width: 767px) {
  .top .splide {
    padding: 0;
  }
}
.top .splide__track {
  padding-top: 20px;
  max-width: 1140px;
  margin: 60px auto 0;
  overflow: visible !important;
}
@media screen and (max-height: 770px) {
  .top .splide__track {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top .splide__track {
    margin-top: 0;
  }
}

.alc .splide__arrow {
  background: #e5ecf1;
}
.alc .splide__arrow--prev {
  left: -32px;
}
.alc .splide__arrow--next {
  right: -32px;
}
.alc .splide__arrow svg {
  fill: #005baa;
}
.alc .splide__pagination {
  bottom: -15px;
}
.alc .splide__pagination__page.is-active {
  background: #005baa;
}

.mw_wp_form .error {
  bottom: -25px;
  font-size: 1.2rem;
  position: absolute;
  font-weight: 400;
}

.mw_wp_form_confirm .form__label {
  height: auto;
}
.mw_wp_form_confirm .form__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 220px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .form__button-wrapper {
    margin-inline: 60px;
    max-width: 300px;
  }
}
.mw_wp_form_confirm .form__button-wrap {
  width: unset;
  margin-inline: 0;
}
.mw_wp_form_confirm .form__radio-group {
  padding-top: 0;
  font-weight: 400;
}
.mw_wp_form_confirm .form__agree {
  display: none;
}

.mwform-radio-field {
  margin-left: 0 !important;
}

.mwform-radio-field label {
  font-weight: 500;
}

/* CSS for newly */
.inline{
  display: inline-block;
}

.point{
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px){
  .point{
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.point .point__outlook{
  font-size: 16px;
  margin-top: 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px){
  .point .point__outlook{
    font-size: 14px;
    margin-top: 20px;
  }
}
.point .button{
  margin-top: 25px;
  /* margin-right: 0;
  margin-left: auto; */
}
@media screen and (max-width: 767px){
  .point .button{
    margin-top: 20px;
  }
}
.point__outlook a:hover{
  opacity: .5;
  transition: .3s;
}