@charset "UTF-8";
body {
  font-size: 14px;
  line-height: 24px;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

* {
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  overflow-y: auto;
}

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

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

.button {
  color: #023e78;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #023e78;
  padding: 23px 31px;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .button {
    font-size: 14px;
  }
}
.button.white-btn {
  padding: 21px 83px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: #023e78;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.button.white-btn:hover {
  background: #023e78;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .button.white-btn {
    padding: 4.6px 6.2px;
    background: #ffffff;
    color: #023e78;
    border: 1px solid #023e78;
  }
}
@media screen and (min-width: 1200px) {
  .button.white-btn {
    padding: 21px 31px;
  }
}
.button.blue-btn {
  padding: 23px 99px;
  background: #ffffff;
}
.button.blue-btn:hover {
  background: #002a52;
}
@media screen and (min-width: 768px) {
  .button.blue-btn {
    background: #023e78;
    color: #ffffff;
    line-height: 24px; /* 171.429% */
    padding: 4.4px 9.2px;
    border: none;
  }
}
@media screen and (min-width: 1200px) {
  .button.blue-btn {
    padding: 22px 46px;
  }
}

.arrow-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
}
.arrow-btn:hover .arrow-btn-line {
  width: 143px;
  margin-right: -79px;
}
@media screen and (min-width: 768px) {
  .arrow-btn:hover .arrow-btn-line {
    width: 160px;
    margin-right: -65px;
  }
}

.arrow-btn-text {
  margin-top: 11px;
  color: #023e78;
  text-align: right;
  font-family: "Fira Sans";
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
.arrow-btn-text.white {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .arrow-btn-text {
    font-size: 32px;
  }
}

.arrow-btn-line {
  margin-top: 6px;
  width: 64px;
  height: 2px;
  background: #023e78;
  position: relative;
  z-index: 2; /* 一番前面に表示 */
  -webkit-transition: width 0.3s ease, margin-right 0.3s ease;
  transition: width 0.3s ease, margin-right 0.3s ease;
}
@media screen and (min-width: 768px) {
  .arrow-btn-line {
    width: 95px;
    margin-top: 6px;
    -webkit-transition: width 0.3s ease, margin-right 0.3s ease;
    transition: width 0.3s ease, margin-right 0.3s ease;
  }
}
.arrow-btn-line.white {
  background: #ffffff;
}
.arrow-btn-line.white::after {
  background: #ffffff;
}
.arrow-btn-line::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  right: -1px;
  top: -4px;
  background: #023e78;
  -webkit-transform: translateY(-50%) rotate(215deg);
          transform: translateY(-50%) rotate(215deg);
  z-index: 2; /* 線と同じ前面に */
}

.arrow-btn-circle {
  margin-top: -2px;
  width: 40px;
  height: 40px;
  margin-left: -32.5px;
  background: #fff400;
  border-radius: 50%;
  z-index: 1; /* 背面に配置 */
}
@media screen and (min-width: 768px) {
  .arrow-btn-circle {
    width: 51px;
    height: 51px;
    background: #fff400;
  }
}
.arrow-btn-circle.white {
  border: 2px solid #fff400; /* 黄色の枠線 */
  background: none;
}

.header {
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
  }
}

@media screen and (min-width: 768px) {
  .header__inner {
    height: inherit;
    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-inline: 16px;
  }
}

.header__inner-sp {
  height: inherit;
  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-inline: 20px;
  padding-right: 23px;
  padding-top: 18px;
  background: #ffffff;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header__inner-sp {
    padding-inline: 0;
    padding-top: 0;
  }
}

.header__logo {
  font-family: "Roboto", sans-serif;
  color: #023e78;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14px;
  padding-top: -6px;
  text-transform: capitalize;
}
@media screen and (min-width: 600px) {
  .header__logo {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    font-size: 40px;
  }
}

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

.drawer-icon {
  width: 27px;
  height: 18px;
  position: relative;
  padding-right: 20px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 27px;
  height: 2.25px;
  background: #023e78;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 6.25px;
}
.drawer-icon__bar:nth-child(3) {
  top: 13.5px;
}

.header__nav {
  position: fixed;
  z-index: 15;
  background: #023e78;
  width: 100%;
  height: calc(100% - 60px);
  padding-top: 52px;
  top: 104px;
  padding-top: 53px;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.header__lists {
  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: 24px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 42px;
  }
}
@media screen and (min-width: 1200px) {
  .header__lists {
    gap: 46px;
  }
  .header__lists.p-case-study__header {
    margin-top: 1px;
  }
}

@media screen and (min-width: 768px) {
  .header__list {
    position: relative;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #ffffff;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 10px;
    color: #1a1a1a;
  }
  .header__link::after {
    content: "／";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 16px;
  }
  .header__link.header__link-last::after {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 14px;
  }
}

.header__buttons {
  display: none;
}

.header__button-left {
  margin-top: 40px;
  display: inline-block;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .header__button-left {
    margin: 0;
    margin-left: -14px;
  }
}

