@charset "UTF-8";
body {
  font-size: 20px;
  line-height: 1.7;
  color: #111;
  background: #fafafa;
  font-family: "Noto Sans JP", sans-serif;
}

.header {
  padding: 22px 0px;
  position: absolute;
  width: 100%;
}
@media screen and (min-width:768px) {
  .header {
    padding: 10px 0px;
  }
}

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

.header__logo {
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 14px;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #294c7a;
}
.header__logo a img {
  width: 40px;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .header__logo a img {
    width: 50px;
  }
}

.header__nav {
  display: none;
  z-index: 49;
}
@media screen and (min-width:768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}

.nav__item-link {
  font-size: 14px;
  font-weight: 700;
  color: #294c7a;
}

.nav__item-link:hover {
  opacity: 0.7;
}

.nav__item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 11px 13px 11px 17px;
  border-radius: 71.5px;
  background: #294c7a;
  gap: 11px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #294c7a), color-stop(50%, #3f6291));
  background-image: linear-gradient(to right, #294c7a 50%, #3f6291 50%); /* 背景のデュアルトーン */
  border: none; /* 境界線なし */
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease; /* 背景位置の変化にアニメーションを設定 */
  background-size: 200% 100%; /* 背景サイズを調整 */
}

.nav__item-button:hover {
  background-position: -100% 0; /* ホバー時に背景を移動 */
}

.header__cta-contact {
  font-weight: 700;
  color: #ffffff;
}

.header__cta-dot {
  display: inline-block;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  background-color: #fdd23c;
}

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

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}

.drawer-icon.is-checked .drawer-icon__bar {
  color: #ffffff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  border-radius: 6px;
  height: 3px;
  background: #294c7a;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s linear;
  transition: top 0.3s, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s;
  transition: transform 0.3s linear, top 0.3s, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  background: #005ea5;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.drawer-content.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -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__list {
  padding: 100px 40px 40px 160px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}

.drawer-content__link {
  color: #ffffff;
  font-weight: 700;
}

.drawer-content__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 11px 13px 11px 17px;
  border-radius: 71.5px;
  width: 150px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #294c7a;
  gap: 11px;
}

.drawer__cta-contact {
  color: #294c7a;
  font-weight: 700;
}

.drawer__cta-dot {
  display: inline-block;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  background-color: #fdd23c;
}

.fv {
  position: relative;
}

.fv__img {
  display: block;
  width: 100%;
}

.fv__img img {
  display: block;
  width: 100%;
  height: auto;
}

.fv__contents {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(90%, 900px);
}
@media screen and (min-width:768px) {
  .fv__contents {
    -webkit-transform: none;
            transform: none;
    top: 250px;
    left: 70px;
  }
}

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

.fv__heading-main {
  display: inline-block;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  background: -webkit-gradient(linear, left top, right top, from(#005ea5), color-stop(33%, #067fc0), color-stop(66%, #062ebf), to(#00a8cd));
  background: linear-gradient(90deg, #005ea5 0%, #067fc0 33%, #062ebf 66%, #00a8cd 100%);
  margin-bottom: 18px;
}
@media screen and (min-width:768px) {
  .fv__heading-main {
    font-size: 72px;
    font-weight: 600;
  }
}

.fv__heading-sub {
  margin-top: 5px;
  display: block;
  font-size: 10px;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .fv__heading-sub {
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
  }
}

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

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

.section__problem {
  position: relative;
}
.section__inner {
  padding: 40px 15px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .section__inner {
    padding: 60px 70px;
  }
}

.problem__head {
  font-size: 14px;
  color: #005ea5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 19px;
}
@media screen and (min-width:768px) {
  .problem__head {
    font-size: 40px;
    margin-bottom: 121px;
  }
}

.problem__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1fr);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}
@media screen and (min-width:768px) {
  .problem__list {
    padding-bottom: 105px;
    grid-template-columns: repeat(2, 1fr);
    gap: 150px;
  }
}

.problem__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
  background: #e5e9ef;
  width: 245px;
  height: 58px;
}
@media screen and (min-width:768px) {
  .problem__item {
    width: 452px;
    height: 99px;
    grid-template-columns: 40px 1fr;
    line-height: 34px;
  }
}

.problem__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12px;
  justify-self: center;
}
@media screen and (min-width:768px) {
  .problem__item-img {
    width: 18px;
  }
}

