@charset "UTF-8";
/*---------------------
// 共通
---------------------*/
:root {
  interpolate-size: allow-keywords;
}

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

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

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .title {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 33px;
  }
}
@media screen and (min-width: 1024px) {
  .title {
    margin-left: 0;
  }
}
.title__en {
  display: block;
  font-size: 36px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #228DDD;
}
.title__ja {
  display: block;
  font-size: 14px;
  letter-spacing: 0.19em;
  color: #228BDE;
}

.button {
  display: inline-block;
  padding: 9px 52px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #F6F7F7;
  background: linear-gradient(90deg, #2188DE 0%, #2BCBC6 100%);
  border-radius: 48px;
  box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.1608);
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, border 0.3s;
}
.button:hover {
  color: #2188DE;
  background: #fff;
}

.header__outer {
  background: linear-gradient(180deg, #EAF4F7 0%, #FFFFFF 100%);
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    gap: 16px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    gap: 120px;
    padding: 0 40px;
  }
}
.header__logo {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    flex-shrink: 0;
  }
}
.header__button {
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__button {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__menu {
    display: block;
  }
}

.drawer-icon {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 20px;
  z-index: 999;
}
.drawer-icon__bar {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #2082E0;
  border-radius: 1.5px;
  transition: transform 0.3s;
}
.drawer-icon__bar:first-of-type {
  transform: translateY(-10px);
}
.drawer-icon__bar:last-of-type {
  transform: translateY(10px);
}
.drawer-icon.is-checked {
  top: 3px;
  left: 6px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #FFF;
}
.drawer-icon.is-checked .drawer-icon__bar:first-of-type {
  transform: translateY(0) rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:last-of-type {
  transform: translateY(0) rotate(-45deg);
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  padding: 130px 0;
  width: 100%;
  height: 100svh;
  background: linear-gradient(180deg, #228EDD 0%, #2BC6C9 100%);
  opacity: 0.9;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.drawer-menu.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    position: static;
    padding: 0;
    max-width: 620px;
    width: 100%;
    height: auto;
    background: none;
    transform: none;
  }
}
@media screen and (min-width: 1024px) {
  .drawer-menu {
    max-width: 831px;
  }
}
.drawer-menu__logo {
  margin: 0 auto 60px;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .drawer-menu__logo {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .gnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.gnav__link-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .gnav__link-group {
    flex-direction: row;
    gap: 0;
  }
}
.gnav__link {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .gnav__link {
    padding: 26px 8px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
  }
  .gnav__link:hover {
    color: #2082df;
  }
  .gnav__link.is-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #2082df;
  }
}
@media screen and (min-width: 1024px) {
  .gnav__link {
    padding: 26px 22px;
  }
  .gnav__link.is-active {
    padding-right: 24px;
  }
}
.gnav__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .gnav__button {
    display: inline-block;
    margin-top: 6px;
  }
}

.mv {
  padding: 20px 0 80px;
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 30px 0 50px;
  }
}
.mv__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1200px;
  }
}
.mv__picture {
  margin: 0 auto;
  max-width: 398px;
}
@media screen and (min-width: 768px) {
  .mv__picture {
    margin: 0;
    max-width: 650px;
  }
}
@media screen and (min-width: 768px) {
  .mv__picture img {
    width: 650px;
  }
}
.mv__container {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__container {
    min-width: 204px;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .mv__container {
    min-width: 256px;
  }
}
.mv__logo {
  margin: 0 auto 20px;
  max-width: 250px;
}
@media screen and (min-width: 768px) {
  .mv__logo {
    margin-left: 0;
    margin-bottom: 24px;
  }
}
.mv__head {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #2B2B2B;
}
@media screen and (min-width: 1024px) {
  .mv__head {
    font-size: 26px;
  }
}
.mv__text {
  margin-bottom: 30px;
  line-height: 2;
}
.news {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 100px 0;
  }
}
.news__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .news__inner {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1010px;
  }
}
.news__title {
  position: relative;
  margin-bottom: 47px;
  padding-bottom: 9px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  color: #238FDC;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-bottom: 60px;
    padding-bottom: 4px;
    font-size: 36px;
  }
}
.news__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: #2BC8C8;
  transform: translateX(-50%);
}
.news__lists {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .news__lists {
    margin-bottom: 25px;
  }
}
.news__more {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .news__more {
    flex-direction: row;
    justify-content: space-between;
  }
}
.news__link {
  text-align: center;
}
.news__link a {
  display: inline-block;
  padding: 3px 22px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #2392DB;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: color 0.3s, background-color 0.3s;
}
.news__link a:hover {
  color: #fff;
  background-color: #2392DB;
}

