@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#fff));
  background: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
}

button {
  padding: 0;
  border: none;
  background: none;
  display: inline-block;
  cursor: pointer;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 200px;
  max-width: 100%;
  height: 45px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-gradation {
  padding: 9px 51px 9px 54px;
  border-radius: 48px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.75%, #2188de), color-stop(97.75%, #2bcbc6));
  background: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  color: #f6f7f7;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  width: auto;
  height: 100%;
}

.button-square {
  color: #2392db;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  display: inline-block;
  padding: 4px 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  border: 1px solid #2392db;
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 414px) {
  .hidden-sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}

.visible-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .visible-md {
    display: inline !important;
  }
}

.visible-lg {
  display: none;
}
@media screen and (min-width: 992px) {
  .visible-lg {
    display: inline !important;
  }
}

.section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .section__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 28px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section__title {
  color: #238fdc;
  font-family: "Montserrat", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
}

.section__subtitle {
  color: #228ddd;
  letter-spacing: 2.66px;
  padding-top: 3px;
}
@media screen and (min-width: 992px) {
  .section__subtitle {
    padding-top: 0;
  }
}

.header {
  height: 80px;
  position: sticky;
  top: 0;
  background: #eaf4f7;
  z-index: 200;
}
.header__inner {
  padding: 0 15px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .header__inner {
    padding: 0;
  }
}
@media screen and (min-width: 1400px) {
  .header__inner {
    padding-inline: 50px;
  }
}
.header__logo {
  padding-block: 24px;
}
@media screen and (min-width: 992px) {
  .header__logo {
    padding-left: 40px;
  }
}
.header__icon {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 40px;
  height: auto;
}
.header__icon img {
  width: 100%;
  height: 100%;
}
.header__menu {
  position: fixed;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 142, 221, 0.9)), to(rgba(43, 198, 201, 0.9)));
  background: linear-gradient(180deg, rgba(34, 142, 221, 0.9) 0%, rgba(43, 198, 201, 0.9) 100%);
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow-y: auto;
  -webkit-transform: translatey(-110%);
          transform: translatey(-110%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
  z-index: 1000;
}
.header__menu.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 992px) {
  .header__menu {
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    height: auto;
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__menu-close {
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 30px;
  right: 15px;
}
.header__menu-logo {
  width: 180px;
  margin: auto;
  padding-top: 130px;
}
.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding-top: 60.05px;
}
@media screen and (min-width: 992px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__list {
  text-align: center;
  padding-inline: 22px;
}
@media screen and (min-width: 992px) {
  .header__list {
    position: relative;
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .header__list::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #2082df;
    width: 0;
    height: 5px;
    bottom: 0;
    left: 0;
  }
  .header__list::after:focus, .header__list::after:hover {
    width: 100%;
  }
}
.header__link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .header__link {
    color: #333;
    font-size: 16px;
    font-weight: 500;
  }
}
.header__button {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    margin: 20px 40px 14px 22px;
  }
}

.fv__inner {
  padding: 20px 15px 80px;
}
@media screen and (min-width: 992px) {
  .fv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 30px 30px 50px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fv__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 992px) {
  .fv__image {
    width: 650px;
    height: auto;
  }
}
.fv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-top: 40px;
}
@media screen and (min-width: 992px) {
  .fv__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 0;
  }
}
.fv__logo {
  width: 250px;
  height: auto;
}
.fv__logo img {
  width: 100%;
}
.fv__title {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .fv__title {
    font-size: 26px;
    padding-top: 4px;
  }
}
.fv__text {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .fv__text {
    text-align: left;
    padding-left: 3px;
  }
}
.fv__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  margin-top: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .fv__button {
    margin-inline: 0;
  }
}

.news {
  background: #fff;
}

.news__inner {
  padding: 60px 15px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .news__inner {
    padding: 100px 30px;
  }
}

.news__title {
  color: #238fdc;
  text-align: center;
  font-family: "Montserrat", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .news__title {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.news__title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -9px;
  background: #2bc8c8;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .news__title::after {
    bottom: -6px;
  }
}

.news__contents {
  padding-top: 55px;
}
@media screen and (min-width: 992px) {
  .news__contents {
    padding-top: 65px;
  }
}

.news__content-wrap {
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .news__content-wrap {
    max-width: 930px;
  }
}