.problem__item-text {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .problem__item-text {
    font-size: 20px;
  }
}

.problem__item-text--em {
  font-size: 14px;
  color: #005ea5;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .problem__item-text--em {
    font-size: 32px;
  }
}

.problem__img-problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: 151px;
  height: 113px;
}
@media screen and (min-width:768px) {
  .problem__img-problem {
    width: 335px;
    height: 251px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

.problem__img-down {
  margin: 0 auto;
  width: 16px;
  height: 16px;
}
@media screen and (min-width:768px) {
  .problem__img-down {
    width: 24px;
    height: 24px;
  }
}

.cta__wrap {
  position: relative;
  width: 100%;
  position: fixed;
  bottom: 10px;
}
@media screen and (min-width:768px) {
  .cta__wrap {
    position: fixed;
    right: 68px;
    bottom: 30px;
    width: auto;
  }
}

.cta__micro {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -35px;
  font-size: 10px;
  color: #fdd23c;
  white-space: nowrap; /*改行させない*/
  display: inline-block;
  padding: 10px 44px;
}
@media screen and (min-width:768px) {
  .cta__micro {
    font-size: 20px;
    top: -50px;
    padding: 10px 60px;
  }
}

/* 共通 */
.cta__micro::before,
.cta__micro::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px; /* 棒の長さ */
  height: 1px; /* 棒の太さ */
  background: #fdd23c;
}
@media screen and (min-width:768px) {
  .cta__micro::before,
  .cta__micro::after {
    width: 45px; /* 棒の長さ */
    height: 1px; /* 棒の太さ */
  }
}

/* 左 */
.cta__micro::before {
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(60deg);
          transform: translateY(-50%) rotate(60deg);
}

/* 右 */
.cta__micro::after {
  right: 6px;
  -webkit-transform: translateY(-50%) rotate(-60deg);
          transform: translateY(-50%) rotate(-60deg);
}

.cta__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  border-radius: 999px;
  width: 230px;
  height: 30px;
  background-color: #fdd23c;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdd23c), color-stop(50%, #fff3b0));
  background-image: linear-gradient(to right, #fdd23c 50%, #fff3b0 50%); /* 背景のデュアルトーン */
  border: none; /* 境界線なし */
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease; /* 背景位置の変化にアニメーションを設定 */
  background-size: 200% 100%; /* 背景サイズを調整 */
}
@media screen and (min-width:768px) {
  .cta__btn {
    width: 500px;
    height: 65px;
  }
}

.cta__btn:hover {
  background-position: -100% 0; /* ホバー時に背景を移動 */
}

.cta__img {
  position: absolute;
  left: 8px;
  bottom: 1px;
}

.cta__img img {
  height: 48px;
  width: 35px;
}
@media screen and (min-width:768px) {
  .cta__img img {
    width: 92px;
    height: 125px;
  }
}

.cta__text {
  font-size: 10px;
  color: #005ea5;
}
@media screen and (min-width:768px) {
  .cta__text {
    font-size: 20px;
  }
}

.cta__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width:768px) {
  .cta__icon {
    right: 45px;
  }
}

.cta__icon img {
  display: block;
  width: 19px;
  height: 19px;
}
@media screen and (min-width:768px) {
  .cta__icon img {
    width: 30px;
    height: 30px;
  }
}

.section__affinity {
  background-color: #e5e9ef;
}

@media screen and (min-width:768px) {
  .section__head {
    font-size: 32px;
  }
}

.affinity__head {
  text-align: center;
  font-size: 14px;
  color: linear-gradient(90deg, #005ea5 0%, #067fc0 33%, #062ebf 66%, #00a8cd 100%);
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .affinity__head {
    margin-bottom: 80px;
    font-size: 32px;
  }
}

.affinity__head--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#005ea5), color-stop(33%, #067fc0), color-stop(66%, #062ebf), to(#00a8cd));
  background: linear-gradient(90deg, #005ea5 0%, #067fc0 33%, #062ebf 66%, #00a8cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .affinity__head--gradient {
    display: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #ffffff;
  }
}