.news-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .news-link {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
    transition: background-color 0.3s;
  }
  .news-link:hover {
    background-color: rgba(34, 141, 221, 0.3);
  }
}
.news-link:first-child {
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .news-link:first-child {
    margin-bottom: -1px;
  }
}
.news-link:nth-child(n+2) {
  padding-top: 11px;
  border-top: 1px solid #e3e3e3;
}
.news-link:last-child {
  padding-bottom: 11px;
  border-bottom: 1px solid #e3e3e3;
}
.news-link__date {
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news-link__date {
    flex-shrink: 0;
    width: 119px;
    font-size: 16px;
  }
}
.news-link__title {
  font-size: 15px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .news-link__title {
    font-size: 16px;
  }
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 372px;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin: 0;
  }
}
.pagination__prev a, .pagination__num a, .pagination__next a {
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid #828282;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
.pagination__prev a:hover, .pagination__num a:hover, .pagination__next a:hover {
  background: #228DDD;
  border: 1px solid #228DDD;
}
.pagination__prev a path, .pagination__next a path {
  stroke: #828282;
}
.pagination__prev a:hover path, .pagination__next a:hover path {
  stroke: #fff;
}
.pagination__num a {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #707070;
}
.pagination__num a:hover {
  color: #fff;
}
.pagination__num.pagination__num--current a {
  color: #fff;
  background: #228DDD;
  border: 1px solid #228DDD;
}

.concept {
  padding: 60px 0;
  background: #F4FBFF;
}
@media screen and (min-width: 768px) {
  .concept {
    padding: 100px 0;
  }
}
.concept__inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1060px;
  }
}
.concept__image {
  margin: 0 auto;
  max-width: 310px;
}
@media screen and (min-width: 768px) {
  .concept__image {
    flex: 1;
    margin: 0;
    max-width: 450px;
  }
}
.concept__container {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .concept__container {
    flex: 1;
    margin-top: 2px;
    max-width: 450px;
  }
}
.concept__head {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #228DDD;
}
@media screen and (min-width: 768px) {
  .concept__head {
    font-size: 26px;
  }
}
.concept__text {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-bottom: 36px;
  }
}
.concept__button {
  margin-left: 44px;
}
@media screen and (min-width: 768px) {
  .concept__button {
    margin-left: 2px;
  }
}

.case-study {
  padding: 60px 0;
}
@media screen and (min-width: 1024px) {
  .case-study {
    padding: 100px 0 60px;
  }
}
.case-study__inner {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .case-study__inner {
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1120px;
    max-width: 1200px;
  }
}
.case-study__title {
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .case-study__title {
    margin-left: 0;
  }
}
.case-study__title .title__ja {
  margin-top: 3px;
}
.case-study__slider {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .case-study__slider {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 996px;
  }
}
.case-study__swiper {
  padding-bottom: 42px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1024px) {
  .case-study__swiper {
    padding-bottom: 57px;
    padding-left: 0;
    padding-right: 0;
  }
}
.case-study__pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.case-study__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #E1E1E1;
  opacity: 1;
}
.case-study__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2F7DC8;
}
.case-study__prev, .case-study__next {
  width: 44px;
  height: 44px;
  margin-top: -12px !important;
}
@media screen and (min-width: 1024px) {
  .case-study__prev, .case-study__next {
    margin-top: -34px !important;
  }
}
.case-study__prev::after, .case-study__next::after {
  display: none;
}
.case-study__prev svg, .case-study__next svg {
  display: none;
}
.case-study__prev {
  left: 12px !important;
  background: url(../img/prev.png) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .case-study__prev {
    left: 40px !important;
  }
}
.case-study__next {
  right: 10px !important;
  background: url(../img/next.png) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .case-study__next {
    right: 40px !important;
  }
}
.case-study__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .case-study__button {
    margin-top: 24px;
  }
}
.case-study__button a {
  display: inline-block;
  padding: 8px 52px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #2392DB;
  border: 1px solid currentColor;
  border-radius: 2px;
  box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.1608);
  transition: color 0.3s, background-color 0.3s;
}
.case-study__button a:hover {
  color: #fff;
  background-color: #2392DB;
}

