@charset "UTF-8";
/* Objects */
@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, .f-news li a:hover .c-arrow-separate::before, .f-company a:hover .c-arrow-separate::before, .f-business .-imgs a:hover .c-arrow-separate::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, .f-news li a:hover .c-arrow-separate svg path, .f-company a:hover .c-arrow-separate svg path, .f-business .-imgs a:hover .c-arrow-separate svg path {
  fill: #fff;
}
.c-arrow-separate_hover_56:before, .f-banner .-flex a:hover .c-arrow-separate:before {
  aspect-ratio: 1/1;
  background: #16307a;
  width: clamp(56px, 5vw, 64px);
  height: auto;
}
.c-arrow-separate_hover_56 svg path, .f-banner .-flex a:hover .c-arrow-separate 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;
  }
}

.f-business {
  position: relative;
  width: 100%;
  padding-bottom: clamp(50px, 6.2222222222vw, 56px);
  z-index: 1;
}
.f-business .circle {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  z-index: 1;
}
.f-business .circle:nth-of-type(1) {
  bottom: -10%;
  left: 50%;
  background: #00add1;
  width: 27px;
}
@media screen and (max-width: 900px) {
  .f-business .circle:nth-of-type(1) {
    bottom: -5%;
  }
}
.f-business .circle:nth-of-type(2) {
  bottom: -20%;
  left: 30%;
  background: #ffbb32;
  width: 15px;
}
@media screen and (max-width: 900px) {
  .f-business .circle:nth-of-type(2) {
    bottom: -10%;
    left: 12%;
  }
}
.f-business .circle:nth-of-type(3) {
  bottom: -15%;
  left: 70%;
  background: #cc7bff;
  width: 11px;
}
@media screen and (max-width: 900px) {
  .f-business .circle:nth-of-type(3) {
    bottom: -10%;
  }
}
.f-business .circle:nth-of-type(4) {
  bottom: 4%;
  left: 98%;
  background: #16307a;
  width: 22px;
}
@media screen and (max-width: 1280px) {
  .f-business .circle:nth-of-type(4) {
    left: 95%;
  }
}
@media screen and (max-width: 900px) {
  .f-business .circle:nth-of-type(4) {
    left: 90%;
    bottom: -2%;
  }
}
.f-business .-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px clamp(32px, 5.625vw, 72px);
}
@media screen and (max-width: 900px) {
  .f-business .-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-business-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  overflow: hidden;
  aspect-ratio: 2560/837;
}
@media screen and (max-width: 900px) {
  .f-business-bg img {
    max-width: initial;
    aspect-ratio: 2560/837;
    width: 200%;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.f-business .-inner {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .f-business .-inner {
    padding: 0 20px;
  }
}
.f-business .-inner hgroup {
  margin-bottom: clamp(32px, 3.125vw, 40px);
}
.f-business .-inner p + p {
  margin-top: clamp(20px, 1.875vw, 24px);
}
.f-business .-btn {
  margin-top: clamp(56px, 7.1111111111vw, 64px);
}
@media screen and (max-width: 900px) {
  .f-business .-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.f-business .-imgs {
  margin-top: 56px;
  width: 46%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 100px 30px rgba(211, 226, 244, 0.8);
          box-shadow: 0 0 100px 30px rgba(211, 226, 244, 0.8);
}
@media screen and (max-width: 900px) {
  .f-business .-imgs {
    width: 100%;
    padding: 16px;
  }
}
.f-business .-imgs .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  gap: 8px;
}
@media screen and (max-width: 450px) {
  .f-business .-imgs .-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-business .-imgs a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.f-business .-imgs a figure {
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-business .-imgs a figure:nth-of-type(1) {
  display: block;
}
@media screen and (max-width: 450px) {
  .f-business .-imgs a figure:nth-of-type(1) {
    display: none;
  }
}
.f-business .-imgs a figure:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 450px) {
  .f-business .-imgs a figure:nth-of-type(2) {
    display: block;
  }
}
.f-business .-imgs a h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}
.f-business .-imgs a .c-arrow-separate {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}
.f-business .-imgs a:hover {
  opacity: 1;
}
.f-business .-imgs a:hover figure {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.f-products {
  position: relative;
  padding-bottom: 80px;
  padding-top: clamp(168px, 25.5555555556vw, 230px);
}
.f-products::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  aspect-ratio: 30/22;
  width: 192%;
  height: auto;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#50a3eb), to(rgba(80, 163, 235, 0)));
  background: linear-gradient(180deg, #50a3eb 0%, rgba(80, 163, 235, 0) 100%);
  opacity: 0.1;
  left: -55%;
}
@media screen and (max-width: 900px) {
  .f-products::before {
    width: 200%;
    left: -65%;
  }
}
.f-products hgroup {
  text-align: center;
  margin-bottom: clamp(32px, 4.4444444444vw, 40px);
}
.f-products hgroup p {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.f-products .-list {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 64px;
}
@media screen and (max-width: 900px) {
  .f-products .-list {
    gap: 16px 8px;
  }
}
@media screen and (max-width: 450px) {
  .f-products .-list {
    padding: 0 24px;
  }
}
.f-products-item {
  width: calc(33.333% - 12px);
  position: relative;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media screen and (max-width: 900px) {
  .f-products-item {
    width: calc(50% - 4px);
  }
}
@media screen and (max-width: 450px) {
  .f-products-item {
    width: 100%;
  }
}
.lazy-show .f-products-item:nth-of-type(1), .lazy-show .f-products-item:nth-of-type(4) {
  -webkit-transform: translateY(64px);
          transform: translateY(64px);
}
@media screen and (max-width: 900px) {
  .lazy-show .f-products-item:nth-of-type(1), .lazy-show .f-products-item:nth-of-type(4) {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.lazy-show .f-products-item:nth-of-type(2), .lazy-show .f-products-item:nth-of-type(5) {
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
}
@media screen and (max-width: 900px) {
  .lazy-show .f-products-item:nth-of-type(2), .lazy-show .f-products-item:nth-of-type(5) {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 900px) {
  .lazy-show .f-products-item:nth-child(odd) {
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
}
@media screen and (max-width: 450px) {
  .lazy-show .f-products-item:nth-child(odd) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-products-item a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  width: 100%;
  z-index: 0;
  -webkit-box-shadow: 0 0 40px 10px color-mix(in srgb, var(--blur) 30%, transparent);
          box-shadow: 0 0 40px 10px color-mix(in srgb, var(--blur) 30%, transparent);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 450px) {
  .f-products-item a {
    -webkit-box-shadow: 0 0 40px 5px color-mix(in srgb, var(--blur) 30%, transparent);
            box-shadow: 0 0 40px 5px color-mix(in srgb, var(--blur) 30%, transparent);
  }
}
.f-products-item a h3 {
  margin-top: 8px;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.f-products-item a:hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 40px 25px color-mix(in srgb, var(--blur) 30%, transparent);
          box-shadow: 0 0 40px 25px color-mix(in srgb, var(--blur) 30%, transparent);
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .f-products-item a:hover {
    -webkit-box-shadow: 0 0 40px 15px color-mix(in srgb, var(--blur) 30%, transparent);
            box-shadow: 0 0 40px 15px color-mix(in srgb, var(--blur) 30%, transparent);
  }
}
.f-products-item a:hover figure img {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.f-products-item figure {
  border-radius: 10px;
  aspect-ratio: 348/197;
  overflow: hidden;
  position: relative;
  background-color: #F7F9F9;
}
.f-products-item figure img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: auto;
  max-width: initial;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-products .-btn {
  margin-top: clamp(48px, 6.2222222222vw, 56px);
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
}
.f-products .-btn a {
  min-width: 200px;
}

.f-banner {
  margin-top: clamp(64px, 8.8888888889vw, 80px);
  margin-bottom: clamp(64px, 8.8888888889vw, 80px);
  position: relative;
  z-index: 2;
}
.f-banner .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px clamp(24px, 4.375vw, 56px);
}
@media screen and (max-width: 900px) {
  .f-banner .-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-banner .-flex section {
  width: 100%;
}
.f-banner .-flex a {
  position: relative;
  border-radius: 20px;
  -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);
  overflow: hidden;
  padding: 0 clamp(40px, 4.375vw, 56px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  aspect-ratio: 572/217;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.f-banner .-flex a figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
.f-banner .-flex a figure img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.f-banner .-flex a hgroup {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .f-banner .-flex a hgroup h2 {
    font-size: 20px;
  }
}
.f-banner .-flex a .c-arrow-separate {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 2.5vw, 32px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.f-banner .-flex a:hover {
  opacity: 1;
}
.f-banner .-flex a:hover figure {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.f-company {
  padding-top: 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.f-company-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: clamp(323px, 81.2222222222vw, 731px);
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
}
.f-company hgroup {
  margin-bottom: clamp(24px, 4.4444444444vw, 40px);
}
@media screen and (max-width: 900px) {
  .f-company hgroup {
    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;
  }
}
.f-company-lower {
  width: 100%;
  overflow: hidden;
  padding: 56px clamp(20px, 3.125vw, 40px);
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.f-company-lower 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: 16px 10px;
  padding: clamp(20px, 2vw, 32px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  background: #fff;
  -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);
}
.f-company-lower ul > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.f-company-lower ul > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.f-company-lower ul > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .f-company-lower ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.f-company a {
  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: 20px;
  width: 100%;
}
.f-company a figure {
  -ms-flex-preferred-size: 37.09%;
      flex-basis: 37.09%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}
.f-company a figure img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-company a h3 {
  font-size: clamp(1.125rem, 2.2222222222vw, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .f-company a h3 {
    font-size: 18px;
  }
}
.f-company a .c-arrow-separate {
  position: absolute;
  right: 7.53%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(24px, 3.5555555556vw, 32px);
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .f-company a .c-arrow-separate {
    right: 0;
  }
}
@media screen and (max-width: 500px) {
  .f-company a .c-arrow-separate {
    display: none;
  }
}
.f-company a:hover {
  opacity: 1;
}
.f-company a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.f-recruit {
  position: relative;
  z-index: 0;
  background: #16307a;
  overflow: hidden;
  top: -80px;
  margin-bottom: -130px;
}
@media screen and (max-width: 450px) {
  .f-recruit {
    margin-bottom: -100px;
  }
}
.f-recruit::before, .f-recruit::after {
  content: "";
  position: absolute;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  aspect-ratio: 30/22;
  width: 192%;
  height: auto;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .f-recruit::before, .f-recruit::after {
    width: 200%;
  }
}
.f-recruit::before {
  left: -35%;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
}
@media screen and (max-width: 900px) {
  .f-recruit::before {
    left: initial;
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
    right: -35%;
  }
}
.f-recruit::after {
  right: -35%;
  -webkit-transform: translateY(-14%);
          transform: translateY(-14%);
}
@media screen and (max-width: 900px) {
  .f-recruit::after {
    -webkit-transform: translateY(-14%);
            transform: translateY(-14%);
    right: -35%;
  }
}
.f-recruit-bg {
  position: absolute;
  z-index: 1;
  bottom: 24%;
  aspect-ratio: 2560/1155;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .f-recruit-bg img {
    max-width: initial;
    position: absolute;
    aspect-ratio: 2560/1155;
    width: 120%;
    height: auto;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit-bg {
    bottom: 22%;
  }
  .f-recruit-bg img {
    aspect-ratio: 2560/1155;
    width: 150%;
  }
}
.f-recruit .circle {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  z-index: 1;
}
.f-recruit .circle:nth-of-type(1) {
  bottom: 50%;
  right: 8%;
  background: #ffff00;
  width: clamp(30px, 4.609375vw, 59px);
}
@media screen and (max-width: 900px) {
  .f-recruit .circle:nth-of-type(1) {
    bottom: 23%;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .circle:nth-of-type(1) {
    bottom: 20%;
  }
}
.f-recruit .circle:nth-of-type(2) {
  bottom: 45%;
  right: 20%;
  background: #00add1;
  width: clamp(13px, 2.109375vw, 27px);
}
@media screen and (max-width: 900px) {
  .f-recruit .circle:nth-of-type(2) {
    bottom: 21%;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .circle:nth-of-type(2) {
    bottom: 18%;
  }
}
.f-recruit .circle:nth-of-type(3) {
  bottom: 30%;
  right: 30%;
  background: #cc7bff;
  width: clamp(11px, 1.640625vw, 21px);
}
@media screen and (max-width: 900px) {
  .f-recruit .circle:nth-of-type(3) {
    bottom: 15%;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .circle:nth-of-type(3) {
    bottom: 12%;
  }
}
.f-recruit .circle:nth-of-type(4) {
  bottom: 30%;
  right: 50%;
  background: #ffbb32;
  width: clamp(8px, 1.171875vw, 15px);
}
@media screen and (max-width: 900px) {
  .f-recruit .circle:nth-of-type(4) {
    bottom: 15%;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .circle:nth-of-type(4) {
    right: 80%;
    bottom: 12%;
  }
}
.f-recruit .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .f-recruit .-flex {
    padding: clamp(180px, 37.5vw, 480px) 0 clamp(120px, 37.5vw, 480px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-recruit .-inner {
  width: 100%;
  max-width: 520px;
}
@media screen and (max-width: 900px) {
  .f-recruit .-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: initial;
    padding: 0 20px;
  }
}
.f-recruit .-inner hgroup {
  margin-bottom: 40px;
  white-space: nowrap;
}
.f-recruit .-inner hgroup h2 br.sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .f-recruit .-inner hgroup {
    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;
    white-space: wrap;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .-inner hgroup h2 {
    text-align: center;
  }
  .f-recruit .-inner hgroup h2 br {
    display: block;
  }
  .f-recruit .-inner hgroup h2 br.sp {
    display: block;
  }
}
.f-recruit .-inner p {
  color: #fff;
}
.f-recruit .-btn {
  margin-top: clamp(56px, 7.1111111111vw, 64px);
}
@media screen and (max-width: 900px) {
  .f-recruit .-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.f-recruit .-imgs {
  position: relative;
  padding-top: clamp(120px, 13.75vw, 220px);
  padding-bottom: clamp(240px, 61.875vw, 990px);
  margin-top: 100px;
  margin-bottom: 300px;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .f-recruit .-imgs {
    padding-top: clamp(80px, 25vw, 320px);
    padding-bottom: clamp(220px, 35.15625vw, 450px);
    overflow: hidden;
    height: 300px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .-imgs {
    height: 300px;
    margin-bottom: 24px;
  }
}
.f-recruit .-imgs > div {
  position: absolute;
  opacity: 0;
}
.f-recruit .-imgs > div:nth-of-type(1) {
  top: 20%;
  right: 5%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media screen and (max-width: 900px) {
  .f-recruit .-imgs > div:nth-of-type(1) {
    top: 5%;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .-imgs > div:nth-of-type(1) {
    top: 15%;
  }
}
.f-recruit .-imgs > div:nth-of-type(1) figure {
  width: clamp(249px, 30.5625vw, 489px);
}
@media screen and (max-width: 900px) {
  .f-recruit .-imgs > div:nth-of-type(1) figure {
    width: clamp(249px, 54.3333333333vw, 489px);
  }
}
.f-recruit .-imgs > div:nth-of-type(2) {
  left: 5%;
  bottom: 15%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
@media screen and (max-width: 900px) {
  .f-recruit .-imgs > div:nth-of-type(2) {
    bottom: 5%;
  }
}
@media screen and (max-width: 450px) {
  .f-recruit .-imgs > div:nth-of-type(2) {
    bottom: 15%;
  }
}
.f-recruit .-imgs > div:nth-of-type(2) figure {
  width: clamp(166px, 20.3125vw, 325px);
}
@media screen and (max-width: 900px) {
  .f-recruit .-imgs > div:nth-of-type(2) figure {
    width: clamp(166px, 36.1111111111vw, 325px);
  }
}
.f-recruit .-imgs.lazy-show > div {
  opacity: 1;
}

.f-news {
  padding-bottom: clamp(100px, 17.7777777778vw, 160px);
}
.f-news .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .f-news .-flex {
    gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .f-news .-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-news .-flex hgroup {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 56px;
}
.f-news .-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .f-news .-left {
    width: 100%;
  }
  .f-news .-left hgroup {
    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;
  }
  .f-news .-left .-btn {
    display: none;
  }
}
.f-news .-inner {
  width: 100%;
  max-width: 820px;
}
@media screen and (max-width: 1280px) {
  .f-news .-inner {
    width: calc(100% - 240px);
    max-width: initial;
  }
}
@media screen and (max-width: 900px) {
  .f-news .-inner {
    width: 100%;
  }
}
.f-news .-inner ul {
  display: block;
  width: 100%;
}
.f-news .-inner .-btn {
  display: none;
}
@media screen and (max-width: 900px) {
  .f-news .-inner .-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 56px;
  }
}
.f-news li {
  width: 100%;
}
.f-news li + li {
  margin-top: 32px;
}
.f-news li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 4px 4px 32px;
  margin: -4px;
}
.f-news li a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: #D4DBDC;
}
.f-news li a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #16307a;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-news li a:hover {
  opacity: 1;
}
.f-news li a:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.f-news time {
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  color: #D4DBDC;
}
.f-news .-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-right: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .f-news .-title {
    padding-right: initial;
  }
}
.f-news .-title p {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .f-news .-title p {
    white-space: wrap;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (max-width: 900px) {
  .f-news .-title p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.f-news .-title .c-arrow-separate {
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 900px) {
  .f-news .-title .c-arrow-separate {
    display: none;
  }
}