@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.more-btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 56px;
  background: #fff;
  border-radius: 100px;
  border: solid 1px #0B7BEC;
}
.more-btn a {
  width: 100%;
  height: 100%;
  padding: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #0B7BEC;
  line-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.more-btn a span {
  padding: 0 16px;
}
.more-btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  margin: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.more-btn-icon img {
  width: 16px;
  height: 16px;
  filter: invert(100%) sepia(0%) saturate(7463%) hue-rotate(125deg) brightness(106%) contrast(100%);
}
.more-btn:hover {
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  border: none;
}
.more-btn:hover a {
  color: #fff;
}
.more-btn:hover .more-btn-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  margin: 0;
  transition: 0.3s;
}
.more-btn:hover .more-btn-icon img {
  filter: invert(58%) sepia(100%) saturate(6141%) hue-rotate(197deg) brightness(101%) contrast(91%);
}

.top-page {
  background: #F3F8FE;
}

.mv {
  width: 100%;
  height: 80vh;
  min-height: 800px;
  margin-bottom: 120px;
  color: #fff;
  position: relative;
}
.mv::before {
  content: "";
  width: 100%;
  height: 470px;
  background-image: url("../img/wave_mv.png");
  background-position: top;
  background-size: cover;
  mix-blend-mode: screen;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .mv::before {
    background-image: url("../img/wave_mv-sp.webp");
    height: 280px;
    background-position: 20%;
    bottom: -30px;
  }
}
@media screen and (max-width: 1280px) {
  .mv {
    min-height: 640px;
  }
}
@media screen and (max-width: 850px) {
  .mv {
    min-height: 528px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 450px) {
  .mv {
    margin-bottom: 64px;
  }
}
.mv__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.mv__img picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.05); /* 初期状態で少しズームアウト */
  transition: opacity 1s ease, transform 6s ease;
}
.mv__img picture img, .mv__img picture source {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv__img picture.active {
  opacity: 1;
  transform: scale(1); /* ズームイン */
}
.mv__img picture:first-child {
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .mv__img picture:first-child img {
    -o-object-position: 0vw;
       object-position: 0vw;
  }
}
@media screen and (max-width: 450px) {
  .mv__img picture:first-child img {
    -o-object-position: 0vw;
       object-position: 0vw;
  }
}
.mv__text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .mv__text {
    padding: 0 35px;
  }
}
@media screen and (max-width: 450px) {
  .mv__text {
    margin-top: 8.8888888889vw;
  }
}
.mv__text h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: 1.8px;
  text-shadow: 0px 3px 6px rgba(0, 79, 200, 0.2);
  margin-bottom: 64px;
  margin-top: 10vh;
  z-index: 10;
}
@media screen and (max-width: 1280px) {
  .mv__text h1 {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 850px) {
  .mv__text h1 {
    font-size: max(7.5294117647vw, 27px);
    margin-bottom: max(6.5882352941vw, 32px);
  }
}
@media screen and (max-width: 450px) {
  .mv__text h1 {
    font-size: min(7.2vw, 27px);
    margin-bottom: 32px;
    margin-top: inherit;
  }
}
.mv__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin-bottom: 96px;
  z-index: 10;
}
@media screen and (max-width: 1280px) {
  .mv__text p {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 850px) {
  .mv__text p {
    font-size: 16px;
    margin-bottom: max(9.4117647059vw, 40px);
  }
}
@media screen and (max-width: 590px) {
  .mv__text p {
    text-align: left;
  }
}
@media screen and (max-width: 450px) {
  .mv__text p {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.mv .more-btn {
  background: none;
  border: solid 1px #fff;
  z-index: 10;
}
.mv .more-btn a {
  color: #fff;
}
.mv .more-btn-icon {
  background: #fff;
}
.mv .more-btn-icon img {
  filter: invert(32%) sepia(91%) saturate(2445%) hue-rotate(197deg) brightness(97%) contrast(93%);
}
.mv .more-btn:hover {
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  border: solid 1px #0B7BEC;
  transition: 0.3s;
}

.news {
  width: 1200px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 1280px) {
  .news {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 850px) {
  .news {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 450px) {
  .news {
    padding: 0 20px;
    margin-bottom: 64px;
  }
}
.news__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 850px) {
  .news__title {
    font-size: max(5.6470588235vw, 32px);
  }
}
@media screen and (max-width: 450px) {
  .news__title {
    margin-bottom: 32px;
  }
}
.news__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #0B7BEC;
  padding-left: 32px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .news__title h2 {
    font-size: max(4.7058823529vw, 24px);
  }
}
@media screen and (max-width: 450px) {
  .news__title h2 {
    font-size: 24px;
    padding-left: 26px;
  }
}
.news__title h2::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/tpl/title_shape1.png");
  background-size: contain;
  position: absolute;
  top: 23px;
  left: 0px;
}
@media screen and (max-width: 850px) {
  .news__title h2::before {
    top: max(2.7058823529vw, 12px);
  }
}
@media screen and (max-width: 450px) {
  .news__title h2::before {
    width: 14px;
    height: 14px;
    top: 12px;
  }
}
@media screen and (max-width: 850px) {
  .news .more-btn.pc {
    display: none;
  }
}
.news .more-btn.sp {
  display: none;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .news .more-btn.sp {
    display: block;
  }
}
.news__wrapper {
  display: flex;
  -moz-column-gap: 85px;
       column-gap: 85px;
}
@media screen and (max-width: 1280px) {
  .news__wrapper {
    -moz-column-gap: 6.640625vw;
         column-gap: 6.640625vw;
  }
}
@media screen and (max-width: 850px) {
  .news__wrapper {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 450px) {
  .news__wrapper {
    margin-bottom: 8px;
  }
}
.news__filter {
  width: 171px;
  margin-bottom: 40px;
}
@media screen and (max-width: 850px) {
  .news__filter {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .news__filter {
    margin-bottom: 32px;
  }
}
.news__filter-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0B7BEC;
  margin-bottom: 24px;
}
@media screen and (max-width: 850px) {
  .news__filter-title {
    display: none;
  }
}
.news__filter-btn {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media screen and (max-width: 850px) {
  .news__filter-btn {
    flex-direction: row;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media screen and (max-width: 450px) {
  .news__filter-btn {
    justify-content: space-between;
    -moz-column-gap: inherit;
         column-gap: inherit;
  }
}
.news__filter-btn input {
  display: none;
}
.news__filter-btn input:checked + label {
  background: linear-gradient(90deg, rgba(0, 79, 200, 0.1019607843), rgba(0, 163, 236, 0.1019607843));
  color: #0B7BEC;
}
.news__filter-btn input:checked + label::before {
  opacity: 1;
}
.news__filter-btn label {
  padding: 14px 0 14px 38px;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #10181D;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  .news__filter-btn label {
    padding: 8px 16px;
    background: #fff;
    border: solid 1px #DBEBFC;
  }
}
@media screen and (max-width: 450px) {
  .news__filter-btn label {
    font-size: max(3.7333333333vw, 12px);
  }
}
.news__filter-btn label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0B7BEC;
  opacity: 0.4;
  position: absolute;
  top: 20px;
  left: 16px;
}
@media screen and (max-width: 850px) {
  .news__filter-btn label::before {
    width: 0;
  }
}
.news__filter-btn label:hover {
  background: linear-gradient(90deg, rgba(0, 79, 200, 0.1019607843), rgba(0, 163, 236, 0.1019607843));
  color: #0B7BEC;
}
.news__filter-btn label:hover label::before {
  opacity: 1;
}
.news__links {
  flex: 1;
}
.news__link {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 2px rgba(11, 123, 236, 0.2);
  position: relative;
}
.news__link::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  transition: 0.3s;
}
.news__link:hover::before {
  width: 100%;
  transition: 0.3s;
}
.news__link a {
  color: #10181D;
}
.news__link-content {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 450px) {
  .news__link-content {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.news__link-img {
  border: solid 1px #E6EAED;
  position: relative;
  width: 160px;
  height: 108px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 850px) {
  .news__link-img {
    width: 140px;
    height: 94px;
  }
}
@media screen and (max-width: 450px) {
  .news__link-img {
    width: 112px;
    height: 75px;
  }
}
.news__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 0.3s;
}
.news__link-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #10181D;
  opacity: 0;
  transition: 0.3s;
}
.news__link-text {
  flex: 1;
}
.news__link-info {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 850px) {
  .news__link-info {
    display: none;
  }
}
.news__link-info.sp {
  -moz-column-gap: 24px;
       column-gap: 24px;
  display: none;
}
@media screen and (max-width: 850px) {
  .news__link-info.sp {
    display: flex;
  }
}
@media screen and (max-width: 450px) {
  .news__link-info.sp {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.news__link-date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  font-size: 15px;
  opacity: 0.8;
  width: 90px;
}
@media screen and (max-width: 850px) {
  .news__link-date {
    width: 140px;
  }
}
@media screen and (max-width: 450px) {
  .news__link-date {
    width: 112px;
  }
}
.news__link-categoli {
  background: rgba(16, 24, 29, 0.07);
  padding: 4px 16px 5px;
  border-radius: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: rgba(16, 24, 29, 0.9);
  font-size: 12px;
}
@media screen and (max-width: 450px) {
  .news__link-categoli {
    padding: 4px 8px 5px;
  }
}
.news__link-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}
.news__link:hover {
  color: #0B7BEC;
}
.news__link:hover .news__link-img img {
  transform: scale(1.05);
  transition: 0.3s;
}
.news__link:hover .news__link-img::before {
  opacity: 0.1;
  transition: 0.3s;
}
.news__link:hover .news__link-date {
  color: rgba(11, 123, 236, 0.8);
}
.news__link:hover .news__link-categoli {
  color: rgba(11, 123, 236, 0.9);
}
.news__link:hover .news__link-title {
  color: #0B7BEC;
}

.service {
  padding: 120px 0;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  color: #fff;
}
@media screen and (max-width: 850px) {
  .service {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 450px) {
  .service {
    padding: 64px 10px;
  }
}
.service__slider {
  overflow: hidden;
  position: relative;
}
.service__title {
  width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 1280px) {
  .service__title {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 850px) {
  .service__title {
    padding: 0 10px;
  }
}
.service__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  padding-left: 32px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .service__title h2 {
    font-size: max(4.7058823529vw, 24px);
  }
}
@media screen and (max-width: 450px) {
  .service__title h2 {
    font-size: 24px;
    padding-left: 26px;
  }
}
.service__title h2::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/tpl/title_shape2.png");
  background-size: contain;
  position: absolute;
  top: 23px;
  left: 0px;
}
@media screen and (max-width: 850px) {
  .service__title h2::before {
    top: max(2.7058823529vw, 12px);
  }
}
@media screen and (max-width: 450px) {
  .service__title h2::before {
    width: 14px;
    height: 14px;
    top: 12px;
  }
}
.service .more-btn {
  background: none;
  border: solid 1px #fff;
}
.service .more-btn a {
  color: #fff;
}
.service .more-btn-icon {
  background: #fff;
}
.service .more-btn-icon img {
  filter: invert(32%) sepia(91%) saturate(2445%) hue-rotate(197deg) brightness(97%) contrast(93%);
}
.service .more-btn:hover {
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  border: solid 1px #0B7BEC;
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  .service .more-btn.pc {
    display: none;
  }
}
.service .more-btn.sp {
  display: none;
  margin: 40px auto 0;
}
@media screen and (max-width: 850px) {
  .service .more-btn.sp {
    display: block;
  }
}
@media screen and (max-width: 850px) {
  .service .more-btn.sp {
    margin-top: 32px;
  }
}
.service__lead {
  width: 1200px;
  margin: 0 auto 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1280px) {
  .service__lead {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 850px) {
  .service__lead {
    padding: 0 10px;
  }
}
.service__item {
  width: 568px;
  height: 676px;
  background: #fff;
  border-radius: 8px;
  transform: translateX(-320px);
}
@media screen and (max-width: 1280px) {
  .service__item {
    width: 480px;
  }
}
@media screen and (max-width: 850px) {
  .service__item {
    width: 350px;
    height: auto;
    transform: translateX(0);
  }
}
.service__card {
  height: 100%;
  padding: 56px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .service__card {
    padding: 40px;
  }
}
@media screen and (max-width: 850px) {
  .service__card {
    padding: 24px;
  }
}
@media screen and (max-width: 450px) {
  .service__card {
    padding: 20px 24px;
  }
}
.service__card:hover .service__link p {
  color: #0B7BEC;
}
.service__card:hover .service__link-icon {
  width: 40px;
  height: 40px;
  margin: 0;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  transition: 0.3s;
}
.service__card:hover .service__link-icon img {
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(354deg) brightness(107%) contrast(101%);
}
.service__card:hover .service__img img {
  transform: scale(1.08);
  transition: 0.3s;
}
.service__logo {
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 8px auto 48px;
}
@media screen and (max-width: 1280px) {
  .service__logo {
    height: 28px;
  }
}
@media screen and (max-width: 850px) {
  .service__logo {
    max-width: 100%;
    height: 26px;
    margin: 16px auto 32px;
  }
}
.service__img {
  width: 320px;
  height: 180px;
  border: solid 1px #E6EAED;
  border-radius: 4px;
  box-shadow: 0px 3px 14px rgba(0, 79, 200, 0.08);
  overflow: hidden;
  margin: 0 auto 40px;
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  .service__img {
    max-width: 100%;
    height: 21.7647058824vw;
  }
}
@media screen and (max-width: 590px) {
  .service__img {
    height: 190px;
  }
}
@media screen and (max-width: 450px) {
  .service__img {
    height: 42.2222222222vw;
  }
}
.service__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #10181D;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
  flex: 1;
}
.service__link {
  display: flex;
  justify-content: end;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.service__link::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: 0.3s;
}
.service__link p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #10181D;
  line-height: 2;
  flex: 1;
  text-align: right;
}
.service__link-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  margin: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.service__link-icon img {
  width: 16px;
  height: 16px;
  filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(279deg) brightness(102%) contrast(102%);
}
.service .annotation {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: inline-block;
  font-size: 12px;
  color: #0B7BEC;
  text-decoration: underline;
  margin: 0 4px;
  transform: translateY(-1px);
}
.service__lead .annotation {
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .slick-list {
    padding: 0;
  }
}
.slick-slide {
  margin: 0 32px;
}
@media screen and (max-width: 1280px) {
  .slick-slide {
    margin: 0 16px;
  }
}
@media screen and (max-width: 850px) {
  .slick-slide {
    margin: 0 10px;
  }
}
.slick-arrow {
  width: 56px;
  height: 56px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
.slick-arrow:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width: 450px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.slick-arrow.prev-arrow {
  left: 50%;
  transform: translateX(-216px);
}
@media screen and (max-width: 850px) {
  .slick-arrow.prev-arrow {
    transform: translateX(-180px);
  }
}
@media screen and (max-width: 450px) {
  .slick-arrow.prev-arrow {
    transform: inherit;
    left: 0;
  }
}
.slick-arrow.next-arrow {
  right: 50%;
  transform: translateX(216px);
}
@media screen and (max-width: 850px) {
  .slick-arrow.next-arrow {
    transform: translateX(180px);
  }
}
@media screen and (max-width: 450px) {
  .slick-arrow.next-arrow {
    transform: inherit;
    right: 0;
  }
}
.slick-dotted.slick-slider {
  margin: 0;
  padding-bottom: 112px;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .slick-dotted.slick-slider {
    padding-bottom: 72px;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  bottom: 0;
}
@media screen and (max-width: 450px) {
  .slick-dots {
    height: 40px;
  }
}
.slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li button:hover::before {
  background: rgba(255, 255, 255, 0.4);
}
.slick-dots li button::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
.slick-dots li.slick-active button::before {
  background: #fff;
}

.about {
  padding: 120px 0;
  background-color: #fff;
  margin-bottom: 120px;
}
@media screen and (max-width: 850px) {
  .about {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 450px) {
  .about {
    padding: 64px 0;
    margin-bottom: 56px;
  }
}
.about__title {
  margin-bottom: 84px;
}
@media screen and (max-width: 850px) {
  .about__title {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 450px) {
  .about__title {
    padding: 0 20px;
    margin-bottom: 32px;
  }
}
.about__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #0B7BEC;
  padding-left: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 850px) {
  .about__title h2 {
    font-size: max(4.7058823529vw, 24px);
  }
}
@media screen and (max-width: 450px) {
  .about__title h2 {
    font-size: 24px;
    padding-left: 26px;
  }
}
.about__title h2::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/tpl/title_shape1.png");
  background-size: contain;
  position: absolute;
  top: 23px;
  left: 0px;
}
@media screen and (max-width: 850px) {
  .about__title h2::before {
    top: max(2.7058823529vw, 12px);
  }
}
@media screen and (max-width: 450px) {
  .about__title h2::before {
    width: 14px;
    height: 14px;
    top: 12px;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 850px) {
  .about__wrapper {
    row-gap: 32px;
  }
}
@media screen and (max-width: 450px) {
  .about__wrapper {
    row-gap: 16px;
  }
}
.about__links {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 850px) {
  .about__links {
    flex-direction: column;
    row-gap: 32px;
  }
}
@media screen and (max-width: 450px) {
  .about__links {
    padding: 0 20px;
    row-gap: 16px;
  }
}
.about__link {
  flex: 1;
  height: 326px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .about__link {
    height: 286px;
  }
}
@media screen and (max-width: 850px) {
  .about__link {
    width: 100%;
    height: max(35.2941176471vw, 200px);
  }
}
@media screen and (max-width: 450px) {
  .about__link {
    height: 138px;
  }
}
.about__link a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.about__link a:hover .about__link-img img {
  transform: scale(1.04);
  transition: 0.3s;
  transition-delay: 0.1s;
}
.about__link-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}
.about__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.3s;
}
.about__link-text {
  padding-left: 56px;
}
@media screen and (max-width: 1280px) {
  .about__link-text {
    padding-left: 32px;
  }
}
@media screen and (max-width: 850px) {
  .about__link-text {
    padding: 48px 32px;
  }
}
@media screen and (max-width: 450px) {
  .about__link-text {
    padding: 36px 24px;
  }
}
.about__link-text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .about__link-text h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 450px) {
  .about__link-text h3 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-left: 26px;
  }
}
.about__link-text h3::before {
  content: "";
  width: 6px;
  height: 30px;
  border-radius: 20px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 850px) {
  .about__link-text h3::before {
    height: 26px;
    top: 5px;
  }
}
@media screen and (max-width: 450px) {
  .about__link-text h3::before {
    height: 24px;
    top: 3px;
  }
}
.about__link-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 450px) {
  .about__link-text p {
    font-size: 14px;
  }
}