.news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #e3e3e3;
}
.news__content:first-child {
  padding-bottom: 13px;
}
@media screen and (min-width: 992px) {
  .news__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 11px;
    padding-bottom: 12px;
    gap: 30px;
  }
  .news__content:first-child {
    padding-bottom: 12px;
  }
  .news__content:last-child {
    padding-bottom: 11px;
  }
}

@media screen and (min-width: 992px) {
  .news__content-time {
    font-size: 16px;
    width: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.news__content-text {
  color: #111;
  font-size: 15px;
}
@media screen and (min-width: 992px) {
  .news__content-text {
    font-size: 16px;
  }
}

.news__bottom {
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .news__bottom {
    padding-top: 26px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 930px;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  height: 36px;
}
.news__pagination li {
  cursor: pointer;
}

.news__num {
  color: #707070;
  font-family: "Montserrat", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1.44px;
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #828282;
  background: #fff;
  text-align: center;
}
.news__num:active {
  background-color: #228ddd;
  color: #fff;
}

.news__button {
  text-align: center;
}

.concept {
  background: #f4fbff;
}

.concept__inner {
  padding: 60px 20px;
}
@media screen and (min-width: 992px) {
  .concept__inner {
    padding: 100px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.concept__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .concept__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}

.concept__image {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .concept__image img {
    width: 450px;
    height: 436px;
  }
}

@media screen and (min-width: 992px) {
  .concept__contents {
    max-width: 450px;
  }
}

.concept__title {
  color: #228ddd;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .concept__title {
    padding-top: 37px;
    font-size: 26px;
  }
}

.concept__text {
  font-size: 15px;
  line-height: 2;
  padding-top: 30px;
}

.concept__button {
  margin-top: 30px;
  padding-right: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 992px) {
  .concept__button {
    margin-top: 36px;
    justify-self: start;
  }
}

.casestudy {
  background: #fff;
}

.casestudy__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .casestudy__inner {
    padding-top: 98px;
    margin-inline: 80px;
  }
}

.casestudy__top {
  padding-left: 30px;
}
@media screen and (min-width: 992px) {
  .casestudy__top {
    padding-left: 0;
  }
}

.casestudy__wrap {
  padding-top: 50px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .casestudy__wrap {
    padding-top: 40px;
    padding-left: 0;
  }
}

.swiper {
  padding-bottom: 49px;
}
@media screen and (min-width: 992px) {
  .swiper {
    padding-bottom: 65px;
  }
}

.casestudy__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .casestudy__contents {
    padding-left: 62px;
    padding-right: 62px;
  }
}

.casestudy__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 320px;
  border-radius: 4px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.casestudy-content__image img {
  width: 100%;
}

.casestudy-content__title {
  color: #238fdc;
  font-size: 15px;
  font-weight: 700;
  padding-left: 10px;
  padding-top: 14px;
}

.casestudy-content__name {
  font-size: 12px;
  font-weight: 700;
  padding-left: 10px;
  padding-top: 12px;
}

.casestudy-content__job {
  color: #9d9d9d;
  font-size: 12px;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 14px;
}

.casestudy__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.casestudy__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-inline: 0 !important;
}

.swiper-button-prev {
  left: 12px;
}

@media screen and (min-width: 992px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 47%;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.casestudy__prev,
.casestudy__next {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.casestudy__button {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .casestudy__button {
    margin-top: 16px;
  }
}
.casestudy__button .button-square {
  padding: 8px 52px;
}

.price {
  background: #f4fbff;
}

.price__inner {
  padding: 60px 30px;
}
@media screen and (min-width: 992px) {
  .price__inner {
    padding: 100px 20px;
  }
}

.price__top {
  padding-left: 131px;
}
@media screen and (max-width: 414px) {
  .price__top {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .price__top {
    padding-left: 190px;
  }
}

.price__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 46px;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 992px) {
  .price__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 40px;
  }
}

.price__card {
  width: 300px;
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 27px 20px 30px 19px;
}

.price-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.price-card__title-plan {
  color: #2392db;
  font-size: 20px;
  font-weight: 700;
}

.price-card__title-cost {
  font-size: 16px;
  font-weight: 700;
  padding-top: 8px;
}

.price-card__title-cost-bl {
  color: #2392db;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
}

.price-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.price-card__table {
  width: 100%;
  border-collapse: collapse;
}
.price-card__table th,
.price-card__table td {
  padding: 6px 12px 5px;
  border-bottom: 1px solid #c2c2c2;
  font-size: 16px;
}
.price-card__table th {
  text-align: left;
}
.price-card__table td {
  text-align: right;
}

.price__button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.company {
  background: #fff;
}

.company__inner {
  padding-top: 58px;
  padding-bottom: 62px;
}
@media screen and (min-width: 992px) {
  .company__inner {
    padding-block: 100px;
  }
}

.company__top {
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .company__top {
    padding-left: 190px;
  }
}

.company-tabs {
  padding-inline: 15px;
  padding-top: 46px;
}
@media screen and (min-width: 992px) {
  .company-tabs {
    padding-top: 40px;
  }
}

.company-tabs__inner {
  max-width: 100%;
  width: min(398px, 100%);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 992px) {
  .company-tabs__inner {
    width: 900px;
  }
}

.company-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.company-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.company-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 100%;
}