.header__button-right {
  margin-top: 5px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header__button-right {
    margin: 0;
    margin-left: -36px;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: visible; /* ← テスト用 */
}

.fv__fixed-space {
  width: 40px; /* ← これが固定の左余白 */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__fixed-space {
    width: 90px; /* ← これが固定の左余白 */
  }
}

.fv__image {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv__image {
    width: 100%;
    height: 700px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.fv__image img {
  display: block;
  width: 100%;
  height: 607px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 376px) {
  .fv__image img {
    width: 95vw;
  }
}
@media screen and (min-width: 768px) {
  .fv__image img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 700px;
  }
}

.fv__title {
  position: absolute;
  z-index: 30;
  white-space: nowrap;
  left: 19px;
  font-size: 40px;
  color: #023e78;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  background: #ffffff;
  display: inline-block;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .fv__title {
    left: 50px;
    font-size: 60px;
  }
}

.fv__title-first {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title-first {
    display: inline;
    top: 435px;
    z-index: 10;
  }
}

.fv__title-second {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title-second {
    display: inline;
    top: 523px;
    z-index: 10;
  }
}

.fv__title-first-sp {
  top: 387px;
}
@media screen and (min-width: 768px) {
  .fv__title-first-sp {
    display: none;
  }
}

.fv__title-second-sp {
  top: 443px;
}
@media screen and (min-width: 768px) {
  .fv__title-second-sp {
    display: none;
  }
}

.fv__title-third-sp {
  top: 499px;
  display: inline;
}
@media screen and (min-width: 768px) {
  .fv__title-third-sp {
    display: none;
  }
}

.fv__text {
  position: absolute;
  left: 20px;
  top: 564px;
  font-size: clamp(13px, 4.27vw, 20px);
  font-style: normal;
  font-weight: 700;
  background: #023e78;
  color: #ffffff;
  display: inline-block;
  line-height: normal;
  white-space: nowrap;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .fv__text {
    left: 50px;
    top: 611px;
    font-size: 20px;
    z-index: 30;
  }
}

.section__inner {
  padding-top: 60px;
}
.section__inner.about__inner {
  padding-top: 52px;
}
@media screen and (min-width: 768px) {
  .section__inner {
    padding-top: 150px;
    padding-bottom: 229px;
  }
  .section__inner.about__inner {
    padding-bottom: 0px;
    padding-top: 145px;
  }
}

.heading__en,
.heading__ja {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .heading__en,
  .heading__ja {
    padding-left: 90px;
  }
}

.heading__en {
  color: #023e78;
  font-family: "Fira Sans", sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
.heading__en.white-en {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 50px;
  }
}
@media screen and (min-width: 900px) {
  .heading__en {
    font-size: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .heading__en {
    font-size: 100px;
  }
}

@media screen and (min-width: 768px) {
  .about-head {
    margin-top: -42px;
  }
}

.heading__ja {
  margin-top: 3px;
  color: #023e78;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.heading__ja.white-ja {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 24px;
    margin-top: -6px;
  }
}
.heading__ja.service__heading__ja {
  margin-top: 0px;
}

.about__content {
  margin-top: 19px;
  min-height: 854px;
  background: url(../img/sp/about-sp.png) no-repeat;
  background-size: 100% 854px;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 150px;
    background: url(../img/about-pc.png) no-repeat;
    background-size: contain; /* auto 100%から変更 */
    background-position: center 40px;
  }
  .about__content.top {
    min-height: 66vh;
  }
}
@media screen and (min-width: 1400px) {
  .about__content {
    background-size: cover; /* auto 100%から変更 */
    height: 90vh;
  }
}

@media screen and (min-width: 768px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.about__message {
  padding-top: 39px;
  padding-inline: 20px;
  line-height: 24px; /* 171.429% */
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about__message {
    padding-top: 98px;
    width: 36.640625%;
    padding-inline: 0px;
    padding-left: 90px;
    font-size: 14px;
  }
}

.about__cta {
  padding-top: 70px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__cta {
    width: 60.234375%;
    margin-left: -44px;
    margin-top: 23px;
  }
}

.about__cta-img-1 {
  width: 335px;
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
@media screen and (min-width: 600px) {
  .about__cta-img-1 {
    width: 455px;
  }
}
@media screen and (min-width: 768px) {
  .about__cta-img-1 {
    width: 681px;
    width: 87.984496124%;
    top: 0;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.about__view-more {
  position: absolute;
  top: 311px;
  right: 20px;
  z-index: 10;
}
@media screen and (min-width: 600px) {
  .about__view-more.front-page {
    top: 385px;
  }
}
@media screen and (min-width: 768px) {
  .about__view-more.front-page {
    top: -124px;
    right: 90px;
  }
}
@media screen and (min-width: 768px) {
  .about__view-more {
    top: -124px;
    right: 90px;
  }
}

.about__cta-img-2-wrapper {
  position: absolute; /* 画像の現在の `absolute` をここに移動 */
  top: 30px;
  right: 0;
  width: 295px; /* 画像の幅と同じにする */
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .about__cta-img-2-wrapper {
    width: 355px; /* 画像の幅と同じにする */
  }
}
@media screen and (min-width: 768px) {
  .about__cta-img-2-wrapper {
    width: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    top: -283px;
  }
}
@media screen and (min-width: 1200px) {
  .about__cta-img-2-wrapper {
    width: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    top: -283px;
  }
}

.about__cta-img-2 {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__cta-img-2 {
    height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about__cta-img-2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 62, 120, 0.8); /* 半透明の青 */
  z-index: 2;
}

.service {
  position: relative;
  overflow: hidden; /* はみ出た背景を切り取る */
}
.service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1287px;
  background-image: url("../img/sp/about-sp.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0; /* コンテンツより背面に配置 */
}
@media screen and (min-width: 768px) {
  .service::after {
    background-image: url("../img/about-pc.png");
    background-size: contain;
  }
}

.service__inner {
  position: relative;
  z-index: 1; /* コンテンツを前面に */
  padding-bottom: 116px;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .service__inner {
    padding-top: 105px;
    padding-bottom: 225px;
  }
}

@media screen and (min-width: 768px) {
  .heading-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 90px;
  }
}

.service__view-more {
  margin-top: 30px;
  margin-right: 19.5px;
}
.service__view-more.front-page-service__view-more {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .service__view-more {
    margin-top: 56px;
    margin-right: 0;
  }
}

.service__cards {
  padding-top: 67px;
  padding-inline: 35px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 74px;
}
@media screen and (min-width: 768px) {
  .service__cards {
    padding-top: 89px;
    padding-inline: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 70px;
  }
  .service__cards.second {
    padding-top: 147px;
  }
}

@media screen and (min-width: 768px) {
  .service-card {
    width: 25%;
  }
  .service-card.second {
    padding-top: 60px;
  }
  .service-card.third {
    padding-top: 120px;
  }
}

.service-card__image {
  position: relative;
}
@media screen and (min-width: 768px) {
  .service-card__image img {
    width: 320px;
  }
}

.service-card__image-number-bg {
  position: absolute;
  top: -52px;
  right: 0px;
  color: #fff;
  text-align: right;
  font-family: "Fira Sans";
  font-size: 100px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.service-card__image-number {
  position: absolute;
  top: -55px;
  right: 3px;
  color: #023e78;
  text-align: right;
  font-family: "Fira Sans";
  font-size: 100px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.service-card__image-caption1,
.service-card__image-caption2 {
  position: absolute;
  left: -15px;
  color: #023e78;
  font-size: clamp(20px, 7.47vw, 32px);
  font-weight: 700;
  line-height: normal;
  background: #ffffff;
}
@media screen and (min-width: 600px) {
  .service-card__image-caption1,
  .service-card__image-caption2 {
    left: -32px;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .service-card__image-caption1,
  .service-card__image-caption2 {
    left: -32px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .service-card__image-caption1,
  .service-card__image-caption2 {
    left: -32px;
    font-size: 28px;
  }
}

.service-card__image-caption1 {
  bottom: 82px;
}

.service-card__image-caption2 {
  bottom: 33px;
}

.service-card__body {
  margin-top: 14px;
}

.service-card__text {
  font-size: 14px;
}

.case-study {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .case-study {
    margin-top: -120px;
    position: relative;
  }
}

.case-study__inner {
  padding-top: 60px;
  padding-bottom: 123px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/sp/case-study-bg-sp.png) no-repeat;
  background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/sp/case-study-bg-sp.png) no-repeat;
  background-size: cover;
  background-position: center top;
}
.case-study__inner.top {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .case-study__inner {
    padding-top: 97px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/case-study-bg-pc.png) no-repeat;
    background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/case-study-bg-pc.png) no-repeat;
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .case-study__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .case-study__wrapper .service__view-more {
    margin-right: 90px;
    margin-top: 53px;
  }
}

.case-study__cards {
  margin-top: 40px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
@media screen and (min-width: 768px) {
  .case-study__cards {
    margin-top: 83px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; /* ← これが大事！ */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 70px;
    padding-inline: 0;
    padding-bottom: 122px;
  }
}

@media screen and (min-width: 768px) {
  .case-study__card {
    width: 25%;
  }
}

.case-study__link:hover .case-study__arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.case-study__link:hover .case-study__arrow::before {
  content: "";
  width: 30px;
  height: 30px;
  border: solid 2px yellow;
}
.case-study__link:hover .case-study__arrow::after {
  border-top: solid 3px yellow;
  border-right: solid 3px yellow;
}

.case-study__company {
  margin-top: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.case-study__programs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.case-study__program {
  margin-top: 10px;
  line-height: normal;
  color: #ffffff;
  font-weight: 700;
  padding: 5px 15px;
  border: 1px solid #fff;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .case-study__program {
    margin-top: 12px;
    font-size: 10px;
    padding: 3px 9px;
  }
}
@media screen and (min-width: 1200px) {
  .case-study__program {
    font-size: 14px;
    padding: 5px 15px;
  }
}

.case-study__arrow {
  position: relative;
  margin-top: 11px;
  margin-right: 30px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .case-study__arrow {
    margin-right: 38px;
  }
}
.case-study__arrow::before {
  content: "";
  width: 30px;
  height: 30px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.case-study__arrow::after {
  content: "";
  width: 11px;
  height: 12px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 0;
  margin: auto;
}

.case-study__view-more {
  margin-top: 56px;
  margin-right: 19.5px;
  padding-bottom: 59px;
}
@media screen and (min-width: 768px) {
  .case-study__view-more {
    padding-bottom: 17px;
  }
}

.news {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 0;
    padding-top: 85px;
  }
}

.news__inner {
  padding-bottom: 103px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news__inner.top {
    padding-bottom: 0;
    margin-bottom: -90px;
  }
}

.top-news__view-more {
  margin-top: 30px;
  margin-right: 19.5px;
}
@media screen and (min-width: 768px) {
  .top-news__view-more {
    margin-top: 50px;
    margin-right: 0;
  }
}

.bottom-news__view-more {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .bottom-news__view-more {
    top: 135px;
    right: 90px;
  }
}

.news__bg {
  margin-top: 27px;
  padding-top: 31px;
  padding-bottom: 103px;
  background: url(../img/sp/news-bg-sp.png) no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .news__bg {
    margin-top: 51px;
    background: url(../img/news-bg-pc.png) no-repeat;
    background-size: contain;
    background-position: center 110px;
    padding-bottom: 251px;
  }
}
@media (min-width: 1400px) {
  .news__bg {
    background-size: cover;
  }
}

.news__cards {
  background: #fff;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  margin-inline: 20px;
  padding-inline: 20px;
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .news__cards {
    max-width: 768px;
    margin-inline: auto;
    padding-inline: 40px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.news__card {
  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;
}
.news__card:nth-of-type(n + 2) {
  margin-top: 16px; /* 好きな値に変更OK */
}
@media screen and (min-width: 768px) {
  .news__card:nth-of-type(n + 2) {
    margin-top: 21px;
  }
}

.news__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news__tag {
  color: #e61264;
  border: 1px solid #e61264;
  padding: 5px 19px 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .news__tag {
    font-size: 14px;
    padding: 7px 23px;
  }
}

.news__date {
  color: #888;
  font-weight: 500;
  line-height: normal;
}

.news__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 32px;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 16px;
  }
}

.news__view-more {
  margin-top: 30px;
  margin-right: 23px;
}

.footer-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: blue;
}
@media screen and (min-width: 768px) {
  .footer-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-links.top {
    margin-top: -192px;
  }
}

@media screen and (min-width: 768px) {
  .about-us-footer {
    margin-top: -103px;
  }
}

.footer-link-1,
.footer-link-2 {
  padding-top: 45px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .footer-link-1,
  .footer-link-2 {
    width: 50%;
    padding-top: 52px;
    padding-bottom: 49px;
  }
}

.footer-link-1 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 82, 162, 0.8)), to(rgba(0, 82, 162, 0.8))), url(../img/sp/footer-bg-sp.png) no-repeat center center;
  background: linear-gradient(rgba(0, 82, 162, 0.8), rgba(0, 82, 162, 0.8)), url(../img/sp/footer-bg-sp.png) no-repeat center center;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .footer-link-1 {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 82, 162, 0.8)), to(rgba(0, 82, 162, 0.8))), url(../img/footer-pc.png) no-repeat center center;
    background: linear-gradient(rgba(0, 82, 162, 0.8), rgba(0, 82, 162, 0.8)), url(../img/footer-pc.png) no-repeat center center;
    background-size: cover;
  }
}