@media screen and (min-width:768px) {
  .affinity__head--boxed {
    display: inline-block;
    color: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(#005ea5), color-stop(33%, #067fc0), color-stop(66%, #062ebf), to(#00a8cd));
    background: linear-gradient(90deg, #005ea5 0%, #067fc0 33%, #062ebf 66%, #00a8cd 100%);
    margin-bottom: 30px;
    padding: 0 15px;
  }
}

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

.section__affinity-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .section__affinity-profile {
    display: block;
  }
}

.profile-img {
  width: 117px;
}
@media screen and (min-width:768px) {
  .profile-img {
    width: 239px;
    height: 239px;
  }
}
@media screen and (min-width:768px) {
  .profile-img {
    margin-bottom: 20px;
  }
}

.section__affinity-org {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .section__affinity-org {
    font-size: 14px;
  }
}

.section__affinity-name {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .section__affinity-name {
    font-size: 20px;
  }
}

.section__affinity-license {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .section__affinity-license {
    font-size: 14px;
  }
}

.affinity__message-card {
  border-radius: 20px;
  border: 1px solid #7d7d7d;
  background: #ffffff;
  width: 345px;
  height: 119.197px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .affinity__message-card {
    width: 734px;
    height: 259px;
  }
}

.card__title {
  font-size: 14px;
  font-weight: 700;
  color: #005ea5;
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .card__title {
    font-size: 32px;
    margin-top: 30px;
  }
}

.card__text {
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (min-width:768px) {
  .card__text {
    font-size: 20px;
    margin-top: 36px;
  }
}

.affinity__definition {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  .affinity__definition {
    margin-top: 100px;
  }
}

.affinity__definition-head {
  font-size: 14px;
  font-weight: 700;
  color: #005ea5;
}
@media screen and (min-width:768px) {
  .affinity__definition-head {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.affinity__definition-text {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .affinity__definition-text {
    font-size: 20px;
  }
}

.article-card {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #111;
  width: 345px;
  padding: 7px;
}
@media screen and (min-width:768px) {
  .article-card {
    width: 756px;
    padding: 30px;
    margin: 0 auto;
  }
}

.article-card__top {
  display: grid;
  grid-template-columns: 103px 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width:768px) {
  .article-card__top {
    grid-template-columns: 149px 1fr;
  }
}

.article-card__thumb {
  width: 103px;
  height: 58px;
  display: block;
  border: 1px solid #111;
}
@media screen and (min-width:768px) {
  .article-card__thumb {
    width: 149px;
    height: 84px;
  }
}

.article-card__text {
  min-width: 0;
}

.article-card__title {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:768px) {
  .article-card__title {
    font-size: 20px;
    margin: 0 0 18px;
  }
}

.article-card__desc {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width:768px) {
  .article-card__desc {
    font-size: 14px;
  }
}

.article-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}

.article-card__site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.article-card__site-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.article-card__site-text {
  font-size: 10px;
}
@media screen and (min-width:768px) {
  .article-card__site-text {
    font-size: 14px;
  }
}

.article-card__date {
  font-size: 10px;
  white-space: nowrap;
}
@media screen and (min-width:768px) {
  .article-card__date {
    font-size: 14px;
  }
}

.solution__head {
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: #005ea5;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid #fdd23c;
  stroke-width: 3px;
}
@media screen and (min-width:768px) {
  .solution__head {
    font-size: 64px;
    stroke-width: 5px;
    margin-bottom: 60px;
  }
}

.solution__content + .solution__content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .solution__content + .solution__content {
    margin-top: 80px;
  }
}

.solution__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .solution__label {
    font-size: 20px;
    gap: 6px;
  }
}

.solution__label::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fdd23c;
  display: inline-block;
}
@media screen and (min-width:768px) {
  .solution__label::before {
    width: 10px;
    height: 10px;
  }
}

