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

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

body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.heading2 {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .heading2 {
    -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;
    margin-left: 0;
  }
}
.heading2__main {
  display: block;
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
}
.heading2__sub {
  display: block;
  color: #228bde;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.66px;
  margin-top: 1px;
}
.heading1 {
  color: #238fdc;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 170%; /* 51px */
  letter-spacing: 3px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .heading1 {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.heading1::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 60px;
  height: 3px;
  background: #2bc8c8;
}
@media screen and (min-width: 768px) {
  .heading1::after {
    bottom: -2px;
  }
}

.button a {
  padding: 9px 54px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
  font-weight: 700;
  letter-spacing: 3px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.button a:hover {
  opacity: 0.7;
}

.button--clear a {
  padding: 6px 51px;
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid #f6f7f7;
  color: #f6f7f7;
  -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);
  letter-spacing: 3px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button--clear a:hover {
  color: #2392db;
  background-color: #fff;
}

.button--square {
  text-align: center;
}
.button--square a {
  color: #2392db;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 2px;
  border: 1px #2392db solid;
  display: inline-block;
  padding: 4px 23px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button--square a:hover {
  background-color: #2392db;
  color: #fff;
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.header {
  background: #eaf4f7;
  height: 80px;
}
.header__content {
  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;
}
.header__logo {
  padding-top: 24px;
  padding-bottom: 24px;
}
.header__logo-img {
  width: 160px;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.header__nav-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
}
.header__nav-item a {
  padding: 26px 22px;
}
.header__nav-item a:hover {
  border-bottom: 5px solid #2082df;
  padding-top: 20px;
}
.header__nav-link {
  font-weight: 500;
}
.header__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__button {
    display: block;
    margin-left: 22px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__button {
    display: none;
  }
}
.drawer-icon {
  width: 40px;
  height: 20px;
  position: relative;
  z-index: 51;
}
.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #2082e0;
  border-radius: 6px;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 10%;
  color: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: #fff;
  top: 10%;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-menu {
  padding-top: 130px;
  padding-bottom: 348px;
  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%);
  width: 100vw;
  height: 100vh;
  text-align: center;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 50;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.drawer-menu.no-transition {
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    display: block;
  }
}
.drawer-menu.is-checked {
  right: 0;
}
.drawer-menu__image img {
  width: 180px;
}
.drawer-menu__list {
  margin-top: 60px;
  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;
}
.drawer-menu__link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.fv {
  padding-top: 100px;
  padding-bottom: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#fff));
  background: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
}
.fv__content {
  margin-left: 40px;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .fv__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fv__image {
  text-align: center;
}
.fv__image img {
  width: 398px;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    width: 650px;
  }
}
.fv__body {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__body {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__body {
    text-align: center;
  }
}
.fv__rogo img {
  width: 250px;
}
.fv__title {
  margin-top: 20px;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
}
.fv__text {
  margin-top: 20px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .fv__text {
    margin-left: 3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__text {
    margin-left: 0;
  }
}
.fv__button {
  margin-top: 30px;
}

.news {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 990px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
.news__lists {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .news__lists {
    margin-top: 65px;
  }
}
.news__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-text-align-last: left;
       text-align-last: left;
}
.news__list:nth-of-type(1) {
  padding-top: 6px;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .news__list:nth-of-type(1) {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.news__list:nth-of-type(2) {
  border-top: 1px solid #e3e3e3;
  padding-top: 7px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .news__list:nth-of-type(2) {
    padding-top: 10px;
    padding-bottom: 12px;
  }
}
.news__list:nth-of-type(3) {
  border-top: 1px solid #e3e3e3;
  padding-top: 7px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .news__list:nth-of-type(3) {
    padding-top: 11px;
    padding-bottom: 12px;
    padding-left: 2px;
  }
}
.news__list:nth-of-type(4) {
  padding-top: 6px;
  padding-bottom: 10px;
  border-top: 1px solid #e3e3e3;
}
@media screen and (min-width: 768px) {
  .news__list:nth-of-type(4) {
    padding-top: 11px;
    padding-bottom: 12px;
    padding-left: 2px;
  }
}
.news__list:nth-of-type(5) {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  padding-top: 6px;
  padding-bottom: 9px;
}
@media screen and (min-width: 768px) {
  .news__list:nth-of-type(5) {
    padding-top: 10px;
    padding-bottom: 11px;
    padding-left: 2px;
  }
}
@media screen and (min-width: 768px) {
  .news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.news__link:hover .news__date {
  color: #2392db;
}
.news__link:hover .news__title {
  color: #2392db;
}
.news__date {
  font-size: 14px;
  width: 119px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 16px;
  }
}
.news__title {
  color: #111;
  font-size: 15px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-top: 0;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .news__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.news__page-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.25rem, -2.435rem + 14.81vw, 1.25rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .news__page-lists {
    margin-top: 25px;
  }
}
.news__page-list {
  border: 1px solid #828282;
  background: #fff;
  width: 36px;
  height: 36px;
  display: table;
}
.news__page-list a {
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.44px;
  display: table-cell;
  vertical-align: middle;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.news__page-list a:hover {
  color: #fff;
  background: #228ddd;
}
.news__page-list--arrow {
  position: relative;
}
.news__page-list--arrow a svg:nth-of-type(1) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 27.7777777778%;
}
.news__page-list--arrow a svg:nth-of-type(2) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 44.4444444444%;
}
.news__link-all {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .news__link-all {
    margin-top: 26px;
  }
}

.concept {
  background: #f4fbff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.concept__inner {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 428px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    max-width: 1040px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.concept__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: 30px;
}
@media screen and (min-width: 768px) {
  .concept__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.1632653061%;
  }
}
.concept__img {
  text-align: center;
  width: 79.8969072165%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .concept__img {
    width: 45.9183673469%;
  }
}
.concept__img img {
  width: 310px;
}
@media screen and (min-width: 768px) {
  .concept__img img {
    width: 450px;
  }
}
.concept__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.concept__heading {
  color: #228ddd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .concept__heading {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__heading {
    font-size: 24px;
  }
}
.concept__text {
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
.concept__button-wrapper {
  margin-top: 30px;
  text-align: center;
  letter-spacing: 3px;
}
@media screen and (min-width: 768px) {
  .concept__button-wrapper {
    text-align: left;
    margin-top: 35px;
    margin-left: 0;
  }
}
.concept__button {
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.case-study {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .case-study {
    padding-top: 100px;
  }
}
.case-study__inner {
  padding-left: 12px;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .case-study__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1026px;
    margin-left: auto;
    margin-right: auto;
  }
}
.case-study__heading {
  margin-left: 18px;
}
.case-study__slider {
  margin-top: 50px;
}
.case-study__swiper {
  padding-bottom: 42px;
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .case-study__swiper {
    padding-left: 0;
  }
}
.case-study__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .case-study__pagination {
    display: none;
  }
}
.case-study__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.case-study__prev, .case-study__next {
  width: 44px;
  height: 44px;
}
.case-study__prev::after, .case-study__next::after {
  display: none;
}
.case-study__prev {
  background: url(../img/arrow-prev.png) no-repeat center center/contain;
  left: 0;
}
.case-study__next {
  background: url(../img/arrow-next.png) no-repeat center center/contain;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .case-study__next {
    right: 0;
  }
}
.case-study__button {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .case-study__button {
    margin-top: 20px;
  }
}
.case-study-card {
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  display: block;
}
.case-study-card__body {
  padding-left: 10px;
  padding-bottom: 14px;
}
.case-study-card__head {
  color: #228ddd;
  font-size: clamp(0.813rem, 0.442rem + 1.85vw, 0.938rem);
  font-weight: 700;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .case-study-card__head {
    font-size: clamp(0.813rem, 0.439rem + 0.78vw, 0.938rem);
  }
}
.case-study-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
}
.case-study-card__tag {
  color: #9d9d9d;
  font-size: 12px;
  margin-top: 10px;
}

.price {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f4fbff;
}
@media screen and (min-width: 768px) {
  .price {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .price__inner {
    max-width: 990px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
.price__contents {
  margin-top: 46px;
  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;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .price__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125%;
    margin-top: 40px;
    max-width: inherit;
    margin-right: 0;
    margin-left: 0;
  }
}
.price__button-wrapper {
  margin-top: 30px;
  text-align: center;
}
.price__button {
  display: inline-block;
}
.price-card {
  border-radius: 10px;
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .price-card {
    width: 31.25%;
  }
}
.price-card__title {
  color: #2392db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
}
.price-card__title-main {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.price-card__title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-card__title-sub--type1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
}
.price-card__title-sub--type2 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  padding-top: 17px;
  padding-bottom: 4px;
}
.price-card__table {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 30px;
  width: 261px;
  border-collapse: collapse;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .price-card__table {
    width: 87%;
  }
}
.price-card__table th,
.price-card__table td {
  border-bottom: 1px solid #c2c2c2;
  height: 39px;
  vertical-align: middle;
  white-space: nowrap;
}
.price-card__table th {
  padding-left: 12px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .price-card__table th {
    padding-left: 4.5977011494%;
  }
}
.price-card__table td {
  padding-right: 12px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .price-card__table td {
    padding-right: 4.5977011494%;
  }
}

.company {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .company {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .company__inner {
    max-width: 930px;
  }
}
.company__content {
  margin-top: 68px;
  border: 2px solid #2392db;
  text-align: center;
  position: relative;
  max-width: 428px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .company__content {
    max-width: inherit;
    margin-left: 0;
    margin-right: 0;
  }
}
.company__heads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 4px);
}
@media screen and (min-width: 768px) {
  .company__heads {
    top: -40px;
  }
}
.company__head {
  color: #2392db;
  font-weight: 700;
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  width: 30.6532663317%;
  height: 46px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: clamp(0.75rem, 0.009rem + 3.7vw, 1rem);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .company__head {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    width: 200px;
    height: 80px;
    padding-top: 26px;
    padding-bottom: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
}
.company__head::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 9.8360655738%;
  width: 9px;
  height: 6px;
  background: url(../img/arrow-blue.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .company__head::before {
    position: relative;
    left: 0;
    width: 12px;
    height: 8px;
  }
}
.company__head.is-show {
  color: #fff;
  background: #2392db;
}
.company__head.is-show::before {
  background: url(../img/arrow-white.png) no-repeat center center/contain;
}
.company__head + .company__head {
  border-left: 1px solid #2392db;
}
.company__body {
  display: none;
}
.company__body.is-show {
  display: block;
}

.company-outline {
  max-width: 350px;
  padding-top: 60px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  height: 510px;
}
@media screen and (min-width: 768px) {
  .company-outline {
    max-width: 860px;
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    height: 470px;
  }
}
.company-outline__title {
  font-size: 22px;
  font-weight: 700;
}
.company-outline__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .company-outline__text {
    margin-top: 17px;
  }
}
.company-outline__table {
  margin-top: 20px;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin-top: 40px;
}
.company-outline__table tr {
  height: 54px;
}
.company-outline__table th {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
}
.company-outline__table td {
  text-align: left;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .company-outline__table td {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.company-hist {
  padding-top: 44px;
  padding-left: 30px;
  text-align: left;
  height: 510px;
}
@media screen and (min-width: 768px) {
  .company-hist {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    height: 470px;
  }
}
.company-hist__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .company-hist__list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 215px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
.company-hist__date {
  position: relative;
  padding-left: 17px;
  color: #2392db;
  font-weight: 700;
  text-align: left;
}
.company-hist__date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2bcbc6;
}
.company-hist__event {
  margin-top: 2px;
  padding-left: 17px;
  color: #000;
}

.company-cert {
  padding-top: 58px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
  height: 510px;
}
@media screen and (min-width: 768px) {
  .company-cert {
    max-width: 660px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    height: 470px;
  }
}
.company-cert__title {
  color: #2392db;
  font-weight: 700;
}
.company-cert__text {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .company-cert__text {
    margin-top: 16px;
  }
}

.cta {
  padding-top: 60px;
  padding-bottom: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 80px;
    padding-bottom: 79px;
  }
}
.cta__heading {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.6px;
}
.cta__text {
  margin-top: 8px;
  color: #fff;
  letter-spacing: 1.6px;
}
.cta__button {
  margin-top: 17px;
}

.blog {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.blog__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.blog__heading {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .blog__heading {
    margin-left: 40px;
  }
}
.blog__content {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(1, minmax(84.1121495327%, 360px));
  gap: 16px 0;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 390px;
}
@media screen and (min-width: 768px) {
  .blog__content {
    grid-template-columns: repeat(3, minmax(28.125%, 360px));
    gap: 34px 20px;
    max-width: 1150px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__content {
    grid-template-columns: repeat(2, minmax(35.1219512195%, 360px));
    gap: 34px 20px;
    max-width: 770px;
  }
}
.blog__card {
  width: 100%;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  border-radius: 4px;
}
.blog__card-inner {
  margin: 12px 15px 16px;
}
.blog__card-img {
  position: relative;
}
.blog__card-img p {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  color: var(--rgb-255255255, #fff);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  width: 100px;
  height: 24px;
  background: #2392db;
  padding: 3px 32px;
}
.blog__title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
}
.blog__text {
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
}
.blog__button-wrapper {
  text-align: center;
  margin-top: 46px;
}
.blog__button {
  display: inline-block;
}
.seminar {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .seminar {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .seminar__inner {
    max-width: 1140px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
.seminar__content {
  margin-top: 46px;
  max-width: 428px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .seminar__content {
    max-width: inherit;
    margin-top: 38px;
  }
}
.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;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .seminar__cards {
    gap: 40px;
  }
}
.seminar__button-wrapper {
  margin-top: 46px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar__button-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-left: 0;
  }
}
.seminar__button {
  display: inline-block;
}
.seminar-card {
  border-radius: 6px;
  border: 0px solid #707070;
  background: #fff;
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
}
@media screen and (min-width: 768px) {
  .seminar-card {
    padding: 24px;
  }
}
@media screen and (min-width: 768px) {
  .seminar-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.seminar-card__image {
  text-align: center;
  padding-right: 12px;
  padding-left: 12px;
  margin-top: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .seminar-card__image {
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.seminar-card__image img {
  width: 324px;
}

.seminar-body {
  padding: 22px 12px 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .seminar-body {
    width: 65.6976744186%;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .seminar-body__heading {
    margin-top: 2px;
  }
}
.seminar-body__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.seminar-body__label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  background: #2392db;
  padding: 6px 12px 5px;
}
.seminar-body__date {
  text-align: right;
  font-weight: 500;
  line-height: 1.5;
}
.seminar-body__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 14px;
}
.seminar-body__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 15px;
}
.seminar-body__button {
  text-align: right;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .seminar-body__button {
    margin-top: 20px;
  }
}
.seminar-body__button a {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 7px 43px;
}

.qa {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f4fbff;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 100px;
    padding-bottom: 121px;
  }
}
.qa__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
  }
}
.qa__heading {
  color: #238fdc;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%; /* 51px */
  letter-spacing: 3.6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa__heading {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.qa__heading::after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 60px;
  height: 3px;
  background: #2bc8c8;
}
@media screen and (min-width: 768px) {
  .qa__heading::after {
    bottom: -4px;
  }
}
.qa__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    gap: 19px;
    margin-top: 48px;
  }
}
.qa-box.is-open .qa-box__head::before {
  display: none;
}
.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  border-radius: 10px;
  border: 0px solid #707070;
  position: relative;
}
.qa-box__head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18.039px;
  height: 2px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background: #2392db;
}
@media screen and (min-width: 768px) {
  .qa-box__head::before {
    width: 20px;
    right: 15px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #2392db;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    right: 14px;
  }
}
.qa-box__head-icon {
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  width: 50px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 15px 13px 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    padding: 10px 25px 15px 25px;
    width: 8.875%;
  }
}
.qa-box__head-text {
  padding: 10px 43px 10px 10px;
  font-size: 15px;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 16px;
    padding: 12px 55px 12px 14px;
  }
}
.qa-box__body {
  display: none;
  margin-top: 14px;
  margin-left: 20px;
  border-radius: 10px;
  background: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    margin-top: 6px;
    margin-left: 41px;
  }
}
.qa-box__text {
  font-size: 14px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .qa-box__text {
    padding: 12px 14px;
    font-size: 16px;
  }
}

