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

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

.heading {
  text-align: left;
  color: #228bde;
}
@media screen and (min-width:429px) {
  .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
}

.heading__en {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
}

.heading__jp {
  font-size: 14px;
  letter-spacing: 2.66px;
}

.button {
  color: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3px;
  color: #f6f7f7;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  display: inline-block;
  padding: 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 0 rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.button:hover {
  opacity: 0.6;
}
.button--type2 {
  color: #2392db;
  padding: 5px 24px;
  border-radius: 2px;
  background: none;
  border: 1px solid #2392db;
}
.button--type3 {
  color: #2392db;
  padding: 9px 54px;
  border-radius: 2px;
  border: 1px solid #2392db;
  background: none;
  -webkit-box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.16);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 15px;
}
@media screen and (min-width:429px) {
  .header__inner {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo a img {
  width: 160px;
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width:429px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 44px;
  }
}

.header__link {
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__link:hover {
  opacity: 0.6;
}

@media screen and (min-width:429px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 40px;
  height: 20px;
  position: relative;
  z-index: 51;
  background-repeat: no-repeat;
  background-position: center;
}
.drawer-icon.is-checked {
  background-image: url(../img/close.png);
  background-size: 28px 28px;
  width: 40px;
  height: 40px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  stroke-width: 3px;
  stroke: #2082e0;
  border: 3px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  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%);
  z-index: 50;
  padding-top: 130px;
  padding-bottom: 130px;
  text-align: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__img {
  margin-bottom: 60px;
}
.drawer-content__img img {
  width: 180px;
}

.drawer-content__menu {
  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-content__link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.mv {
  padding-top: 20px;
  margin-bottom: 80px;
}
@media screen and (min-width:429px) {
  .mv {
    margin-bottom: 0;
  }
}

@media screen and (min-width:429px) {
  .mv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__image {
  text-align: center;
}
.mv__image img {
  width: 398px;
}
@media screen and (min-width:429px) {
  .mv__image {
    display: none;
  }
}
.mv__image--pc {
  display: none;
}
@media screen and (min-width:429px) {
  .mv__image--pc {
    display: block;
    margin-top: 11px;
    margin-left: auto;
    width: 58.0357142857%;
  }
}
@media screen and (min-width:429px) {
  .mv__image--pc img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50.12px;
  }
}

.mv__content {
  min-width: 365px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width:429px) {
  .mv__content {
    margin-top: 0;
    padding-top: 74px;
    padding-bottom: 115px;
    text-align: left;
    width: 368px;
  }
}

.mv__logo {
  margin-bottom: 20px;
}
@media screen and (min-width:429px) {
  .mv__logo {
    margin-bottom: 24px;
  }
}
.mv__logo img {
  width: 250px;
}

.mv__lead {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
}
@media screen and (min-width:429px) {
  .mv__lead {
    font-size: 26px;
  }
}

.mv__description {
  line-height: 200%;
  margin-top: 20px;
}

.mv__button {
  margin-top: 30px;
  font-weight: 700;
}

.news {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width:429px) {
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.news__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width:429px) {
  .news__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news__title {
  text-align: center;
}

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

.news__lists {
  margin-top: 55px;
}

.news__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: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
@media screen and (min-width:429px) {
  .news__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

@media screen and (min-width:429px) {
  .news-link__meta {
    width: 151px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.news-link__date {
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (min-width:429px) {
  .news-link__date {
    font-size: 16px;
  }
}

.news-link__title {
  font-size: 15px;
}
@media screen and (min-width:429px) {
  .news-link__title {
    font-size: 16px;
  }
}

.news__page {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width:429px) {
  .news__page {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news__page img {
  width: 36px;
  height: 36px;
}

.news__page-number {
  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: 36px;
  height: 36px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.44px;
  border: 1px solid var(--828282, #828282);
  background: var(--ffffff, #fff);
}
.news__page-number--one {
  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: 36px;
  height: 36px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.44px;
  background: #228ddd;
}

.news__link {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width:429px) {
  .news__link {
    text-align: right;
    margin-top: -40px;
  }
}
.concept {
  background: #f4fbff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width:429px) {
  .concept {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.concept__inner {
  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-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width:429px) {
  .concept__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    padding-left: 150px;
    padding-right: 150px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept__img {
  text-align: center;
}
.concept__img img {
  width: 310px;
}
@media screen and (min-width:429px) {
  .concept__img img {
    width: 450px;
  }
}

@media screen and (min-width:429px) {
  .concept__content {
    width: 450px;
  }
}

.concept__title {
  color: #228ddd;
  font-size: 24px;
  font-weight: 700;
}

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

.concept__link {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width:429px) {
  .concept__link {
    margin-top: 36px;
    text-align: left;
  }
}
.case-study {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}

.case-study__title {
  margin-left: 30px;
}
@media screen and (min-width:429px) {
  .case-study__title {
    margin-left: 80px;
  }
}

.case-study__slider {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width:429px) {
  .case-study__slider {
    margin-top: 40px;
    max-width: 1120px;
    padding-inline: 62px;
    margin-inline: auto;
  }
}

.case-study__swiper {
  padding-bottom: 42px;
  padding-left: 18px;
}
@media screen and (min-width:429px) {
  .case-study__swiper {
    padding-bottom: 52px;
  }
}

.case-study-card {
  border-radius: 4px;
  background: var(--ffffff, #fff);
}

.case-study-card__image {
  text-align: center;
}
.case-study-card__text {
  padding-left: 10px;
  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;
  -webkit-box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.16);
  border-radius: 0 0 4px 4px;
}

.case-study-card__title {
  margin-top: 14px;
  color: #228ddd;
  font-size: 15px;
  font-weight: 700;
}

.case-study-card__client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.case-study-card__company {
  font-size: 12px;
  font-weight: 700;
}

.case-study-card__author {
  font-size: 12px;
  font-weight: 700;
}

.case-study-card__industry {
  color: #9d9d9d;
  font-size: 12px;
}

.case-study__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.case-study__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #e1e1e1;
  opacity: 1;
}
.case-study__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2f7dc8;
}

.case-study__prev,
.case-study__next {
  width: 44px;
  height: 44px;
}
.case-study__prev .swiper-navigation-icon,
.case-study__next .swiper-navigation-icon {
  display: none;
}

.case-study__prev {
  background: url(../img/prev.png) no-repeat center center/contain;
}
.case-study__prev.swiper-button-prev {
  left: 12px;
}
@media screen and (min-width:429px) {
  .case-study__prev.swiper-button-prev {
    left: 0;
  }
}
.case-study__prev.swiper-button-disabled {
  opacity: 1;
}

.case-study__next {
  background: url(../img/next.png) no-repeat center center/contain;
}
.case-study__next.swiper-button-next {
  right: 10px;
}
@media screen and (min-width:429px) {
  .case-study__next.swiper-button-next {
    right: 0;
  }
}

.case-study__link {
  text-align: center;
  margin-top: 30px;
}

.price {
  background: #f4fbff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width:429px) {
  .price {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.price__title {
  padding-left: 30px;
}
@media screen and (min-width:429px) {
  .price__title {
    padding-left: 161px;
  }
}

.price__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: 30px;
  margin-top: 46px;
  padding-left: 64px;
  padding-right: 64px;
}
@media screen and (min-width:429px) {
  .price__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price__box {
  border-radius: 10px;
  border: 0 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px 30px 19px;
}

.price__card {
  text-align: center;
  color: #2392db;
}

.price__plan {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.price-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 10px;
}

.price__number {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
  text-align: center;
}

.price-unit {
  color: var(--rgb-515151, #333);
  font-weight: 700;
}

.price__table {
  border-collapse: collapse;
  margin-top: 30px;
  table-layout: fixed;
  width: 261px;
}
.price__table th,
.price__table td {
  height: 39px;
  padding: 6px 12px;
  vertical-align: middle;
}
.price__table th {
  text-align: left;
}
.price__table td {
  text-align: right;
}
.price__table tbody tr {
  border-bottom: 1px solid #c2c2c2;
}

.price__button {
  margin-top: 30px;
}

.company {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width:429px) {
  .company {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.company__title {
  margin-left: 30px;
}
@media screen and (min-width:429px) {
  .company__title {
    margin-left: 190px;
  }
}

.company__tab-bg {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 68px;
}

.company__tabs-nav {
  border: 2px solid #2392db;
  background: #fff;
  position: relative;
}
@media screen and (min-width:429px) {
  .company__tabs-nav {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.company__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -22px;
  left: 16px;
}
@media screen and (min-width:429px) {
  .company__tabs {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -40px;
  }
}

.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}

.company__tab {
  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;
  width: 122px;
  height: 46px;
  font-weight: 700;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #2392db;
  background: #fff url(../img/Vector_b.png) no-repeat;
  background-size: 8px 5px;
  background-position: 12px center;
  border-right: 1px solid #2392db;
}
@media screen and (min-width:429px) {
  .company__tab {
    width: 200px;
    height: 80px;
  }
}
.company__tab.is-active {
  color: #fff;
  background-color: #2392db;
  background-image: url(../img/Vector_w.png);
  border-right: none;
}
.company__tab:last-child {
  border-right: none;
}

.company__info {
  margin-top: 60px;
  margin-bottom: 50px;
}
@media screen and (min-width:429px) {
  .company__info {
    margin-top: 90px;
    margin-bottom: 97px;
  }
}

.company__info-header {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width:429px) {
  .company__info-header {
    margin-bottom: 40px;
  }
}

.company__info-title {
  font-size: 22px;
  font-weight: 700;
}

.company__info-text {
  margin-top: 20px;
}

.company__table {
  max-width: 320px;
  height: 296px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:429px) {
  .company__table {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
  }
  .company__table tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
  .company__table tr:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .company__table tr:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .company__table tr:nth-child(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: 100%;
  }
  .company__table tr:nth-child(3) td {
    padding: 20px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 600px;
  }
  .company__table tr:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .company__table tr:nth-child(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.company__table th,
.company__table td {
  border: 1px solid #dbdbdb;
  width: 160px;
  vertical-align: middle;
}
@media screen and (min-width:429px) {
  .company__table th,
  .company__table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    width: auto;
  }
}
.company__table th {
  font-weight: 700;
  background: #f2f2f2;
  text-align: center;
}
@media screen and (min-width:429px) {
  .company__table th {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.company__table td {
  padding-left: 10px;
}
@media screen and (min-width:429px) {
  .company__table td {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 24px;
    width: 200px;
  }
}

.company__history {
  margin-top: 44px;
  margin-bottom: 122px;
}
@media screen and (min-width:429px) {
  .company__history {
    margin-top: 80px;
    margin-bottom: 46px;
    max-width: 185px;
    margin-left: auto;
    margin-right: auto;
  }
}

.company__history-item + .company__history-item {
  margin-top: 16px;
}

.company__history-date {
  color: #2392db;
  font-weight: 700;
  background: #fff url(../img/Ellipse.png) no-repeat;
  background-size: 9px 9px;
  background-position: left center;
  padding-left: 17px;
  margin-left: 30px;
}
@media screen and (min-width:429px) {
  .company__history-date {
    margin-left: 0;
  }
}

.company__history-text {
  color: #000;
  margin-top: 2px;
  margin-left: 47px;
}
@media screen and (min-width:429px) {
  .company__history-text {
    margin-left: 0;
    padding-left: 17px;
  }
}

.company__certification {
  margin-top: 58px;
  margin-bottom: 168px;
}
@media screen and (min-width:429px) {
  .company__certification {
    margin-top: 80px;
    margin-bottom: 212px;
  }
}

.company__certification-heading {
  color: #2392db;
  font-weight: 700;
  margin-left: 30px;
}
@media screen and (min-width:429px) {
  .company__certification-heading {
    margin-left: 150px;
  }
}

.company__certification-text {
  margin-top: 14px;
  max-width: 338px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:429px) {
  .company__certification-text {
    margin-top: 16px;
    max-width: 600px;
  }
}

/* フェードアニメーション */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-panel {
  -webkit-animation: fadeIn 0.8s ease;
          animation: fadeIn 0.8s ease;
}

.cta {
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
@media screen and (min-width:429px) {
  .cta {
    margin-top: 80px;
    margin-bottom: 79px;
  }
}

.cta__inner {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width:429px) {
  .cta__inner {
    max-width: 428px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta__title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.6px;
}

.cta__text {
  color: #fff;
  letter-spacing: 1.6px;
  margin-top: 8px;
}

.cta__button {
  margin-top: 17px;
}

.cta-button {
  color: #f6f7f7;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 7px 52px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cta-button:hover {
  opacity: 0.6;
}

.blog {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width:429px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width:429px) and (max-width:834px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.blog__inner {
  padding-left: 30px;
  padding-right: 38px;
}
@media screen and (min-width:429px) {
  .blog__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (min-width:429px) and (max-width:834px) {
  .blog__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width:429px) and (max-width:834px) {
  .blog__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
    padding-left: 80px;
  }
}

.blog__contents {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (min-width:429px) {
  .blog__contents {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 20px;
  }
}
@media screen and (min-width:429px) and (max-width:834px) {
  .blog__contents {
    padding-left: 47px;
    padding-right: 47px;
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}

.blog__items {
  padding: 12px 15px 16px 15px;
  border-radius: 4px;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0 #f1f1f1;
          box-shadow: 5px 7px 34px 0 #f1f1f1;
}
@media screen and (min-width:429px) {
  .blog__items {
    text-align: left;
  }
}
@media screen and (min-width:429px) and (max-width:834px) {
  .blog__items {
    text-align: left;
  }
}

.blog__item {
  text-align: center;
}

.blog__img-wrapper {
  position: relative;
  display: block;
}
.blog__label {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 24px;
  padding: 3px 32px;
  color: var(--rgb-255255255, #fff);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  background: #2392db;
}

.blog__content-title {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
}

.blog__content-text {
  margin-top: 4px;
  font-size: 13px;
}

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

.seminar {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width:429px) {
  .seminar {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width:429px) {
  .seminar__inner {
    padding-left: 100px;
    padding-right: 100px;
  }
}

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

.seminar__boxes {
  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: 36px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width:429px) {
  .seminar__boxes {
    margin-top: 38px;
    gap: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}

.seminar__box {
  border-radius: 6px;
  border: 0 solid #707070;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0 #f1f1f1;
          box-shadow: 5px 7px 34px 0 #f1f1f1;
  padding: 24px 12px 30px;
}
@media screen and (min-width:429px) {
  .seminar__box {
    padding: 24px;
  }
}

@media screen and (min-width:429px) {
  .seminar-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1032px;
    margin-left: auto;
    margin-right: auto;
  }
}

.seminar-box__image {
  text-align: center;
}
@media screen and (min-width:429px) {
  .seminar-box__image {
    width: 31.3953488372%;
  }
}
.seminar-box__image img {
  width: 324px;
}

.seminar-box__body {
  margin-top: 22px;
}
@media screen and (min-width:429px) {
  .seminar-box__body {
    margin-top: 0;
    padding-top: 2px;
    width: 65.6976744186%;
  }
}

.seminar-box__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.seminar-box__label {
  padding: 6px 12px 5px;
  color: var(--rgb-255255255, #fff);
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 2px;
  background: #2392db;
}

.seminar-box__date {
  color: var(--rgb-515151, #333);
  text-align: right;
  font-weight: 500;
  line-height: normal;
}

.seminar-box__title {
  margin-top: 14px;
  color: var(--rgb-515151, #333);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.seminar-box__text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

.seminar-box__button {
  margin-top: 22px;
  text-align: right;
}

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

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

@media screen and (min-width:429px) {
  .qa__inner {
    max-width: 860px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa__title {
  text-align: center;
}

.qa__title--en {
  position: relative;
  color: #238fdc;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
}
.qa__title--en::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #2bc8c8;
}

.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: 51px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width:429px) {
  .qa__boxes {
    margin-top: 48px;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}

.qa__box.is-open .qa-box__head::after {
  background: url(../img/faq-close.png) no-repeat center center/contain;
}

.qa-box {
  background: #f4fbff;
}
.qa-box.is-open .qa-box__body {
  height: auto;
}
.qa-box.is-open .qa-box__head::after {
  background: url(../img/faq-close.png) no-repeat center center/contain;
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 10px;
  border: 0 solid #707070;
  background: var(--rgb-255255255, #fff);
  text-align: left;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/faq-open.png) no-repeat center center/contain;
}
@media screen and (min-width:429px) {
  .qa-box__head::after {
    right: 14px;
  }
}

.qa-box__head-icon {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: grid;
  place-items: center;
  width: 50px;
  line-height: 100%;
  border-radius: 10px 0 0 10px;
  background: #238fdc;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.qa-box__head-text {
  display: block;
  color: #333;
  font-size: 15px;
  padding: 10px 43px 10px 10px;
}
@media screen and (min-width:429px) {
  .qa-box__head-text {
    font-size: 16px;
    padding: 10px 55px 10px 14px;
  }
}

.qa-box__body {
  margin-top: 12px;
  margin-left: 20px;
  display: block;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media screen and (min-width:429px) {
  .qa-box__body {
    margin-left: 41px;
  }
}

.qa-box__a {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width:429px) {
  .qa-box__a {
    padding: 12px 14px;
  }
}

.qa-box__a-text {
  display: block;
  font-size: 14px;
  width: 358px;
}
@media screen and (min-width:429px) {
  .qa-box__a-text {
    width: 100%;
    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;
  padding-bottom: 11px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media screen and (min-width:429px) {
  .footer {
    padding-top: 64px;
    width: 100%;
  }
}

@media screen and (min-width:429px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 981px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__access {
  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:429px) {
  .footer__access {
    text-align: left;
  }
}

.footer__img img {
  width: 160px;
}

.footer__address {
  color: var(--ffffff, #fff);
  font-size: 14px;
  font-style: normal;
  margin-top: 24px;
}
@media screen and (min-width:429px) {
  .footer__address {
    margin-top: 16px;
  }
}

.footer__TEL {
  color: var(--ffffff, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-top: 4px;
}

.footer__FAX {
  color: var(--ffffff, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-top: 4px;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 36px;
}
@media screen and (min-width:429px) {
  .footer__menu {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    margin-left: 78px;
    height: 24px;
  }
}

.footer__link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 0.6;
}
@media screen and (min-width:429px) {
  .footer__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__link + .footer__link {
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #fff;
    height: 16px;
  }
}

.footer__sns {
  margin-top: 36px;
}
@media screen and (min-width:429px) {
  .footer__sns {
    margin-top: 0;
    margin-left: 87px;
  }
}

.footer__sns-img {
  width: 122px;
}

.footer__copyright {
  margin-top: 36px;
  padding-top: 11px;
}

.footer-copyright {
  color: var(--ffffff, #fff);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}