.footer-link-2 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/sp/footer-bg-2.png) no-repeat center center;
  background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/sp/footer-bg-2.png) no-repeat center center;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .footer-link-2 {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/footer-pc2.png) no-repeat center center;
    background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/footer-pc2.png) no-repeat center center;
    background-size: cover;
  }
}

.footer-link-en {
  color: #fff;
  text-align: center;
  font-family: "Fira Sans", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer-link-en {
    font-size: 60px;
  }
}

.footer-link-ja {
  margin-top: 6px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.footer__btn {
  margin-top: 40px;
  text-align: center;
}

.box-btn {
  position: relative;
  display: inline-block;
  padding: 25px 107px 25px 107px;
  border: 2px solid #fff400;
  color: #fff400;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  text-decoration: none;
}
.box-btn.blue-white {
  padding: 23px 18.46vw 23px 18.46vw;
  border: 1px solid #023e78;
  color: #023e78;
}
.box-btn.blue-white.p-service {
  width: 78.5vw;
}
@media screen and (min-width: 768px) {
  .box-btn.blue-white.p-service {
    width: 304px;
  }
}
@media screen and (min-width: 768px) {
  .box-btn.blue-white {
    padding: 22px 64px 22px 64px;
    width: 304px;
  }
}
.box-btn.blue-white.second-blue-white {
  padding: 23px 42px 23px 42px;
}
@media screen and (min-width: 768px) {
  .box-btn.blue-white.second-blue-white {
    padding: 22px 64px 22px 64px;
    width: 304px;
  }
}
.box-btn.blue-white.third-blue-white {
  padding: 23px 13vw 23px 13vw;
}
@media screen and (min-width: 768px) {
  .box-btn.blue-white.third-blue-white {
    padding: 22px 64px 22px 64px;
    width: 304px;
  }
}
@media screen and (min-width: 768px) {
  .box-btn.blue-white.p-case-study__btn {
    padding: 23px 79px 22px 79px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .box-btn {
    padding: 32px 99px 33px 100px;
  }
}
.box-btn .box-btn-text {
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .box-btn .box-btn-text {
    font-size: 22px;
  }
}
.box-btn .box-btn-text.blue-white {
  font-style: normal;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .box-btn .box-btn-text.blue-white {
    font-size: 16px;
  }
}
.box-btn .box-btn-text.p-case-study__btn {
  white-space: nowrap;
}
.box-btn .box-btn-arrow {
  position: absolute;
  top: 52%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.box-btn .box-btn-arrow.blue-white {
  right: 11px;
}
@media screen and (min-width: 768px) {
  .box-btn .box-btn-arrow.blue-white {
    right: 18px;
  }
}
@media screen and (min-width: 768px) {
  .box-btn .box-btn-arrow {
    right: 29px;
  }
}
@media screen and (min-width: 768px) {
  .box-btn .box-btn-arrow.p-case-study__btn {
    font-size: 28px;
  }
}
.box-btn .box-btn-arrow.p-case-study__btn-2 {
  right: 12px;
}
@media screen and (min-width: 768px) {
  .box-btn .box-btn-arrow.p-case-study__btn-2 {
    right: 23px;
  }
}
.box-btn:hover {
  background: #fff400;
  color: #000;
  border-color: #fff400;
}
.box-btn:hover .box-btn-arrow {
  right: 20px;
}
.box-btn:hover .box-btn-arrow.blue-white {
  right: 10px;
}
.box-btn.blue-white:hover {
  background: #023e78;
  color: #ffffff;
  border-color: #023e78;
}

.footer__inner {
  position: relative;
  background: #1a1a1a;
  padding-block: 70px 13px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-block: 121px 17px;
  }
}

.footer__logo {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    font-size: 52px;
  }
}

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

.footer__detail {
  color: #fff;
  display: inline-block;
  text-align: left; /* 左揃え */
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  font-size: 14px;
}

.footer__copyright {
  margin-top: 38px;
  margin-bottom: 13px;
  color: #fff;
  display: block;
  text-align: center;
  margin-inline: auto;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 79px;
    font-size: 14px;
  }
}

.main-visual__inner {
  position: relative;
  height: 250px;
}
.main-visual__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: rgba(2, 62, 120, 0.8);
  -webkit-clip-path: polygon(0 0, 73% 0, 9% 100%, 0% 100%);
          clip-path: polygon(0 0, 73% 0, 9% 100%, 0% 100%);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .main-visual__inner::before {
    -webkit-clip-path: polygon(0 0, 48% 0, 9% 198%, 0% 100%);
            clip-path: polygon(0 0, 48% 0, 9% 198%, 0% 100%);
  }
}
.main-visual__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.2);
  z-index: 2;
}

.main-visual-img {
  background-color: rgba(2, 62, 120, 0.8);
}
.main-visual-img img {
  width: 100%;
  height: 100%;
  background: rgba(2, 62, 120, 0.8);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-visual__caption-en,
.main-visual__caption-ja {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  left: 20px;
  color: #023e78;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .main-visual__caption-en,
  .main-visual__caption-ja {
    left: 220px;
  }
}
.main-visual__caption-en p,
.main-visual__caption-ja p {
  font-weight: 700;
}

.main-visual__caption-en {
  top: 90px;
  font-family: "Fira Sans", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .main-visual__caption-en {
    top: 71px;
    font-size: 60px;
    padding-left: 2px;
  }
}

.main-visual__caption-ja {
  font-family: "Noto Sans JP", sans-serif;
  top: 137px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .main-visual__caption-ja {
    top: 151px;
    font-size: 20px;
  }
}

.breadcrumbs {
  font-size: 12px;
  padding-top: 10px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #888;
}
.breadcrumbs.p-service {
  padding-top: 9px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* これが重要！ */
}
@media screen and (min-width: 768px) {
  .breadcrumbs.p-service {
    padding-top: 10px;
  }
}
.breadcrumbs.page-service {
  padding-top: 9px;
  color: #888;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding-left: 90px;
  }
}
.breadcrumbs span[property=itemListElement]:last-child {
  display: inline;
  min-width: 0;
  word-break: break-word;
  color: #1a1a1a;
}

