body {
  font-size: 15px;
  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%);
  font-weight: 400;
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

.button {
  color: #f6f7f7;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 48px;
  padding: 9px 54px;
  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);
}

.all-button {
  color: #2392db;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3px;
  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);
  padding: 5px 24px;
}

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

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

.is-hidden {
  display: none;
}

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

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

img {
  height: auto;
}

.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 44px;
}
@media screen and (min-width: 1025px) {
  .header__inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 40px 30px;
  }
}

.header__logo {
  margin-top: 4px;
  text-align: center;
}
.header__logo a img {
  width: 160px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .header__logo a img {
    max-width: 160px;
  }
}

.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .header__nav-lists {
    gap: 44px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav-lists {
    gap: 16px;
  }
}

.header__nav-list {
  font-size: 16px;
  font-weight: 500;
}

.drawer-icon {
  position: relative;
  height: 26px;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar {
  margin: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #FFF;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #FFF;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #2082e0;
}
.drawer-icon__bar:nth-of-type(1) {
  margin-top: 6px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 14px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 22px;
  margin-bottom: 6px;
}

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

.header__menu-open__inner {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__menu-open__logo {
  margin-bottom: 60px;
}
.header__menu-open__logo img {
  width: 180px;
}

.header__menu-open__logo__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.header__menu-open__logo__list {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}

.fv {
  padding: 0 5px 80px;
}
@media screen and (min-width: 1025px) {
  .fv {
    padding: 0 80px 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv {
    padding: 0 56px 50px;
  }
}

@media screen and (min-width: 1025px) {
  .fv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 105px;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 67px;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
  }
}

.fv__img {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}
.fv__img img {
  width: 398px;
}
@media screen and (min-width: 1025px) {
  .fv__img img {
    width: 650px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__img img {
    width: 650px;
  }
}

.fv__contents {
  text-align: center;
}

.fv__logo {
  margin-top: 80px;
}
.fv__logo a img {
  width: 250px;
}

.fv__texts-main {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

.fv__texts-sub {
  font-size: 16px;
  line-height: 200%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.fv__button {
  margin-top: 30px;
}

.news {
  padding: 60px 15px 65px;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .news {
    padding: 0 175px 100px;
  }
}

@media screen and (min-width: 1025px) {
  .news__inner {
    max-width: 930px;
    margin-right: auto;
    margin-left: auto;
  }
}

.news__title {
  color: #238fdc;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .news__title {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.news__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #2bc8c8;
}

.news__lists {
  margin-top: 46px;
}

.news__link-meta {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 13px;
  margin-bottom: 9px;
}
@media screen and (min-width: 1025px) {
  .news__link-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

.news__link-time {
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .news__link-time {
    font-size: 16px;
    white-space: nowrap;
    margin-top: auto;
    margin-bottom: auto;
  }
}

.news__link-title {
  margin-top: 8px;
  color: #111;
}
@media screen and (min-width: 1025px) {
  .news__link-title {
    margin-top: 0;
    font-size: 16px;
  }
}

.news__button {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .news__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 26px;
  }
}

.news__current {
  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;
  margin-top: 46px;
  margin-bottom: 30px;
  max-width: 444px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .news__current {
    margin: 0;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news__current {
    margin: 0;
    gap: 20px;
  }
}

.page__pre img {
  width: 36px;
  height: 36px;
}

.page__number {
  color: #707070;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.44px;
  border: 1px solid #828282;
  padding: 8px 14px;
}

.page__next img {
  width: 36px;
  height: 36px;
}

.concept {
  padding: 60px 20px;
}
@media screen and (min-width: 1025px) {
  .concept {
    padding: 100px 150px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept {
    padding: 60px 50px;
  }
}

.concept__inner {
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .concept__inner {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__inner {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.concept__img {
  text-align: center;
}
.concept__img img {
  width: 310px;
}
@media screen and (min-width: 1025px) {
  .concept__img img {
    width: 450px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__img img {
    width: 400px;
  }
}

.concept__contents {
  margin-top: 30px;
}

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

.concept__texts-sub {
  line-height: 200%;
  margin-top: 30px;
}

.concept__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .concept__button {
    text-align: left;
    margin-top: 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__button {
    text-align: left;
  }
}

.casestudy {
  padding: 60px 20px 60px;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .casestudy {
    padding: 100px 142px 60px;
  }
}

.casestudy__inner {
  max-width: 388px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .casestudy__inner {
    max-width: 760px;
  }
}
@media screen and (min-width: 1025px) {
  .casestudy__inner {
    max-width: 996px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1025px) {
  .casestudy__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

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

.casestudy__slider {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .casestudy__slider {
    margin-top: 40px;
  }
}

.casestudy__swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .casestudy__swiper {
    max-width: 996px;
  }
}

.casestudy__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;
}
.casestudy__pagination .swiper-pagination-bullets {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 1025px) {
  .casestudy__pagination {
    display: none;
  }
}

.casestudy__button {
  margin-top: 66px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .casestudy__button {
    margin-top: 75px;
  }
}

.casestudy-card {
  width: 74.7663551402%;
  height: 330px;
  border-radius: 4px;
  background: var(--ffffff, #fff);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .casestudy-card {
    width: 45.7142857143%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1025px) {
  .casestudy-card {
    max-width: 332px;
  }
}

.casestudy-card__image img {
  width: 320px;
}

.casestudy-card__main-text {
  margin-top: 14px;
  color: #228ddd;
  font-weight: 700;
}

.casestudy-card__sub-text {
  margin-top: 10px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 700;
}

.casestudy-card__shop {
  margin-top: 10px;
  color: #9d9d9d;
  font-size: 12px;
}

.casestudy__prev,
.casestudy__next {
  width: 44px;
  height: 44px;
  margin-top: -70px;
}
.casestudy__prev::after,
.casestudy__next::after {
  display: none;
}

.casestudy__prev {
  left: 0px;
  background: url(../img/casestudy-prev.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .casestudy__prev {
    left: 162px;
  }
}

.casestudy__next {
  right: 0px;
  background: url(../img/casestudy-next.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .casestudy__next {
    right: 189px;
  }
}

.price {
  padding: 46px 64px 60px;
}
@media screen and (min-width: 1025px) {
  .price {
    padding: 100px 160px;
  }
}

.price__inner {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .price__inner {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1025px) {
  .price__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}

.price__list {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 5px;
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
}
.price__list:nth-child(1), .price__list:nth-child(2) {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .price__list:nth-child(1), .price__list:nth-child(2) {
    margin-bottom: 0;
  }
}

.price__table {
  width: 86.6666666667%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .price__table {
    max-width: 300px;
  }
}
.price__table tbody tr {
  height: 39px;
  border-bottom: 1px solid #c2c2c2;
}
.price__table tbody th {
  font-size: 16px;
  line-height: 170%;
  text-align: left;
  vertical-align: middle;
}
.price__table tbody td {
  color: #333;
  font-size: 16px;
  line-height: 170%; /* 27.2px */
  text-align: right;
  vertical-align: middle;
}

.table__title {
  text-align: center;
  margin-bottom: 30px;
}

.table__main-title {
  color: #2392db;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.table__sub-title-free {
  color: #2392db;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  letter-spacing: 3.6px;
}

.table__sub-title {
  color: var(--rgb-515151, #333);
  font-size: 16px;
  font-weight: 700;
}
.table__sub-title span {
  color: #2392db;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  letter-spacing: 3.6px;
  margin-bottom: 30px;
}

.casestudy__button {
  margin-top: 30px;
}

.company {
  padding: 60px 15px;
}
@media screen and (min-width: 1025px) {
  .company {
    padding: 100px 190px;
  }
}

.company__inner {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .company__inner {
    max-width: 900px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__inner {
    max-width: 644px;
  }
}

.company__title {
  margin-bottom: 46px;
}
@media screen and (min-width: 1025px) {
  .company__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    text-align: center;
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .company__sub-title {
    line-height: 61px;
  }
}

.company__contents {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #2392db;
  background: #fff;
  position: relative;
}

.company__contents-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.company__contents-list {
  color: #2392db;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  padding: 10px 29px;
  position: relative;
  z-index: 10;
}
.company__contents-list::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 20px;
  left: 12px;
  background: url(../img/company-Vector\ 35.png) no-repeat center center/contain;
}
.company__contents-list:nth-child(1), .company__contents-list:nth-child(2) {
  border-right: 1px solid #2392db;
}
.company__contents-list:hover {
  background: #2392db;
  color: #fff;
}
.company__contents-list:hover::before {
  background: url(../img/company-Vector\ 36@2x.png) no-repeat center center/contain;
}

.is-selected {
  background: #2392db;
  color: #fff;
}
.is-selected::before {
  background: url(../img/company-Vector\ 36@2x.png) no-repeat center center/contain;
}

.company__info {
  padding-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .company__info {
    padding-bottom: 0;
  }
}

.company__info-title {
  margin-top: 60px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .company__info-title {
    margin-top: 90px;
  }
}

.company__info-text {
  text-align: center;
  margin-top: 20px;
  color: #333;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .company__info-text {
    margin-top: 17px;
  }
}

.company__info-table {
  margin: 20px 39px 50px;
  width: 80.4020100503%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (min-width: 1025px) {
  .company__info-table {
    margin-top: 40px;
    margin-bottom: 97px;
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__info-table {
    margin-top: 40px;
    margin-bottom: 97px;
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }
}
.company__info-table tbody th {
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
  color: #333;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  width: 160px;
  height: 54px;
  vertical-align: middle;
}
.company__info-table tbody td {
  border: 1px solid #dbdbdb;
  background: var(--ffffff, #fff);
  color: #333;
  font-size: 16px;
  vertical-align: middle;
  padding: 14px 30px 13px 10px;
  width: 160px;
}
.company__history {
  max-width: 453px;
  margin-top: 44px;
  margin-left: 47px;
  margin-bottom: 122px;
}
@media screen and (min-width: 1025px) {
  .company__history {
    margin-top: 80px;
    margin-bottom: 46px;
    margin-right: auto;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__history {
    margin-top: 80px;
    margin-bottom: 46px;
    margin-right: auto;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.company__history-list {
  position: relative;
}
.company__history-list + .company__history-list {
  margin-top: 16px;
}
.company__history-list::before {
  content: "";
  background: url(../img/company__history-Ellipse\ 1.png) no-repeat center center/contain;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 10px;
  left: -15px;
}

.history__time {
  color: #2392db;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.history__content {
  color: #000;
  font-size: 16px;
}

.company__license {
  margin: 58px 30px 168px;
}
@media screen and (min-width: 1025px) {
  .company__license {
    margin: 80px 150px 212px;
  }
}

.company__license-title {
  margin-bottom: 16px;
  color: #2392db;
  font-size: 16px;
  font-weight: 700;
}
.company__license-text {
  font-size: 16px;
}
.cv {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  padding: 60px 30px;
}

.cv__inner {
  text-align: center;
}

.cv__main-text {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.6px;
  margin-bottom: 8px;
}

.cv__sub-text {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1.6px;
  margin-bottom: 17px;
}

.cv-button {
  color: #f6f7f7;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 54px;
  letter-spacing: 3px;
  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);
}

.blog {
  padding: 60px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog {
    padding: 100px 47px;
  }
}
@media screen and (min-width: 1025px) {
  .blog {
    padding: 100px 0;
  }
}

.blog__inner {
  max-width: 408px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__inner {
    max-width: 740px;
  }
}
@media screen and (min-width: 1025px) {
  .blog__inner {
    max-width: 1120px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__title {
    margin-left: 33px;
  }
}

.blog__lists {
  margin-top: 46px;
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .blog__lists {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.blog__list {
  width: 360px;
  margin-right: auto;
  margin-left: auto;
  padding: 12px 15px 16px;
  border-radius: 4px;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  position: relative;
}
.blog__list + .blog__list {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__list:nth-child(1), .blog__list:nth-child(2), .blog__list:nth-child(3), .blog__list:nth-child(4) {
    margin-bottom: 34px;
  }
  .blog__list + .blog__list {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .blog__list {
    max-width: 360px;
  }
  .blog__list + .blog__list {
    margin-top: 0;
  }
  .blog__list:nth-child(1), .blog__list:nth-child(2), .blog__list:nth-child(3) {
    margin-bottom: 34px;
  }
}

.blog__img img {
  width: 100%;
}

.blog__label {
  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;
  position: absolute;
  top: 12px;
  right: 15px;
}

.blog__title {
  font-weight: 700;
  margin-top: 6px;
}

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

.blog__button {
  text-align: center;
}

.seminar {
  padding: 60px 15px;
  background: var(--rgb-255255255, #fff);
}
@media screen and (min-width: 1025px) {
  .seminar {
    padding: 100px;
  }
}

.seminar__inner {
  max-width: 738px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .seminar__inner {
    max-width: 1080px;
  }
}

.seminar__title {
  margin-left: 30px;
}
@media screen and (min-width: 1025px) {
  .seminar__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-left: 0;
  }
}

.seminar__sub-title {
  line-height: 61px;
}

.seminar__lists {
  margin-top: 46px;
}

.seminar__list {
  padding: 24px 12px 30px;
  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;
}
@media screen and (min-width: 1025px) {
  .seminar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    padding: 24px;
  }
  .seminar__list:nth-child(1), .seminar__list:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .seminar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    padding: 24px;
  }
  .seminar__list:nth-child(1), .seminar__list:nth-child(2) {
    margin-bottom: 30px;
  }
}

.seminar__img {
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.seminar__img img {
  width: 324px;
}

.seminar__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

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

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

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

.seminar__seminar-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
}

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

.seminar-list__button {
  text-align: center;
  margin-top: 46px;
}

.qa {
  padding: 60px 15px;
  background: #f4fbff;
}
@media screen and (min-width: 1025px) {
  .qa {
    padding: 100px 240px 121px;
  }
}

.qa__inner {
  width: calc(100% - 30px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .qa__inner {
    max-width: 800px;
  }
}

.qa__title {
  color: #238fdc;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 51px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .qa__title {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.qa__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #2bc8c8;
}

.q__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  position: relative;
}

.q__title {
  width: 50px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%; /* 26px */
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  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;
  height: 100%;
}

.q__text {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 42px;
  position: relative;
}
.q__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/qa-open.png) no-repeat center center/contain;
  width: 20px;
  height: 18px;
}

.a__box {
  padding: 10px;
  margin-bottom: 12px;
  width: calc(100% - 20px);
  height: 100%;
  border-radius: 10px;
  background: #fff;
  margin-left: 20px;
  white-space: wrap;
  display: none;
}

.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;
}
@media screen and (min-width: 1025px) {
  .footer {
    background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
    background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
    padding: 64px 230px 11px 109px;
  }
}

@media screen and (min-width: 1025px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 78px;
  }
}

.footer__left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .footer__left {
    text-align: left;
  }
}

.footer__logo {
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .footer__logo {
    margin-bottom: 16px;
  }
}
.footer__logo img {
  width: 160px;
}

.footer__accese {
  color: var(--ffffff, #fff);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 36px;
}

.footer__right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 87px;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

.footer__lists {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    margin-bottom: 0;
    height: 16px;
  }
}

.form {
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .form {
    margin-bottom: 0;
  }
}

.privacy-policy {
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .privacy-policy {
    margin-bottom: 0;
  }
}

.footer__sns-lists {
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 122px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .footer__sns-lists {
    margin-bottom: 0;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

.sns__list {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
}

.copyright {
  color: var(--ffffff, #fff);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .copyright {
    margin-top: 69px;
  }
}