.case-study-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 5px 7px 34px 0 #f1f1f1;
}
.case-study-card__link {
  transition: opacity 0.3s;
}
.case-study-card__link:hover {
  opacity: 0.7;
}
.case-study-card__image img {
  width: 320px;
}
.case-study-card__content {
  padding: 14px 10px;
}
.case-study-card__title {
  font-size: 15px;
  font-weight: bold;
  color: #228ddd;
}
.case-study-card__name {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .case-study-card__name {
    margin-top: 12px;
  }
}
.case-study-card__name span {
  margin-left: 10px;
  font-size: inherit;
  font-weight: inherit;
}
.case-study-card__industry {
  margin-top: 10px;
  font-size: 12px;
  color: #9D9D9D;
}

.price {
  padding: 60px 0;
  background: #F4FBFF;
}
@media screen and (min-width: 768px) {
  .price {
    padding: 100px 0;
  }
}
.price__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .price__inner {
    margin: 0 auto;
    max-width: 989px;
  }
}
.price__title {
  margin-left: 15px;
}
.price__title .title__ja {
  margin-top: 3px;
}
.price__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 46px;
}
@media screen and (min-width: 768px) {
  .price__cards {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
}
.price__card {
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}
.price__card:nth-child(n+2) .price-card__price::before,
.price__card:nth-child(n+2) .price-card__price::after {
  position: absolute;
  bottom: 3px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.price__card:nth-child(n+2) .price-card__price::before {
  content: "月";
  left: -19px;
}
.price__card:nth-child(n+2) .price-card__price::after {
  content: "円";
  right: -21px;
}

.price-card {
  margin: 0 auto;
  padding: 30px 15px;
  max-width: 300px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
.price-card__plan {
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  color: #2392DB;
}
.price-card__price {
  position: relative;
  margin: 10px auto 0;
  width: fit-content;
  font-size: 36px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 0.1em;
  color: #2392DB;
}
.price-card__unit {
  font-size: 16px;
  line-height: 1.7;
}
.price-card__table {
  margin: 30px auto 0;
  width: 100%;
  max-width: 261px;
  border-collapse: collapse;
}
.price-card__table tr {
  border-bottom: 1px solid #C2C2C2;
}
.price-card__table th,
.price-card__table td {
  height: 39px;
  vertical-align: middle;
}
.price-card__table th {
  padding-left: 12px;
  text-align: left;
}
.price-card__table td {
  padding-right: 12px;
  text-align: right;
}
.price-card__button {
  margin-top: 30px;
  margin-left: 6px;
}

.company {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 100px 0;
  }
}
.company__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .company__inner {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 980px;
  }
}
.company__title {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .company__title {
    margin-left: 0;
  }
}
.company__title .title__ja {
  margin-top: 3px;
}
.company__container {
  position: relative;
  margin-top: 67px;
  min-height: 510px;
  background: #fff;
  border: 2px solid #2392db;
}
@media screen and (min-width: 768px) {
  .company__container {
    margin-top: 80px;
    min-height: 470px;
  }
}
.company__tabs {
  position: absolute;
  top: -1px;
  left: 50%;
  display: flex;
  width: 100%;
  max-width: 365px;
  box-shadow: 5px 7px 34px 0px #f1f1f1;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .company__tabs {
    max-width: 600px;
  }
}
.company__tab {
  width: 100%;
  max-width: 122px;
}
@media screen and (min-width: 768px) {
  .company__tab {
    max-width: none;
  }
}
.company__tab:nth-child(2) {
  max-width: 121px;
}
@media screen and (min-width: 768px) {
  .company__tab:nth-child(2) {
    max-width: none;
  }
}
.company__tab:nth-child(3) a {
  border-left: 2px solid #2392DB;
}
.company__tab a {
  position: relative;
  display: block;
  padding: 10px 5px 9px;
  font-weight: bold;
  text-align: center;
  color: #2392DB;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .company__tab a {
    padding: 26px 25px 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s, background 0.3s;
  }
  .company__tab a:hover {
    color: #fff;
    background: #2392db;
  }
  .company__tab a:hover svg path {
    stroke: #fff;
  }
}
.company__tab a.current {
  color: #fff;
  background: #2392db;
}
.company__tab a.current svg path {
  stroke: #fff;
}
.company__tab a > svg {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 8px;
  aspect-ratio: 11/7;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .company__tab a > svg {
    position: static;
    width: 11px;
    height: 7px;
    margin-right: 14px;
    transform: translateY(0);
  }
}
.company__tab a > svg path {
  stroke: #2392db;
}
.company__tab a span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.company__tab a span svg {
  display: none;
}
@media screen and (min-width: 768px) {
  .company__tab a span svg {
    display: block;
    margin-right: 14px;
  }
}
.company__tab a span svg path {
  stroke: #2392db;
}
.company-profile {
  padding: 58px 10px 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .company-profile {
    padding: 88px 48px 95px;
  }
}
.company-profile__title {
  font-size: 22px;
  font-weight: bold;
}
.company-profile__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .company-profile__text {
    margin-top: 17px;
  }
}
.company-profile__table {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .company-profile__table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}
.company-profile__items {
  display: flex;
  margin: 0 auto;
  max-width: 320px;
  max-height: 54px;
}
.company-profile__items:nth-child(3) {
  max-height: 80px;
}
@media screen and (min-width: 768px) {
  .company-profile__items {
    max-width: none;
    width: 100%;
  }
  .company-profile__items:nth-child(1) {
    order: 1;
  }
  .company-profile__items:nth-child(2) {
    order: 3;
  }
  .company-profile__items:nth-child(3) {
    order: 5;
    grid-column: span 2;
  }
  .company-profile__items:nth-child(3) .company-profile__item:nth-child(2) {
    max-width: none;
  }
  .company-profile__items:nth-child(4) {
    order: 2;
  }
  .company-profile__items:nth-child(5) {
    order: 4;
  }
}
.company-profile__item {
  flex: 1;
  max-width: 160px;
  border: 1px solid #dbdbdb;
}
@media screen and (min-width: 768px) {
  .company-profile__item {
    max-width: 200px;
  }
}
.company-profile__item:nth-child(1) {
  display: grid;
  place-items: center;
  padding: 13px 9px 12px;
  font-weight: bold;
  background: #F2F2F2;
}
.company-profile__item:nth-child(2) {
  padding: 13px 5px 12px 9px;
  text-align: left;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .company-profile__item:nth-child(2) {
    padding: 13px 23px 12px;
  }
}
.company-profile__item span {
  display: inline-block;
}