.company-tabs__item {
  position: relative;
  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;
  width: 122px;
  height: 46px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #2392db;
  font-size: 16px;
  font-weight: 700;
}
.company-tabs__item::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: 6px;
  left: 14px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 992px) {
  .company-tabs__item::before {
    width: 12px;
    height: 8px;
    left: 58px;
  }
}
@media screen and (min-width: 992px) {
  .company-tabs__item {
    width: 200px;
    height: 80px;
    display: inline-block;
  }
}
.company-tabs__item[aria-selected=true] {
  background: #2392db;
  color: #fff;
  pointer-events: none;
}
.company-tabs__item[aria-selected=true]::before {
  background-image: url("/img/tabs-icon-white.png");
}
.company-tabs__item[aria-selected=false] {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .company-tabs__item[aria-selected=false]:hover {
    cursor: pointer;
  }
}
.company-tabs__item[aria-selected=false]::before {
  background-image: url("/img/tabs-icon-blue.png");
}

.company-tabs__contents {
  width: min(398px, 100%);
  height: 530px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 992px) {
  .company-tabs__contents {
    width: 900px;
    height: 510px;
  }
}

.company-tabs__content-wrap {
  position: absolute;
  top: 22px;
  border: 2px solid #2392db;
  width: min(398px, 100%);
  height: 530px;
}
@media screen and (min-width: 992px) {
  .company-tabs__content-wrap {
    width: 900px;
    height: 510px;
    top: 40px;
  }
}

.company-content1 {
  padding: 58px 37px 48px;
  text-align: center;
  height: 505px;
}
@media screen and (max-width: 414px) {
  .company-content1 {
    padding-inline: 10px;
  }
}
@media screen and (min-width: 992px) {
  .company-content1 {
    padding: 87px 50px 97px;
    height: 465px;
  }
}

.company-content1__heading {
  font-size: 22px;
  font-weight: 700;
}

.company-content1__text {
  font-size: 16px;
  padding-top: 18px;
}
@media screen and (min-width: 992px) {
  .company-content1__text {
    padding-top: 16px;
  }
}

.company-content1__body {
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .company-content1__body {
    padding-top: 40px;
  }
}

.company-content1__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .company-content1__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
  }
}

.company-content1__table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.company-content1__table-item h4,
.company-content1__table-item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  font-size: 16px;
  border: 1px solid #dbdbdb;
  padding-block: 13px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 992px) {
  .company-content1__table-item h4,
  .company-content1__table-item p {
    height: 54px;
  }
}
.company-content1__table-item h4 {
  text-align: center;
  background: #f2f2f2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company-content1__table-item p {
  text-align: left;
  padding-left: 10px;
}
@media screen and (min-width: 992px) {
  .company-content1__table-item p {
    padding-left: 24px;
  }
}

