@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Poppins:wght@400;500;600;700&display=swap");
/* base color */
/* template color */
/* orizin color */
/* footer */
/* hamburger menu */
/* pagenavi */
/* contact page Navi*/
/* policy */
/* 404 */
/*.form */
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
}

.disp__only {
  display: none;
}
@media screen and (max-width: 900px) {
  .disp__only.--mobile {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .disp__only.--sp {
    display: block;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex._fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .flex._fdr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@-webkit-keyframes loop-slide-Right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-slide-Right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.c-title_front, .c-title_cta {
  color: #333;
}
.c-title_front p, .c-title_cta p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.003em;
  text-indent: 0.003em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(4px, 0.78125vw, 10px);
}
.c-title_front p::before, .c-title_cta p::before {
  content: "";
  aspect-ratio: 1/1;
  width: clamp(8px, 0.9375vw, 12px);
  height: auto;
  display: block;
  background: #ffff00;
  border-radius: 50%;
}
.c-title_front h2, .c-title_cta h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.25vw, 2.25rem);
  font-weight: 500;
  line-height: 1.8;
}
.c-title_front._w, ._w.c-title_cta {
  color: #fff;
}
.c-title_lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: clamp(32px, 5.3333333333vw, 48px);
}
.c-title_lower::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: clamp(8px, 1.3333333333vw, 12px);
  height: auto;
  background-color: #ffff00;
  border-radius: 50%;
}
.c-title_lower._center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-title_cta {
  color: #fff;
}
@media screen and (max-width: 700px) {
  .c-title_cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-arrow, .c-button span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-arrow svg, .c-button span svg {
  aspect-ratio: 8/14;
  width: 8px;
  height: auto;
}
.c-arrow svg path, .c-button span svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #fff;
}
.c-arrow_hover, .c-button:hover span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 8/14;
  width: 8px;
  height: auto;
}
.c-arrow_hover svg, .c-button:hover span svg {
  aspect-ratio: 8/14;
  width: 8px;
  height: auto;
}
.c-arrow_hover svg path, .c-button:hover span svg path {
  fill: #16307a;
}
.c-arrow-white svg path, .c-button._w span svg path {
  fill: #16307a;
}
.c-arrow-white_hover svg path, .c-button._w:hover span svg path {
  fill: #fff;
}
.c-arrow-separate {
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-arrow-separate::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-arrow-separate svg {
  aspect-ratio: 8/13;
  width: 8px;
  height: auto;
  position: relative;
}
.c-arrow-separate svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #16307a;
}
.c-arrow-separate._56 {
  aspect-ratio: 1/1;
  width: clamp(40px, 6.2222222222vw, 56px);
  height: auto;
}
.c-arrow-separate._56 svg {
  aspect-ratio: 14/23;
  width: clamp(10px, 1.09375vw, 14px);
  height: auto;
}
.c-arrow-separate._blue::before {
  background: #16307a;
}
.c-arrow-separate._blue svg path {
  fill: #fff;
}
.c-arrow-separate_hover::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #16307a;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
}
.c-arrow-separate_hover svg path {
  fill: #fff;
}
.c-arrow-separate_hover_56:before {
  aspect-ratio: 1/1;
  background: #16307a;
  width: clamp(56px, 5vw, 64px);
  height: auto;
}
.c-arrow-separate_hover_56 svg path {
  fill: #fff;
}