.company-history {
  margin: 0 auto;
  padding: 42px 27px;
  max-width: 391px;
}
@media screen and (min-width: 768px) {
  .company-history {
    padding-top: 78px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 245px;
  }
}
.company-history__item + .company-history__item {
  margin-top: 16px;
}
.company-history__date {
  position: relative;
  padding-left: 17px;
  color: #2392DB;
  font-weight: bold;
}
.company-history__date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  background: #2BCBC6;
  border-radius: 50%;
  transform: translateY(-50%);
}
.company-history__text {
  margin-top: 2px;
  padding-left: 17px;
  color: #000;
}

.company-certified-income {
  padding: 56px 28px 66px;
}
@media screen and (min-width: 768px) {
  .company-certified-income {
    margin: 0 auto;
    padding: 78px 50px;
    max-width: 700px;
  }
}
.company-certified-income__title {
  font-weight: bold;
  color: #2392DB;
}
.company-certified-income__text {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .company-certified-income__text {
    margin-top: 16px;
  }
}

.cv {
  padding: 60px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #2390DC 0%, #2BC8C8 100%);
}
@media screen and (min-width: 768px) {
  .cv {
    padding: 80px 0 79px;
  }
}
.cv__lead {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.cv__text {
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.cv__button {
  margin-top: 17px;
}
.cv__button a {
  display: inline-block;
  padding: 7px 52px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #F6F7F7;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.1608);
  transition: color 0.3s, background-color 0.3s;
}
.cv__button a:hover {
  color: #2390DC;
  background-color: #fff;
}

.blog {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .blog {
    padding: 100px 0;
  }
}
.blog__inner {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    padding: 0 47px;
  }
}
@media screen and (min-width: 1024px) {
  .blog__inner {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1200px;
  }
}
.blog__title {
  margin-bottom: 47px;
}
@media screen and (min-width: 768px) {
  .blog__title {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 33px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .blog__title {
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.blog__title--en {
  display: block;
  font-size: 36px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #228DDD;
}
.blog__title--ja {
  display: block;
  font-size: 14px;
  letter-spacing: 0.19em;
  color: #228BDE;
}
.blog__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .blog__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .blog__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog__item {
  padding: 12px 15px 14px;
  max-width: 360px;
  height: 326px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 5px 7px 34px 0 #F1F1F1;
}
@media screen and (min-width: 768px) {
  .blog__item {
    margin: 0 auto;
  }
}
.blog__link {
  transition: opacity 0.3s;
}
.blog__link:hover {
  opacity: 0.7;
}
.blog__thumb {
  position: relative;
  margin-bottom: 6px;
}
.blog__thumb::before {
  content: "ラベル";
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #2392DB;
}
.blog__lead {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: bold;
}
.blog__text {
  font-size: 13px;
}
.blog__button {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .blog__button {
    margin-left: 20px;
  }
}
.seminar {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .seminar {
    padding: 100px 0;
  }
}
.seminar__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .seminar__inner {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1160px;
  }
}
.seminar__title {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .seminar__title {
    margin-left: 0;
  }
}
.seminar__title .title__ja {
  margin-top: 2px;
}
.seminar__boxes {
  margin-top: 47px;
}
@media screen and (min-width: 768px) {
  .seminar__boxes {
    margin-top: 38px;
  }
}
.seminar__box + .seminar__box {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .seminar__box + .seminar__box {
    margin-top: 40px;
  }
}
.seminar__button {
  margin-top: 46px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar__button {
    margin-top: 40px;
  }
}

.seminar-box {
  padding: 24px 12px 30px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 5px 7px 34px 0 #f1f1f1;
}
@media screen and (min-width: 768px) {
  .seminar-box {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    padding: 24px;
  }
}
.seminar-box__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar-box__image {
    width: 31.3953488372%;
  }
}
.seminar-box__image img {
  width: 324px;
}
@media screen and (min-width: 768px) {
  .seminar-box__content {
    width: 65.6976744186%;
  }
}
.seminar-box__meta {
  display: flex;
  gap: 10px;
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .seminar-box__meta {
    margin-top: 0;
  }
}
.seminar-box__column {
  padding: 6px 12px 5px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #2392db;
  border-radius: 2px;
}
.seminar-box__date {
  font-weight: 500;
  line-height: normal;
}
.seminar-box__head {
  margin-top: 12px;
  font-size: 20px;
  font-weight: bold;
}
.seminar-box__text {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 500;
}
.seminar-box__button {
  margin-top: 25px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .seminar-box__button {
    margin-top: 20px;
  }
}
.seminar-box__button a {
  display: inline-block;
  padding: 7px 43px;
  font-size: 14px;
  font-weight: 500;
  color: #2392DB;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: color 0.3s, background-color 0.3s;
}
.seminar-box__button a:hover {
  color: #fff;
  background-color: #2392DB;
}

.qanda {
  padding: 60px 0;
  background: #F4FBFF;
}
@media screen and (min-width: 768px) {
  .qanda {
    padding: 100px 0 121px;
  }
}
.qanda__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .qanda__inner {
    margin: 0 auto;
    max-width: 830px;
  }
}
.qanda__title {
  position: relative;
  padding-bottom: 5px;
  font-size: 36px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  color: #238FDC;
  text-align: center;
}
.qanda__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: #2BC8C8;
  transform: translateX(-50%);
}
.qanda__boxes {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qanda-box::details-content {
  overflow: clip;
  block-size: 0;
  transition-duration: 0.3s;
  transition-property: content-visibility, block-size;
  transition-behavior: allow-discrete;
}
.qanda-box[open] .qanda-box__head::after {
  transform: translateY(-50%) rotate(0);
}
.qanda-box[open]::details-content {
  block-size: unset;
}
.qanda-box__head {
  position: relative;
  display: flex;
  cursor: pointer;
}
.qanda-box__head::before, .qanda-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: #2392DB;
  border-radius: 1px;
}
.qanda-box__head::before {
  right: 10px;
  width: 20px;
  transform: translateY(-50%);
}
.qanda-box__head::after {
  right: 10.98px;
  width: 18.04px;
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.3s;
}
.qanda-box__head-icon {
  flex-shrink: 0;
  display: grid;
  align-items: center;
  padding: 7px 15px 13px 14px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #238FDC;
  border-radius: 10px 0 0 10px;
}
@media screen and (min-width: 768px) {
  .qanda-box__head-icon {
    padding: 10px 25px 15px;
  }
}
.qanda-box__head-text {
  flex-grow: 1;
  padding: 10px 42px 10px 10px;
  font-size: 15px;
  background: #fff;
  border-radius: 0 10px 10px 0;
}
@media screen and (min-width: 768px) {
  .qanda-box__head-text {
    padding: 12px 55px 12px 14px;
    font-size: 16px;
  }
}
.qanda-box__body {
  margin-top: 12px;
  margin-left: 20px;
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .qanda-box__body {
    margin-top: 6px;
    margin-left: 41px;
    padding: 12px 14px;
    font-size: 16px;
  }
}