@media screen and (min-width: 992px) {
  .company-content1__table .one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .company-content1__table .four {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .company-content1__table .two {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .company-content1__table .five {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .company-content1__table .three {
    grid-column: span 2;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .company-content1__table .three p {
    width: 150%;
    padding-left: 20px;
  }
}
.company-content2 {
  padding-top: 42px;
  padding-left: 45px;
  height: 505px;
}
@media screen and (min-width: 992px) {
  .company-content2 {
    height: 465px;
    padding-top: 78px;
  }
}

.company-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 992px) {
  .company-lists {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 992px) {
  .company-list {
    width: 23%;
    text-align: left;
  }
}

.company-list-date {
  color: #2392db;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.company-list-date::before {
  content: "⚫︎";
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 13px;
}

.company-list-text {
  color: #000;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .company-list-text {
    padding-top: 2px;
  }
}

.company-content3 {
  padding-top: 54px;
  padding-inline: 28px;
  height: 505px;
}
@media screen and (min-width: 992px) {
  .company-content3 {
    height: 465px;
    padding-top: 78px;
    padding-inline: 148px;
  }
}

.company-content3__title {
  color: #2392db;
  font-size: 16px;
  font-weight: 700;
}

.company-content3__text {
  font-size: 16px;
  padding-top: 14px;
}
@media screen and (min-width: 992px) {
  .company-content3__text {
    padding-top: 16px;
  }
}

.center-view {
  width: 100%;
  height: 261px;
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
}
@media screen and (min-width: 992px) {
  .center-view {
    height: 300px;
  }
}

.center-view__inner {
  padding: 60px 30px;
}
@media screen and (min-width: 992px) {
  .center-view__inner {
    padding-top: 80px;
    padding-bottom: 79px;
  }
}

.center-view__content {
  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;
}

.center-view__title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-align: center;
}

.center-view__text {
  color: #fff;
  font-size: 16px;
  padding-top: 8px;
  letter-spacing: 1.6px;
  text-align: center;
}

.center-view__button {
  margin-top: 17px;
}

.cv-button-gradation {
  border-radius: 50px;
  border: 2px solid #fff;
  padding: 7px 52px 7px 52px;
}

.blog {
  background: #fff;
}

.blog__top {
  padding-top: 60px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .blog__top {
    padding-top: 100px;
    padding-left: 80px;
  }
}

.blog__inner {
  padding-top: 46px;
  padding-left: 30px;
  padding-right: 38px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    padding-top: 60px;
    padding-inline: 47px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .blog__inner {
    padding-top: 40px;
    padding-inline: 80px;
  }
}

.blog__lists {
  display: grid;
  place-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .blog__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .blog__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog__item {
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
}

.blog__item-img {
  padding-top: 12px;
  padding-inline: 15px;
  width: 100%;
  position: relative;
}
.blog__item-img::before {
  content: "ラベル";
  position: absolute;
  width: 100px;
  height: 24px;
  top: 12px;
  right: 15px;
  background-color: #2392db;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}

.blog__item-title {
  padding-top: 6px;
  padding-left: 15px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.blog__item-text {
  padding-top: 4px;
  padding-inline: 15px;
  font-size: 13px;
  padding-bottom: 16px;
}

.blog__button {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: 60px;
  }
}

.seminar {
  background: #fff;
}

.seminar__top {
  padding-top: 58px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .seminar__top {
    padding-top: 100px;
    padding-left: 100px;
  }
}
@media screen and (min-width: 1400px) {
  .seminar__top {
    padding-left: 190px;
  }
}

.seminar__inner {
  padding-top: 46px;
  padding-inline: 15px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .seminar__inner {
    padding-top: 38px;
    padding-inline: 50px;
    padding-bottom: 100px;
  }
}

.seminar__cards {
  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;
  gap: 36px;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .seminar__cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.seminar__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
  border-radius: 6px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  width: 100%;
  max-width: 600px;
  height: 631px;
}
@media screen and (max-width: 414px) {
  .seminar__card {
    height: 680px;
  }
}
@media screen and (min-width: 992px) {
  .seminar__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    max-width: 1080px;
    height: 288px;
  }
}

.seminar__image {
  padding-top: 24px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .seminar__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-left: 24px;
    padding-bottom: 24px;
  }
}

.seminar__content {
  position: relative;
  padding-inline: 12px;
}
@media screen and (min-width: 992px) {
  .seminar__content {
    padding-right: 24px;
    padding-left: 0;
  }
}

.seminar__content-date {
  padding-left: 70px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
.seminar__content-date::before {
  content: "開催日";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  background: #2392db;
  width: 60px;
  height: 24px;
  text-align: center;
  vertical-align: middle;
  padding-top: 6px;
}
@media screen and (min-width: 992px) {
  .seminar__content-date::before {
    top: 26px;
  }
}
@media screen and (min-width: 992px) {
  .seminar__content-date {
    padding-top: 24px;
  }
}

.seminar__content-title {
  font-size: 20px;
  font-weight: 700;
  padding-top: 9px;
}

.seminar__content-text {
  font-weight: 500;
  padding-top: 14px;
}

.seminar__content-button {
  position: absolute;
  margin-top: 25px;
  margin-bottom: 30px;
  width: 158px;
  height: 40px;
  right: 12px;
}
@media screen and (min-width: 992px) {
  .seminar__content-button {
    margin-top: 20px;
    right: 24px;
  }
}

.seminar-sq-button {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 43px;
  -webkit-box-shadow: none;
          box-shadow: none;
  letter-spacing: normal;
}

.seminar__button {
  margin-top: 46px;
}
@media screen and (min-width: 992px) {
  .seminar__button {
    margin-top: 40px;
  }
}

.qa {
  background: #f4fbff;
  padding-block: 60px;
}
@media screen and (min-width: 992px) {
  .qa {
    padding-top: 98px;
    padding-bottom: 121px;
  }
}

.qa__inner {
  width: min(428px, 100%);
  padding-inline: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .qa__inner {
    width: 830px;
  }
}

.qa__title {
  color: #238fdc;
  text-align: center;
  font-family: "Montserrat", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3.6px;
  position: relative;
}
.qa__title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -4px;
  background: #2bc8c8;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .qa__title::after {
    bottom: -6px;
  }
}

.qa__items {
  padding-top: 50px;
}

.qa__item {
  border-radius: 10px;
  border: 0px solid #707070;
}
.qa__item:not(:first-child) {
  margin-top: 13px;
}
@media screen and (min-width: 992px) {
  .qa__item:not(:first-child) {
    margin-top: 21px;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.qa__question {
  position: relative;
}
.qa__question::before, .qa__question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #2392db;
}
.qa__question::before {
  right: 10px;
  width: 20px;
  height: 2px;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .qa__question::before {
    right: 14px;
  }
}
.qa__question::after {
  right: 19px;
  width: 2px;
  height: 20px;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (min-width: 992px) {
  .qa__question::after {
    right: 23px;
  }
}
@media (any-hover: hover) {
  .qa__question:hover {
    cursor: pointer;
  }
}

details[open] .qa__question::after {
  rotate: 90deg;
}

.qa__question-text {
  position: relative;
  padding-inline: 60px 46px;
  padding-block: 10px;
  color: #333;
  background: #fff;
  border-radius: 10px;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 992px) {
  .qa__question-text {
    padding-inline: 85px 55px;
    padding-bottom: 12px;
    font-size: 16px;
  }
}
.qa__question-text::before {
  content: "Q";
  position: absolute;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  width: 50px;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 992px) {
  .qa__question-text::before {
    width: 71px;
  }
}

.qa__content {
  margin-top: 12px;
  margin-left: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 11px 10px;
}
@media screen and (min-width: 992px) {
  .qa__content {
    margin-top: 6px;
    margin-left: 41px;
    padding: 12px 14px;
  }
}

@media screen and (min-width: 992px) {
  .qa__answer-text {
    font-size: 16px;
  }
}

.footer {
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  padding-top: 46px;
}
@media screen and (min-width: 992px) {
  .footer {
    padding-top: 64px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 36px;
}
@media screen and (min-width: 992px) {
  .footer__inner {
    gap: 56px;
  }
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 992px) {
  .footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-left: 60px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media screen and (min-width: 1200px) {
  .footer__wrap {
    gap: 78px;
    padding-left: 109px;
  }
}
@media screen and (min-width: 1400px) {
  .footer__wrap {
    margin-inline: auto;
  }
}

.footer__company {
  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;
  gap: 24px;
}
@media screen and (min-width: 992px) {
  .footer__company {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 16px;
    padding-top: 2px;
  }
}

.footer__company-address {
  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;
  gap: 2px;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .footer__company-address {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__links {
  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;
  gap: 10px;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .footer__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 23px;
  }
}

@media screen and (min-width: 992px) {
  .footer__sns {
    padding-left: 10px;
  }
}

.footer__copyright {
  padding-block: 11px;
  font-size: 12px;
  font-weight: 500;
  margin: 0 auto;
}