.other {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 850px) {
  .other {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 450px) {
  .other {
    margin-bottom: 56px;
  }
}
.other__img {
  position: absolute;
  z-index: -1;
  width: 70vw;
  height: 418px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 740px) {
  .other__img {
    height: 380px;
  }
}
@media screen and (max-width: 740px) {
  .other__img {
    position: relative;
    height: 280px;
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 450px) {
  .other__img {
    height: 210px;
    width: calc(100% - 60px);
  }
}
.other__wrapper {
  width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (max-width: 1280px) {
  .other__wrapper {
    width: 100%;
    padding: 80px 40px 0;
  }
}
@media screen and (max-width: 740px) {
  .other__wrapper {
    padding: 0 40px;
  }
}
@media screen and (max-width: 450px) {
  .other__wrapper {
    padding: 0 20px;
  }
}
.other__text {
  width: 468px;
  height: 418px;
  padding: 80px 64px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 3px 14px rgba(0, 79, 200, 0.0784313725);
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 850px) {
  .other__text {
    height: 380px;
    padding: 64px 48px;
  }
}
@media screen and (max-width: 740px) {
  .other__text {
    width: 100%;
    height: auto;
    padding: 48px;
    row-gap: 32px;
  }
}
@media screen and (max-width: 450px) {
  .other__text {
    padding: 32px 32px 40px;
    row-gap: 28px;
  }
}
.other__text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0B7BEC;
  font-size: 28px;
}
@media screen and (max-width: 850px) {
  .other__text h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 450px) {
  .other__text h3 {
    font-size: 18px;
  }
}
.other__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #10181D;
  line-height: 1.8;
}
@media screen and (max-width: 450px) {
  .other__text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .other__text .morebtn {
    margin: 0 -10px;
  }
}
.other.csr {
  margin-bottom: 80px;
}
@media screen and (max-width: 740px) {
  .other.csr {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 450px) {
  .other.csr {
    margin-bottom: 40px;
  }
}
.other.csr .other__img {
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 740px) {
  .other.csr .other__img {
    margin-right: 100px;
  }
}
@media screen and (max-width: 450px) {
  .other.csr .other__img {
    margin-right: 60px;
  }
}
.other.csr .other__text {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 740px) {
  .other.csr .other__text {
    margin-top: -80px;
  }
}
@media screen and (max-width: 450px) {
  .other.csr .other__text {
    margin-top: -40px;
  }
}
.other.recruit {
  margin-bottom: 120px;
}
@media screen and (max-width: 740px) {
  .other.recruit {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 450px) {
  .other.recruit {
    margin-bottom: 56px;
  }
}
.other.recruit .other__img {
  border-radius: 8px 0 0 8px;
  right: 0;
}
@media screen and (max-width: 740px) {
  .other.recruit .other__img {
    margin-left: 100px;
  }
}
@media screen and (max-width: 450px) {
  .other.recruit .other__img {
    margin-left: 60px;
  }
}
.other.recruit .other__text {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 740px) {
  .other.recruit .other__text {
    margin-top: -80px;
  }
}
@media screen and (max-width: 450px) {
  .other.recruit .other__text {
    margin-top: -40px;
  }
}

.banner {
  padding: 120px 0;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
}
@media screen and (max-width: 850px) {
  .banner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 450px) {
  .banner {
    padding: 56px 0;
  }
}
.banner__wrapper {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1280px) {
  .banner__wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 850px) {
  .banner__wrapper {
    flex-direction: column;
    row-gap: 32px;
  }
}
@media screen and (max-width: 450px) {
  .banner__wrapper {
    padding: 0 20px;
  }
}
.banner a {
  flex: 1;
  border-radius: 8px;
  border: solid 1px rgba(11, 123, 236, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 850px) {
  .banner a {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}
.banner a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.banner a:hover img {
  opacity: 0.8;
  transform: scale(1.03);
  transition: 0.3s;
}

.service__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #526471;
  background: #fff;
  padding: 28px 40px;
  text-align: justify;
  line-height: 1.8;
  scroll-margin-top: 128px;
}
@media screen and (max-width: 850px) {
  .service__note {
    padding-left: 24px;
  }
}
@media screen and (max-width: 450px) {
  .service__note {
    padding: 20px;
    scroll-margin-top: 84px;
  }
}
.service__note-wrapper {
  width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
}
@media screen and (max-width: 1280px) {
  .service__note-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .service__note-wrapper {
    padding-left: 20px;
  }
}
.service__note-item {
  display: inline-block;
  text-indent: -20px;
}
.service__note a {
  display: inline;
  color: #526471;
  text-decoration: underline;
}

.js-none {
  visibility: hidden;
  position: absolute;
}/*# sourceMappingURL=style.css.map */