.footer {
  padding: 46px 0 15px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #2390DC 0%, #2BC8C8 100%);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 0 11px;
  }
}
.footer__inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1092px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .footer__container {
    display: flex;
    align-items: flex-start;
  }
}
.footer__accesses {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .footer__accesses {
    margin-top: 4px;
    text-align: left;
  }
}
.footer__logo img {
  width: 160px;
}
.footer__access {
  font-weight: 500;
}
.footer__access--address {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .footer__access--address {
    margin-top: 17px;
  }
}
.footer__access--tel {
  margin-top: 2px;
}
.footer__access--fax {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .footer__access--fax {
    margin-top: 1px;
  }
}
.footer__menus {
  margin-top: 35px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__menus {
    margin-top: 0;
    margin-left: 78px;
    margin-right: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer__menus {
    display: flex;
    gap: 50px;
  }
}
.footer__menu a {
  font-weight: 500;
  transition: opacity 0.3s;
}
.footer__menu a:hover {
  opacity: 0.7;
}
.footer__menu:nth-child(n+2) {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .footer__menu:nth-child(n+2) {
    position: relative;
    margin-top: 0;
  }
  .footer__menu:nth-child(n+2)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    width: 1px;
    height: 16px;
    background: #fff;
    transform: translateY(-50%);
  }
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 0;
    margin-left: 87px;
  }
}
.footer__twitter a, .footer__facebook a, .footer__instagram a {
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
}
.footer__copyright {
  margin-top: 41px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 62px;
  }
}
.footer__copyright small {
  font-size: 12px;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */