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

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--top {
  -o-object-position: top;
     object-position: top;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 900;
  padding: 0 28px 0 19px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 63px;
    padding: 0 15.6px 0 17px;
  }
}
.header.active .header__menu-outer {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  overflow: auto;
}
.header__logo-link {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 162px;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
}
.header__link-item {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__link-item:hover .header__link {
  color: #fd830a;
}
.header__link-item:hover .header__link-subs {
  opacity: 1;
  pointer-events: visible;
}
.header__link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0075b5;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__link-subs {
  position: absolute;
  top: 85px;
  left: 0;
  white-space: nowrap;
  padding-top: 32px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__link-subs::before {
  content: "";
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(50px) brightness(120%);
          backdrop-filter: blur(50px) brightness(120%);
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
.header__link-sub {
  font-size: 1.4rem;
  color: #0075b5;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header__link-sub:hover {
  color: #fd830a;
}
.header__link-sub:not(:last-child) {
  margin-bottom: 20px;
}
.header__button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-left: 35.2px;
}
@media screen and (max-width: 767px) {
  .header__button-group {
    margin-left: 0;
  }
}
.header__button {
  width: 124px;
  height: 34px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  background-color: #fd830a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  max-width: 100%;
  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) {
  .header__button {
    width: 89px;
    height: 29px;
  }
}
.header__button:hover {
  background-color: #0185ce;
}
.header__button--blue {
  background-color: #0185ce;
}
.header__button--blue:hover {
  background-color: #fd830a;
}
.header__button--large {
  width: 226.7px;
  height: 62.24px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .header__button--large {
    width: 275.43px;
    height: 71.65px;
  }
}
.header__hamburger {
  width: 40px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-left: 20px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    width: 27px;
    height: 21px;
    margin-left: 17.6px;
  }
}
.header__hamburger.active .header__line {
  width: 49px;
}
@media screen and (max-width: 767px) {
  .header__hamburger.active .header__line {
    width: 30px;
  }
}
.header__hamburger.active .header__line:first-child {
  opacity: 0;
}
.header__hamburger.active .header__line:nth-child(2) {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.header__hamburger.active .header__line:nth-child(3) {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.header__hamburger.active .header__line:last-child {
  opacity: 0;
}
.header__line {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #0075b5;
  opacity: 1;
  left: 0;
  right: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header__line:first-child {
  top: 0;
}
.header__line:nth-child(2), .header__line:nth-child(3) {
  top: 10px;
}
.header__line:last-child {
  top: 21px;
}
.header__menu-outer {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: auto;
  max-height: 100%;
  -webkit-backdrop-filter: blur(50px) brightness(120%);
          backdrop-filter: blur(50px) brightness(120%);
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .header__menu-outer {
    top: 63px;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 715px;
  padding: 65.5px 0 149.2px;
}
@media screen and (max-width: 767px) {
  .header__menu {
    padding: 47px 0 107px;
  }
}
.header__menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 1160px;
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__menu-container {
    width: 100%;
    max-width: calc(100% - 60px);
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 15px;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    gap: 0;
  }
}
.header__nav-block {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  color: #0075b5;
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .header__nav-block {
    width: calc(33.3333333333% - 10px);
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-block:not(:last-child) {
    margin-bottom: 51px;
  }
}
.header__nav-main-title {
  display: block;
  font-weight: 700;
  padding-bottom: 14.6px;
  border-bottom: 1px solid #0075b5;
  margin-bottom: 21.9px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__nav-main-title {
    font-size: 12px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-sublinks {
    font-size: 16px;
  }
}
.header__nav-sublink {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__nav-sublink:hover {
  color: #fd830a;
}
@media screen and (max-width: 767px) {
  .header__nav-sublink:hover {
    color: #0075b5;
  }
}
.header__nav-sublink:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .header__nav-sublink:not(:last-child) {
    margin-bottom: 22.9px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-sublink--sub {
    position: relative;
    width: 100%;
  }
  .header__nav-sublink--sub::before, .header__nav-sublink--sub::after {
    content: "";
    position: absolute;
    background-color: #0075b5;
  }
  .header__nav-sublink--sub::before {
    width: 18px;
    right: 15px;
    height: 2px;
    top: 8px;
  }
  .header__nav-sublink--sub::after {
    width: 2px;
    height: 18px;
    right: 23px;
    top: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__nav-sublink.active::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .header__nav-sublink.active span {
    opacity: 0.4;
  }
}
.header__nav-sublink-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  margin-bottom: 25.2px;
}
@media screen and (max-width: 767px) {
  .header__nav-sublists {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-sublists.active {
    max-height: 500px;
  }
}
.header__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 7.2px;
  margin-bottom: 14.6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__nav-sublist {
    gap: 7.5px;
    margin-bottom: 22.9px;
  }
}
.header__nav-sublist span {
  font-size: 1.2rem;
}
.header__nav-sublist:hover {
  color: #fd830a;
}
.header__nav-bottom {
  position: relative;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .header__nav-bottom {
    margin-top: 71.5px;
  }
}
.header__nav-button-group {
  gap: 21px;
  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) {
  .header__nav-button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18.9px;
  }
}
.header__external {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.2px;
  color: #0075b5;
  font-size: 1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .header__external {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header__external {
    font-size: 12px;
    gap: 3.4px;
  }
}
.header__external path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__external:hover {
  color: #fd830a;
}
.header__external:hover path {
  fill: #fd830a;
}

.footer {
  padding-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__logo {
  width: 276.89px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 223px;
  }
}
.footer__bottom {
  margin-block: 160px 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0075b5;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    margin-block: 0 30px;
    padding-inline: 8px;
    -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: 30px;
  }
}
.footer__external {
  position: static;
}
@media screen and (max-width: 980px) {
  .footer__external {
    margin-bottom: 0;
  }
}
.footer__head {
  margin-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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) {
  .footer__head {
    margin-bottom: 70px;
  }
}
.footer__scroll-top {
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 226px;
  right: 80px;
  cursor: pointer;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  outline: none;
}
@media screen and (max-width: 1460px) {
  .footer__scroll-top {
    right: 20px;
  }
}
@media screen and (max-width: 1346px) {
  .footer__scroll-top {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .footer__scroll-top {
    position: absolute;
    top: 40px;
  }
}
@media screen and (max-width: 355px) {
  .footer__scroll-top {
    top: 105px;
  }
}
.footer__scroll-top:hover {
  opacity: 0.7;
}

.button {
  display: block;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 25px 69px 24px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #fd830a;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button {
    margin: 0 auto;
    font-size: 20px;
    padding: 26px 59px 25px;
  }
}
.button:hover {
  background-color: #0075b5;
}
.button--rounded {
  border-radius: 100px;
  padding: 16px 53px 15px;
}
@media screen and (max-width: 767px) {
  .button--rounded {
    padding: 16px 53px 15px;
    font-size: 18px;
  }
}

.bot-link {
  background-color: #0084ce;
  padding: 117px 0 127px;
}
@media screen and (max-width: 767px) {
  .bot-link {
    padding: 24px 0 32px;
  }
}
.bot-link__title {
  position: relative;
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.075em;
  color: #fff;
  text-align: center;
  gap: 10px;
  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) {
  .bot-link__title {
    font-size: 30px;
    gap: 4px;
  }
}
.bot-link__title::before, .bot-link__title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.bot-link__ctr {
  max-width: 637px;
  margin: 0 auto;
}
.bot-link__blk {
  display: block;
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .bot-link__blk {
    margin-top: 16px;
  }
}
.bot-link__blk:hover .bot-link__blk-label::after {
  right: 30px;
}
@media screen and (max-width: 767px) {
  .bot-link__blk:hover .bot-link__blk-label::after {
    right: 13px;
  }
}
.bot-link__blk-image {
  aspect-ratio: 637/276;
}
@media screen and (max-width: 767px) {
  .bot-link__blk-image {
    aspect-ratio: 340/148;
  }
}
.bot-link__blk-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.bot-link__blk-label {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 15px 115px 18px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #0185ce;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .bot-link__blk-label {
    font-size: 16px;
    padding: 8px 50px 10px;
  }
}
.bot-link__blk-label::after {
  content: "";
  width: 70px;
  height: 11px;
  background: url("../img/icons/arrow.svg") center/contain no-repeat;
  position: absolute;
  top: calc(50% - 5px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .bot-link__blk-label::after {
    width: 37px;
    height: 7px;
    background: url("../img/icons/arrow-sp.svg") center/contain no-repeat;
    top: calc(50% - 2px);
    right: 16px;
  }
}

.page-header {
  padding-top: 85px;
  position: relative;
  width: 100%;
  max-height: 100vh;
  max-height: 100svh;
  aspect-ratio: 1500/763;
}
@media screen and (max-width: 767px) {
  .page-header {
    padding-top: 0;
    aspect-ratio: initial;
    max-height: none;
  }
}
.page-header--short {
  aspect-ratio: 1500/548;
}
@media screen and (max-width: 767px) {
  .page-header--short {
    aspect-ratio: initial;
  }
}
@media screen and (max-width: 767px) {
  .page-header--short .page-header__bg {
    aspect-ratio: 400/187;
  }
}
.page-header--short .page-header__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-header--short .page-header__info {
  margin-bottom: 0;
}
.page-header--short .page-header__title-jp {
  min-height: unset;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-header__bg {
    position: static;
    aspect-ratio: 400/300;
    height: auto;
  }
}
.page-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .page-header__content {
    width: 100%;
    margin-top: -25px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__content--sp-bottom {
    margin-top: 0;
    padding-top: 53px;
  }
}
@media screen and (max-width: 767px) {
  .page-header .container {
    padding-inline: 0;
  }
}
.page-header__info {
  margin-bottom: 46px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-header__info {
    margin-bottom: 0;
  }
}
.page-header__title-en {
  font: 700 6rem "Barlow Condensed", sans-serif;
  color: #fff;
  line-height: 1.3333333333em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .page-header__title-en {
    position: absolute;
    bottom: 100%;
    left: 0;
    font-size: 34px;
  }
}
.page-header__title-jp {
  display: block;
  min-height: 150px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .page-header__title-jp {
    min-height: unset;
  }
}
.page-header__title-jp-line {
  padding-inline: 13px;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 5rem;
  line-height: 1.4em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #242424));
  background: linear-gradient(to right, transparent 50%, #242424 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
}
@media screen and (max-width: 767px) {
  .page-header__title-jp-line {
    padding-inline: 8px;
    font-size: 28px;
    line-height: 1.3928571429em;
  }
}
.page-header__title-jp-line:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .page-header__title-jp-line:not(:last-child) {
    margin-bottom: 8px;
  }
}

.member-header {
  min-height: 570px;
}
@media screen and (max-width: 767px) {
  .member-header__top {
    position: relative;
    height: 470px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.member-header__container {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .member-header__container {
    max-width: 100% !important;
  }
}
.member-header__bg {
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .member-header__bg {
    position: absolute;
    aspect-ratio: initial;
  }
}
.member-header__card {
  position: relative;
}
.member-header__title-jp {
  margin-bottom: 34.6px;
  min-height: unset;
}
@media screen and (max-width: 767px) {
  .member-header__title-jp {
    margin: 0 auto 26px;
    width: 100%;
    padding-inline: 30px 25px;
  }
}
.member-header__title-jp-line {
  line-height: 1.46em;
  background: #0185ce;
  font-size: 5.2rem;
}
@media screen and (max-width: 1200px) {
  .member-header__title-jp-line {
    font-size: 46px;
  }
}
@media screen and (max-width: 980px) {
  .member-header__title-jp-line {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .member-header__title-jp-line {
    padding-inline: 7px 4px;
    font-size: 23px;
  }
}
@media screen and (max-width: 376px) {
  .member-header__title-jp-line {
    font-size: 20px;
  }
}
.member-header__title-jp-line:not(:last-child) {
  margin-bottom: 0.25em;
}
@media screen and (max-width: 767px) {
  .member-header__title-jp-line:not(:last-child) {
    margin-bottom: 6px;
  }
}
.member-header__info {
  margin-bottom: 64.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0185ce;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px) brightness(100%) opacity(0.6);
          backdrop-filter: blur(20px) brightness(100%) opacity(0.6);
}
@media screen and (max-width: 767px) {
  .member-header__info {
    margin-bottom: 0;
  }
}
.member-header__info-wrap {
  padding: 13.7px 22.6px 15.3px 17.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10.7px;
}
@media screen and (max-width: 910px) {
  .member-header__info-wrap {
    padding: 11px 20px 13px 12px;
  }
}
@media screen and (max-width: 795px) {
  .member-header__info-wrap {
    gap: 9px;
  }
}
@media screen and (max-width: 767px) {
  .member-header__info-wrap {
    padding: 11.4px 30px 17.5px;
    gap: 8.5px 7.6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.member-header__cat {
  border: 1px solid #b6e4fd;
  border-radius: 20px;
  padding-block: 0.2em 0.3em;
  width: 110.72px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 910px) {
  .member-header__cat {
    font-size: 14px;
    width: 90px;
  }
}
@media screen and (max-width: 795px) {
  .member-header__cat {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .member-header__cat {
    width: 69.74px;
    font-size: 13px;
  }
}
.member-header__name-jp {
  padding-left: 9.2px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 910px) {
  .member-header__name-jp {
    padding-left: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 795px) {
  .member-header__name-jp {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .member-header__name-jp {
    padding-left: 2.1px;
    font-size: 20px;
  }
}
.member-header__name-en {
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 910px) {
  .member-header__name-en {
    font-size: 12px;
  }
}
@media screen and (max-width: 795px) {
  .member-header__name-en {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .member-header__name-en {
    font-size: 14px;
  }
}
.member-header__year-dept {
  font-size: 1.6rem;
}
@media screen and (max-width: 910px) {
  .member-header__year-dept {
    font-size: 14px;
  }
}
@media screen and (max-width: 795px) {
  .member-header__year-dept {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .member-header__year-dept {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    font-size: 14px;
    line-height: 1.4285714286em;
  }
}

.animate {
  opacity: 0;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.animate[data-animate=fade-up] {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.animate.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.animate[data-animate=slide] {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
  position: relative;
  overflow: hidden;
}
.animate[data-animate=slide]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(30%, #fd830a), color-stop(60%, #fd830a), color-stop(60%, #fdbf80), color-stop(70%, #fdbf80), color-stop(70%, #ffebd8));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, #fd830a 30%, #fd830a 60%, #fdbf80 60%, #fdbf80 70%, #ffebd8 70%);
  background-size: 100% 400%;
  -webkit-transition: background-position 1s ease-in-out, z-index 1.5s ease-in-out;
  transition: background-position 1s ease-in-out, z-index 1.5s ease-in-out;
}
.animate.slide::before {
  background-position-y: 100%;
  z-index: -1;
}
.animate.slide .animate-image {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.animate.slide-right {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
  position: relative;
  overflow: hidden;
}
.animate.slide-right::before {
  background: #fd830a;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  background-color: #fff;
  -webkit-animation: slide-right 0.8s;
          animation: slide-right 0.8s;
}
.animate.slide-right .animate-image {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.animate.animate-image {
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.recruit {
  background-color: #e1f2fd;
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-top: 61px;
    margin-top: -25px;
  }
}
.recruit__title {
  text-align: center;
}
.recruit__title-jp {
  font-size: 5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .recruit__title-jp {
    font-size: 28px;
  }
}
.recruit__title-en {
  display: block;
  font-size: 3rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  color: #0185ce;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .recruit__title-en {
    font-size: 22px;
    margin-top: 5px;
  }
}
.recruit__about-list {
  margin-top: 105.2px;
}
@media screen and (max-width: 767px) {
  .recruit__about-list {
    margin-top: 33px;
  }
}
.recruit__about-item:not(:last-child) {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .recruit__about-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.recruit__about-title {
  width: 100%;
  background-color: #fff;
  padding: 13.8px 20px 7.9px;
  margin-bottom: 52.1px;
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  color: #0185ce;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit__about-title {
    font-size: 30px;
    padding: 10px 16px 8.7px;
    margin-bottom: 27.3px;
  }
}
.recruit__about-subtitle {
  display: block;
  font-size: 4rem;
  font-weight: 600;
  color: #0185ce;
  line-height: 1.375em;
  text-align: center;
  margin: 53.1px 0 53px;
}
@media screen and (max-width: 767px) {
  .recruit__about-subtitle {
    font-size: 26px;
    line-height: 1.3846153846em;
    margin: 27.3px 0 31px;
  }
}
.recruit__about-blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
@media screen and (max-width: 767px) {
  .recruit__about-blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
  }
}
.recruit__about-blk-text {
  font-size: 1.8rem;
  line-height: 2em;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .recruit__about-blk-text {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.recruit__about-blk-image {
  min-width: 35.62%;
  width: 35.62%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 374/486;
}
@media screen and (max-width: 767px) {
  .recruit__about-blk-image {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 340/321;
  }
}
.recruit__sched {
  margin-top: 111px;
}
@media screen and (max-width: 767px) {
  .recruit__sched {
    margin-top: 52px;
  }
}
.recruit__sched-chart, .recruit__sched-captions {
  width: 1076px;
  max-width: calc(100% - 150px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recruit__sched-chart, .recruit__sched-captions {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__sched-chart {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__sched-captions {
    max-width: calc(100% - 60px);
    margin-top: 23.3px;
  }
}
.recruit__sched-chart-object {
  width: 100%;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .recruit__sched-chart-object {
    margin-top: 20.8px;
  }
}
.recruit__sched-chart-object svg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit__sched-chart-lcaption {
    font-size: 12px;
    line-height: 1.6666666667em;
  }
}
.recruit__sched-chart-caption {
  display: block;
  font-size: 1.6rem;
  line-height: 1.625em;
  text-align: right;
  margin-top: 3.8px;
}
@media screen and (max-width: 767px) {
  .recruit__sched-chart-caption {
    font-size: 12px;
    line-height: 2.1666666667em;
    margin-top: 14px;
    text-align: left;
  }
}
.recruit__entry {
  padding: 154px 0 235px;
  margin-top: 198px;
  background-color: #0185ce;
}
@media screen and (max-width: 767px) {
  .recruit__entry {
    padding: 105.5px 0 137.5px;
    margin-top: 25px;
  }
}
.recruit__entry-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit__entry-title {
    font-size: 3rem;
    margin-bottom: 29px;
  }
}

.top__mv {
  position: relative;
  aspect-ratio: 15/8;
  max-height: 100vh;
  max-height: 100svh;
}
@media (min-aspect-ratio: 15/8) and (min-width: 768px) {
  .top__mv {
    aspect-ratio: auto;
    height: 100vh;
    height: 100svh;
  }
}
@media screen and (max-width: 1200px) {
  .top__mv {
    margin-top: 45px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv {
    aspect-ratio: 20/38;
    margin-top: 0;
  }
}
@media (min-aspect-ratio: 20/38) and (max-width: 767px) {
  .top__mv {
    aspect-ratio: auto;
    height: 100vh;
    height: 100svh;
  }
}
.top__track {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}
.top__mv-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: -webkit-clip-path 1s ease !important;
  transition: -webkit-clip-path 1s ease !important;
  transition: clip-path 1s ease !important;
  transition: clip-path 1s ease, -webkit-clip-path 1s ease !important;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
.top__mv-slide.is-masking {
  z-index: 2 !important;
}
.top__mv-slide.right {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.top__mv-slide.left {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.top__mv-title {
  position: absolute;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  right: 58px;
  bottom: 69px;
  line-height: 1.3636363636em;
  font-size: 2.2rem;
}
@media screen and (max-width: 1500px) {
  .top__mv-title {
    font-size: 1.4666666667vw;
    right: 3.8666666667vw;
    bottom: 4.6vw;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-title {
    font-size: 22px;
    text-align: center;
    left: 0;
    right: 0;
    top: 178px;
    bottom: auto;
  }
}
.top__intro {
  position: relative;
  font-size: 0;
}
.top__intro-image {
  display: block;
}
@media screen and (max-width: 767px) {
  .top__intro-image {
    overflow: hidden;
    max-height: 100vh;
    max-height: 100svh;
  }
}
.top__intro-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 35vw;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .top__intro-container {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .top__intro-container {
    padding: 0 19px;
    top: auto;
    bottom: 34px;
  }
}
.top__intro-text-container {
  width: 57.33%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top__intro-text-container {
    width: 100%;
  }
}
.top__intro-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  padding: 3px 8px 4px;
  background-color: #242424;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__intro-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 980px) {
  .top__intro-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top__intro-text {
    padding: 0 4px 1px;
    font-size: 14px;
  }
}
.top__intro-text:not(:last-child) {
  margin-bottom: 11px;
}
@media screen and (max-width: 1200px) {
  .top__intro-text:not(:last-child) {
    margin-bottom: 5px;
  }
}
.top__links {
  padding: 127px 85px 248px;
  background-color: #0185ce;
}
@media screen and (max-width: 767px) {
  .top__links {
    padding: 40px 30px 176.5px;
  }
}
.top__link {
  height: 756px;
}
@media screen and (max-width: 1200px) {
  .top__link {
    height: 600px;
  }
}
@media screen and (max-width: 980px) {
  .top__link {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .top__link {
    height: auto;
  }
}
.top__link:not(:last-child) {
  margin-bottom: 53px;
}
@media screen and (max-width: 767px) {
  .top__link:not(:last-child) {
    margin-bottom: 40.9px;
  }
}
@media screen and (max-width: 767px) {
  .top__link-bg {
    aspect-ratio: 340/200;
  }
}
.top__link-en {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .top__link-en {
    font-size: 20px;
  }
}
.top__link-button {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0185ce;
  background-color: #fff;
  padding: 10px 41px;
  margin-left: 0;
  margin-top: 36.7px;
}
@media screen and (max-width: 767px) {
  .top__link-button {
    font-size: 12px;
    padding: 5px 22px;
    margin-top: 14.5px;
  }
}
.top__link-button:hover {
  color: #fff;
}
.top__link-jp {
  min-height: auto;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .top__link-jp {
    margin-top: 6.3px;
  }
}
@media screen and (max-width: 767px) {
  .top__link-content {
    max-width: calc(100% - 16px) !important;
  }
}
@media screen and (max-width: 767px) {
  .top__link-jp-line {
    font-size: 24px;
  }
}
.top__entry {
  text-align: center;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .top__entry {
    margin-top: 82.5px;
  }
}
.top__entry-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__entry-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.value__flex-sp-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .value__flex-sp-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.value__chip {
  border: 1px solid #b6e4fd;
  border-radius: 20px;
  font-weight: 500;
  color: #0185ce;
  text-align: center;
}
.value__filter {
  padding-block: 26px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .value__filter {
    padding-block: 16.5px 35px;
    gap: 17.7px;
  }
}
.value__filter-head {
  border-right: 1px solid transparent;
  -o-border-image: repeating-linear-gradient(to bottom, #0185ce 0 1px, transparent 1px 2px) 0 1 0 0;
     border-image: repeating-linear-gradient(to bottom, #0185ce 0 1px, transparent 1px 2px) 0 1 0 0;
  padding-right: 8px;
}
@media screen and (max-width: 767px) {
  .value__filter-head {
    border-bottom: 1px solid transparent;
    -o-border-image: repeating-linear-gradient(to right, #0185ce 0 1px, transparent 1px 2px) 0 0 1 0;
       border-image: repeating-linear-gradient(to right, #0185ce 0 1px, transparent 1px 2px) 0 0 1 0;
    padding-bottom: 2px;
  }
}
.value__filter-title {
  margin-left: -6px;
  font-size: 3rem;
  font-family: "Barlow Condensed", sans-serif;
  color: #0185ce;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .value__filter-title {
    margin-left: 0;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
  }
}
.value__filter-body {
  padding-block: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 875px) {
  .value__filter-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .value__filter-body {
    padding-block: 0;
    gap: 19.4px;
  }
}
.value__filter-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25.5px;
}
@media screen and (max-width: 767px) {
  .value__filter-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4.3px;
  }
}
.value__filter-row:not(:last-child) {
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .value__filter-row:not(:last-child) {
    margin-bottom: 10.4px;
  }
}
.value__filter-row-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .value__filter-row-title {
    font-size: 14px;
  }
}
.value__filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15.8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .value__filter-list {
    gap: 10px 15.5px;
  }
}
.value__filter-btn {
  padding-block: 6px 7px;
  font-family: inherit;
  width: 132px;
  font-size: 1.6rem;
  background: #fff;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .value__filter-btn {
    padding-block: 4px 6px;
    font-size: 13px;
    width: 103px;
  }
}
.value__filter-btn--all {
  font-size: 1.8rem;
}
.value__filter-btn.active {
  border-color: transparent;
  color: #fff;
  background: #0185ce;
}
.value__filter-btn:hover {
  color: #fff;
  background: #0185ce;
  opacity: 0.7;
}
.value__main {
  padding-block: 70px 206px;
  background: #e1f2fd;
}
@media screen and (max-width: 767px) {
  .value__main {
    padding-block: 48px 90px;
  }
}
@media screen and (max-width: 767px) {
  .value__main-container {
    padding-inline: 16px;
  }
}
.value__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 22px;
}
@media screen and (max-width: 1050px) {
  .value__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .value__list {
    grid-template-columns: repeat(auto-fill, minmax(0, 308px));
    gap: 27px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.value__empty-posts {
  font-size: 1.6rem;
  text-align: center;
  color: #0185ce;
}
.value__empty-posts.hidden {
  display: none;
}
.value__member-card {
  color: #0185ce;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.value__member-card:hover .value__member-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.value__member-card.hidden {
  display: none;
}
.value__member-thumb {
  padding: 21.5px 19px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  aspect-ratio: 335/300;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .value__member-thumb {
    padding: 19.5px 17.5px;
  }
}
@media screen and (max-width: 380px) {
  .value__member-thumb {
    padding: 17px 15px;
  }
}
@media screen and (max-width: 360px) {
  .value__member-thumb {
    padding: 12px 10px;
  }
}
.value__member-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.value__member-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .value__member-message {
    gap: 6.4px;
  }
}
.value__member-message-line {
  padding-inline: 3px;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45em;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 1215px) {
  .value__member-message-line {
    font-size: 16px;
  }
}
@media screen and (max-width: 980px) {
  .value__member-message-line {
    font-size: 17px;
  }
}
.value__member-info {
  padding: 14.5px 24px 14.5px 19.5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .value__member-info {
    padding: 13.6px 24px 14.5px 17.9px;
  }
}
@media screen and (max-width: 380px) {
  .value__member-info {
    padding-inline: 14px 20px;
  }
}
@media screen and (max-width: 360px) {
  .value__member-info {
    padding-inline: 12px 16px;
  }
}
.value__member-info-head {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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) {
  .value__member-info-head {
    margin-bottom: 13.7px;
  }
}
.value__member-cat {
  padding-block: 1px 4px;
  width: 113px;
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .value__member-cat {
    width: 104.26px;
    font-size: 17px;
  }
}
@media screen and (max-width: 360px) {
  .value__member-cat {
    padding-block: 2px 3px;
    width: 80px;
    font-size: 13px;
  }
}
.value__member-year {
  margin-top: -0.14em;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .value__member-year {
    font-size: 18px;
  }
}
@media screen and (max-width: 360px) {
  .value__member-year {
    font-size: 15px;
  }
}
.value__member-name-jp {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4583333333em;
}
@media screen and (max-width: 767px) {
  .value__member-name-jp {
    margin-bottom: 3.3px;
    font-size: 21px;
  }
}
.value__member-name-en {
  margin-bottom: 12.5px;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4285714286em;
}
@media screen and (max-width: 767px) {
  .value__member-name-en {
    margin-bottom: 12.1px;
    font-size: 11px;
  }
}
.value__member-depts {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4444444444em;
}
@media screen and (max-width: 767px) {
  .value__member-depts {
    font-size: 16px;
    line-height: 1.3125em;
  }
}

.about {
  background-color: #e2f3fd;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: -61px;
  }
}
.about__title {
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  color: #0185ce;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 22px;
  }
}
.about__subtitle {
  display: block;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.36em;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .about__subtitle {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 800px) {
  .about__subtitle {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 26px;
    line-height: 1.4230769231em;
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .about__subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .about__subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 350px) {
  .about__subtitle {
    font-size: 20px;
  }
}
.about__prol {
  padding-top: 89px;
}
@media screen and (max-width: 767px) {
  .about__prol {
    padding-top: 114px;
  }
}
.about__prol-tagline {
  font-size: 5.4rem;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__prol-tagline {
    font-size: 26px;
    line-height: 1.5em;
    margin-top: 8px;
  }
}
.about__prol-tagline-x {
  display: inline-block;
  width: 0;
  font-size: 4.4rem;
  position: relative;
  left: -10px;
}
@media screen and (max-width: 1200px) {
  .about__prol-tagline-x {
    display: block;
    width: auto;
    text-align: center;
  }
}
.about__prol-history {
  position: relative;
  margin-top: 45px;
}
@media screen and (max-width: 980px) {
  .about__prol-history {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 46px auto 0;
  }
}
.about__prol-history::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #0185ce;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .about__prol-history::before {
    left: 8px;
    -webkit-transform: none;
            transform: none;
  }
}
.about__prol-history-item {
  position: relative;
  width: 50%;
  color: #0185ce;
  padding-right: 21px;
}
@media screen and (max-width: 980px) {
  .about__prol-history-item {
    width: 100%;
    padding: 0 0 0 35px;
  }
}
.about__prol-history-item::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0185ce;
  position: absolute;
  top: 5px;
  right: -8px;
}
@media screen and (max-width: 980px) {
  .about__prol-history-item::before {
    right: unset;
    left: 0;
  }
}
.about__prol-history-item:nth-child(even) {
  left: 50%;
  padding: 0 0 0 60px;
}
@media screen and (max-width: 980px) {
  .about__prol-history-item:nth-child(even) {
    left: 0;
    padding: 0 0 0 35px;
  }
}
.about__prol-history-item:nth-child(even)::before {
  right: unset;
  left: -8px;
}
@media screen and (max-width: 980px) {
  .about__prol-history-item:nth-child(even)::before {
    left: 0;
  }
}
.about__prol-history-item:first-child::before {
  top: 0;
}
.about__prol-history-item:not(:first-child) {
  margin-top: -360px;
}
@media screen and (max-width: 980px) {
  .about__prol-history-item:not(:first-child) {
    margin-top: 84.4px;
  }
}
.about__prol-history-intro {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about__prol-history-intro {
    font-size: 14px;
  }
}
.about__prol-history-date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  gap: 4px;
  font-size: 6.3rem;
  font-weight: 600;
  border-bottom: 4px solid #0185ce;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .about__prol-history-date {
    font-size: 57px;
    border-bottom: 3px solid #0185ce;
    gap: 0;
  }
}
.about__prol-history-date::after {
  content: "年";
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .about__prol-history-date::after {
    font-size: 27px;
  }
}
.about__prol-history-desc {
  font-size: 1.8rem;
  line-height: 1.8888888889em;
  margin-top: 32px;
  text-wrap: nowrap;
}
@media screen and (max-width: 1300px) {
  .about__prol-history-desc {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .about__prol-history-desc {
    text-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .about__prol-history-desc {
    text-wrap: nowrap;
  }
}
@media screen and (max-width: 399px) {
  .about__prol-history-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .about__prol-history-desc {
    font-size: 13px;
  }
}
.about__prol-history-images {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .about__prol-history-images {
    margin-top: 29px;
  }
}
.about__prol-history-images::after {
  display: block;
  content: "";
  width: 193.65px;
  height: 75.49px;
  margin: 10px auto 0;
  background: url("../img/about/history-image-sign.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .about__prol-history-images::after {
    width: 144.08px;
    height: 56.16px;
    margin-top: 7.4px;
  }
}
.about__prol-history-image {
  max-width: 375px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about__prol-history-image {
    max-width: 279px;
  }
}
.about__prol-quote {
  position: relative;
  background-color: #0185ce;
  padding: 105px 0 123.3px;
  margin-top: 205px;
}
@media screen and (max-width: 767px) {
  .about__prol-quote {
    padding: 35px 0 62.6px;
    margin-top: 28.9px;
  }
}
.about__prol-quote::after {
  content: "";
  border-top: 61px solid #0185ce;
  border-left: 66px solid transparent;
  border-right: 66px solid transparent;
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .about__prol-quote::after {
    bottom: -46px;
  }
}
.about__prol-quote-intro {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.9090909091em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-intro {
    font-size: 20px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 390px) {
  .about__prol-quote-intro {
    font-size: 18px;
  }
}
@media screen and (max-width: 360px) {
  .about__prol-quote-intro {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about__prol-quote-intro.text-left-sp {
    text-align: left;
  }
}
.about__prol-quote-main {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #fff;
  padding: 35px 33px 38px 49px;
  border-radius: 10px;
  margin-top: 78.7px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-main {
    padding: 23.5px 6px 20.5px;
    margin-top: 49.4px;
  }
}
.about__prol-quote-main::before, .about__prol-quote-main::after {
  content: "";
  width: 49.43px;
  height: 42.1px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-main::before, .about__prol-quote-main::after {
    width: 32.86px;
    height: 27.99px;
  }
}
.about__prol-quote-main::before {
  left: 10px;
  top: -32px;
  background: url("../img/about/quote-reversed.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-main::before {
    left: 15px;
    top: -20px;
  }
}
.about__prol-quote-main::after {
  right: 10px;
  bottom: -32px;
  background: url("../img/about/quote.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-main::after {
    right: 15px;
    bottom: -20px;
  }
}
.about__prol-quote-main-text {
  font-size: 2.6rem;
  line-height: 1.6153846154em;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-main-text {
    font-size: 24px;
    line-height: 1.4166666667em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.about__prol-quote-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 23px auto 30px;
  background-color: #fff;
  font-size: 5rem;
  color: #0185ce;
  padding: 6px 74px 8px 85px;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__prol-quote-title {
    max-width: 300px;
    width: 100%;
    font-size: 32px;
    margin: 24px auto 15px;
    padding: 6px 16px 7px;
  }
}
.about__business {
  padding-top: 147px;
}
@media screen and (max-width: 767px) {
  .about__business {
    padding-top: 75px;
  }
}
.about__business-list {
  margin-top: 97.1px;
}
@media screen and (max-width: 767px) {
  .about__business-list {
    margin-top: 43px;
  }
}
.about__business-item {
  color: #0185ce;
}
.about__business-item:not(:last-child) {
  margin-bottom: 83.1px;
}
@media screen and (max-width: 767px) {
  .about__business-item:not(:last-child) {
    margin-bottom: 48.2px;
  }
}
.about__business-item--green {
  color: #24c1a5;
}
.about__business-item--green .about__business-blk-title {
  background-color: #24c1a5;
}
.about__business-item--green .about__external {
  color: inherit;
}
.about__business-item--green .about__external:hover {
  color: #fd830a;
}
.about__business-item--green path {
  fill: #24c1a5;
}
.about__business-item-title {
  font-size: 4.2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__business-item-title {
    font-size: 24px;
  }
}
.about__business-blks {
  margin-top: 21.9px;
}
@media screen and (max-width: 767px) {
  .about__business-blks {
    margin-top: 27.9px;
  }
}
.about__business-blk {
  background-color: #fff;
}
.about__business-blk:not(:last-child) {
  margin-bottom: 40.2px;
}
@media screen and (max-width: 767px) {
  .about__business-blk:not(:last-child) {
    margin-bottom: 22.8px;
  }
}
.about__business-blk-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3571428571em;
  padding: 8.3px 36px;
  background-color: #0185ce;
}
@media screen and (max-width: 767px) {
  .about__business-blk-title {
    text-align: center;
  }
}
.about__business-blk-ctr {
  padding: 34.3px 26px 56px 36px;
}
@media screen and (max-width: 767px) {
  .about__business-blk-ctr {
    padding: 23.3px 16px 50px;
  }
}
.about__business-blk-desc {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.6153846154em;
}
@media screen and (max-width: 980px) {
  .about__business-blk-desc {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about__business-blk-desc {
    font-size: 22px;
    line-height: 1.6363636364em;
  }
}
@media screen and (max-width: 413px) {
  .about__business-blk-desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .about__business-blk-desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 350px) {
  .about__business-blk-desc {
    font-size: 16px;
  }
}
.about__business-blk-col {
  display: grid;
  grid-template-columns: 47.96% 47.75%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 980px) {
  .about__business-blk-col {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .about__business-blk-col {
    margin-top: 16.4px;
  }
}
.about__business-blk-col-image {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 980px) {
  .about__business-blk-col-image {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about__business-blk-col-image {
    aspect-ratio: 308/175;
    margin-bottom: 18px;
  }
}
.about__business-blk-col-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4545454545em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .about__business-blk-col-title {
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 390px) {
  .about__business-blk-col-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 360px) {
  .about__business-blk-col-title {
    font-size: 18px;
  }
}
.about__business-blk-col-text {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .about__business-blk-col-text {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.about__global {
  margin-top: 207.5px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .about__global {
    margin-top: 43.7px;
  }
}
.about__global-desc {
  font-size: 1.8rem;
  line-height: 1.8888888889em;
  color: #0185ce;
  text-align: center;
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .about__global-desc {
    font-size: 16px;
    line-height: 1.75em;
    text-align: justify;
  }
}
.about__global-chart {
  background-color: #bde4fc;
  padding: 46.6px 0 84.1px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .about__global-chart {
    margin: 17.6px -49px 0;
    padding: 33.6px 0 40.9px;
  }
}
@media screen and (max-width: 767px) {
  .about__global-chart-ctr {
    max-width: 100% !important;
  }
}
.about__global-chart-object {
  width: 100%;
}
.about__future-body {
  padding: 178px 0 241px;
}
@media screen and (max-width: 767px) {
  .about__future-body {
    padding: 42.5px 0 96px;
  }
}
.about__future-note {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin: 9px 0 14px;
}
@media screen and (max-width: 767px) {
  .about__future-note {
    font-size: 22px;
    margin: 28px 0 14.4px;
  }
}
.about__future-quote {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 49.4px 35px 51.6px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #0185ce;
  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: 980px) {
  .about__future-quote {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about__future-quote {
    padding: 15.2px 16px 14.8px;
  }
}
.about__future-quote::before, .about__future-quote::after {
  content: "";
  width: 49.43px;
  height: 42.1px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .about__future-quote::before, .about__future-quote::after {
    width: 32.86px;
    height: 27.99px;
  }
}
.about__future-quote::before {
  left: 20px;
  top: -31.7px;
  background: url("../img/about/quote-reversed.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .about__future-quote::before {
    left: 16px;
    top: -20px;
  }
}
.about__future-quote::after {
  right: 20px;
  bottom: -31.7px;
  background: url("../img/about/quote.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .about__future-quote::after {
    right: 16px;
    bottom: -20px;
  }
}
.about__future-quote-text {
  font-size: 4.6rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__future-quote-text {
    font-size: 30px;
    line-height: 1.4666666667em;
  }
}
.about__future-desc {
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  color: #0185ce;
  text-align: center;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .about__future-desc {
    font-size: 16px;
    line-height: 1.75em;
    margin-top: 47px;
    text-align: left;
  }
}
.about__future-image {
  max-width: 659.92px;
  width: 100%;
  aspect-ratio: 659.92/317.75;
  margin: 68.7px auto 0;
}
@media screen and (max-width: 767px) {
  .about__future-image {
    margin-top: 37.1px;
  }
}
.about__future-aim {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.8181818182em;
  text-align: center;
  color: #0185ce;
  margin-top: 38.5px;
}
@media screen and (max-width: 767px) {
  .about__future-aim {
    font-size: 18px;
    line-height: 1.7777777778em;
    margin-top: 28.2px;
  }
}
.about__future-aim--text-orange-pc {
  color: #fd830a;
}
@media screen and (max-width: 767px) {
  .about__future-aim--text-orange-pc {
    color: #0185ce;
  }
}
.about__future-aim--text-orange-sp {
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .about__future-aim--text-orange-sp {
    color: #fd830a;
  }
}
.about__future-button {
  margin-top: 83px;
}
@media screen and (max-width: 767px) {
  .about__future-button {
    margin-top: 69px;
    padding: 16px 40px 15px;
  }
}
.about__external {
  font-weight: 600;
  font-size: 1.8rem;
  text-decoration: underline;
  gap: 9.2px;
  color: #0185ce;
}
@media screen and (max-width: 980px) {
  .about__external {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .about__external {
    font-size: 14px;
    gap: 8.2px;
  }
}
@media screen and (max-width: 380px) {
  .about__external {
    font-size: 13px;
  }
}
.about__external svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .about__external svg {
    width: 11.56px;
  }
}

.growth {
  background-color: #f0fffd;
  color: #0185ce;
}
.growth__mv {
  background-color: #c7f0ea;
}
.growth__mv-ctr {
  position: relative;
}
.growth__mv-bg {
  width: 100%;
}
.growth__mv-info {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1501px) {
  .growth__mv-info {
    top: 53%;
  }
}
@media screen and (max-width: 980px) {
  .growth__mv-info {
    top: 51%;
  }
}
.growth__mv-deco {
  width: 7.6%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .growth__mv-deco {
    width: 17.62%;
    margin-bottom: 16px;
  }
}
.growth__mv-deco img {
  width: 100%;
}
.growth__mv-title {
  position: relative;
  width: 43.33%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .growth__mv-title {
    width: 57.84%;
  }
}
.growth__mv-title img {
  width: 100%;
}
.growth__mv-desc {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.2222222222em;
  color: #fff;
  text-align: center;
  margin: 57.5px 0 0 25px;
}
@media screen and (min-width: 981px) and (max-width: 1500px) {
  .growth__mv-desc {
    font-size: calc(12px + (18 - 12) * (100vw - 981px) / (1500 - 981));
    margin-top: calc(20.5px + (57.5 - 20.5) * (100vw - 981px) / (1500 - 981));
  }
}
@media screen and (max-width: 980px) {
  .growth__mv-desc {
    display: none;
  }
}
.growth__file {
  background-color: #c7f0ea;
  padding: 59.5px 0 62px;
  color: #0075b5;
}
@media screen and (max-width: 767px) {
  .growth__file {
    padding: 26.2px 0 36px;
  }
}
@media screen and (max-width: 767px) {
  .growth__file-container {
    padding: 0 !important;
  }
}
.growth__file-title {
  font-size: 8rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .growth__file-title {
    font-size: 50px;
  }
}
.growth__file-card {
  display: grid;
  grid-template-columns: 59.98% 40.02%;
  background-color: #fff;
  margin-top: 32.5px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .growth__file-card {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .growth__file-card {
    margin-top: 10.2px;
  }
}
.growth__file-card-image {
  width: 100%;
}
@media screen and (max-width: 980px) {
  .growth__file-card-image {
    aspect-ratio: 339.68/227.62;
  }
}
.growth__file-card-info {
  padding: 42.7px 16px 59.6px 48.7px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-info {
    padding: 20px 16px;
  }
}
@media screen and (max-width: 767px) {
  .growth__file-card-dept {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 11px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.growth__file-card-dept-name {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 1px 37px 3px;
  border-radius: 30px;
  border: 1px solid #b6e4fd;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dept-name {
    font-size: 13px;
    padding: 2px 21px 3px;
  }
}
.growth__file-card-dept-loc {
  display: block;
  font-size: 1.6rem;
  line-height: 1.625em;
  margin-top: 15.9px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dept-loc {
    font-size: 13px;
    line-height: 1.5384615385em;
    margin: 0;
  }
}
.growth__file-card-name {
  margin-top: 29.5px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7.8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 17.2px;
  }
}
.growth__file-card-name-jp {
  font-size: 4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .growth__file-card-name-jp {
    font-size: 30px;
  }
}
.growth__file-card-name-en {
  display: block;
  font-size: 1.6rem;
  margin-top: 5px;
}
.growth__file-card-dl {
  margin-top: 28.5px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px 18.3px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 14.7px;
  }
}
.growth__file-card-dl-ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dl-ctr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.growth__file-card-dl-ctr:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dl-ctr:not(:last-child) {
    margin: 0;
  }
}
.growth__file-card-dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  background-color: #97c4dd;
  border-radius: 30px;
  padding: 0 13px 2px;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dt {
    font-size: 13px;
    padding: 3px 8px 4px;
  }
}
.growth__file-card-dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .growth__file-card-dd {
    font-size: 13px;
  }
}
.growth__file-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 41px;
  margin-top: 43.4px;
}
@media screen and (max-width: 767px) {
  .growth__file-cols {
    display: block;
    margin-top: 33px;
  }
}
@media screen and (max-width: 767px) {
  .growth__file-col:not(:last-child) {
    margin-bottom: 28px;
  }
}
.growth__file-col-question {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10.3px;
  border-bottom: 1px solid #0075b5;
}
@media screen and (max-width: 767px) {
  .growth__file-col-question {
    font-size: 18px;
  }
}
.growth__file-col-answer {
  font-size: 1.6rem;
  line-height: 1.875em;
  margin-top: 20.8px;
}
@media screen and (max-width: 767px) {
  .growth__file-col-answer {
    line-height: 1.75em;
  }
}
.growth__tl {
  padding: 92px 0 246px;
}
@media screen and (max-width: 767px) {
  .growth__tl {
    padding: 43px 0 78.6px;
  }
}
.growth__tl-grid-item {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 980px) {
  .growth__tl-grid-item {
    display: block;
  }
}
.growth__tl-grid-item:not(:last-child) {
  margin-bottom: 66px;
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-item:not(:last-child) {
    margin-bottom: 82.7px;
  }
}
.growth__tl-grid-item--col2-img-right {
  grid-template-columns: 44% 52.19%;
  grid-template-rows: auto auto;
  gap: 30px 3.8%;
}
.growth__tl-grid-item--col2-img-right .growth__tl-grid-col:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.growth__tl-grid-item--col2-img-right .growth__tl-grid-col:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.growth__tl-grid-item--col2-img-right .growth__tl-grid-col:nth-child(3) {
  grid-column: 2;
  grid-row: 1/3;
}
.growth__tl-grid-item--col2-img-bottom {
  grid-template-columns: 44% 52.86%;
  grid-template-rows: auto auto;
  gap: 31px 3.14%;
}
.growth__tl-grid-item--col2-img-bottom .growth__tl-grid-col:nth-child(3) {
  grid-column: 1/3;
  grid-row: 2;
}
.growth__tl-grid-title {
  position: relative;
  font-size: 5rem;
  letter-spacing: 0.05em;
  color: #0075b5;
  padding: 5.5px 0 6.5px 111px;
  background-color: #def3ff;
  border-bottom: 3px solid #0075b5;
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-title {
    font-size: 30px;
    padding: 9px 16px 9px 82px;
  }
}
.growth__tl-grid-title::before, .growth__tl-grid-title::after {
  content: "";
  position: absolute;
}
.growth__tl-grid-title::before {
  width: 50px;
  height: 36px;
  background: url("../img/growth/camera.svg") center/contain no-repeat;
  left: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-title::before {
    width: 40px;
    height: 27px;
    left: 15px;
  }
}
.growth__tl-grid-title::after {
  width: 3px;
  height: calc(100% - 12px);
  background-color: #0075b5;
  border-radius: 3px;
  bottom: 0;
  left: 93px;
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-title::after {
    height: calc(100% - 9.9px);
    left: 68px;
  }
}
.growth__tl-grid-title > .small {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-title > .small {
    font-size: 22px;
  }
}
.growth__tl-grid-title > .num {
  display: inline-block;
  margin: 0 7px 0 3px;
}
.growth__tl-grid-subtitle {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3333333333em;
  color: #fd830a;
  padding-left: 56px;
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  .growth__tl-grid-subtitle {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .growth__tl-grid-subtitle {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-subtitle {
    font-size: 26px;
    line-height: 1.2307692308em;
    padding-left: 46px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 400px) {
  .growth__tl-grid-subtitle {
    font-size: 24px;
  }
}
.growth__tl-grid-subtitle::before {
  content: "";
  width: 42px;
  height: 42px;
  background: url("../img/growth/search.svg") center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-subtitle::before {
    width: 30.88px;
    height: 30.88px;
  }
}
.growth__tl-grid-desc {
  font-size: 1.8rem;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 980px) {
  .growth__tl-grid-desc {
    margin: 23px 0;
  }
}
@media screen and (max-width: 767px) {
  .growth__tl-grid-desc {
    font-size: 16px;
    line-height: 1.875em;
  }
}
@media screen and (max-width: 980px) {
  .growth__tl-grid-image {
    margin: 26.3px 0;
  }
}
.growth__tl-blks {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .growth__tl-blks {
    margin-top: 78px;
  }
}
.growth__tl-blk:not(:first-child) {
  border-top: 3px solid #0185ce;
  padding-top: 86px;
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .growth__tl-blk:not(:first-child) {
    padding-top: 41px;
    margin-top: 57px;
  }
}
.growth__tl-blk-title {
  font-size: 4rem;
  font-weight: 600;
  color: #fd830a;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .growth__tl-blk-title {
    font-size: 29px;
    font-weight: 700;
    text-align: left;
  }
}
.growth__tl-blk-desc {
  font-size: 1.8rem;
  line-height: 2em;
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .growth__tl-blk-desc {
    font-size: 16px;
    line-height: 1.875em;
    margin-top: 20px;
  }
}

.faq__section:nth-child(odd) {
  background-color: #f8f8f8;
}
.faq__title {
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 28px;
  }
}
.faq__requirements {
  padding: 90px 0 92.5px;
}
@media screen and (max-width: 767px) {
  .faq__requirements {
    padding: 65px 0 52.3px;
    margin-top: -25px;
  }
}
.faq__requirements-list {
  margin-top: 99px;
}
@media screen and (max-width: 767px) {
  .faq__requirements-list {
    margin-top: 28px;
  }
}
.faq__requirements-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .faq__requirements-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15.9px;
    border-bottom: 1px solid #c3c3c3;
    padding: 15.9px 0 21.9px;
  }
}
@media screen and (max-width: 767px) {
  .faq__requirements-item:first-child {
    border-top: 1px solid #c3c3c3;
  }
}
.faq__requirements-item:first-child .faq__requirements-label,
.faq__requirements-item:first-child .faq__requirements-info {
  border-top: 1px solid #c3c3c3;
}
@media screen and (max-width: 767px) {
  .faq__requirements-item:first-child .faq__requirements-label,
  .faq__requirements-item:first-child .faq__requirements-info {
    border: 0;
  }
}
.faq__requirements-label {
  border-bottom: 1px solid #c3c3c3;
  padding: 25px 6px 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 76px;
}
@media screen and (max-width: 767px) {
  .faq__requirements-label {
    padding: 0;
    width: auto;
    border: 0;
  }
}
.faq__requirements-info {
  font-weight: 300;
  line-height: 1.875em;
  border-bottom: 1px solid #c3c3c3;
  padding: 25px 14px 27px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .faq__requirements-info {
    line-height: 1.625em;
    border: 0;
    padding: 0;
    font-size: 15px;
  }
}
.faq__requirements-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faq__requirements-flex span:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq__entry {
  text-align: center;
  padding: 66.7px 0 84.3px;
}
@media screen and (max-width: 767px) {
  .faq__entry {
    padding: 101.9px 0 128.5px;
  }
}
.faq__content {
  padding: 64.7px 0 88px;
}
@media screen and (max-width: 767px) {
  .faq__content {
    padding: 38px 0 98px;
  }
}
.faq__block:not(:last-child) {
  margin-bottom: 48.3px;
}
@media screen and (max-width: 767px) {
  .faq__block:not(:last-child) {
    margin-bottom: 67px;
  }
}
.faq__subtitle {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 19.7px;
}
@media screen and (max-width: 767px) {
  .faq__subtitle {
    font-size: 20px;
    margin-bottom: 27px;
  }
}
.faq__container {
  margin-top: 2.3px;
}
@media screen and (max-width: 767px) {
  .faq__container {
    margin-top: 38.4px;
  }
}
.faq__item {
  background-color: #fff;
}
.faq__item:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .faq__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.faq__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 50px 10px 24px;
  font-size: 2.2rem;
  font-weight: 600;
  border-bottom: 3px solid #f8f8f8;
  color: #0075b5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 1.8rem;
    padding: 11px 67px 12.4px 16px;
    line-height: 1.3333333333em;
  }
}
.faq__question::before, .faq__question::after {
  position: absolute;
  content: "";
  background-color: #0075b5;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faq__question::before {
  width: 18px;
  height: 3px;
  right: 27px;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    right: 16px;
  }
}
.faq__question::after {
  height: 18px;
  width: 3px;
  right: 34px;
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    right: 23px;
  }
}
.faq__question.active::after {
  -webkit-transform: translateY(50%) rotate(-90deg);
          transform: translateY(50%) rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .faq__question span:last-child {
    width: 198px;
  }
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faq__answer-text {
  font-size: 1.6rem;
  line-height: 1.875em;
  padding: 27.3px 28px 24.2px 24px;
  min-height: 131.57px;
}
@media screen and (max-width: 767px) {
  .faq__answer-text {
    padding: 15.3px 15px 26.4px;
  }
}
.faq__answer-text a {
  color: #2e36ff;
}
.faq__answer-text a:hover .underline {
  text-decoration: none;
}
.faq__answer-text .underline {
  text-decoration: underline;
}

.member {
  background: #e1f2fd;
}
.member__note {
  display: block;
  text-align: right;
  padding: 12px 19px 0 0;
  font-size: 1.2rem;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .member__note {
    font-size: 10px;
    padding: 11.4px 9px 0 0;
  }
}
.member__content {
  padding-block: 108px 223px;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .member__content {
    padding-block: 26px 78.5px;
  }
}
.member__sec-q {
  margin-bottom: 27px;
  display: block;
  font-size: 2.4rem;
  line-height: 1.3333333333em;
}
@media screen and (max-width: 1200px) {
  .member__sec-q {
    font-size: 20px;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .member__sec-q {
    margin-bottom: 29px;
  }
}
.member__sec-title {
  margin-bottom: 30px;
  padding-left: 52px;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5em;
}
@media screen and (max-width: 1200px) {
  .member__sec-title {
    padding-left: 1.75em;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .member__sec-title {
    margin-bottom: 20px;
    padding-left: 45px;
    font-size: 24px;
    line-height: 1.5833333333em;
  }
}
.member__sec-title::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: #0185ce;
}
@media screen and (min-width: 980px) and (max-width: 1200px) {
  .member__sec-title::before {
    width: 1.2em;
  }
}
.member__sec-title--multiline {
  margin-bottom: 26px;
  line-height: 1.5333333333em;
}
@media screen and (max-width: 767px) {
  .member__sec-title--multiline {
    margin-bottom: 20px;
    line-height: 1.5833333333em;
  }
}
.member__sec-par {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 1200px) {
  .member__sec-par {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.member__flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 980px) {
  .member__flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 980px) {
  .member__flex-wrap--sp-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.member__flex-wrap-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 31.4%;
  aspect-ratio: 33/43;
}
@media screen and (max-width: 980px) {
  .member__flex-wrap-image {
    margin: 0 auto !important;
    width: calc(100% - 10px);
    max-width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .member__flex-wrap-image {
    max-width: 100%;
  }
}
.member__flex-wrap-image--growth {
  margin-top: 117px;
}
.member__flex-wrap-image--goals {
  margin-top: 116px;
  width: 32%;
  aspect-ratio: 336/430;
}
@media screen and (max-width: 980px) {
  .member__flex-wrap-image--goals {
    width: calc(100% - 4px);
  }
}
.member__job-sec {
  margin-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .member__job-sec {
    margin-bottom: 54px;
  }
}
.member__why-sec {
  margin-bottom: 77px;
  height: 561.8px;
}
@media screen and (max-width: 1150px) {
  .member__why-sec {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .member__why-sec {
    margin-bottom: 48px;
  }
}
.member__why-wrap {
  gap: 63px;
}
@media screen and (max-width: 767px) {
  .member__why-wrap {
    gap: 46px;
  }
}
.member__appeal-sec {
  margin-bottom: 73px;
}
@media screen and (max-width: 767px) {
  .member__appeal-sec {
    margin-bottom: 63.9px;
  }
}
.member__growth-sec {
  margin-bottom: 77px;
  gap: 38px;
}
@media screen and (max-width: 767px) {
  .member__growth-sec {
    margin-bottom: 50.1px;
    gap: 34px;
  }
}
.member__growth-par {
  padding-right: 8px;
}
@media screen and (max-width: 767px) {
  .member__growth-par {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .member__image-wide-container {
    max-width: 100% !important;
  }
}
.member__image-wide {
  margin-bottom: 87px;
  aspect-ratio: 1050/448;
}
@media screen and (max-width: 767px) {
  .member__image-wide {
    margin-bottom: 73px;
    aspect-ratio: 400/448;
  }
}
.member__pride-sec {
  margin-bottom: 86px;
}
@media screen and (max-width: 767px) {
  .member__pride-sec {
    margin-bottom: 54px;
  }
}
.member__goals-sec {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .member__goals-sec {
    gap: 55px;
  }
}
.member__goals-par {
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .member__goals-par {
    padding-right: 0;
  }
}
.member__slider-sec {
  padding-block: 74px 78px;
  background: #bde4fc;
}
@media screen and (max-width: 767px) {
  .member__slider-sec {
    padding-block: 41.2px 34.2px;
  }
}
.member__slider-container {
  padding-inline: 65px;
}
@media screen and (max-width: 767px) {
  .member__slider-container {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 380px) {
  .member__slider-container {
    padding-inline: 4px;
  }
}
.member__slider-title {
  margin-bottom: 41px;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.325em;
  color: #0185ce;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .member__slider-title {
    margin-bottom: 15px;
    font-size: 26px;
  }
}
.member__slider {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .member__slider {
    padding-bottom: 44.61px;
  }
}
.member__slider-track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .member__slide-thumb {
    padding: 11.4px 9.9px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-message {
    gap: 3.6px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-message-line {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-info {
    padding: 7.3px 15.2px 8.1px 10.1px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-info-head {
    margin-bottom: 8.3px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-cat {
    padding-block: 1px 2px;
    width: 58.87px;
    font-size: 9px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-year {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-name-jp {
    margin-bottom: 0.6px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-name-en {
    margin-bottom: 6.3px;
    font-size: 7px;
  }
}
@media screen and (max-width: 767px) {
  .member__slide-depts {
    font-size: 9px;
  }
}

.emp-benefit {
  padding: 95px 0 146px;
}
@media screen and (max-width: 767px) {
  .emp-benefit {
    padding: 48px 0 80px;
  }
}
.emp-benefit__text {
  font-size: 1.6rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .emp-benefit__text {
    font-size: 14px;
  }
}
.emp-benefit__intro {
  font-size: 1.8rem;
  line-height: 1.8888888889em;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .emp-benefit__intro {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.emp-benefit__blocks {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__blocks {
    margin-top: 70px;
  }
}
.emp-benefit__block:not(:last-child) {
  margin-bottom: 30px;
}
.emp-benefit__block-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13.7px;
  padding: 10px 36px 12px;
  background-color: #bde4fa;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__block-head {
    padding: 10px 16px;
  }
}
.emp-benefit__block-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0084ce;
}
@media screen and (max-width: 767px) {
  .emp-benefit__block-title {
    font-size: 20px;
  }
}
.emp-benefit__block-content {
  background-color: #fff;
}
.emp-benefit__holiday {
  padding: 38.3px 36px 49.4px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__holiday {
    padding: 29.3px 16px 26.6px;
  }
}
.emp-benefit__holiday-ctr {
  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: 50px;
}
@media screen and (max-width: 980px) {
  .emp-benefit__holiday-ctr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .emp-benefit__holiday-ctr {
    gap: 46px;
  }
}
.emp-benefit__holiday-list {
  width: 100%;
}
.emp-benefit__holiday-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__holiday-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14.6px;
  }
}
.emp-benefit__holiday-item:not(:last-child) {
  margin-bottom: 23.6px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__holiday-item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.emp-benefit__holiday-item-label {
  min-width: 180px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0084ce;
  padding: 2px 0 4px;
  border: 1px solid #0084ce;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .emp-benefit__holiday-item-label {
    min-width: 100%;
  }
}
.emp-benefit__holiday-item-text {
  width: 100%;
}
.emp-benefit__holiday-avg {
  min-width: 252px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__holiday-avg {
    min-width: 100%;
    width: 100%;
  }
}
.emp-benefit__holiday-avg-title {
  font-size: 1.6rem;
  color: #fff;
  background-color: #0084ce;
  padding: 6px 10px 7px;
  text-align: center;
}
.emp-benefit__holiday-avg-ctr {
  background-color: #e2f3fd;
  color: #0084ce;
  padding: 23px 10px 18px;
}
.emp-benefit__holiday-avg-num, .emp-benefit__holiday-avg-text {
  display: block;
  text-align: center;
}
.emp-benefit__holiday-avg-num {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1px;
  gap: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.emp-benefit__holiday-avg-num::after {
  content: "日";
  font-size: 2.4rem;
  font-weight: 700;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.emp-benefit__holiday-avg-text {
  font-size: 1.2rem;
}
.emp-benefit__care {
  padding: 45px 36px 78px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__care {
    padding: 30px 16px 35px;
  }
}
.emp-benefit__other-list {
  padding: 38px 36px 62px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__other-list {
    padding: 30px 16px 35px;
  }
}
.emp-benefit__other-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 980px) {
  .emp-benefit__other-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.emp-benefit__other-item:not(:last-child) {
  margin-bottom: 50px;
}
.emp-benefit__other-label {
  min-width: 180px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2px 20px 4px;
  font-size: 1.6rem;
  color: #0084ce;
  border: 1px solid #0084ce;
  text-align: center;
}
.emp-benefit__other-training-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__other-training-list {
    display: block;
    margin-bottom: 19px;
  }
}
.emp-benefit__other-training-item {
  background-color: #e0f2fd;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .emp-benefit__other-training-item {
    padding: 13px 11px 30px;
  }
}
@media screen and (max-width: 767px) {
  .emp-benefit__other-training-item:not(:last-child) {
    margin-bottom: 8px;
  }
}
.emp-benefit__other-training-title {
  font-size: 1.6rem;
  line-height: 1.3125em;
  text-align: center;
  width: 127px;
  height: 127px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-color: #fff;
  color: #0084ce;
  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) {
  .emp-benefit__other-training-title {
    font-size: 18px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 0;
    padding: 21px 10px;
  }
}
@media screen and (max-width: 767px) {
  .emp-benefit__other-training-heading {
    font-size: 16px !important;
    margin-bottom: 21px;
  }
}
.emp-benefit__other-training-text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5714285714em;
  color: #0084ce;
}
.emp-benefit__other-training-text > .disc {
  display: block;
  position: relative;
  padding-left: 14px;
}
.emp-benefit__other-training-text > .disc::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.emp-benefit__other-training-text > .disc--centered {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.emp-benefit__other-training-text--fs13 {
  font-size: 1.3rem;
  line-height: 1.8461538462em;
}
@media screen and (max-width: 767px) {
  .emp-benefit__other-training-text--fs13 {
    font-size: 12px;
    line-height: 1.6666666667em;
  }
}

.job-intro {
  padding: 95px 0 175px;
}
@media screen and (max-width: 767px) {
  .job-intro {
    padding: 51px 0 70.8px;
  }
}
.job-intro__text {
  font-size: 1.6rem;
  line-height: 1.875em;
}
.job-intro__text--fs18 {
  font-size: 1.8rem;
  line-height: 1.9444444444em;
}
@media screen and (max-width: 767px) {
  .job-intro__text--fs18 {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.job-intro__desc {
  font-size: 1.8rem;
  line-height: 1.9444444444em;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .job-intro__desc {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.job-intro__blocks {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .job-intro__blocks {
    margin-top: 72px;
  }
}
.job-intro__block:not(:last-child) {
  margin-bottom: 94px;
}
@media screen and (max-width: 767px) {
  .job-intro__block:not(:last-child) {
    margin-bottom: 58.6px;
  }
}
.job-intro__block-head {
  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: 26px;
  background-color: #bde4fc;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .job-intro__block-head {
    margin-bottom: 30px;
    gap: 23px;
  }
}
@media screen and (max-width: 767px) {
  .job-intro__block-icon {
    height: 38px;
  }
}
.job-intro__block-title {
  font-size: 4rem;
  padding: 8px 20px;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .job-intro__block-title {
    font-size: 30px;
    padding: 6px 0 7px;
  }
}
.job-intro__item-border {
  width: 100%;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-border {
    height: 24px;
  }
}
.job-intro__item {
  position: relative;
  background-color: #fff;
  color: #0185ce;
  cursor: pointer;
}
.job-intro__item:not(:last-child) {
  margin-bottom: 37.2px;
}
@media screen and (max-width: 767px) {
  .job-intro__item:not(:last-child) {
    margin-bottom: 52.6px;
  }
}
.job-intro__item--green {
  color: #36cbb1;
}
.job-intro__item--green .job-intro__item-head::before,
.job-intro__item--green .job-intro__item-head::after {
  background: url("../img/job-intro/green-deco.svg") center/contain no-repeat;
}
.job-intro__item--green .job-intro__item-subtitle,
.job-intro__item--green .job-intro__item-button {
  background-color: #36cbb1;
}
.job-intro__item--orange {
  color: #fd830a;
}
.job-intro__item--orange .job-intro__item-head::before,
.job-intro__item--orange .job-intro__item-head::after {
  background: url("../img/job-intro/orange-deco.svg") center/contain no-repeat;
}
.job-intro__item--orange .job-intro__item-subtitle,
.job-intro__item--orange .job-intro__item-button {
  background-color: #fd830a;
}
.job-intro__item:hover .job-intro__item-button {
  opacity: 0.7;
}
.job-intro__item-ctr {
  display: grid;
  grid-template-columns: 291px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 73px;
  padding: 63px 52px 86.7px 76px;
}
@media screen and (max-width: 980px) {
  .job-intro__item-ctr {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .job-intro__item-ctr {
    padding: 65px 16px 157.6px;
  }
}
.job-intro__item-head {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding-block: 18px 20px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-head {
    padding-block: 6.4px 10.7px;
  }
}
.job-intro__item-head::before, .job-intro__item-head::after {
  content: "";
  width: 291px;
  height: 5px;
  background: url("../img/job-intro/blue-deco.svg") center/contain no-repeat;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .job-intro__item-head::before, .job-intro__item-head::after {
    max-width: 242px;
    width: 100%;
    height: 4px;
  }
}
.job-intro__item-head::before {
  top: 0;
}
.job-intro__item-head::after {
  bottom: 0;
}
.job-intro__item-head--w-subtitle {
  padding-top: 0;
}
.job-intro__item-head--w-subtitle::before {
  content: none;
}
.job-intro__item-subtitle {
  display: block;
  min-width: 291px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 17px;
  font-size: 2.6rem;
  color: #fff;
  background-color: #0084ce;
  padding: 10px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job-intro__item-subtitle {
    min-width: 0;
    max-width: 242px;
    width: 100%;
    font-size: 21px;
    padding: 5px 10px 8px;
    margin-bottom: 12px;
  }
}
.job-intro__item-title {
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job-intro__item-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 980px) {
  .job-intro__item-content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .job-intro__item-content {
    margin-top: 59px;
  }
}
.job-intro__item-content-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5333333333em;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-content-title {
    font-size: 26px;
    line-height: 1.5384615385em;
    margin-bottom: 29px;
  }
}
.job-intro__item-button {
  width: 53.07px;
  height: 53.07px;
  border-radius: 50%;
  background-color: #0084ce;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 21.4px;
  right: 18.5px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .job-intro__item-button {
    bottom: 41.1px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.job-intro__item-button::after {
  content: "";
  width: 16.08px;
  height: 16.08px;
  background: url("../img/icons/cross-white.svg") center/contain no-repeat;
}
.job-intro__item-modal {
  display: none;
}
.job-intro__item-modal-head {
  margin: 58px 0 48px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-modal-head {
    margin: 35px 0;
  }
}
@media screen and (max-width: 767px) {
  .job-intro__item-modal-head .job-intro__item-subtitle {
    max-width: 187px;
    font-size: 16px;
    padding: 4px 10px;
  }
}
.job-intro__item-modal-head .job-intro__item-title {
  color: #0084ce;
}
@media screen and (max-width: 767px) {
  .job-intro__item-modal-head .job-intro__item-title {
    font-size: 23px;
    margin-top: 4.2px;
  }
}
.job-intro__item-modal-content {
  background-color: #e2f3fd;
}
.job-intro__item-modal-content-main {
  max-width: calc(846px + 8%);
  padding: 45px 4% 105px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .job-intro__item-modal-content-main {
    max-width: 100%;
    padding: 17px 16px 110px;
  }
}
.job-intro__item-mission {
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-mission {
    margin-bottom: 58px;
  }
}
.job-intro__item-mission-subtitle {
  display: block;
  font-size: 2.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 36.9px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-mission-subtitle {
    font-size: 17px;
    margin-bottom: 23px;
  }
}
.job-intro__item-mission-title {
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .job-intro__item-mission-title {
    text-align: left !important;
    margin-bottom: 20px;
  }
}
.job-intro__item-mission-image {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 980px) {
  .job-intro__item-mission-image {
    margin-top: 44px;
  }
}
.job-intro__item-mission-cols {
  display: grid;
  grid-template-columns: auto 350px;
  gap: 29px;
}
@media screen and (max-width: 980px) {
  .job-intro__item-mission-cols {
    display: block;
  }
}
.job-intro__item-label {
  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;
  gap: 27.4px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-label {
    font-size: 16px;
    gap: 22px;
  }
}
.job-intro__item-label::before, .job-intro__item-label::after {
  content: "";
  width: 11px;
  height: 2px;
  background-color: #242424;
}
@media screen and (max-width: 767px) {
  .job-intro__item-label::before, .job-intro__item-label::after {
    width: 7.69px;
  }
}
.job-intro__item-label--no-decor {
  font-size: 400;
}
.job-intro__item-label--no-decor::before, .job-intro__item-label--no-decor::after {
  content: none;
}
.job-intro__item-keys-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 22px;
  counter-reset: job-block;
  margin-top: 43px;
}
@media screen and (max-width: 980px) {
  .job-intro__item-keys-blocks {
    display: block;
    margin-top: 24.6px;
  }
}
.job-intro__item-keys-block {
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .job-intro__item-keys-block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.job-intro__item-keys-block-title {
  background-color: #0084ce;
  color: #fff;
  font-size: 2.4rem;
  padding: 1px 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) {
  .job-intro__item-keys-block-title {
    font-size: 20px;
    padding: 8.5px 8.7px;
  }
}
.job-intro__item-keys-block-title::before {
  counter-increment: job-block;
  content: counter(job-block, decimal-leading-zero);
  font-size: 3.6rem;
  font-family: "Barlow Condensed", sans-serif;
  margin-right: 5px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (max-width: 767px) {
  .job-intro__item-keys-block-title::before {
    font-size: 25px;
  }
}
.job-intro__item-keys-block-desc {
  padding: 27px 18px 35px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-keys-block-desc {
    padding: 27px 14px 24px;
  }
}
.job-intro__item-message {
  margin-top: 77.6px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-message {
    margin-top: 60.7px;
  }
}
.job-intro__item-message-ctr {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-message-ctr {
    margin-top: 24.6px;
  }
}
.job-intro__item-message-title {
  color: #0084ce;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .job-intro__item-message-title {
    margin-bottom: 20px;
  }
}
.job-intro__item-message-title > .decor {
  position: relative;
  display: inline-block;
}
.job-intro__item-message-title > .decor::after {
  content: "";
  width: 100%;
  height: 5px;
  background: url("../img/job-intro/blue-title-deco.svg") left/cover no-repeat;
  position: absolute;
  bottom: -7px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .job-intro__item-message-title > .decor::after {
    bottom: 0;
  }
}
.job-intro__item-related {
  background-color: #fff;
  padding: 50px 0 92px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related {
    padding: 46px 16px 73.8px;
  }
}
.job-intro__item-related-blocks {
  max-width: 614px;
  margin: 51.2px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38.7px;
}
@media screen and (max-width: 980px) {
  .job-intro__item-related-blocks {
    max-width: 500px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-blocks {
    max-width: 208px;
    margin-top: 39px;
  }
}
.job-intro__item-related-block {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .job-intro__item-related-block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.job-intro__item-related-block:hover {
  opacity: 0.7;
}
.job-intro__item-related-dtl {
  background-color: #e2f3fd;
  padding: 13px 25px 13px 16px;
  color: #0185ce;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-dtl {
    padding: 9.3px 19.6px 9.8px 11.6px;
  }
}
.job-intro__item-related-image {
  position: relative;
  aspect-ratio: 287/225;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-image {
    aspect-ratio: 207.47/162.65;
  }
}
.job-intro__item-related-tagline {
  font-size: 1.7rem;
  line-height: 1.2941176471em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #0185ce;
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 16px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-tagline {
    font-size: 12px;
    line-height: 1.75em;
    bottom: 13px;
    left: 11.8px;
    right: 11.8px;
  }
}
.job-intro__item-related-tagline > span {
  display: inline-block;
  background-color: #fff;
  margin-bottom: 6px;
  padding: 1px 3.4px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-tagline > span {
    margin-bottom: 4px;
  }
}
.job-intro__item-related-info {
  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;
}
.job-intro__item-related-cat {
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 97px;
  border: 1px solid #b6e4fd;
  border-radius: 30px;
  padding: 1px 10px 3px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-cat {
    min-width: 70.35px;
    font-size: 11px;
    padding: 0 10px 2px;
  }
}
.job-intro__item-related-date {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-date {
    font-size: 12px;
  }
}
.job-intro__item-related-name {
  margin-top: 12.4px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-name {
    margin-top: 8.9px;
  }
}
.job-intro__item-related-name-jp {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-name-jp {
    font-size: 14px;
  }
}
.job-intro__item-related-name-en {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 1.6px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-name-en {
    font-size: 8px;
    margin: 0;
  }
}
.job-intro__item-related-dept {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 9.3px;
}
@media screen and (max-width: 767px) {
  .job-intro__item-related-dept {
    font-size: 10px;
    margin-top: 8.3px;
  }
}
.job-intro__modal {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}
.job-intro__modal.active {
  opacity: 1;
  visibility: visible;
}
.job-intro__modal--green .job-intro__modal-content {
  border-color: #36cbb1;
}
.job-intro__modal--green .job-intro__item-subtitle,
.job-intro__modal--green .job-intro__item-keys-block-title {
  background-color: #36cbb1;
}
.job-intro__modal--green .job-intro__item-head::before,
.job-intro__modal--green .job-intro__item-head::after {
  background: url("../img/job-intro/green-deco.svg") center/contain no-repeat;
}
.job-intro__modal--green .job-intro__item-modal-content {
  background-color: #ebfffc;
}
.job-intro__modal--green .job-intro__item-content-title,
.job-intro__modal--green .job-intro__item-message-title,
.job-intro__modal--green .job-intro__item-title {
  color: #36cbb1;
}
.job-intro__modal--green .job-intro__item-message-title > .decor::after {
  background: url("../img/job-intro/green-title-deco.svg") center/contain no-repeat;
}
.job-intro__modal--orange .job-intro__modal-content {
  border-color: #fd830a;
}
.job-intro__modal--orange .job-intro__item-subtitle,
.job-intro__modal--orange .job-intro__item-keys-block-title {
  background-color: #fd830a;
}
.job-intro__modal--orange .job-intro__item-head::before,
.job-intro__modal--orange .job-intro__item-head::after {
  background: url("../img/job-intro/orange-deco.svg") center/contain no-repeat;
}
.job-intro__modal--orange .job-intro__item-modal-content {
  background-color: #ffefde;
}
.job-intro__modal--orange .job-intro__item-content-title,
.job-intro__modal--orange .job-intro__item-message-title,
.job-intro__modal--orange .job-intro__item-title {
  color: #fd830a;
}
.job-intro__modal--orange .job-intro__item-message-title > .decor::after {
  background: url("../img/job-intro/orange-title-deco.svg") center/contain no-repeat;
}
.job-intro__modal-content {
  position: relative;
  background-color: #fff;
  margin: 134px auto !important;
  border: 8px solid #0084ce;
}
.job-intro__modal-close {
  width: 51.84px;
  height: 51.84px;
  background-color: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -70.24px;
  right: -10px;
  cursor: pointer;
}
.job-intro__modal-close::after {
  content: "";
  width: 21.62px;
  height: 21.62px;
  background: url("../img/icons/close-gray.svg") center/contain no-repeat;
}

.overflow {
  overflow: hidden;
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .tablet-large-hide {
    display: none;
  }
}

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

@media screen and (min-width: 981px) {
  .tablet {
    display: none;
  }
}

.container {
  width: 1050px;
  max-width: calc(100% - 150px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    max-width: calc(100% - 60px);
  }
}
.container--inner-padding {
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  .container--inner-padding {
    padding: 0 16px;
  }
}

.block {
  display: block;
}

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

.nowrap {
  white-space: nowrap;
}
.nowrap--w-sm {
  display: inline-block;
  width: 0.5em;
}

.bg-light-cyan {
  background-color: #e1f2fd;
}

.text-orange {
  color: #fd830a;
}

.semibold {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .nowrap-sp {
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .fs14-sp {
    font-size: 14px;
  }
}

.gray24-color {
  color: #242424;
}

.anchor {
  display: block;
  position: relative;
  top: -85px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -63px;
  }
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .splide.member__slider .splide__arrows {
    margin: auto;
    position: absolute;
    inset: auto 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 224px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.splide.member__slider .splide__arrow {
  width: 56px;
  height: 56px;
  background: #fd830a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 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;
}
@media screen and (max-width: 767px) {
  .splide.member__slider .splide__arrow {
    position: static;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 29.61px;
    height: 29.61px;
    -webkit-transform: none;
            transform: none;
  }
}
.splide.member__slider .splide__arrow::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../img/icons/arrow-white.svg") center/contain no-repeat;
}
.splide.member__slider .splide__arrow svg {
  display: none;
}
.splide.member__slider .splide__arrow--prev {
  left: -28px;
}
.splide.member__slider .splide__arrow--next {
  right: -48px;
}
.splide.member__slider .splide__arrow--next::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.splide.member__slider .splide__arrow:hover {
  opacity: 0.7;
}
.splide.member__slider .splide__pagination {
  padding: 0;
  bottom: 0;
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .splide.member__slider .splide__pagination {
    bottom: 13px;
  }
}
.splide.member__slider .splide__pagination__page {
  margin: 0;
  border-radius: 0;
  width: 29px;
  height: 5px;
  background: #fff;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .splide.member__slider .splide__pagination__page {
    height: 3px;
  }
}
.splide.member__slider .splide__pagination__page.is-active {
  background: #0185ce;
  -webkit-transform: scale(1);
          transform: scale(1);
}