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

body,
html {
  overflow-x: hidden;
}

.header {
  padding-top: 20px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__inner {
    width: 900px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  .header__inner {
    width: 750px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .header__inner {
    padding-inline: 40px;
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
  }
}

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

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 44px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link:nth-child(2) {
  margin-left: 2px;
}

.header__link {
  color: #333;
  font-weight: 500;
  line-height: 170%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__link {
    font-size: 14px;
  }
}
.header__link:hover {
  color: #2082df;
  border-bottom: #2082df solid 1px;
}

.header__link1 {
  color: #333;
  font-weight: 500;
  line-height: 170%;
  display: inline-block;
}

.header__button {
  display: inline-block;
  color: #f6f7f7;
  text-align: center;
  font-weight: 700;
  line-height: 170%;
  font-size: 16px;
  letter-spacing: 3px;
  padding: 9px 54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 48px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.75%, #2188de), color-stop(97.75%, #2bcbc6));
  background: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  min-width: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__button {
    font-size: 14px;
    padding: 9px 35px;
    min-width: 170px;
  }
}
.header__button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1a2980), to(#26d0ce));
  background: linear-gradient(90deg, #1a2980, #26d0ce);
}

.header__open {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__open {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .header__open {
    display: none;
  }
}

body.drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.drawer__icon {
  width: 40px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  top: 10px;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  top: 10px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 39.4px;
  height: 3px;
  border-radius: 6px;
  background: #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;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .drawer-icon__bar {
    display: none;
  }
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer__icon.is-checked .drawer-icon__bar {
  background: #fff;
}

.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;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  padding-top: 130px;
  text-align: center;
}

.drawer-content_img {
  display: inline-block;
  text-align: center;
  width: 180px;
}

.drawer__menu {
  margin-top: 60.05px;
}

.drawer-content__link {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  padding-bottom: 30px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  display: grid;
  place-items: center;
}
.drawer-content__link:hover {
  color: #2082df;
}

.mv {
  padding-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .mv {
    padding-top: 30px;
    padding-bottom: 50.12px;
  }
}

.mv__inner {
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .mv__inner {
    width: 1120px;
    margin: 0 auto;
  }
}

.mv__contents {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .mv__contents {
    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: 102px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1120px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__contents {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 800px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  .mv__contents {
    text-align: center;
    -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;
  }
}

.mv__img1 {
  width: 368px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.mv__img1 img {
  width: 100%;
}
@media (max-width: 427px) {
  .mv__img1 {
    width: 260px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__img1 {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__img1 {
    display: none;
  }
}

.mv__img2 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__img2 {
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }
  .mv__img2 img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .mv__img2 {
    display: block;
    max-width: 650px;
  }
  .mv__img2 img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 899px) {
  .mv__content {
    text-align: center !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__content {
    max-width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .mv__content {
    text-align: left;
  }
}

.mv__logo {
  display: inline-block;
  text-align: center;
  margin-top: 40px;
  width: 250px !important;
}
.mv__logo img {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__logo {
    text-align: left;
    width: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__logo {
    text-align: left;
    width: 250px;
  }
}

.mv__lead-text {
  color: #2b2b2b;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
  margin-top: 20px;
}
@media (min-width: 769px) and (max-width: 899px) {
  .mv__lead-text {
    text-align: center !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__lead-text {
    text-align: left;
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__lead-text {
    text-align: left;
    font-size: 26px;
  }
}

.mv__description {
  color: #333;
  text-align: center;
  font-weight: 400;
  line-height: 200%;
  margin-top: 20px;
}
@media (min-width: 769px) and (max-width: 899px) {
  .mv__description {
    text-align: center !important;
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv__description {
    text-align: left;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__description {
    text-align: left;
  }
}

@media (min-width: 769px) and (max-width: 899px) {
  .mv_button {
    text-align: center !important;
  }
}

.mv_button1 {
  display: inline-block;
  text-align: center;
  margin-top: 30px;
  color: #f6f7f7;
  font-weight: 700;
  line-height: 170%;
  padding: 9px 54px 9px 54px;
  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);
}
.mv_button1:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1a2980), to(#26d0ce));
  background: linear-gradient(90deg, #1a2980, #26d0ce);
}
@media (min-width: 769px) and (max-width: 899px) {
  .mv_button1 {
    padding: 9px 54px 9px 54px !important;
    text-align: center !important;
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mv_button1 {
    text-align: left;
    font-size: 14px;
    padding: 9px 40px 9px 40px;
  }
}

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

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

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

.news__lists {
  margin-top: 46px;
}
@media screen and (min-width: 1280px) {
  .news__lists {
    margin-top: 72px;
  }
}

.news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 13px;
}
@media screen and (min-width: 1280px) {
  .news-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.news-link__date {
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 1280px) {
  .news-link__date {
    min-width: 119px;
    margin-right: 49px;
    font-size: 16px;
    white-space: nowrap;
  }
}

.news-link__title {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 1280px) {
  .news-link__title {
    font-size: 16px;
  }
}

.news__list {
  position: relative;
}
.news__list:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #e3e3e3;
}
.news__list:last-child::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #e3e3e3;
}

.news__page-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 46px;
}

.news__page-list {
  display: inline-block;
  border: 1px solid var(--828282, #828282);
  background: var(--ffffff, #fff);
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.44px;
  padding: 9px 13px 9px;
  width: 36px;
  height: 36px;
}

.news__page-img img {
  width: 36px;
  height: 36px;
}

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

.news__all-btn {
  display: inline-block;
  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);
  margin-top: 30px;
  text-align: center;
  padding-top: 4px;
  padding-right: 23px;
  padding-bottom: 4px;
  padding-left: 23px;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3px;
}
.news__all-btn:hover {
  background-color: #2392db;
  color: #fff;
}

.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%);
}
@media screen and (min-width: 1280px) {
  .cv {
    padding-top: 80px;
    padding-bottom: 79px;
  }
}

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

.cv__content {
  text-align: center;
}

.cv__text1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 2.6px;
}

.cv__text2 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1.6px;
  margin-top: 8px;
}

.cv-btn {
  margin-top: 17px;
  display: inline-block;
  color: #f6f7f7;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  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);
  padding: 7px 52px;
}
.cv-btn:hover {
  color: #2392db;
  background: #ebeeee;
  border: 2px solid #2392db;
}

.blog {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 419px) {
  .blog__inner {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}
@media (min-width: 420px) and (max-width: 599px) {
  .blog__inner {
    padding-left: 30px;
    padding-right: 38px;
    margin: 0 auto;
  }
}
@media (min-width: 600px) and (max-width: 929px) {
  .blog__inner {
    width: 660px;
    padding-inline: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 930px) and (max-width: 1239px) {
  .blog__inner {
    width: 806px;
    padding-inline: 47px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1240px) {
  .blog__inner {
    width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
}

.blog__text {
  padding-left: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .blog__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.blog__text-main {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
}
@media screen and (min-width: 1280px) {
  .blog__text-main {
    color: #228ddd;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 3.6px;
    margin-right: 28px;
  }
}

.blog__text-sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2.66px;
  margin-top: 2px;
}
.blog__content {
  margin-top: 58px;
}
@media (min-width: 800px) and (max-width: 1239px) {
  .blog__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 34px;
  }
}
@media (min-width: 1240px) {
  .blog__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 34px;
  }
}

.blog__card {
  padding: 12px 15px 16px 15px;
  border-radius: 4px;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  margin-bottom: 16px;
  width: 360px;
}
@media (max-width: 419px) {
  .blog__card {
    width: 280px;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
@media (min-width: 420px) and (max-width: 599px) {
  .blog__card {
    width: 360px;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
@media (min-width: 600px) and (max-width: 799px) {
  .blog__card {
    width: 360px;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
@media (min-width: 800px) and (max-width: 929px) {
  .blog__card {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
@media (min-width: 930px) and (max-width: 1239px) {
  .blog__card {
    width: 360px;
    margin: 0 auto;
  }
}
@media (min-width: 1240px) {
  .blog__card {
    max-width: 360px;
    margin: 0 auto;
  }
}

.blog__card-img {
  width: 330px;
}
.blog__card-img img {
  width: 100%;
  height: auto;
}

.blog__card-title {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 170%;
}

.blog__card-title-sub {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 170%;
}

.blog__button {
  text-align: center;
}

.blog-button {
  display: inline-block;
  margin: 0 auto;
  margin-top: 46px;
  color: #f6f7f7;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3px;
  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);
}
.blog-button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1a2980), to(#26d0ce));
  background: linear-gradient(90deg, #1a2980, #26d0ce);
}

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

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

.seminar__text-main {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
}

.seminar__text-sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2.66px;
}

.seminar__contents {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
.seminar__card {
  padding: 24px 12px 30px 12px;
  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: 1280px) {
  .seminar__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    width: 1080px;
    max-width: 100%;
    padding: 24px;
    margin: 0 auto;
  }
}

.seminar__card-img {
  text-align: center;
  display: inline-block;
}
.seminar__card-img img {
  width: 324px;
  max-width: 100%;
}

.seminar__card-text {
  margin-top: 22px;
}
@media screen and (min-width: 1280px) {
  .seminar__card-text {
    width: 678px;
    max-width: 100%;
  }
}

.seminar__card-label {
  color: var(--rgb-255255255, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 2px;
  background: #2392db;
  display: inline-block;
  padding: 6px 12px 5px 12px;
  margin-right: 10px;
}

.seminar__card-date {
  color: var(--rgb-515151, #333);
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.seminar__card-title {
  color: var(--rgb-515151, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-top: 14px;
}

.seminar__card-title-sub {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  margin-top: 14px;
}

.seminar__card-link {
  text-align: right;
}

.seminar__card-button {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  border-radius: 2px;
  border: 1px solid #2392db;
  display: inline-block;
  padding: 7px 43px;
  margin-top: 30px;
}
.seminar__card-button:hover {
  background-color: #2392db;
  color: #fff;
}

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

.seminar__all-btn {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 46px;
  border-radius: 48px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.75%, #2188de), color-stop(97.75%, #2bcbc6));
  background: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  color: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3px;
  padding: 9px 54px;
}
.seminar__all-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1a2980), to(#26d0ce));
  background: linear-gradient(90deg, #1a2980, #26d0ce);
}

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

@media screen and (min-width: 1280px) {
  .qa__inner {
    width: 800px;
    margin: 0 auto;
  }
}

.qa__title {
  color: #238fdc;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
  position: relative;
  display: block;
  display: grid;
  place-items: center;
}
.qa__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2bc8c8;
  margin: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -6px;
  position: absolute;
}
@media screen and (min-width: 1280px) {
  .qa__title::after {
    width: 60px;
  }
}

.qa__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: 12px;
}
@media screen and (min-width: 1280px) {
  .qa__boxes {
    margin-top: 43px;
  }
}

@media screen and (min-width: 1280px) {
  .qa__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
}

.qa-box-q {
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 42px;
  width: 100%;
  display: block;
  position: relative;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .qa-box-q {
    padding: 12px 55px 12px 85px;
  }
}

.qa__icon {
  position: absolute;
  width: 20px;
  height: 18.039px;
  right: 10px;
}
@media screen and (min-width: 1280px) {
  .qa__icon {
    width: 20px;
    height: 20px;
  }
}
.qa__icon.is-checked .qa__bar:nth-of-type(1) {
  display: none;
}
.qa__bar {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #2392db;
  -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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  right: 10px;
}
@media (max-width: 427px) {
  .qa__bar {
    width: 16px;
    right: 12px;
  }
}
.qa__bar:nth-of-type(1) {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 10px;
}
.qa__bar:nth-of-type(2) {
  top: 10px;
}

.qa-box-q__icon {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  padding: 6px 15px 10px 14px;
  height: 100%;
  position: absolute;
  width: 50px;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1280px) {
  .qa-box-q__icon {
    width: 71px;
    padding: 10px 25px 15px 25px;
  }
}

.qa-box-q__text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 170%;
}
@media (max-width: 427px) {
  .qa-box-q__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .qa-box-q__text {
    font-size: 16px;
    width: 660px;
  }
}

.qa-box-qbody {
  display: none;
  -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-box-qbody.is-checked {
  display: block;
}
@media screen and (min-width: 1280px) {
  .qa-box-qbody {
    margin-top: 0px;
  }
}

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

.qa-box-a__text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 1280px) {
  .qa-box-a__text {
    font-size: 16px;
  }
}

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

.casestudy__inner {
  padding-left: 12px;
}
@media screen and (min-width: 1280px) {
  .casestudy__inner {
    width: calc(100% - 160px);
    margin: 0 auto;
    padding-left: 0;
  }
}

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

.casestudy__text-main {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
}

.casestudy__text-sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2.66px;
}

.casestudy__slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.casestudy__swiper {
  padding-bottom: 42px;
  padding-left: 8px;
}
@media screen and (min-width: 1280px) {
  .casestudy__swiper {
    padding-right: 62px;
    padding-left: 62px;
    margin-right: 0;
    margin-left: 0;
  }
}

.casestudy__slide {
  width: 320px;
}

.casestudy-card {
  margin-top: 50px;
  border-radius: 4px;
  background: var(--ffffff, #fff);
  -webkit-filter: drop-shadow(5px 7px 34px #f1f1f1);
          filter: drop-shadow(5px 7px 34px #f1f1f1);
  padding-bottom: 14px;
}

.casestudy-card__texts {
  padding-left: 10px;
}

.casestudy-card__text {
  color: #228ddd;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
  margin-top: 14px;
}

.casestudy-card__company {
  padding-top: 10px;
}
.casestudy-card__company p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 170%;
}

.casestudy-card__industry {
  padding-top: 10px;
}

.casestudy-card__info {
  color: #9d9d9d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 170%;
}

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

.casestudy__prev,
.casestudy__next {
  width: 44px;
  height: 44px;
  margin-top: -10px;
}
.casestudy__prev::after,
.casestudy__next::after {
  display: none;
}
.casestudy__prev.swiper-button-lock,
.casestudy__next.swiper-button-lock {
  display: block !important;
}

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

.casestudy__all {
  text-align: center;
}

.casestudy__all-btn {
  display: inline-block;
  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);
  margin-top: 30px;
  text-align: center;
  padding: 8px 53px;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3px;
}
.casestudy__all-btn:hover {
  background-color: #2392db;
  color: #fff;
}

.price {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f4fbff;
}

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

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

.price__text-main {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
}

.price__text-sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2.66px;
}

.price__tables {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 427px) {
  .price__tables {
    width: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .price__tables {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    width: 959px;
  }
}

.price__content {
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  padding-bottom: 30px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 19px;
  padding-right: 20px;
}
@media (max-width: 427px) {
  .price__content {
    padding-left: 10px;
    padding-right: 10px;
    width: 250px;
  }
}
@media screen and (min-width: 1280px) {
  .price__content {
    width: 31.2825860271%;
  }
}

.price__table-head {
  text-align: center;
}

.price__table-head1 {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-top: 30px;
}

.price__table-head2 {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
}

.price__table-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.price__table-head2-month {
  color: var(--rgb-515151, #333);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  position: relative;
  bottom: 0;
}

.price__table-head2-price {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
}

.price__table-head2-yen {
  color: var(--rgb-515151, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.price__table {
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0 auto;
  margin-top: 30px;
  width: 261px;
}
@media (max-width: 427px) {
  .price__table {
    width: 190px;
  }
}
@media screen and (min-width: 1280px) {
  .price__table {
    width: 87%;
  }
}
.price__table th {
  text-align: left;
}
.price__table td {
  text-align: right;
}
.price__table th,
.price__table td {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  height: 39px;
  vertical-align: middle;
}
.price__table tbody tr {
  border-bottom: 1px solid #c2c2c2;
}

.price__all {
  text-align: center;
  margin-top: 30px;
  white-space: nowrap;
}

.price__all-btn {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 54px;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.75%, #2188de), color-stop(97.75%, #2bcbc6));
  background: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  color: #f6f7f7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3px;
}
.price__all-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1a2980), to(#26d0ce));
  background: linear-gradient(90deg, #1a2980, #26d0ce);
}

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

.tab-container {
  width: 398px;
  margin: 0 auto;
}
@media (max-width: 427px) {
  .tab-container {
    width: 280px;
  }
}
@media screen and (min-width: 1280px) {
  .tab-container {
    width: 900px;
    margin: 0 auto;
  }
}

.company__text {
  padding-left: 30px;
}
@media screen and (min-width: 1280px) {
  .company__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
}

.company__text-main {
  color: #228ddd;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 3.6px;
}

.company__text-sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 2.66px;
}

.company-contents {
  width: 398px;
  height: 510px;
  margin-top: 68px;
  position: relative;
  border: 2px solid #2392db;
  background: #fff;
}
@media (max-width: 427px) {
  .company-contents {
    width: 280px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .company-contents {
    width: 900px;
    height: 470px;
    margin: 0 auto;
    margin-top: 80px;
  }
}

button {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 427px) {
  button {
    font-size: 12px;
    line-height: 130%;
    white-space: nowrap;
    text-align: center;
  }
}

.tab-buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: -22px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 427px) {
  .tab-buttons {
    width: 266px;
    height: 63px;
  }
}
@media screen and (min-width: 1280px) {
  .tab-buttons {
    width: 600px;
    height: 80px;
  }
}

.tab-button {
  width: 122px;
  height: 46px;
  background: #fff;
  margin: 0 auto;
}
@media (max-width: 427px) {
  .tab-button {
    width: 84px;
  }
}
.tab-button::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 0;
  border: 0;
  border-bottom: solid 2px #2392db;
  border-right: solid 2px #2392db;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 11.87px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1280px) {
  .tab-button::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border: 0;
    border-bottom: solid 2px #2392db;
    border-right: solid 2px #2392db;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 48px;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1280px) {
  .tab-button {
    width: 200px;
    height: 80px;
  }
}

.tab-button:hover {
  background-color: #f0fbff;
}
.tab-button.active {
  background-color: #2392db;
  color: #fff;
}
.tab-button.active::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 11.87px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1280px) {
  .tab-button.active::before {
    width: 8px;
    height: 8px;
    left: 48px;
  }
}

.button-info {
  padding: 9px 29px 10px 29px;
  position: relative;
  -webkit-transition: background-color 0.3s color 0.3s;
  transition: background-color 0.3s color 0.3s;
}
@media (max-width: 427px) {
  .button-info {
    height: 50px;
  }
}
.button-info::before {
  left: 11.87px;
}
@media screen and (min-width: 1280px) {
  .button-info::before {
    left: 48px;
  }
  .button-info::before.active {
    background-color: #2392db;
    color: #fff;
  }
  .button-info::before.active::before {
    left: 48px;
  }
}

.button-history {
  padding: 10px 45px 9px 44px;
  border-right: 1px solid #2392db;
  position: relative;
  -webkit-transition: background-color 0.3s color 0.3s;
  transition: background-color 0.3s color 0.3s;
}
@media (max-width: 427px) {
  .button-history {
    height: 50px;
    white-space: nowrap;
    text-align: center;
  }
}
.button-history::before {
  left: 12px;
}
@media (max-width: 427px) {
  .button-history::before {
    left: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .button-history::before {
    left: 55px;
  }
  .button-history::before.active {
    background-color: #2392db;
    color: #fff;
  }
  .button-history::before.active::before {
    left: 58px;
  }
}

.button-certification {
  padding: 10px 29px 9px 29px;
  position: relative;
  -webkit-transition: background-color 0.3s color 0.3s;
  transition: background-color 0.3s color 0.3s;
}
@media (max-width: 427px) {
  .button-certification {
    padding: 10px 15px 9px 29px;
    height: 50px;
  }
}
.button-certification::before {
  content: "";
  left: 11px;
}
@media screen and (min-width: 1280px) {
  .button-certification::before {
    left: 48px;
  }
}

.tab-panel {
  display: none;
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}
.tab-panel.active {
  display: block;
}

.company-content__head {
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 427px) {
  .company-content__head {
    margin-top: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .company-content__head {
    margin-top: 90px;
  }
}

.company-content__head1 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 427px) {
  .company-content__head1 {
    font-size: 18px;
  }
}

.company-content__head2 {
  margin-top: 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 1280px) {
  .company-content__head2 {
    margin-top: 17px;
  }
}

.company-info__table-sp {
  display: block;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  width: 320px;
  overflow-x: auto;
}
@media (max-width: 427px) {
  .company-info__table-sp {
    width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .company-info__table-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .company-info__table-sp {
    display: block;
  }
}
.company-info__table-sp th,
.company-info__table-sp td {
  border: 1px solid #000;
  width: 160px;
}
.company-info__table-sp th {
  color: var(--333333, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
}
.company-info__table-sp td {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  border: 1px solid #dbdbdb;
  background: var(--ffffff, #fff);
  text-align: left;
  padding-left: 9px;
  padding-top: 13px;
  padding-bottom: 12px;
}

.company-info__table-sp tbody tr:nth-child(3) th,
.company-info__table-sp tbody tr:nth-child(3) td {
  vertical-align: middle;
}

@media (max-width: 427px) {
  .company-info__table-sp th,
  .company-info__table-sp td {
    font-size: 14px;
  }
}
.company-info__table-pc {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .company-info__table-pc {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .company-info__table-pc {
    display: block;
  }
}

.company-info__table-pc {
  width: 800px;
  margin: 0 auto;
  margin-top: 40px;
  border-collapse: collapse;
}

.company-info__table-pc th,
.company-info__table-pc td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: left;
  width: 200px;
}

.company-info__table-pc th {
  background-color: #f3f3f3;
  white-space: nowrap;
}

.company__history {
  margin: 0 auto;
  padding-left: 30px;
  margin-top: 44px;
  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 (max-width: 427px) {
  .company__history {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1280px) {
  .company__history {
    margin-top: 80px;
    padding-left: 358px;
  }
}

.company__history-date {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}
.company__history-date::before {
  content: "";
  display: inline-block;
  position: relative;
  left: -5px;
  top: -4px;
  width: 9px;
  height: 9px;
  background: #2bcbc6;
  border-radius: 100%;
  margin-right: 9px;
}

.company__history-thing {
  margin-top: 2px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin-left: 18px;
}

#company-certification {
  margin-top: 58px;
}
@media screen and (min-width: 1280px) {
  #company-certification {
    margin-top: 80px;
  }
}

.company-certification-text {
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (min-width: 1280px) {
  .company-certification-text {
    padding-right: 150px;
    padding-left: 150px;
  }
}

.company-certification-title {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  margin-top: 34px;
}
.company-certification-main {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin-top: 14px;
  margin-bottom: 188px;
}
@media screen and (min-width: 1280px) {
  .company-certification-main {
    margin-top: 16px;
  }
}

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

@media screen and (min-width: 1280px) {
  .footer__contents {
    width: 891px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__content {
  color: var(--ffffff, #fff);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .footer__content {
    max-width: 246px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    margin-right: 78px;
    font-weight: 500;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__info1 {
  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;
  margin-top: 24px;
}

.footer__logo img {
  width: 160px;
}

.footer__info2 {
  margin-top: 36px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: 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: 10px;
}
@media screen and (min-width: 1280px) {
  .footer__info2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 408px;
    margin-right: 87px;
    margin-top: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 23px;
  }
}

@media screen and (min-width: 1280px) {
  .footer__contact,
  .footer__privacy {
    border-right: 1px solid #fff;
    height: 26px;
    padding-right: 25px;
  }
}

.footer__contact:hover {
  color: #000;
}

.footer__privacy:hover {
  color: #000;
}

.footer__law:hover {
  color: #000;
}

.footer__img {
  margin-top: 36px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .footer__img {
    margin-top: 0;
    min-width: 122px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__img-x {
  display: inline-block;
  width: 30px;
  margin-right: 16px;
}
.footer__img-x:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 10px 20px rgba(100, 150, 255, 0.3);
          box-shadow: 0 10px 20px rgba(100, 150, 255, 0.3);
}

.footer__img-line {
  display: inline-block;
  width: 30px;
  margin-right: 16px;
}
.footer__img-line:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 10px 20px rgba(100, 150, 255, 0.3);
          box-shadow: 0 10px 20px rgba(100, 150, 255, 0.3);
}

.footer__img-instagram {
  display: inline-block;
  width: 30px;
}
.footer__img-instagram:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 10px 20px rgba(100, 150, 255, 0.3);
          box-shadow: 0 10px 20px rgba(100, 150, 255, 0.3);
}

.footer__copy {
  padding-top: 47px;
  text-align: center;
}

.footer__copygights {
  display: inline-block;
  color: var(--ffffff, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}