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

@media screen and (min-width: 767px) and (max-width: 1100px) {
  .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 26px;
    padding-left: 33px;
  }
}
@media screen and (min-width: 1101px) {
  .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}

.title-main {
  color: #228ddd;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
}

.title-sub {
  font-size: 14px;
  color: #228bde;
  letter-spacing: 2.66px;
}

.inline-block {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

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

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -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);
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#fff));
  background: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1101px) {
  .header {
    padding-top: 17px;
    padding-bottom: 20px;
  }
}

.header__inner {
  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;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1101px) {
  .header__inner {
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 13px;
    padding-left: 14px;
  }
}

.header__logo {
  display: block;
  width: 160px;
  height: 32px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1101px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 46px;
    margin-left: 42px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-item {
  font-weight: 500;
}
.header__nav-item:hover {
  color: #238fdc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__nav-button {
  display: none;
}
.header__nav-button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1101px) {
  .header__nav-button {
    display: block;
    color: #f6f7f7;
    padding: 9px 54px;
    font-weight: 700;
    letter-spacing: 3px;
    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);
  }
}

.header__drawer-icon {
  width: 40px;
  height: 20px;
  position: relative;
  z-index: 51;
}
.header__drawer-icon.is-checked .header__drawer-icon-bar {
  background-color: #fff;
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1101px) {
  .header__drawer-icon {
    display: none;
  }
}

.header__drawer-icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 3px;
  background-color: #2082e0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__drawer-icon-bar:nth-of-type(2) {
  top: 10px;
}

.header__drawer-icon-bar:nth-of-type(3) {
  top: 20px;
}

