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

.wrapper {
  -o-object-fit: cover;
     object-fit: cover;
}

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

.button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  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 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
}
.button:hover {
  opacity: 0.7;
}

.button-text {
  color: #f6f7f7;
  font-weight: 700;
  letter-spacing: 3px;
}

.header {
  height: 80px;
}
@media screen and (min-width:768px) {
  .header {
    max-width: 1280px;
    margin-inline: auto;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  padding-top: 24px;
  width: 160px;
}

.header__drawer-icon {
  position: relative;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 40x;
  height: 23px;
  z-index: 51;
}
@media screen and (min-width:768px) {
  .header__drawer-icon {
    display: none;
  }
}
.header__drawer-icon.is-checked .header__menu-icon-bar {
  background-color: #fff;
}
.header__drawer-icon.is-checked .header__menu-icon-bar:nth-of-type(1) {
  position: absolute;
  top: 15px;
  right: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__drawer-icon.is-checked .header__menu-icon-bar:nth-of-type(2) {
  display: none;
}
.header__drawer-icon.is-checked .header__menu-icon-bar:nth-of-type(3) {
  position: absolute;
  top: 15px;
  right: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__menu-icon-bar {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #2082e0;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

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

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__link {
  font-weight: 500;
  padding: 26px 22px;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #2082df;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__link:hover::after, .header__link:focus::after {
  opacity: 1;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 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: 130px 120px 348px;
  -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__logo {
  width: 180px;
}

.drawer-content__menu {
  padding-top: 60.05px;
  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;
  text-align: center;
}

.drawer-content__link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.mv {
  margin-top: 20px;
  margin-bottom: 80px;
}
@media screen and (min-width:768px) {
  .mv {
    margin-top: 31px;
    max-width: 1280px;
    margin: 31px auto 0;
  }
}

.mv__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width:768px) {
  .mv__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width:768px) {
  .mv__wrapper {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.mv__img {
  width: 398px;
}
@media screen and (min-width:768px) {
  .mv__img {
    width: 100%;
    max-width: 650px;
  }
}

.mv__contents {
  padding-top: 40px;
}
@media screen and (min-width:768px) {
  .mv__contents {
    padding-top: 64px;
  }
}

.mv__text-content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .mv__text-content {
    display: block;
    text-align: left;
  }
}

.mv__logo {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:768px) {
  .mv__logo {
    margin-left: 0;
  }
}

.mv__title {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .mv__title {
    padding-top: 24px;
    font-size: 24px;
  }
}

.mv__text {
  font-weight: 400;
  line-height: 200%;
}
@media screen and (min-width:768px) {
  .mv__text {
    padding-top: 20px;
  }
}

.mv__button {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .mv__button {
    margin-left: 0;
  }
}

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

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

.section__title {
  text-align: center;
}

.section__title-text {
  position: relative;
  color: #238fdc;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3px;
}
@media screen and (min-width:768px) {
  .section__title-text {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.section__title-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #2bc8c8;
}

.news__lists {
  padding-top: 56px;
}
@media screen and (min-width:768px) {
  .news__lists {
    padding-top: 60px;
  }
}

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

.news-link__date {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .news-link__date {
    width: 120px;
    font-size: 16px;
  }
}

.news-link__title {
  color: #111;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .news-link__title {
    width: 781px;
    font-size: 16px;
  }
}

.news__button-wrapper {
  margin-top: 46px;
}
@media screen and (min-width:768px) {
  .news__button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 40px;
  }
}

.news__pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  max-width: 100%;
}
@media screen and (min-width:768px) {
  .news__pagenation {
    height: 36px;
  }
}

.news__pagenation-box {
  border: 1px solid #828282;
  background: #fff;
}
.news__pagenation-box a {
  width: 36px;
  height: 36px;
  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;
  color: #707070;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
}
.news__pagenation-box a:hover {
  opacity: 0.7;
}
.news__pagenation-box.is-checked {
  background: #228ddd;
}
.news__pagenation-box.is-checked a {
  color: #fff;
}

.pagenation-prev,
.pagenation-next {
  position: relative;
}
.pagenation-prev::before, .pagenation-prev::after,
.pagenation-next::before,
.pagenation-next::after {
  position: absolute;
  top: 13px;
  width: 7px;
  height: 10px;
  content: "";
}

.pagenation-prev::before, .pagenation-prev::after {
  background: url(../img/arrow.svg) center center no-repeat;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.pagenation-prev::before {
  left: 11px;
}
.pagenation-prev::after {
  left: 17px;
}

.pagenation-next::before, .pagenation-next::after {
  background: url(../img/arrow.svg) center center no-repeat;
}
.pagenation-next::before {
  left: 12px;
}
.pagenation-next::after {
  left: 18px;
}

.button-all {
  margin-top: 30px;
  display: block;
  padding: 5px 24px;
  margin-left: auto;
  margin-right: auto;
  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);
}
.button-all:hover {
  opacity: 0.7;
}
@media screen and (min-width:768px) {
  .button-all {
    margin: 0;
  }
}

.button-all__text {
  color: #2392db;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3px;
}

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

.concept__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width:768px) {
  .concept__inner {
    padding-left: 150px;
    padding-right: 150px;
    gap: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.concept__image {
  display: block;
  width: 310px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .concept__image {
    width: 450px;
  }
}

.concept__text-content {
  padding-top: 30px;
}
@media screen and (min-width:768px) {
  .concept__text-content {
    width: 450px;
  }
}

.concept__title {
  color: #228ddd;
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
}
@media screen and (min-width:768px) {
  .concept__title {
    font-size: 26px;
  }
}

.concept__text {
  padding-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 200%;
}

.concept__button {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .concept__button {
    margin-top: 36px;
    margin-left: 0;
  }
}

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

.casestudy__inner {
  padding-left: 20px;
}
@media screen and (min-width:768px) {
  .casestudy__inner {
    padding-left: 80px;
    padding-right: 80px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.section__head {
  color: #228bde;
  line-height: 170%;
}
@media screen and (min-width:768px) {
  .section__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.section__title-en {
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
}

.section__title-ja {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 2.66px;
}

.casestudy__slider {
  padding-top: 50px;
  position: relative;
}
@media screen and (min-width:768px) {
  .casestudy__slider {
    padding-right: 62px;
    padding-left: 62px;
  }
}

.casestudy__swiper {
  padding-bottom: 30px;
}
@media screen and (min-width:768px) {
  .casestudy__swiper {
    padding-bottom: 45px;
  }
}

.casestudy-slide {
  width: 320px !important;
  height: 330px;
  border-radius: 4px;
  background: var(--ffffff, #fff);
  -webkit-filter: drop-shadow(5px 7px 34px #f1f1f1);
          filter: drop-shadow(5px 7px 34px #f1f1f1);
}

.casestudy-card {
  padding-bottom: 14px;
}

.casestudy-card__title {
  padding-top: 14px;
  padding-left: 10px;
  color: #228ddd;
  font-size: 15px;
  font-weight: 700;
}

.casestudy-card__meta {
  padding-top: 10px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.casestudy-card__company {
  font-weight: 700;
}

.casestudy-card__name {
  font-weight: 700;
}

.casestudy-card__category {
  color: #9d9d9d;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}

.casestudy-pagination {
  padding-top: 30px;
  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-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  opacity: 1;
  background: #e1e1e1;
}
.casestudy-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2f7dc8;
}

.casestudy-prev,
.casestudy-next {
  width: 40px;
  height: 40px;
}
@media screen and (min-width:768px) {
  .casestudy-prev,
  .casestudy-next {
    width: 50px;
    height: 50px;
  }
}
.casestudy-prev::after,
.casestudy-next::after {
  display: none;
}

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

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

@media screen and (min-width:768px) {
  .casestudy__button-all {
    margin-inline: auto;
    margin-top: 24px;
  }
}

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

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

.price__head {
  padding-left: 131px;
}

.price__cards {
  padding-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (min-width:768px) {
  .price__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 960px;
    margin-inline: auto;
  }
}

.price-card {
  width: 300px;
  border-radius: 10px;
  background: #fff;
  margin-inline: auto;
}

.price-card__head {
  padding-top: 30px;
  text-align: center;
  color: #2392db;
}

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

.price-card__price {
  padding-top: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
  min-width: 110px;
}

.price-card__price-sta,
.price-card__price-pro {
  position: relative;
  min-width: 110px;
}
.price-card__price-sta::before, .price-card__price-sta::after,
.price-card__price-pro::before,
.price-card__price-pro::after {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 27px;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  color: #333;
}
.price-card__price-sta::before,
.price-card__price-pro::before {
  content: "月";
}
.price-card__price-sta::after,
.price-card__price-pro::after {
  content: "円";
}

.price-card__price-sta::before {
  bottom: 4;
  left: 31%;
}
.price-card__price-sta::after {
  bottom: 4;
  right: 32%;
}

.price-card__price-pro::before {
  left: 25%;
}
.price-card__price-pro::after {
  right: 25%;
}

.price-card__meta-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}

.price-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 12px;
  margin-right: 20px;
  margin-left: 20px;
  border-bottom: 1px solid #c2c2c2;
}

.price__button {
  margin-top: 30px;
}

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

@media screen and (min-width:768px) {
  .company__inner {
    padding-left: 190px;
    padding-right: 190px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

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

.company__information-box {
  margin-top: 68px;
  border: 2px solid #2392db;
  position: relative;
}
@media screen and (min-width:768px) {
  .company__information-box {
    margin-top: 80px;
    max-width: 900px;
  }
}

.tab-container {
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:768px) {
  .tab-container {
    top: -40px;
  }
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tab {
  width: 122px;
  height: 46px;
  background: #fff;
  position: relative;
}
@media screen and (min-width:768px) {
  .tab {
    width: 200px;
    height: 80px;
  }
}
.tab::before {
  position: absolute;
  content: "";
  background: url(../img/vector-normal.svg) center center no-repeat;
  width: 12px;
  height: 7px;
  top: 46%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 18px;
}
@media screen and (min-width:768px) {
  .tab::before {
    background: none;
  }
}
.tab.active {
  background: #2392db;
}
.tab.active::before {
  background: url(../img/vector-34.svg);
}
@media screen and (min-width:768px) {
  .tab.active::before {
    background: none;
  }
}
.tab.active .tab-text {
  color: #fff;
}
.tab.active .tab-text::before {
  background: url(../img/vector-34.svg);
}
.tab:nth-of-type(2) {
  border-right: 1px solid #2392db;
  border-left: 1px solid #2392db;
}

.tab-text {
  display: inline;
  color: #2392db;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width:768px) {
  .tab-text::before {
    position: absolute;
    content: "";
    background: url(../img/vector-normal.svg) center center no-repeat;
    width: 12px;
    height: 7px;
    top: 46%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: -21px;
  }
}

.content {
  margin-top: 22px;
  display: none;
}
@media screen and (min-width:768px) {
  .content {
    margin-top: 40px;
  }
}

.content.show {
  display: block;
}

.content-1 {
  padding-top: 36px;
  padding-bottom: 50px;
}
@media screen and (min-width:768px) {
  .content-1 {
    padding-top: 50px;
    padding-bottom: 97px;
  }
}

.content-1__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.content-1__text {
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .content-1__text {
    padding-top: 17px;
  }
}

.content-1__table {
  margin-top: 20px;
  margin-inline: auto;
  border-collapse: collapse;
}
.content-1__table th,
.content-1__table td {
  border: 1px solid #dbdbdb;
  width: 160px;
  height: 54px;
  vertical-align: middle;
}
.content-1__table th {
  background: #f2f2f2;
  font-weight: 700;
}
.content-1__table td {
  padding-left: 10px;
  padding-right: 6px;
}
.content-1__table tr:nth-of-type(3) {
  height: 80px;
}
@media screen and (min-width:768px) {
  .content-1__table {
    display: none;
  }
}

.content-1__table-pc {
  display: none;
}
@media screen and (min-width:768px) {
  .content-1__table-pc {
    display: table;
    margin-top: 40px;
    margin-inline: auto;
    border-collapse: collapse;
  }
  .content-1__table-pc th,
  .content-1__table-pc td {
    border: 1px solid #dbdbdb;
    width: 200px;
    height: 54px;
    vertical-align: middle;
  }
  .content-1__table-pc th {
    background: #f2f2f2;
    font-weight: 700;
  }
  .content-1__table-pc td {
    padding-left: 10px;
    padding-right: 6px;
  }
}
.content-2 {
  padding-top: 20px;
  padding-bottom: 122px;
}
@media screen and (min-width:768px) {
  .content-2 {
    padding-top: 40px;
    padding-bottom: 46px;
  }
}

.content-2__list-container {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width:768px) {
  .content-2__list-container {
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.content-2-list {
  padding-left: 17px;
}
.content-2-list:nth-of-type(n + 2) {
  padding-top: 16px;
}

.content-2-list__time {
  color: #2392db;
  font-weight: 700;
  position: relative;
}
.content-2-list__time::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: #2bcbc6;
  border-radius: 9px;
  top: 36%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: -14px;
}

.content-2-list__text {
  padding-top: 2px;
  color: #000;
}

.content-3 {
  padding: 34px 30px 168px;
}
@media screen and (min-width:768px) {
  .content-3 {
    padding: 40px 150px 212px;
    margin-inline: auto;
  }
}

.content-3__title {
  color: #2392db;
  font-weight: 700;
}

.content-3__text {
  padding-top: 14px;
  color: #333;
}
@media screen and (min-width:768px) {
  .content-3__text {
    padding-top: 16px;
    maw-width: 600px;
  }
}

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

.cv__inner {
  padding-left: 30px;
  padding-right: 30px;
}

.cv__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.6px;
}

.cv__text {
  padding-top: 8px;
  letter-spacing: 1.6px;
  font-weight: 400;
}

.cv__button {
  margin-top: 17px;
  padding: 9px 54px;
  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:hover {
  opacity: 0.7;
}

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

.blog__inner {
  padding-left: 30px;
  padding-right: 38px;
}
@media screen and (min-width:768px) {
  .blog__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
}

@media screen and (min-width:768px) {
  .blog__head {
    padding-left: 80px;
  }
}

.blog__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-top: 58px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__cards {
    margin-left: auto;
    margin-right: auto;
    gap: 34px 20px;
  }
}
@media screen and (min-width:768px) {
  .blog__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 46px 20px;
    padding-top: 40px;
  }
}

.blog__card {
  width: 360px;
  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;
}
.blog__card:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  cursor: pointer;
}

.blog__image {
  position: relative;
  width: 330px;
  height: 220px;
}
.blog__image::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "ラベル";
  width: 100px;
  height: 24px;
  background: #2392db;
  padding: 3px;
  color: var(--rgb-255255255, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.blog__text-container {
  padding-top: 6px;
}

.blog__title {
  font-size: 15px;
  font-weight: 700;
}

.blog__text {
  font-size: 13px;
  font-weight: 400;
}

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

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

@media screen and (min-width:768px) {
  .seminar__inner {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.seminar__head {
  padding-left: 30px;
}

.seminar__cards {
  margin-top: 46px;
}
@media screen and (min-width:768px) {
  .seminar__cards {
    margin-top: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.seminar__card {
  max-width: 398px;
  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:768px) {
  .seminar__card {
    width: 100%;
    max-width: 1080px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    padding: 24px;
    margin-inline: auto;
  }
}

.seminar__image {
  max-width: 324px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .seminar__image {
    margin-inline: 0;
  }
}

@media screen and (min-width:768px) {
  .seminar__text-contents {
    width: 678px;
  }
}

.seminar__title-contents {
  margin-top: 22px;
  position: relative;
}
@media screen and (min-width:768px) {
  .seminar__title-contents {
    margin-top: 0;
  }
}

.seminar__title {
  padding-top: 38px;
  color: var(--rgb-515151, #333);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.seminar__meta {
  position: absolute;
  padding-left: 12px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .seminar__meta {
    padding-left: 0;
  }
}

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

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

.seminar__text {
  padding-top: 14px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.seminar__button-all {
  margin-top: 22px;
  margin-right: 0;
  font-size: 14px;
  padding: 8px 44px;
}
@media screen and (min-width:768px) {
  .seminar__button-all {
    margin-left: auto;
    margin-top: 20px;
  }
}

.seminar__button-all-text {
  font-weight: 500;
  letter-spacing: normal;
}

.seminar__button {
  margin-top: 46px;
}

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

@media screen and (min-width:768px) {
  .qa__inner {
    padding-left: 240px;
    padding-right: 240px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.qa__container {
  padding-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: 12px;
}
@media screen and (min-width:768px) {
  .qa__container {
    padding-top: 43px;
    gap: 18px;
  }
}

.qa__content:nth-of-type(3) .qa__content-icon {
  padding-top: 59.27px;
  padding-bottom: 59.27px;
}

.qa__content-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
}

.qa__content-left {
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
}

.qa__content-icon {
  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;
  padding: 7px 14px 12px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width:768px) {
  .qa__content-icon {
    padding: 10px 25px 15px;
  }
}

.qa__content-right {
  position: relative;
  margin: 10px;
  width: 100%;
  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;
}
@media screen and (min-width:768px) {
  .qa__content-right {
    margin: 12px 14px;
  }
}

.qa__content-text-q {
  padding-right: 20px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .qa__content-text-q {
    font-size: 16px;
  }
}

.qa__button {
  width: 20px;
  height: 20px;
}
.qa__button.is-open .qa__button-bar:nth-of-type(2) {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.qa__button-bar {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  content: "";
  width: 20px;
  height: 2px;
  background: #2392db;
  border-radius: 2px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.qa__button-bar:nth-of-type(2) {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.qa__content-a {
  margin-top: 12px;
  margin-left: 35px;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  display: none;
}
.qa__content-a.is-open {
  display: block;
}

.qa__content-text-a {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .qa__content-text-a {
    font-size: 16px;
  }
}

.footer {
  padding-top: 46px;
  padding-bottom: 11px;
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  color: var(--ffffff, #fff);
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .footer {
    padding-top: 60px;
  }
}

@media screen and (min-width:768px) {
  .footer__inner {
    padding-left: 109px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

@media screen and (min-width:768px) {
  .footer__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__content {
  text-align: center;
}
@media screen and (min-width:768px) {
  .footer__content {
    text-align: start;
  }
}

.footer-logo {
  margin-inline: auto;
  width: 160px;
}
@media screen and (min-width:768px) {
  .footer-logo {
    margin-inline: 0;
  }
}

.footer__meta {
  padding-top: 24px;
  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__text {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.footer-address {
  font-weight: 400;
}

.footer__button-wrapper {
  padding-top: 36px;
}
@media screen and (min-width:768px) {
  .footer__button-wrapper {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-left: 53px;
  }
}

.footer__link-wrapper {
  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;
}
@media screen and (min-width:768px) {
  .footer__link-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__link {
  color: #fff;
  font-size: 14px;
}
.footer__link:hover {
  opacity: 0.7;
}
@media screen and (min-width:768px) {
  .footer__link:nth-of-type(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
@media screen and (min-width:768px) {
  .footer__link {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.footer__link-text {
  font-weight: 500;
}

.footer__sns-wrapper {
  padding-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .footer__sns-wrapper {
    padding-top: 0;
    padding-left: 87px;
  }
}

.footer__sns {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #fff;
  position: relative;
}
.footer__sns:hover {
  opacity: 0.7;
}
.footer__sns:nth-of-type(1) .footer__sns-icon {
  width: 20px;
  height: 20px;
  background: url(../img/Instagram_Glyph_Black.svg) center center no-repeat;
}
.footer__sns:nth-of-type(2) .footer__sns-icon {
  width: 20px;
  height: 20px;
  background: url(../img/mail.svg) center center no-repeat;
}
.footer__sns:nth-of-type(3) .footer__sns-icon {
  width: 20px;
  height: 20px;
  background: url(../img/x.svg) center center no-repeat;
}

.footer__sns-icon {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.footer__copyright {
  padding-top: 47px;
  display: block;
  color: var(--ffffff, #fff);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width:768px) {
  .footer__copyright {
    padding-top: 69px;
  }
}