.solution__title {
  font-size: 14px;
  font-weight: 700;
  color: #005ea5;
  margin-bottom: 20px;
  border-bottom: 1px dashed #d9d9d9;
}
@media screen and (min-width:768px) {
  .solution__title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

.solution__box {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e7eff5;
  background: #e7eff5;
  width: 345px;
  height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .solution__box {
    width: 850px;
    height: 300px;
  }
}

.solution__list {
  list-style-type: disc;
  padding-left: 1.2em;
}
@media screen and (min-width:768px) {
  .solution__list {
    padding-left: 2em;
  }
}

.solution__item {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .solution__item {
    font-size: 20px;
  }
}

.solution__item + .solution__item {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .solution__item + .solution__item {
    margin-top: 50px;
  }
}

@media screen and (min-width:768px) {
  .solution__cta-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

.solution__cta-wrap {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .solution__cta-wrap {
    margin-top: 80px;
  }
}

.solution__cta-micro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: 500;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width:768px) {
  .solution__cta-micro {
    font-size: 14px;
  }
}

.solution__cta-micro::before,
.solution__cta-micro::after {
  content: "";
  width: 20px; /* 棒の長さ */
  height: 1px; /* 棒の太さ */
  background: #111;
}
@media screen and (min-width:768px) {
  .solution__cta-micro::before,
  .solution__cta-micro::after {
    width: 30px; /* 棒の長さ */
    height: 1px; /* 棒の太さ */
  }
}

.solution__cta-micro::before {
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(60deg);
          transform: translateY(-50%) rotate(60deg);
}

.solution__cta-micro::after {
  right: 6px;
  -webkit-transform: translateY(-50%) rotate(-60deg);
          transform: translateY(-50%) rotate(-60deg);
}

.solution__cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #111;
  width: 300px;
  height: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0 auto;
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .solution__cta-btn {
    width: 450px;
    height: 91px;
  }
}

.solution__cta-text {
  font-size: 10px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
@media screen and (min-width:768px) {
  .solution__cta-text {
    font-size: 20px;
  }
}

.solution__cta-img img {
  width: 10px;
  height: 10px;
}
@media screen and (min-width:768px) {
  .solution__cta-img img {
    width: 21px;
    height: 21px;
    aspect-ratio: 1/1;
  }
}

.section__benefit {
  background: #e5e9ef;
}

.section__benefit-wrap {
  text-align: center;
}

.benefit__title--box {
  font-size: 14px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#005ea5), color-stop(33%, #067fc0), color-stop(66%, #062ebf), to(#00a8cd));
  background: linear-gradient(90deg, #005ea5 0%, #067fc0 33%, #062ebf 66%, #00a8cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width:768px) {
  .benefit__title--box {
    font-size: 40px;
  }
}

.benefit__title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .benefit__title {
    font-size: 40px;
  }
}

.benefit__text {
  margin-top: 30px;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width:768px) {
  .benefit__text {
    font-size: 20px;
    margin-top: 60px;
  }
}

.benefit__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width:768px) {
  .benefit__results {
    margin-top: 80px;
  }
}

.benefit__results-item {
  position: relative;
}

.benefit__results-wrap {
  position: absolute;
  inset: 0; /* 上下左右0 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* ← gridやめる */
  -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;
  text-align: center;
  gap: 3px;
}

.benefit__results-read {
  font-size: 5px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .benefit__results-read {
    font-size: 20px;
  }
}

.benefit__results-value {
  font-size: 10px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#005ea5), color-stop(33%, #067fc0), color-stop(66%, #062ebf), to(#00a8cd));
  background: linear-gradient(90deg, #005ea5 0%, #067fc0 33%, #062ebf 66%, #00a8cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width:768px) {
  .benefit__results-value {
    font-size: 40px;
  }
}

.benefit__results-img {
  width: 100px;
  height: 59px;
}
@media screen and (min-width:768px) {
  .benefit__results-img {
    width: 361px;
    height: 213px;
  }
}

.section__head-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
}
@media screen and (min-width:768px) {
  .section__head-label {
    gap: 6px;
  }
}

.section__head-jp-img {
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
  .section__head-jp-img {
    width: 30px;
    height: 31px;
  }
}

.section__head-jp-text {
  font-size: 5px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .section__head-jp-text {
    font-size: 20px;
  }
}

.section__head-en {
  font-size: 14px;
  font-weight: 700;
  color: #294c7a;
}
@media screen and (min-width:768px) {
  .section__head-en {
    font-size: 64px;
  }
}

@media screen and (min-width:768px) {
  .works__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    gap: 90px 37px;
  }
}

.works__card {
  border: 1px solid #111;
  max-width: 266px;
  margin: 0 auto;
  height: 156px;
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .works__card {
    max-width: 550px;
    height: 320.095px;
  }
}

.works__card + .works__card {
  margin-top: 10px;
}
.works__card-head {
  background-color: #155aa8;
  width: 266px;
  height: 46.211px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .works__card-head {
    width: 550px;
    height: 94.943px;
  }
}