.header__drawer {
  width: 100%;
  height: 100%;
  padding-top: 130px;
  padding-bottom: 30px;
  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%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  -webkit-transform: translateY(-100%);
          transform: translateY(-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;
}
.header__drawer.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__drawer-inner {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.header__drawer-title img {
  width: 180px;
}

.header__drawer-nav {
  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;
}

.header__drawer-nav-item {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.mv {
  margin-top: 44px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1101px) {
  .mv {
    margin-top: 22px;
    margin-bottom: 50px;
  }
}

.mv__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1101px) {
  .mv__inner {
    position: relative;
    padding-left: 56px;
    padding-right: 57px;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1101px) {
  .mv__contents {
    padding-top: 90px;
  }
}

.mv__img img {
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .mv__img img {
    width: 53.2786885246%;
    position: absolute;
    right: 52px;
    top: 25px;
  }
}

.mv__logo {
  margin-top: 40px;
}
@media screen and (min-width: 1101px) {
  .mv__logo {
    margin-top: 0;
  }
}
.mv__logo img {
  display: block;
  width: 250px;
  margin: 0 auto;
}
@media screen and (min-width: 1101px) {
  .mv__logo img {
    margin-left: 0;
    margin-right: 0;
  }
}

.mv__text-main {
  color: #2b2b2b;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (min-width: 1101px) {
  .mv__text-main {
    font-size: 26px;
    margin-top: 24px;
    text-align: left;
  }
}

.mv__text-sub {
  margin-top: 20px;
  text-align: center;
  color: #333;
  line-height: 2;
}
@media screen and (min-width: 1101px) {
  .mv__text-sub {
    text-align: left;
  }
}

.mv__button {
  margin-top: 30px;
  display: block;
  color: #f6f7f7;
  padding: 9px 54px;
  font-weight: 700;
  letter-spacing: 3px;
  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);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.mv__button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1101px) {
  .mv__button {
    margin-bottom: 115px;
    margin-right: 0;
    margin-left: 0;
  }
}

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

.news__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1101px) {
  .news__inner {
    padding-left: 175px;
    padding-right: 175px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news__title {
  color: #238fdc;
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
}
@media screen and (min-width: 1101px) {
  .news__title {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}

.news__title-bar {
  width: 60px;
  height: 3px;
  background: #2bc8c8;
  margin: 0 auto;
  margin-top: 6px;
}
@media screen and (min-width: 1101px) {
  .news__title-bar {
    margin-top: 1px;
  }
}

.news__links {
  margin-top: 46px;
}
@media screen and (min-width: 1101px) {
  .news__links {
    margin-top: 64px;
  }
}

.news__link {
  padding-top: 12px;
  padding-bottom: 8px;
  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;
}
@media screen and (min-width: 1101px) {
  .news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

.news__link {
  border-bottom: 1px solid #e3e3e3;
}

.news__link-date {
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .news__link-date {
    width: 119px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 16px;
    white-space: nowrap;
  }
}

.news__link-title {
  color: #111;
  font-size: 15px;
}
@media screen and (min-width: 1101px) {
  .news__link-title {
    font-size: 16px;
  }
}

@media screen and (min-width: 1101px) {
  .news__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news__pager-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 26px;
}

.news__pager-current-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.news__pager-current-prev img {
  height: 36px;
  width: 36px;
}

.news__pager-current-next img {
  height: 36px;
  width: 36px;
}

.news__pager-current-item {
  padding: 9px 12px;
  border: 1px solid currentColor;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 1;
  color: #707070;
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.44px;
}
.news__pager-current-item.is-checked {
  background: #228ddd;
  color: #fff;
  border-color: #228ddd;
}

.news__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2392db;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 4px 22px;
  border-radius: 2px;
  border: 1px solid currentColor;
  -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);
  margin-top: 31px;
  margin-left: auto;
  margin-right: auto;
}
.news__button:hover {
  color: #fff;
  background-color: #2392db;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 1101px) {
  .news__button {
    display: inline-block;
    margin-top: 26px;
    margin-right: 0;
  }
}

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

.concept__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.concept__contents {
  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: 1101px) {
  .concept__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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: 1101px) {
  .concept__img img {
    width: 450px;
  }
}

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

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

.concept__text {
  margin-top: 30px;
  color: #333;
  font-size: 15px;
  line-height: 200%;
}

.concept__button {
  margin-top: 30px;
  margin-left: calc((100% - 428px) / 2 + 61px);
  margin-right: calc((100% - 428px) / 2 + 90px);
}
.concept__button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1101px) {
  .concept__button {
    margin-top: 36px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }
}
.concept__button button {
  color: #f6f7f7;
  font-weight: 700;
  letter-spacing: 2.9px;
  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);
  padding: 9px 54px;
}

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

@media screen and (min-width: 1101px) {
  .casestudy__inner {
    max-width: 1056px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.casestudy__sliders {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .casestudy__sliders {
    margin-left: auto;
    margin-right: auto;
    margin-top: 38px;
  }
}

.casestudy__swiper {
  padding-bottom: 58px;
}
@media screen and (min-width: 1101px) {
  .casestudy__swiper {
    padding-bottom: 73px;
  }
}

.casestudy__swiper-slide {
  padding-left: 20px;
  max-width: 340px;
}
@media screen and (min-width: 1101px) {
  .casestudy__swiper-slide {
    padding-left: 0;
    max-width: 320px;
  }
}

.slide__card {
  padding-bottom: 14px;
  border-radius: 4px;
  background: var(--ffffff, #fff);
}

.slide__card-text-main {
  margin-top: 14px;
  margin-left: 10px;
  color: #228ddd;
  font-size: 15px;
  font-weight: 700;
}

.slide__card-text-sub {
  margin-left: 10px;
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  text-align: left;
}

.slide__card-text-office {
  font-size: 12px;
  font-weight: 700;
}

.slide__card-text-name {
  font-size: 12px;
  font-weight: 700;
}

.slide__card-text-meta {
  margin-left: 10px;
  margin-top: 10px;
  color: #9d9d9d;
  font-size: 12px;
}

.casestudy-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  margin-right: 6px !important;
  margin-left: 6px !important;
}

.casestudy-button-prev {
  height: 44px;
  width: 44px;
  background: url(../img/casestudy-prev.png) no-repeat center center/contain;
  position: absolute;
  top: 165px;
  left: 12px;
}
@media screen and (min-width: 1101px) {
  .casestudy-button-prev {
    top: 170px;
    left: -65px;
  }
}
.casestudy-button-prev::after {
  display: none;
}

.casestudy-button-next {
  height: 44px;
  width: 44px;
  background: url(../img/casestudy-next.png) no-repeat center center/contain;
  position: absolute;
  top: 165px;
  right: 12px;
}
@media screen and (min-width: 1101px) {
  .casestudy-button-next {
    top: 170px;
    right: -65px;
  }
}
.casestudy-button-next::after {
  display: none;
}

.casestudy__button {
  color: #2392db;
  letter-spacing: 3px;
  display: block;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 53px;
  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);
}
.casestudy__button:hover {
  color: #fff;
  background-color: #2392db;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 1101px) {
  .casestudy__button {
    margin-top: 8px;
  }
}

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

.price__inner {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 1101px) {
  .price__inner {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price__boxes {
  padding-top: 46px;
  padding-left: 34px;
  padding-right: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 1101px) {
  .price__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-width: 960px;
    padding-right: 0;
    padding-left: 0;
    padding-top: 40px;
    gap: 28px;
  }
}

.price__box {
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .price__box {
    overflow-x: auto;
  }
}

.price__box-title {
  text-align: center;
}
.price__box-title h2 {
  color: #2392db;
  font-size: 20px;
  font-weight: 700;
}

.price__box-price {
  margin-top: 8px;
  text-align: center;
}
.price__box-price span {
  color: #2392db;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
}

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

.price__button {
  margin-top: 30px;
  margin-left: calc((100% - 428px) / 2 + 114px);
  margin-right: calc((100% - 428px) / 2 + 110px);
}
.price__button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1101px) {
  .price__button {
    margin-top: 27px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.price__button button {
  color: #f6f7f7;
  font-weight: 700;
  letter-spacing: 2.9px;
  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);
  padding: 9px 54px;
}

.company {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1101px) {
  .company {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.company__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .company__inner {
    max-width: 960px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1101px) {
  .company__inner {
    max-width: 960px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.company__title {
  margin-left: 15px;
}
@media screen and (min-width: 1101px) {
  .company__title {
    margin-left: 0;
  }
}

.company__box {
  margin-top: 68px;
  text-align: center;
  border: 2px solid #2392db;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .company__box {
    margin-top: 80px;
    height: 470px;
  }
}

.company__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1101px) {
  .company__buttons {
    top: -40px;
  }
}

.company__button {
  width: 122px;
  color: #2392db;
  background-color: #fff;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .company__button {
    width: 200px;
    padding-top: 26px;
    padding-bottom: 27px;
    padding-left: 80px;
    padding-right: 56px;
    text-align: center;
  }
}
.company__button:nth-child(2) {
  border-right: 1px solid #2392db;
}
.company__button::before {
  content: "";
  width: 8px;
  height: 5px;
  background: url(../img/company-Vector-blue.png) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  position: absolute;
}
@media screen and (min-width: 1101px) {
  .company__button::before {
    height: 7px;
    width: 11px;
    left: 55px;
  }
}
.company__button.is-checked {
  color: #fff;
  background-color: #2392db;
}
.company__button.is-checked::before {
  background: url(../img/company-Vector-white.png) no-repeat center center/contain;
}

.company__box-content1 {
  padding-top: 58px;
  padding-bottom: 48px;
  display: none;
}
@media screen and (min-width: 1101px) {
  .company__box-content1 {
    padding-bottom: 0;
    padding-top: 87px;
  }
}
.company__box-content1.is-checked {
  display: block;
}

.box-content1__text-main {
  font-size: 22px;
  font-weight: 700;
}

.box-content1__text-sub {
  margin-top: 20px;
}
@media screen and (min-width: 1101px) {
  .box-content1__text-sub {
    margin-top: 19px;
  }
}

.box-content1__table {
  width: 320px;
  margin-top: 20px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .box-content1__table {
    display: none;
  }
}
.box-content1__table tr {
  height: 54px;
}
.box-content1__table tr:nth-child(3) {
  height: 80px;
}
.box-content1__table th {
  text-align: center;
  font-weight: 700;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
}
.box-content1__table td {
  padding-left: 10px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
}

.box-content1__table2 {
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
  margin-top: 40px;
  margin-bottom: 97px;
}
@media screen and (max-width: 767px) {
  .box-content1__table2 {
    display: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .box-content1__table2 {
    display: none;
  }
}
.box-content1__table2 tr {
  height: 54px;
}
.box-content1__table2 th {
  text-align: center;
  font-weight: 700;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
}
.box-content1__table2 td {
  padding-left: 21px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
}

.company__box-content2 {
  display: none;
}
.company__box-content2.is-checked {
  display: block;
}

.box-content2-contents {
  padding-top: 42px;
  padding-bottom: 122px;
  padding-left: 47px;
  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: 1101px) {
  .box-content2-contents {
    padding-top: 80px;
    padding-left: 375px;
    gap: 15px;
  }
}

.box-content2__text {
  text-align: left;
}

.box-content2__text-main {
  color: #2392db;
  font-weight: 700;
  position: relative;
}
.box-content2__text-main::before {
  content: "";
  width: 9px;
  height: 9px;
  background: url(../img/company-Ellipse.png) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -17px;
  position: absolute;
}

.box-content2__text-sub {
  margin-top: 2px;
}

.company__box-content3 {
  padding-top: 57px;
  padding-bottom: 168px;
  padding-left: 30px;
  padding-right: 30px;
  display: none;
}
@media screen and (min-width: 1101px) {
  .company__box-content3 {
    padding-top: 78px;
    padding-left: 150px;
    padding-right: 150px;
  }
}
.company__box-content3.is-checked {
  display: block;
}

.box-content3__text {
  text-align: left;
}

.box-content3__text-main {
  color: #2392db;
  font-weight: 700;
}

.box-content3__text-sub {
  margin-top: 14px;
}
@media screen and (min-width: 1101px) {
  .box-content3__text-sub {
    margin-top: 16px;
  }
}

.cv {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  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: 1101px) {
  .cv {
    padding-top: 80px;
    padding-bottom: 79px;
  }
}

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

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

.cv__button {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 1101px) {
  .cv__button {
    margin-top: 17px;
  }
}
.cv__button button {
  color: #f6f7f7;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 51px;
  border-radius: 50px;
  border: 2px solid #fff;
  -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);
}
.cv__button button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.blog {
  padding-top: 90px;
  padding-bottom: 60px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1101px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.blog__inner {
  padding: 0 30px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog__inner {
    margin-left: 47px;
    margin-right: 47px;
    padding: 0;
  }
}
@media screen and (min-width: 1101px) {
  .blog__inner {
    padding-left: 80px;
    padding-right: 80px;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 26px;
    padding-left: 33px;
  }
}
@media screen and (min-width: 1101px) {
  .blog__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}

.blog__title-main {
  color: #228ddd;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
}

.blog__title-sub {
  font-size: 14px;
  color: #228bde;
  letter-spacing: 2.66px;
}

.blog__contents {
  margin-top: 46px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog__contents {
    margin-top: 59px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}
@media screen and (min-width: 1101px) {
  .blog__contents {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px 20px;
  }
}

.blog__item {
  padding: 12px 23px 16px 17px;
  border-radius: 4px;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog__item {
    padding: 12px 15px 16px 15px;
  }
}
@media screen and (min-width: 1101px) {
  .blog__item {
    padding: 12px 15px 16px 15px;
  }
}

.blog__item + .blog__item {
  margin-top: 16px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog__item + .blog__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 1101px) {
  .blog__item + .blog__item {
    margin-top: 0;
  }
}

.blog__item-img {
  position: relative;
}

.blog__label {
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
  background: #2392db;
  padding: 3px 32px;
  position: absolute;
  top: 0;
  right: 0;
}

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

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

.blog__button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.blog__button span {
  color: #f6f7f7;
  font-weight: 700;
  letter-spacing: 3px;
  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);
  padding: 9px 54px;
  margin-top: 45px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .blog__button span {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1101px) {
  .blog__button span {
    margin-top: 58px;
    margin-left: calc((100% - 1283px) / 2 + 540px);
    margin-right: calc((100% - 1283px) / 2 + 521px);
  }
}

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

.seminar__inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 1101px) and (min-width: 1101px) {
  .seminar__inner {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
  }
}

.seminar__title {
  margin-left: 15px;
}
@media screen and (min-width: 1101px) {
  .seminar__title {
    margin-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: 41px;
}
@media screen and (min-width: 1101px) {
  .seminar__boxes {
    margin-top: 34px;
    gap: 40px;
  }
}

.seminar__box {
  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;
  padding-top: 25px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1101px) {
  .seminar__box {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

@media screen and (min-width: 1101px) {
  .seminar__box-items {
    width: 65.6976744186%;
  }
}

.seminar__box-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
@media screen and (min-width: 1101px) {
  .seminar__box-meta {
    margin-top: 0;
  }
}

.seminar__box-event {
  color: var(--rgb-255255255, #fff);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  background: #2392db;
  padding-top: 6px;
  padding-bottom: 5px;
  padding-left: 12px;
  padding-right: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.seminar__box-date {
  text-align: right;
  font-weight: 500;
}

.seminar__box-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 9px;
}
@media screen and (min-width: 1101px) {
  .seminar__box-title {
    margin-top: 10px;
  }
}

.seminar__box-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
}
@media screen and (min-width: 1101px) {
  .seminar__box-text {
    margin-top: 14px;
  }
}

.seminar__link {
  display: block;
  text-align: right;
  margin-top: 31px;
}
@media screen and (min-width: 1101px) {
  .seminar__link {
    margin-top: 20px;
  }
}
.seminar__link a {
  border-radius: 2px;
  border: 1px solid currentColor;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  padding: 8px 44px;
  color: #2392db;
  font-size: 14px;
  font-weight: 500;
}
.seminar__link a:hover {
  color: #fff;
  background-color: #2392db;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.seminar__button {
  margin-top: 54px;
  margin-left: calc((100% - 428px) / 2 + 95px);
  margin-right: calc((100% - 428px) / 2 + 91px);
}
.seminar__button:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1101px) {
  .seminar__button {
    margin-top: 40px;
    text-align: center;
  }
}
.seminar__button button {
  color: #f6f7f7;
  font-weight: 700;
  letter-spacing: 2.9px;
  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);
  padding: 9px 54px;
}

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

.qa__inner {
  padding-left: 15px;
  padding-right: 15px;
}

.qa__title {
  text-align: center;
  position: relative;
}
.qa__title::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: #2bc8c8;
}

.qa__title-main {
  margin-left: auto;
  margin-right: auto;
}

.qa__boxes {
  margin-top: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 1101px) {
  .qa__boxes {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
    gap: 20px;
  }
}

.qa__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 1101px) {
  .qa__box {
    gap: 6px;
  }
}
.qa__box.is-open .qa__box-body {
  display: block;
}
.qa__box.is-open .qa__box-text:before {
  background: url(../img/qa-close.png) no-repeat center center/contain;
}

.qa__box-head {
  display: block;
  position: relative;
}

.qa__box-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  width: 50px;
  height: 100%;
  padding-bottom: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1101px) {
  .qa__box-icon {
    width: 71px;
  }
}

.qa__box-text {
  display: block;
  color: #333;
  font-size: 15px;
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  width: 100%;
  padding: 10px 42px 10px 60px;
}
@media screen and (min-width: 1101px) {
  .qa__box-text {
    font-size: 16px;
    padding: 12px 42px 12px 85px;
  }
}
.qa__box-text:before {
  content: "";
  background-color: #2392db;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  right: 14px;
  background: url(../img/qa-open.png) no-repeat center center/contain;
}

.qa__box-body {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 10px;
  margin-left: 15px;
  border-radius: 10px;
  background: #fff;
  display: none;
}
@media screen and (min-width: 1101px) {
  .qa__box-body {
    margin-left: 41px;
    padding: 12px 14px;
  }
}

.qa__box-a {
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 1101px) {
  .qa__box-a {
    font-size: 16px;
  }
}

.footer {
  padding-top: 46px;
  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: 1101px) {
  .footer {
    padding-top: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1064px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1101px) {
  .footer__top {
    text-align: left;
  }
}

.footer__logo img {
  width: 160px;
}

.footer__meta {
  margin-top: 24px;
  color: var(--ffffff, #fff);
  font-size: 14px;
  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__meta p {
  font-weight: 500;
}

.footer__nav {
  margin-top: 36px;
  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;
  color: #fff;
  font-size: 14px;
}
.footer__nav a {
  font-weight: 500;
}
@media screen and (min-width: 1101px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    margin-top: 0;
  }
}

.footer__nav-item:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1101px) {
  .footer__nav-item:nth-child(2) {
    position: relative;
  }
  .footer__nav-item:nth-child(2)::before, .footer__nav-item:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer__nav-item:nth-child(2)::before {
    width: 1px;
    height: 17px;
    background: #fff;
    left: -25px;
    top: 12px;
  }
  .footer__nav-item:nth-child(2)::after {
    width: 1px;
    height: 17px;
    background: #fff;
    right: -25px;
    top: 12px;
  }
}

.footer__sns-img {
  margin-top: 36px;
}
.footer__sns-img img {
  width: 122px;
}
@media screen and (min-width: 1101px) {
  .footer__sns-img {
    margin-top: 0;
    min-width: 246px;
    text-align: left;
  }
}

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

.footer__copy-text {
  color: var(--ffffff, #fff);
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}