.c-button {
  background: #16307a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  aspect-ratio: 200/56;
  width: clamp(160px, 14.2857142857vw, 200px);
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 20px 8px rgba(211, 226, 244, 0.8);
          box-shadow: 0 0 20px 8px rgba(211, 226, 244, 0.8);
  position: relative;
  font-size: clamp(14px, 1.1428571429vw, 16px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .c-button {
    width: 200px;
    font-size: 16px;
  }
}
.c-button b {
  font-weight: 500;
}
.c-button figure {
  aspect-ratio: 24/17;
  width: 24px;
  height: auto;
}
.c-button:hover {
  opacity: 1;
  background: #fff;
  color: #333;
  -webkit-box-shadow: 0 0 20px 8px rgba(157, 201, 255, 0.8);
          box-shadow: 0 0 20px 8px rgba(157, 201, 255, 0.8);
}
.c-button._cta {
  aspect-ratio: initial;
  width: 264px;
  height: 56px;
  padding-right: 11px;
}
@media screen and (max-width: 450px) {
  .c-button._cta {
    padding-right: 0;
  }
}
.c-button._wide {
  aspect-ratio: unset;
  width: 240px;
  height: clamp(48px, 11.2vw, 56px);
}
.c-button._large {
  aspect-ratio: unset;
  width: 100%;
  max-width: 324px;
  height: clamp(48px, 4vw, 56px);
}
.c-button._w {
  background: #fff;
  color: #333;
}
.c-button._w:hover {
  background: #16307a;
  color: #fff;
  -webkit-box-shadow: 0 0 40px 8px rgba(157, 201, 255, 0.8);
          box-shadow: 0 0 40px 8px rgba(157, 201, 255, 0.8);
}
.c-link_recruit {
  margin-top: clamp(104px, 17.7777777778vw, 160px);
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 40px 10px rgba(211, 226, 244, 0.8);
          box-shadow: 0 0 40px 10px rgba(211, 226, 244, 0.8);
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .c-link_recruit {
    padding: 20px;
  }
}
.c-link_recruit ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 10px;
}
.c-link_recruit ul > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-link_recruit ul > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.c-link_recruit ul > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .c-link_recruit ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.c-link_recruit a {
  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;
  gap: 20px;
  position: relative;
}
.c-link_recruit a figure {
  -ms-flex-preferred-size: 37.09%;
      flex-basis: 37.09%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
  overflow: clip;
}
.c-link_recruit a figure img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-link_recruit a .-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-link_recruit a b {
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}
.c-link_recruit a .c-arrow-separate {
  position: absolute;
  right: 7.53%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: clamp(24px, 3.5555555556vw, 32px);
  height: auto;
}
.c-link_recruit a .c-arrow-separate svg {
  width: clamp(6px, 0.8888888889vw, 8px);
}
.c-link_recruit a .c-arrow-separate::before {
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-width: 900px) {
  .c-link_recruit a .c-arrow-separate {
    right: 0;
  }
}
@media (hover: hover) {
  .c-link_recruit a:hover {
    opacity: 1;
  }
  .c-link_recruit a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-link_recruit a:hover .c-arrow-separate::before {
    aspect-ratio: 1/1;
    width: clamp(32px, 4.4444444444vw, 40px);
  }
}
@media (hover: none) {
  .c-link_recruit a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .c-link_recruit a:active {
    opacity: 1;
  }
  .c-link_recruit a:active img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-link_recruit a:active .c-arrow-separate::before {
    aspect-ratio: 1/1;
    width: clamp(32px, 4.4444444444vw, 40px);
  }
}
.c-link_recruit .is-hidden {
  display: none;
}

.c-layout_side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(80px, 10.9375vw, 140px);
}
@media screen and (max-width: 900px) {
  .c-layout_side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 104px;
  }
}
.c-layout_side .-nav {
  position: relative;
}
@media screen and (min-width: 901px) {
  .c-layout_side .-nav {
    -ms-flex-preferred-size: 240px;
        flex-basis: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 901px) {
  .c-layout_side .-contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.c-layout_singlenav {
  margin-top: clamp(80px, 11.5555555556vw, 104px);
  padding-top: clamp(32px, 4.4444444444vw, 40px);
  border-top: 1px solid #D4DBDC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-layout_singlenav a {
  color: #16307a;
  text-decoration: underline;
}
.c-layout_singlenav .-back {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-layout_singlenav .-prev,
.c-layout_singlenav .-next {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
}
.c-layout_singlenav .-prev a,
.c-layout_singlenav .-next a {
  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: 16px;
}
.c-layout_singlenav .-prev a b,
.c-layout_singlenav .-next a b {
  font-size: clamp(0.875rem, 1.6666666667vw, 0.9375rem);
  font-weight: 500;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-layout_singlenav .-prev a span,
.c-layout_singlenav .-next a span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  aspect-ratio: 9/16;
  width: 9px;
  height: auto;
}
.c-layout_singlenav .-prev a span svg,
.c-layout_singlenav .-next a span svg {
  width: 100%;
  height: 100%;
}
.c-layout_singlenav .-prev a span svg path,
.c-layout_singlenav .-next a span svg path {
  fill: #D4DBDC;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-layout_singlenav .-prev a span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-table table th,
.c-table table td {
  padding: 32px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .c-table table th,
  .c-table table td {
    display: block;
    padding: 20px 24px;
  }
}
.c-table table th {
  border-bottom: 1px solid #16307a;
  width: 200px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .c-table table th {
    width: 100%;
    padding-bottom: 4px;
    border: none;
  }
}
.c-table table td {
  border-bottom: 1px solid #D4DBDC;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .c-table table td {
    padding-top: 0;
  }
}