.footer {
  padding-top: 46px;
  padding-bottom: 11px;
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
    text-align: left;
  }
}
.footer__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1122px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    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;
  }
}
.footer__logo img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .footer__left {
    margin-top: 4px;
  }
}
@media screen and (min-width: 768px) {
  .footer__right {
    margin-left: 9px;
    margin-right: 9.453125%;
  }
}
.footer__contact {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.footer__contact :nth-child(2) {
  line-height: 1.4285714286;
}
.footer__contact :nth-child(3) {
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .footer__contact {
    margin-top: 17px;
  }
}
.footer__contact-item {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__contact-item {
    border-collapse: collapse;
  }
}
.footer__list {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer__list :nth-child(1) {
  margin-left: -8px;
}
.footer__list :nth-child(2) {
  margin-left: -1px;
}
.footer__list :nth-child(3) {
  margin-left: -8px;
}
@media screen and (min-width: 768px) {
  .footer__list {
    margin-top: 1px;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    text-align: center;
  }
  .footer__list :nth-child(1) {
    margin-left: 0;
  }
  .footer__list :nth-child(2) {
    margin-left: 0;
  }
  .footer__list :nth-child(3) {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__list {
    margin-top: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer__list :nth-child(1) {
    margin-left: -8px;
  }
  .footer__list :nth-child(2) {
    margin-left: -1px;
  }
  .footer__list :nth-child(3) {
    margin-left: -8px;
  }
}
.footer__list-item {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__list-item {
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
  }
  .footer__list-item::before {
    content: "";
    display: block;
    height: 16px;
    width: 0;
    border-right: 1px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .footer__list-item:first-of-type::before {
    content: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__list-item {
    padding: 0;
  }
  .footer__list-item::before {
    display: none;
  }
}
.footer__list-link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__list-link:hover {
  opacity: 0.7;
}
.footer__sns {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 0;
  }
}
.footer__sns-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__sns-item img {
  width: 30px;
  height: 30px;
}
.footer__sns-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__sns-link:hover {
  opacity: 0.7;
}
.footer__copyright {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    text-align: center;
    margin-top: 65px;
  }
}
.footer__copyright-text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4166666667;
}