.works__card-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  padding-top: 3px;
}
@media screen and (min-width:768px) {
  .works__card-title {
    font-size: 20px;
    padding-top: 10px;
  }
}

.works__card-sub {
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .works__card-sub {
    font-size: 14px;
    margin-top: 10px;
  }
}

.works__card-body {
  margin-top: 15px;
}
@media screen and (min-width:768px) {
  .works__card-body {
    margin-top: 50px;
  }
}

.works__card-body--web {
  margin-top: 6px;
}
@media screen and (min-width:768px) {
  .works__card-body--web {
    margin-top: 20px;
  }
}

.works__card-body--new {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .works__card-body--new {
    margin-top: 40px;
  }
}

.works__card-body--subsidy {
  margin-top: 15px;
}

.works__card-text--new {
  margin-top: 25px;
}
@media screen and (min-width:768px) {
  .works__card-text--new {
    margin-top: 50px;
  }
}

.works__card-body p {
  font-size: 10px;
  color: #294c7a;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .works__card-body p {
    font-size: 20px;
  }
}

.works__card-body--web p {
  font-size: 10px;
  color: #294c7a;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .works__card-body--web p {
    font-size: 20px;
  }
}

.works__card-body--new p {
  font-size: 10px;
  color: #294c7a;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .works__card-body--new p {
    font-size: 20px;
  }
}

.works__card-text--new p {
  font-size: 10px;
  color: #294c7a;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .works__card-text--new p {
    font-size: 20px;
  }
}

.works__card-text {
  margin-top: 20px;
}

.works__card-text--web {
  margin-top: 13px;
}

@media screen and (min-width:768px) {
  .works__card-list {
    margin-top: 30px;
  }
}

.works__card-item {
  font-size: 10px;
  color: #294c7a;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .works__card-item {
    font-size: 20px;
  }
}

.works__card-item + .works__card-item {
  margin-top: 16px;
}

.plan__img {
  margin: 0 auto;
  width: 345px;
  height: 157px;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .plan__img {
    width: 1034px;
    height: 471px;
  }
}

.plan__text {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .plan__text {
    font-size: 20px;
    margin-top: 28px;
  }
}

.section__about {
  background: #e5e9ef;
}

.about__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.about__profile-img {
  width: 70.88px;
  height: 96.797px;
}
@media screen and (min-width:768px) {
  .about__profile-img {
    width: 298px;
    height: 407px;
  }
}

@media screen and (min-width:768px) {
  .about__profile-meta {
    grid-column: 2;
  }
}

.about__profile-org {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .about__profile-org {
    font-size: 14px;
  }
}

.about__profile-en {
  font-size: 10px;
  font-weight: 400;
  color: #005ea5;
  margin-top: 5px;
}
@media screen and (min-width:768px) {
  .about__profile-en {
    font-size: 14px;
  }
}

.about__profile-ja {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 8px;
}
@media screen and (min-width:768px) {
  .about__profile-ja {
    font-size: 20px;
  }
}

.about__profile-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #294c7a;
}
@media screen and (min-width:768px) {
  .about__profile-ja::before {
    width: 5px;
    height: 22px;
  }
}

.about__profile-lisence {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .about__profile-lisence {
    font-size: 20px;
  }
}

.about__profile-address {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .about__profile-address {
    font-size: 20px;
  }
}

.about__profile-text {
  font-size: 10px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .about__profile-text {
    font-size: 20px;
  }
}

.offer__head h2 {
  font-size: 14px;
  color: #005ea5;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (min-width:768px) {
  .offer__head h2 {
    font-size: 40px;
    text-align: center;
    margin-top: 5%;
  }
}

.offer__content {
  background: #e7eff5;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 300px;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .offer__content {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 900px;
    margin-top: 43px;
  }
}

.offer__item + .offer__item {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .offer__item + .offer__item {
    margin-top: 40px;
  }
}

.offer__item-img {
  width: 23px;
  height: 22px;
}

.offer__item-img img {
  width: 23px;
  height: 22px;
}
@media screen and (min-width:768px) {
  .offer__item-img img {
    width: 55px;
    height: 53px;
  }
}

.offer__item-text {
  font-size: 14px;
  color: #005ea5;
  font-weight: 700;
  margin-left: 10px;
}
@media screen and (min-width:768px) {
  .offer__item-text {
    font-size: 32px;
  }
}

.offer__item-sub {
  font-size: 10px;
  color: #111;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .offer__item-sub {
    font-size: 20px;
  }
}

.section__narrow {
  background: #e5e9ef;
}

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

.section__narrow-head h2 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
@media screen and (min-width:768px) {
  .section__narrow-head h2 {
    font-size: 32px;
  }
}

.narrow__head-emphasis {
  font-weight: 700;
  font-size: 20px;
  color: #005ea5;
}
@media screen and (min-width:768px) {
  .narrow__head-emphasis {
    font-size: 64px;
  }
}

.narrow__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  gap: 20px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:768px) {
  .narrow__cards {
    grid-template-columns: repeat(2, 400px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 80px;
    gap: 40px 40px;
  }
}

.narrow__card {
  border: 1px solid #111;
  width: 160px;
  height: 120px;
}
@media screen and (min-width:768px) {
  .narrow__card {
    width: 400px;
    height: 220px;
  }
}

.narrow__head {
  background-color: #155aa8;
  width: 160px;
  height: 35px;
  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;
}
@media screen and (min-width:768px) {
  .narrow__head {
    width: 400px;
    height: 50px;
  }
}

.narrow__head-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width:768px) {
  .narrow__head-text {
    font-size: 20px;
  }
}

.narrow__card-body {
  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;
  min-height: 85px;
}
@media screen and (min-width:768px) {
  .narrow__card-body {
    min-height: 170px;
  }
}

.narrow__card-text {
  font-size: 10px;
  font-weight: 700;
  color: #294c7a;
  text-align: center;
}
@media screen and (min-width:768px) {
  .narrow__card-text {
    font-size: 20px;
  }
}

.narrow__card-item {
  font-size: 10px;
  font-weight: 700;
  color: #294c7a;
  text-align: left;
}
@media screen and (min-width:768px) {
  .narrow__card-item {
    font-size: 20px;
  }
}

.section__action {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url(../img/glap.jpg);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/glap.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.section__action-head h2 {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .section__action-head h2 {
    font-size: 32px;
  }
}

.action__cta-wrap {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.action__cta-micro {
  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;
  font-size: 5px;
  font-weight: 700;
  color: #ffffff;
  gap: 6px;
}
@media screen and (min-width:768px) {
  .action__cta-micro {
    font-size: 20px;
  }
}

.action__cta-micro::before,
.action__cta-micro::after {
  content: "";
  width: 10px; /* 棒の長さ */
  height: 1px; /* 棒の太さ */
  background: #ffffff;
}
@media screen and (min-width:768px) {
  .action__cta-micro::before,
  .action__cta-micro::after {
    width: 30px; /* 棒の長さ */
    height: 1px; /* 棒の太さ */
  }
}

.action__cta-micro::before {
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(60deg);
          transform: translateY(-50%) rotate(60deg);
}

.action__cta-micro::after {
  right: 6px;
  -webkit-transform: translateY(-50%) rotate(-60deg);
          transform: translateY(-50%) rotate(-60deg);
}

.action__cta-btn {
  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;
  border: 1px solid #005ea5;
  background: #005ea5;
  border-radius: 71.5px;
  color: #005ea5;
  width: 125px;
  height: 30px;
}
@media screen and (min-width:768px) {
  .action__cta-btn {
    width: 360px;
    height: 79px;
  }
}

.action__cta-text {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .action__cta-text {
    font-size: 32px;
  }
}

.action__text {
  margin-top: 15px;
  text-align: center;
  font-size: 5px;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .action__text {
    margin-top: 40px;
    font-size: 14px;
  }
}

.action__cta-dot {
  margin-left: 10px;
  display: inline-block;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: #fdd23c;
}
@media screen and (min-width:768px) {
  .action__cta-dot {
    width: 30px;
    height: 30px;
    margin-left: 25px;
  }
}

.footer {
  text-align: center;
  background-color: #005ea5;
  padding: 5px 0px;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .footer {
    padding: 15px 0px;
  }
}

.footer__copy {
  display: block;
  font: "Noto Serif JP", serif;
  line-height: 1;
  margin: 0;
  font-size: 5px;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .footer__copy {
    font-size: 14px;
  }
}