.breadcrumbs-home {
  color: #888;
  font-size: 12px;
}

.breadcrumbs-separator {
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.breadcrumbs .breadcrumb-separator {
  color: #888;
}
.breadcrumbs .breadcrumb-separator:has(+ [property=itemListElement] .current-item) {
  color: #1a1a1a;
}
.breadcrumbs .current-item {
  color: #1a1a1a;
}

.breadcrumbs-second {
  color: #1a1a1a;
  font-size: 12px;
}

.tags__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .tags__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
}

.p-case-study-tags {
  padding-inline: 40.5px;
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-case-study-tags {
    padding-inline: 90px;
    margin-top: 76px;
  }
}

.tag__box {
  color: #1a1a1a;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background: #eee;
  padding-block: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .tag__box {
    width: 23vw;
  }
}
@media screen and (min-width: 1200px) {
  .tag__box {
    width: 16.25vw;
  }
}

.p-case-study__top-head {
  padding-inline: 20px;
  margin-top: 61px;
}
@media screen and (min-width: 768px) {
  .p-case-study__top-head {
    padding-inline: 90px;
    margin-top: 80px;
  }
}
.p-case-study__top-head.second-top-head {
  padding-inline: 0;
}
.p-case-study__top-head.first-top-head {
  margin-top: 61px;
}
@media screen and (min-width: 768px) {
  .p-case-study__top-head.first-top-head {
    margin-top: 81px;
  }
}

.p-case-study__top-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  padding-left: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-case-study__top-heading {
    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;
  }
}
.p-case-study__top-heading::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #023e78;
  width: 8px;
  height: 55px;
}
@media screen and (min-width: 768px) {
  .p-case-study__top-heading::before {
    width: 8px;
    height: 41px;
  }
}

.p-case-study__top-heading-main {
  color: #1a1a1a;
  font-size: clamp(18px, 6.4vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-case-study__top-heading-main {
    font-size: 28px;
  }
}

.p-case-study__top-heading-sub {
  color: #023e78;
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  padding-left: 3px;
}
.p-case-study__top-heading-sub.second-top-heading-sub {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-case-study__top-heading-sub {
    font-size: 16px;
    padding-left: 0px;
  }
}

.about-us__body {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .about-us__body {
    margin-top: 76px;
  }
}

.about-us__body-inner {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .about-us__body-inner {
    padding-inline: 90px;
    padding-bottom: 120px;
  }
}

.about-us__body-box:nth-of-type(n + 2) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .about-us__body-box:nth-of-type(n + 2) {
    margin-top: 120px;
  }
}

.about-us__body-img {
  position: relative;
}
.about-us__body-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.2);
  z-index: 1;
}
.about-us__body-img img {
  height: 281px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) {
  .about-us__body-img img {
    height: 353px;
  }
}

.about-us__body-en,
.about-us__body-ja {
  position: absolute;
  left: 20px;
  color: #fff;
  z-index: 5;
}

.about-us__body-en {
  top: 20px;
  font-family: "Fira Sans", sans-serif;
  font-size: 52px;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-us__body-en {
    font-size: 100px;
  }
}

.about-us__body-ja {
  top: 84px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-us__body-ja {
    top: 140px;
    font-size: 24px;
  }
}

.about-us__detail-box {
  margin-top: -40px;
  padding: 20px 20px 19px;
  margin-inline: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .about-us__detail-box {
    margin-top: -60px;
    padding: 32px 40px 30px;
    margin-inline: auto;
    max-width: 688px;
  }
}

.about-us__detail-heading {
  color: #023e78;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-us__detail-heading {
    font-size: 24px;
  }
}

.about-us__detail-text {
  margin-top: 18px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .about-us__detail-text {
    margin-top: 31px;
    font-size: 14px;
  }
}

.overview {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/sp/overview-sp.png) no-repeat;
  background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/sp/overview-sp.png) no-repeat;
  background-size: cover;
  background-position: center top;
}

.overview__inner {
  padding: 60px 20px;
}
@media screen and (min-width: 768px) {
  .overview__inner {
    padding-block: 80px;
  }
}

.overview__box {
  border: 1px solid #707070;
  background: #fff;
  padding: 40px 20px 39px;
}
@media screen and (min-width: 768px) {
  .overview__box {
    max-width: 768px;
    margin-inline: auto;
    padding: 60px 40px 80px;
  }
}

.overview__heading {
  color: #1a1a1a;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 37px;
}
@media screen and (min-width: 768px) {
  .overview__heading {
    margin-bottom: 60px;
  }
}

.overview__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.overview__company-name,
.overview__company-text {
  padding-block: 15.7px;
}
@media screen and (min-width: 768px) {
  .overview__company-name,
  .overview__company-text {
    padding-block: 25px;
    padding-top: 25px;
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
  }
}

.overview__company-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 104px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-top: 1px solid #023e78; /* 上に線をつける */
  border-bottom: 1px solid #023e78; /* 下にも線をつける */
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .overview__company-name {
    padding-left: 31px;
    min-width: 200px;
  }
}

.overview__company-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: 1px solid #e8eaec; /* 上に線をつける */
  border-bottom: 1px solid #e8eaec; /* 下にも線をつける */
  line-height: 20px; /* 142.857% */
  min-width: 0;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .overview__company-text {
    padding-left: 35px;
    line-height: 1.4;
  }
}

.our-staff__inner {
  padding-top: 60px;
  padding-bottom: 137px;
  padding-inline: 20px;
  margin-bottom: 22px;
  background: url(../img/sp/our-staff-bg-sp.png) no-repeat;
  background-size: contain;
  background-position: center bottom;
}
@media screen and (min-width: 768px) {
  .our-staff__inner {
    margin-bottom: -84px;
    padding-top: 118px;
    padding-bottom: 272px;
    background: url(../img/about-us-bg-pc.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
  }
}

.our-staff__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.our-staff__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .our-staff__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    margin-top: 60px;
  }
}
.our-staff__box.first {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .our-staff__box.first {
    margin-top: 60px;
  }
}

.our-staff__img {
  width: 72%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .our-staff__img {
    width: 240px;
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .our-staff__details {
    max-width: 408px;
  }
}

.our-staff__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 20px;
}

.our-staff__position {
  font-weight: 700;
  line-height: normal;
}

.our-staff__name {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.our-staff__text {
  margin-top: 17px;
  line-height: 24px; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .our-staff__text {
    margin-top: 30px;
  }
}

.our-staff__sns {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 29.5px;
}
@media screen and (min-width: 768px) {
  .our-staff__sns {
    margin-top: 30px;
  }
}
.our-staff__sns img {
  width: 28px;
}

.scroll-top-btn {
  position: absolute;
  right: 8px;
  bottom: 31px;
  width: 45px;
  height: 45px;
  border: 4px solid white;
  border-radius: 50%;
  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;
}
@media screen and (min-width: 768px) {
  .scroll-top-btn {
    right: 18px;
    bottom: 48px;
  }
}

/* 上向きの矢印を作る */
.arrow-up {
  margin-top: 5px;
  width: 14px;
  height: 14px;
  border-left: 4px solid white;
  border-top: 4px solid white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 左上の角を上向き三角に見せる */
}

.service-page__heading {
  margin-top: 57px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
}
@media screen and (min-width: 768px) {
  .service-page__heading {
    margin-top: 76px;
    font-size: 28px;
    line-height: 40px; /* 142.857% */
  }
}

.service-page__main-steps {
  background-image: url("../img/sp/p-service-bg-sp.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 1046px;
}
@media screen and (min-width: 768px) {
  .service-page__main-steps {
    background-image: url("../img/p-service-bg-pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center 978px;
  }
}

.service-page__main-step {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-page__main-step:not(:first-child) {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .service-page__main-step:not(:first-child) {
    margin-top: 263px;
  }
}
.service-page__main-step.third-service {
  margin-top: 81px;
}
@media screen and (min-width: 768px) {
  .service-page__main-step {
    margin-top: 196px;
    padding-inline: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-page__main-step.second {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .service-page__main-step.third-service {
    margin-top: 326px;
  }
}

.service-page__main-step-img {
  margin-left: auto;
  width: 49.831169%;
}
.service-page__main-step-img.second-service {
  margin-top: 58px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .service-page__main-step-img {
    width: 560px;
    margin-left: -80px;
  }
}
.service-page__main-step-img img {
  width: 560px;
}

.service-page__main-step-body {
  margin-top: -147.5px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  margin-inline: 20px;
  padding-inline: 20px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .service-page__main-step-body {
    margin-top: 0;
    width: 590px;
    z-index: 10;
    position: relative;
    padding-inline: 40px;
    padding-bottom: 60px;
  }
  .service-page__main-step-body.first-service {
    margin-top: -63px;
  }
  .service-page__main-step-body.second-service {
    margin-left: -60px;
  }
}

.service-page__main-step-number {
  margin-top: -46px;
  color: #023e78;
  text-align: left;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 68px;
  font-style: italic;
  line-height: normal;
}
.service-page__main-step-number.second-service {
  margin-top: -43px;
  text-align: right;
}
.service-page__main-step-number.third-service {
  margin-top: -41px;
}
@media screen and (min-width: 768px) {
  .service-page__main-step-number {
    margin-top: -53px;
    margin-left: 18px;
    font-size: 100px;
  }
  .service-page__main-step-number.second-service {
    margin-top: -64px;
  }
  .service-page__main-step-number.third-service {
    margin-top: -60px;
  }
}

.service-page__main-step-head {
  margin-top: 5px;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
.service-page__main-step-head.second-service {
  line-height: 1.35;
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .service-page__main-step-head {
    margin-top: 15px;
    font-size: 40px;
  }
  .service-page__main-step-head.second-service {
    margin-top: 17px;
  }
}

.service-page__main-step-sub {
  margin-top: 4px;
  color: #023e78;
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .service-page__main-step-sub {
    margin-top: 0;
    font-size: 16px;
  }
  .service-page__main-step-sub.second-service {
    margin-top: 5px;
  }
}

.service-page__main-step-text {
  margin-top: 31px;
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .service-page__main-step-text {
    margin-top: 59px;
    margin-bottom: 58px;
  }
}

.s-page__chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 52px;
  padding-block: 17.5px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .s-page__chart {
    padding-block: 29px;
  }
}

.s-page__chart-name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #1a1a1a;
  font-weight: 700;
  line-height: normal;
}

.s-page__chart-text {
  color: #1a1a1a;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.s-page__btn {
  margin-top: 40px;
  text-align: center;
}
.s-page__btn.fixed-s-page__btn {
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .s-page__btn.fixed-s-page__btn {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .s-page__btn {
    margin-top: 60px;
  }
}

.flow {
  margin-top: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/sp/overview-sp.png) no-repeat;
  background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/sp/overview-sp.png) no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-top: 160px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/flow-bg-pc.png) no-repeat;
    background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/flow-bg-pc.png) no-repeat;
    background-size: cover;
    background-position: center top;
  }
}

.flow__inner {
  padding-top: 60px;
  padding-bottom: 34px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    padding-top: 80px;
    padding-inline: 7.03125vw;
    padding-bottom: 13.3vh;
  }
}

.flow__heading {
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

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

.flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .flow__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__wrapper.first-flow {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .flow__wrapper.first-flow {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .flow__wrapper.second-flow {
    margin-left: -37px;
  }
}
@media screen and (min-width: 768px) {
  .flow__wrapper.third-flow {
    margin-left: -37px;
  }
}
@media screen and (min-width: 768px) {
  .flow__wrapper.four-flow {
    margin-left: -37px;
  }
}

.flow__steps {
  margin-top: 26px;
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  .flow__steps {
    margin-top: 0;
  }
}
.flow__steps.second-step {
  margin-top: 24px;
}
.flow__steps.third-flow {
  margin-top: 20px;
}
.flow__steps.four-flow {
  margin-left: 0;
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .flow__steps.four-flow {
    margin-top: 26px;
  }
}

.flow__step,
.flow__number {
  color: #fff400;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.flow__step {
  font-size: 20px;
}

.flow__number {
  font-size: 40px;
}

.flow__caption {
  color: #023e78;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .flow__caption {
    text-align: left;
  }
}

.flow__text {
  margin-top: 7px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.flow__text .red-text {
  color: #e61264;
}

.step-box {
  background: #edf3f8;
  position: relative;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.step-box::after {
  content: "";
  position: absolute;
  bottom: -33px;
  left: 0;
  width: 100%;
  height: px;
  background: inherit;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.flow__details {
  -webkit-clip-path: polygon(50% 100%, 100% 88%, 100% 0, 0 0, 0 88%);
          clip-path: polygon(50% 100%, 100% 88%, 100% 0, 0 0, 0 88%);
  background: #edf3f8;
  max-width: 82.333333%;
  padding: 22px 20px 45px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .flow__details {
    padding: 46px 43px 47px;
    width: 311px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-clip-path: polygon(88% 100%, 100% 50%, 88% 0, 0 0, 0 100%);
            clip-path: polygon(88% 100%, 100% 50%, 88% 0, 0 0, 0 100%);
    -webkit-clip-path: none;
            clip-path: none;
    position: relative;
    height: 213px;
  }
}
.flow__details.second-flow {
  margin-top: -24px;
  -webkit-clip-path: polygon(50% 12%, 100% 0, 100% 88%, 50% 100%, 0 88%, 0 0);
          clip-path: polygon(50% 12%, 100% 0, 100% 88%, 50% 100%, 0 88%, 0 0);
  background: #dde8f0;
  padding: 40px 20px 48px;
}
@media (max-width: 340px) {
  .flow__details.second-flow {
    -webkit-clip-path: polygon(50% 11%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
            clip-path: polygon(50% 11%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  }
}
@media screen and (min-width: 768px) {
  .flow__details.second-flow {
    padding: 46px 50px 47px;
    -webkit-clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 12% 50%);
            clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 12% 50%);
    -webkit-clip-path: none;
            clip-path: none;
  }
  .flow__details.second-flow::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 106.5px solid transparent;
    border-left: 27px solid #edf3f8;
    border-bottom: 106.5px solid transparent;
  }
}
.flow__details.third-flow {
  background: #c7dbe9;
  padding: 36px 20px 48px;
}
@media screen and (min-width: 768px) {
  .flow__details.third-flow {
    padding: 46px 50px 47px;
  }
}
.flow__details.four-flow {
  -webkit-clip-path: polygon(50% 9%, 100% 0, 100% 88%, 50% 88%, 0 88%, 0 0);
          clip-path: polygon(50% 9%, 100% 0, 100% 88%, 50% 88%, 0 88%, 0 0);
  background: #b0d0e5;
  padding: 35px 20px 47px;
}
@media screen and (min-width: 768px) {
  .flow__details.four-flow {
    margin-top: -26px;
    padding: 46px 70px 23px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 12% 50%);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 12% 50%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}

.flow-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .flow-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .flow-pc__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 298px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 22%;
            flex: 1 1 22%; /* 4つ並ぶ程度の幅 */
  }
}

@media screen and (min-width: 768px) {
  .flow-pc__steps {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 7px;
  }
}

.flow-pc__step {
  margin-top: 18px;
  color: #fff400;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.flow-pc__number {
  color: #fff400;
  font-family: "Fira Sans";
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 600px) {
  .flow-pc__details {
    position: relative;
    background: #edf3f8;
    padding-top: 46px;
    padding-left: 43px;
    padding-inline: 3.3vw;
    padding-right: 2vw;
    height: 28vh;
  }
  .flow-pc__details::before {
    position: absolute;
    content: "";
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 14vh solid transparent;
    border-left: 27px solid #edf3f8;
    border-bottom: 14vh solid transparent;
  }
  .flow-pc__details.second-flow-pc__details {
    padding-left: 50px;
    padding-right: 2vw;
    background: #dde8f0;
  }
  .flow-pc__details.second-flow-pc__details::before {
    border-left: 24px solid #edf3f8;
  }
  .flow-pc__details.third-flow-pc__details {
    padding-left: 50px;
    padding-right: 2vw;
    background: #c7dbe9;
  }
  .flow-pc__details.third-flow-pc__details::before {
    border-left: 24px solid #dde8f0;
  }
  .flow-pc__details.four-flow-pc__details {
    padding-left: 50px;
    padding-right: 1.7vw;
    background: #b0d0e5;
  }
  .flow-pc__details.four-flow-pc__details::before {
    border-left: 24px solid #c7dbe9;
  }
}
@media screen and (min-width: 1200px) {
  .flow-pc__details {
    height: 209px;
  }
  .flow-pc__details::before {
    position: absolute;
    content: "";
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top: 104.5px solid transparent;
    border-left: 27px solid #edf3f8;
    border-bottom: 104.5px solid transparent;
  }
}

.flow-pc__caption {
  color: #023e78;
  font-size: clamp(10px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: normal;
}

.flow-pc__text {
  margin-top: 18px;
  color: #1a1a1a;
  font-size: clamp(9px, 1.09375vw, 14px);
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.flow-pc__text span {
  color: #e61264;
}

.qa__inner {
  padding: 58px 20px 98px;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    padding-block: 160px;
    padding-inline: 23.1vw;
  }
}

.qa__heading-ja {
  color: #1a1a1a;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.qa__boxes {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 92px;
  }
}

.qa__box.is-open .qa-box__head-icon::before {
  background-color: #e61264;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 4px;
}
.qa__box.is-open .qa-box__head-icon::after {
  background-color: #e61264;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 4px;
}
.qa__box.is-open .qa-box__head {
  border: none;
}
.qa__box.is-open .qa-box__head-text {
  color: #e61264;
}
.qa__box.is-open .qa-box__body {
  padding-bottom: 14px;
  border-bottom: solid 1px #ddd;
  margin-bottom: -3px;
}
@media screen and (min-width: 768px) {
  .qa__box.is-open .qa-box__body {
    margin-top: -3px;
    padding-bottom: 31px;
  }
}

.qa-box {
  margin-top: 15px;
}
.qa-box + .qa-box {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .qa-box + .qa-box {
    margin-top: 33px;
  }
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: solid 1px #ddd;
  width: 100%;
  padding-right: 9px;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding-bottom: 31px;
    padding-right: 12px;
  }
}

.qa-box__head-text {
  text-align: left;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  max-width: 79%;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 20px;
    max-width: 90%;
  }
}

.qa-box__head-icon {
  position: relative;
  width: 21px;
  height: 21px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    height: 23px;
  }
}
.qa-box__head-icon::before, .qa-box__head-icon::after {
  content: "";
  position: absolute;
  background-color: #1a1a1a;
  width: 2px;
  height: 100%;
  top: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.qa-box__head-icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.qa-box__body {
  margin-top: 3px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding-left: 41px;
    padding-right: 60px;
  }
}

.qa-box__a-text {
  color: #1a1a1a;
  line-height: 24px; /* 171.429% */
  font-weight: 500;
}

.p-news__body {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-news__body {
    margin-top: 77px;
  }
}

.p-news__inner {
  padding-inline: 5.3vw;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding-inline: 7vw;
    padding-bottom: 142px;
  }
}

.p-news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 768px) {
  .p-news__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.p-news__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19.6px;
}
@media screen and (min-width: 768px) {
  .p-news__category {
    gap: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59.375vw;
            flex: 0 0 59.375vw;
  }
}

.p-news__head {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-news__head {
    font-size: 32px;
    line-height: 40px; /* 125% */
    margin-bottom: -13px;
  }
}

.p-news__category-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-news__category-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__category-card.first-category-card {
    margin-top: -14px;
  }
}

.p-news_category-img {
  width: 32vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 13.4vh;
}
.p-news_category-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 13.4vh;
}
@media screen and (min-width: 768px) {
  .p-news_category-img {
    width: 19.53125vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 17.56vh;
  }
  .p-news_category-img img {
    width: 100%;
    height: 17.56vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-news__category-details {
  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;
  width: 100%;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-news__category-details {
    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;
    margin-top: 12px;
    width: 100%;
  }
}

.p-news__category-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-news__category-tag-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}
@media screen and (min-width: 768px) {
  .p-news__category-tag-wrapper {
    gap: 12px;
  }
}

.p-news__category-first {
  color: #e61264;
  font-size: clamp(10px, 3.2vw, 16px);
  font-weight: 500;
  line-height: normal;
  padding: 6px 11px 7px;
  border: 1px solid #e61264;
  text-align: center;
}
.p-news__category-first.p-news {
  padding: 3px 11px 4px;
}
@media screen and (min-width: 768px) {
  .p-news__category-first.p-news {
    padding: 7px 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__category-first {
    font-size: 14px;
    padding: 7px 24px;
  }
}

.p-news__category-sub {
  color: #e61264;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-news__category-sub {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .p-news__category-date {
    text-align: right;
    color: #888;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
    margin-right: 9px;
  }
}

.p-news__category-text {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* ← ここで3行に制限 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .p-news__category-text {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
  }
}

@media screen and (min-width: 768px) {
  .p-news__new-article {
    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;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.26vw;
            flex: 0 0 23.26vw;
  }
}

.p-news__new-article-head {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.p-news__new-article-card {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  padding-right: 4px;
}
@media screen and (min-width: 768px) {
  .p-news__new-article-card {
    margin-top: 0;
    gap: 10px;
    padding-right: 0px;
  }
}

.p-news__new-article-img {
  width: 32vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 13.4vh;
}
.p-news__new-article-img img {
  width: 32vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 13.4vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news__new-article-img {
    width: 5.81vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 11.26vh;
  }
  .p-news__new-article-img img {
    width: 5.81vw;
    height: 11.26vh;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .p-news__new-article-img {
    width: 7.81vw;
    height: 11.26vh;
  }
  .p-news__new-article-img img {
    width: 7.81vw;
    height: 11.26vh;
  }
}

.p-news__new-article-details {
  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;
}
@media screen and (min-width: 768px) {
  .p-news__new-article-details {
    gap: 8px;
    width: 100%;
  }
}

.p-news__new-article-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-news__new-article-tag {
    gap: 5px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .p-news__new-article-tag {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-news__new-article-first {
  color: #e61264;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  padding: 3px 11px 4px;
  border: 1px solid #e61264;
  margin-top: 0px;
}
@media screen and (min-width: 600px) {
  .p-news__new-article-first {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__new-article-first {
    margin-top: 2px;
  }
}

@media screen and (min-width: 600px) {
  .p-news__new-article-sub {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .p-news__new-article-sub {
    color: #888;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .p-news__new-article-sub.info-date {
    margin-right: 3px;
  }
}

.p-news__new-article-text {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-names {
  margin-top: 59px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .category-names {
    margin-top: 64px;
  }
}

.category-name {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .category-name {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
  }
}

.category-text {
  position: relative;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding-left: 39px;
  padding-block: 17px 16px;
  border-bottom: 1px solid #ddd;
}
.category-text a {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.category-text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 22px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #023e78;
  border-right: 3px solid #023e78;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .category-text::before {
    top: 48%;
  }
}

.p-news__bottom {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .p-news__bottom {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.bottom-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .bottom-icons {
    gap: 8px;
  }
}

.page-numbers,
.pagenation-number {
  color: #888888;
  background: #f8f8f8;
  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;
  width: 39px;
  height: 40px;
}
.page-numbers.prev,
.pagenation-number.prev {
  margin-right: 0;
}
.page-numbers.next,
.pagenation-number.next {
  margin-left: 0;
}
.page-numbers.current,
.pagenation-number.current {
  color: #ffffff;
  background: #023e78;
}
@media screen and (min-width: 768px) {
  .page-numbers,
  .pagenation-number {
    width: 50px;
    height: 50px;
  }
  .page-numbers.prev,
  .pagenation-number.prev {
    margin-right: 10px;
  }
  .page-numbers.next,
  .pagenation-number.next {
    margin-left: 10px;
  }
}

.pagenation-prev {
  position: relative;
}
.pagenation-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 3px solid #888;
  border-bottom: 3px solid #888;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.pagenation-number {
  color: #888;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-left: 6px;
}
@media screen and (min-width: 768px) {
  .pagenation-number {
    margin-left: 9px;
  }
}
.pagenation-number.now {
  background: #023e78;
  color: #fff;
}
.pagenation-number.number-one {
  margin-left: 6px;
}
@media screen and (min-width: 768px) {
  .pagenation-number.number-one {
    margin-left: 20px;
  }
}

.pagenation-next {
  position: relative;
}
.pagenation-next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #888;
  border-right: 3px solid #888;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-news-info {
  margin-top: 57px;
}
@media screen and (min-width: 768px) {
  .p-news-info {
    margin-top: 56px;
    margin-top: 0;
  }
}

.p-news-info__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-info__inner {
    padding-top: 78px;
    padding-bottom: 175px;
    padding-inline: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-news-info__inner {
    padding-inline: 90px;
  }
}

.p-news-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 768px) {
  .p-news-info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-news-info__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59.375vw;
            flex: 0 0 59.375vw;
  }
}

.info-main__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-main__date {
  margin-right: 1px;
  margin-top: -8px;
}
@media screen and (min-width: 768px) {
  .info-main__date {
    margin-right: 0;
    margin-top: 0;
  }
}

.info-main__title {
  margin-top: 0;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
}
@media screen and (min-width: 768px) {
  .info-main__title {
    margin-top: 22px;
    font-size: 24px;
    line-height: 32px; /* 133.333% */
  }
}

.info-main__img {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .info-main__img {
    margin-top: 41px;
  }
}
.info-main__heading {
  margin-top: 40px;
  color: #023e78;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  border-left: 6px solid #023e78;
  padding-left: 20px;
  padding-block: 7px 10px;
  background: #f8f8f8;
}

.info-main__text {
  margin-top: 18px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  padding-right: 6px;
}

.info-sub__heading {
  margin-top: 38px;
  color: #023e78;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 6px;
  border-bottom: 1px solid #023e78;
}

.info-list {
  position: relative;
  margin-top: 40px;
  padding-left: 14px;
  list-style-type: none; /* ● を使う */
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.info-list li::before {
  position: absolute;
  content: "・";
  left: 0px;
}
.info-list li:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .info-list {
    margin-top: 38px;
    padding-left: 55px; /* 左側に余白 */
  }
  .info-list li {
    font-weight: 500;
  }
  .info-list li::before {
    position: absolute;
    content: "・";
    left: 40px;
  }
  .info-list li:not(:first-child) {
    margin-top: 16px;
  }
}
.info-list::before {
  position: absolute;
  content: "・";
  left: 40px;
}

.p-news-info__quote {
  margin-top: 57px;
  margin-inline: 0px;
}
@media screen and (min-width: 768px) {
  .p-news-info__quote {
    margin-top: 40px;
    margin-left: 40px;
  }
}

.quote-box {
  position: relative;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  padding: 12px 28px 30px;
  background: #f8f8f8;
  border-left: 4px solid #023e78;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .quote-box {
    max-width: 51vw;
    padding-inline: 32px;
    padding-top: 15px;
    padding-bottom: 32px;
  }
}
.quote-box::before {
  position: absolute;
  left: 10px;
  top: -47px;
  color: #e8e8e8;
  font-family: "Yu Gothic";
  font-size: 163px;
  font-weight: 700;
  line-height: normal;
  content: "“";
  z-index: -1;
}

.p-news-info__pagination {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-news-info__pagination {
    margin-top: 40px;
  }
}

.p-news-info__pre,
.p-news-info__next {
  padding: 8px 16px;
  color: #023e78;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #023e78;
}

.info-below__heading {
  margin-top: 39px;
  color: #023e78;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.info-below__heading + .info-main__text {
  margin-top: 14px;
}

.p-news-info__footer {
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .p-news-info__footer {
    margin-top: 174px;
  }
}

.p-case-study {
  padding-bottom: 101px;
}
@media screen and (min-width: 768px) {
  .p-case-study {
    padding-bottom: 159px;
  }
}

.p-case-study_inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-case-study_inner {
    padding-inline: 90px;
    margin-top: 66px;
  }
}

.p-case-study__cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 52.5px;
}
@media screen and (min-width: 900px) {
  .p-case-study__cards {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 67px 80px;
  }
}

.p-case-study__card {
  position: relative;
}

.p-case-study__top {
  border-radius: 12px 12px 0px 0px;
  background: #023e78;
}
.p-case-study__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  padding-left: 20px;
  padding-bottom: 19px;
}
@media screen and (min-width: 768px) {
  .p-case-study__company {
    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: 18px;
    padding-left: 40px;
    padding-bottom: 19px;
  }
}

.p-case-study__company-sub {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px; /* 150% */
}
@media screen and (min-width: 768px) {
  .p-case-study__company-sub {
    font-size: 14px;
    line-height: normal;
  }
}

.p-case-study__company-main-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 768px) {
  .p-case-study__company-main-ctn {
    gap: 16px;
  }
}

.p-case-study__company-main {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-case-study__company-main {
    font-size: 24px;
  }
}

.p-case-study__company-main-after {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-case-study__company-main-after {
    font-size: 16px;
  }
}

.p-case-study__company__img {
  position: absolute;
  top: 1px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .p-case-study__company__img {
    top: -14px;
  }
}
.p-case-study__company__img img {
  height: 12.2vh;
  width: 29vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .p-case-study__company__img img {
    height: 13.2vh;
    width: 10vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (min-width: 1200px) {
  .p-case-study__company__img img {
    height: 15.2vh;
    width: 14vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-case-study__company__body {
  padding-inline: 20px;
  padding-bottom: 16px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .p-case-study__company__body {
    padding-inline: 40px;
    padding-bottom: 38px;
  }
}

.p-case-study__company-course {
  padding-top: 22px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 7px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .p-case-study__company-course {
    margin-bottom: 32px;
    padding-top: 41px;
    gap: 9px;
  }
}

.company-course__name {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.company-course__text {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.company-course__sub-heading {
  position: relative;
  padding-left: 24.996px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .company-course__sub-heading {
    padding-left: 30px;
    font-size: 18px;
  }
}
.company-course__sub-heading:not(:first-of-type) {
  margin-top: 30px;
}
.company-course__sub-heading.first-sub-heading {
  margin-top: 22px;
}
.company-course__sub-heading.adjust-first-sub-heading {
  margin-top: 21.5px;
}
.company-course__sub-heading::before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  background: url(../img/check-icon.png) no-repeat;
  width: 15.516px;
  height: 15.516px;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .company-course__sub-heading::before {
    width: 20px;
    height: 20px;
  }
}

.p-download__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 20px;
  padding-block: 56px 99px;
}
@media screen and (min-width: 768px) {
  .p-download__inner {
    padding-block: 77px 121px;
    padding-inline: 90px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-download__inner.dl__thank-you-inner {
    padding-block: 77px 120px;
  }
}

@media screen and (min-width: 768px) {
  .download-card {
    width: 46.3vw;
  }
}

.download-card__heading {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
}
@media screen and (min-width: 768px) {
  .download-card__heading {
    font-size: 22px;
    line-height: 40px; /* 142.857% */
  }
}
@media screen and (min-width: 1200px) {
  .download-card__heading {
    font-size: 28px;
  }
}

.download-card__img {
  text-align: center;
  margin-top: 31px;
  width: 79vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .download-card__img {
    width: 59%;
  }
}
.download-card__img img {
  width: 100%; /* 親要素の幅に合わせる */
  height: auto;
  display: block;
}

.download-card__text {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .download-card__text {
    margin-top: 20px;
  }
}

.company-course__sub-text {
  margin-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.blue-download-card {
  border-radius: 12px;
  background: #edf3f8;
  padding-inline: 20px;
  padding-block: 40px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .blue-download-card {
    margin-top: 0;
    padding: 40px;
    width: 49vw;
  }
}
.blue-download-card.dl__thank-you-heading {
  margin-top: 61px;
  padding-block: 36px;
}
@media screen and (min-width: 768px) {
  .blue-download-card.dl__thank-you-heading {
    margin-top: 0;
    width: 49vw;
    padding: 40px;
    padding-bottom: 574px;
  }
}

.dl__contact-heading {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .dl__contact-heading {
    font-size: 26px;
    line-height: 48px; /* 150% */
  }
}
@media screen and (min-width: 1200px) {
  .dl__contact-heading {
    font-size: 32px;
  }
}
.dl__contact-heading.dl__thank-you-heading {
  line-height: 40px; /* 166.667% */
}
@media screen and (min-width: 768px) {
  .dl__contact-heading.dl__thank-you-heading {
    font-size: 26px;
    line-height: 48px; /* 150% */
  }
}
@media screen and (min-width: 1200px) {
  .dl__contact-heading.dl__thank-you-heading {
    font-size: 32px;
  }
}

.dl__contact-form {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .dl__contact-form {
    margin-top: 38px;
  }
}

.dl__contact-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}
@media screen and (min-width: 768px) {
  .dl__contact-fields {
    gap: 29.5px;
  }
}

.dl__contact-privacy {
  margin-top: 43px;
  text-align: center;
}
.dl__contact-privacy.dl__thank {
  margin-left: -5px;
}
@media screen and (min-width: 768px) {
  .dl__contact-privacy.dl__thank {
    margin-left: 0;
  }
}
.dl__contact-privacy.p-contact__privacy {
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .dl__contact-privacy.p-contact__privacy {
    margin-top: 44px;
  }
}

.dl__form-field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .dl__form-field-head {
    gap: 9px;
  }
}

.dl__form-field-label {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .dl__form-field-label {
    font-size: 18px;
  }
}

.dl__form-field-tag {
  font-size: 10px;
  color: #ffffff;
  display: inline-block;
  background: #e61264;
  padding: 1.5px 8px 1.5px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .dl__form-field-tag {
    font-size: 12px;
  }
}

.dl__form-field-item {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .dl__form-field-item {
    margin-top: 13px;
  }
}
.dl__form-field-item [type=text],
.dl__form-field-item [type=email] {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding: 11px 16px 10px;
}
@media screen and (min-width: 768px) {
  .dl__form-field-item [type=text],
  .dl__form-field-item [type=email] {
    font-size: 16px;
  }
}

.dl__form-checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.dl__form-checkbox-input:checked + .dl__form-checkbox-text::after {
  opacity: 1;
}
.dl__form-checkbox-input:checked + span::after {
  opacity: 1;
}

.dl__form-checkbox-text {
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 38px;
}
.dl__form-checkbox-text.p-contact__checkbox-text {
  margin-left: 3px;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text.p-contact__checkbox-text {
    margin-left: 0px;
  }
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text {
    padding-left: 42px;
    font-size: 16px;
    font-weight: 700;
  }
}
.dl__form-checkbox-text a {
  font-size: 14px;
  margin-right: 6px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text a {
    font-size: 16px;
    margin-right: 10px;
  }
}
.dl__form-checkbox-text::before, .dl__form-checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dl__form-checkbox-text::before {
  width: 28px;
  height: 28px;
  border: 1px solid #3e3e3e;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text::before {
    width: 32px;
    height: 32px;
  }
}
.dl__form-checkbox-text::after {
  width: 11.607px;
  height: 12.7px;
  left: 8px;
  background: url(../img/dl-check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text::after {
    left: 10px;
  }
}

.dl__form-checkbox-text + span {
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 38px;
  margin-left: -16px;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text + span {
    padding-left: 42px;
    font-size: 16px;
    font-weight: 500;
    margin-left: -17px;
  }
}
.dl__form-checkbox-text + span.p-contact__checkbox-text {
  margin-left: 3px;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text + span.p-contact__checkbox-text {
    margin-left: 0px;
  }
}
.dl__form-checkbox-text + span a {
  font-size: 14px;
  margin-right: 6px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text + span a {
    font-size: 16px;
    margin-right: 10px;
  }
}
.dl__form-checkbox-text + span::before, .dl__form-checkbox-text + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dl__form-checkbox-text + span::before {
  width: 28px;
  height: 28px;
  border: 1px solid #3e3e3e;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text + span::before {
    width: 32px;
    height: 32px;
  }
}
.dl__form-checkbox-text + span::after {
  width: 11.607px;
  height: 12.7px;
  left: 8px;
  background: url(../img/dl-check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .dl__form-checkbox-text + span::after {
    left: 10px;
  }
}

.wpcf7-spinner {
  display: none;
}

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

.dl__contact-button {
  color: #023e78;
  border: 1px solid #023e78;
  background: #fff;
  padding-block: 26px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .dl__contact-button {
    width: 95.4%;
    padding-block: 24px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .dl__contact-button {
    width: 71.4%;
  }
}
.dl__contact-button.p-contact__button {
  width: 88%;
}
@media screen and (min-width: 768px) {
  .dl__contact-button.p-contact__button {
    margin-left: 5px;
    width: 208px;
  }
}

.dl__thank-you {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .dl__thank-you {
    margin-top: 36px;
  }
}

.dl__thank-you-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 12px;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .dl__thank-you-detail {
    margin-top: 10px;
  }
}

.dl__thank-you-detail-link {
  color: #023e78;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.dl__thank-you-bottom {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px; /* 200% */
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .dl__thank-you-bottom {
    margin-top: 34px;
  }
}

.p-contact__inner {
  padding-block: 55px 99px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding-block: 76px 160px;
    padding-inline: 23.1vw;
  }
}

.p-contact__message {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-contact__heading {
  margin-top: 60px;
  margin-bottom: 40px;
  color: #1a1a1a;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-contact__heading {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19.5px;
}
@media screen and (min-width: 768px) {
  .p-contact__fields {
    gap: 32px;
  }
}

.p-contact__field {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-contact__field {
    font-size: 18px;
  }
}

.p-contact__form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact__form-field__label {
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-contact__form-field__label {
    font-size: 18px;
  }
}

.p-contact__form-field__tag {
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #e61264;
  padding: 2px 8px 2px;
  display: inline-block;
}

.p-contact__form-field__item {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-field__item {
    margin-top: 12px;
  }
}
.p-contact__form-field__item select,
.p-contact__form-field__item [type=number],
.p-contact__form-field__item [type=email],
.p-contact__form-field__item [type=text] {
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  width: 100%;
  padding: 11px 16px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-field__item select,
  .p-contact__form-field__item [type=number],
  .p-contact__form-field__item [type=email],
  .p-contact__form-field__item [type=text] {
    font-size: 16px;
    padding: 10px 16px 9px;
  }
}
.p-contact__form-field__item select {
  color: #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 11px 16px;
  background: url(../img/contact-select-arrow.png) no-repeat center right 16px/10.814px 6.807px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-field__item select {
    padding: 10px 45px 9px 16px;
  }
}
.p-contact__form-field__item textarea {
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  width: 100%;
  height: 140px;
  padding: 10px 16px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-field__item textarea {
    height: 240px;
  }
}

.p-contact-thank-you__inner {
  padding-inline: 20px;
  padding-block: 55px 97px;
}
@media screen and (min-width: 768px) {
  .p-contact-thank-you__inner {
    padding-inline: 23.2vw;
    padding-block: 76px 156px;
  }
}

.p-contact-thank-you__message {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-contact-thank-you__links {
  font-size: 14px;
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}

.p-contact-thank-you__link {
  color: #023e78;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}