@charset "UTF-8";
@media screen and (min-width: 1025px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .is-pc {
    display: none !important;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
}

html, body {
  scroll-behavior: smooth;
}

.section__bg {
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: 0;
  width: 100%;
}
.section__bg img {
  width: 100%;
}

.kv {
  position: relative;
  height: 250px;
}

.kv__title {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .kv__title {
    gap: 8px;
    left: 15.2777777778vw;
  }
}
.kv__title h2 {
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  font-family: "Fira Sans", sans-serif;
  color: #163f74;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .kv__title h2 {
    font-size: 60px;
  }
}
.kv__title p {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #163f74;
  background: #fff;
  display: inline-block;
  align-self: flex-start;
}
@media screen and (min-width: 1025px) {
  .kv__title p {
    font-size: 20px;
  }
}

.kv__img {
  aspect-ratio: 375/250;
  width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 1025px) {
  .kv__img {
    aspect-ratio: 1280/375;
  }
}
.kv__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb {
  background: #fff;
  padding-bottom: 60px;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  font-size: 12px;
  font-weight: 500;
  margin-top: 13px;
}
@media screen and (min-width: 1025px) {
  .breadcrumb {
    padding-bottom: 80px;
    padding-left: 7.03125vw;
    padding-right: 7.03125vw;
  }
}
.breadcrumb a {
  color: #888;
}

.breadcrumb__contents {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.breadcrumb__item {
  font-size: 12px;
  font-weight: 500;
}
.breadcrumb__item a {
  color: #888;
}

/* 背景画像の見えている高さ */
.parallax {
  height: 100%;
}

/* 背景画像 */
.parallax::before {
  background-image: url(../img/case-study-bg-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .parallax::before {
    background-image: url(../img/case-study-bg-pc.png);
  }
}

.header {
  height: 60px;
  padding: 13px 20px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 1025px) {
  .header {
    height: 100px;
    padding: 16px;
  }
}

.header__contents {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header__logo {
  margin-right: auto;
  font-size: 28px;
  font-style: italic;
  line-height: normal;
  font-family: "Roboto", sans-serif;
  color: #163f74;
}
.header__logo a {
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .header__logo {
    font-size: 40px;
  }
}

.header__hamburger {
  position: relative;
  width: 27px;
  height: 18px;
}

.header__hamburger--bar {
  position: absolute;
  content: "";
  width: 100%;
  height: 2.3px;
  background: #163f74;
  border-radius: 9999px;
  transition: transform 0.8s ease, top 0.8s ease;
}

.header__hamburger--bar:nth-child(1) {
  top: 0;
  left: 0;
}
.header__hamburger--bar:nth-child(1).--open {
  transform: rotate(-45deg);
  top: 7px;
}

.header__hamburger--bar:nth-child(2) {
  top: 7px;
  left: 0;
}
.header__hamburger--bar:nth-child(2).--open {
  display: none;
}

.header__hamburger--bar:nth-child(3) {
  top: 14px;
  left: 0;
}
.header__hamburger--bar:nth-child(3).--open {
  transform: rotate(45deg);
  top: 7px;
}

.drawer {
  background: #163f74;
  color: #fff;
  height: 100vh;
  position: fixed;
  width: 100vw;
  padding-top: 16vw;
  padding-bottom: 16vw;
  padding-left: 10.6666666667vw;
  padding-right: 10.6666666667vw;
  display: none;
  z-index: 100;
}

.drawer__items {
  display: flex;
  flex-direction: column;
  gap: 41px;
  text-align: center;
  margin-bottom: 40px;
}

.drawer__item {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.drawer__download {
  padding-top: 23px;
  padding-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  width: 100%;
  border: 1px solid #fff;
  margin-bottom: 32px;
  display: inline-block;
}

.drawer__contact {
  display: inline-block;
  padding-top: 23px;
  padding-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  width: 100%;
  border: 1px solid #fff;
  color: #163f74;
  background: #fff;
}

/* 共通：両方とも一旦非表示にしておく */
.header__nav,
.header__hamburger {
  display: none;
}

/* PC表示（1190px以上） */
@media screen and (min-width: 1280px) {
  .header__nav {
    display: block;
  }
}
/* SP表示（1190px未満） */
@media screen and (max-width: 1279px) {
  .header__hamburger {
    display: block;
  }
}
.header__nav__contents {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header__nav__items {
  display: flex;
  flex-direction: row;
  margin-right: 32px;
}

.header__nav__item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  position: relative;
}

.header__nav__item:not(:last-child) a {
  padding-right: 16px;
}

.header__nav__item:not(:first-child) a {
  padding-left: 16px;
}

.header__nav__download {
  padding: 24px 32px;
  color: #163f74;
  border: 1px solid #163f74;
  background: #fff;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.header__nav__contact {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  padding: 23px 46px;
  color: #fff;
  background: #163f74;
}

@media screen and (min-width: 1025px) and (max-width: 1190px) {
  .header__logo {
    font-size: 30px;
  }
  .header__nav__item {
    font-size: 10px;
  }
  .header__nav__download,
.header__nav__contact {
    font-size: 12px;
  }
}
main {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  main {
    margin-top: 100px;
  }
}

/* ================================
   本題のCSS
=============================== */
.card {
  padding-left: 10.6666666667vw;
  position: relative;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .card {
    padding-left: 7.03125vw;
  }
}

.card__swiper-container,
.card__swiper,
.card__swiper-wrapper,
.card__swiper-slide {
  position: relative;
}

.card__swiper-slide img {
  width: 100%;
}

.card__swiper-slide-text {
  position: absolute;
  bottom: 5.3333333333vw;
  left: 5.3333333333vw;
  z-index: 5;
}
@media screen and (min-width: 1025px) {
  .card__swiper-slide-text {
    bottom: 4.6875vw;
    left: 3.90625vw;
  }
}
.card__swiper-slide-text h2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 17px;
}
@media screen and (min-width: 1025px) {
  .card__swiper-slide-text h2 {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.card__swiper-slide-text span {
  font-size: 40px;
  font-weight: 500;
  font-family: "Fira Sans", sans-serif;
  line-height: normal;
  font-style: italic;
  background: #fff;
  color: #163f74;
  display: inline-block;
  align-self: flex-start;
}
@media screen and (min-width: 1025px) {
  .card__swiper-slide-text span {
    font-size: 60px;
  }
}

.card__swiper-slide-text-sub {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  color: #fff;
  background: #163f74;
}
@media screen and (min-width: 1025px) {
  .card__swiper-slide-text-sub {
    font-size: 20px;
  }
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  left: -20px;
}

.swiper-button-next {
  right: -20px;
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% + 29px);
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d9d9d9;
  margin-inline: 5.5px;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #000;
}

.about {
  position: relative;
  margin-top: 16vw;
  padding-bottom: 36vw;
  padding-left: 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .about {
    margin-top: 11.71875vw;
    padding-bottom: 11.71875vw;
    margin-bottom: 119px;
  }
}

.about__bg {
  width: 78.6666666667vw;
  position: absolute;
  right: 0;
  bottom: 36vw;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .about__bg {
    width: 39.0625vw;
    bottom: 11.71875vw;
    max-width: 500px;
    width: 100%;
  }
}

.section__inner {
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .section__inner {
    max-width: 1280px;
    padding-right: 7.03125vw;
    padding-left: 7.03125vw;
    margin: 0 auto;
  }
}

.section__title {
  display: flex;
  flex-direction: column;
  color: #163f74;
  position: relative;
  z-index: 2;
}
.section__title.--white {
  color: #fff;
}
.section__title h2 {
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  font-family: "Fira Sans", sans-serif;
}
@media screen and (min-width: 1025px) {
  .section__title h2 {
    font-size: 7.8125vw;
  }
}
.section__title p {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 1025px) {
  .section__title p {
    font-size: 1.875vw;
  }
}

.about__contents {
  margin-top: 58px;
}
@media screen and (min-width: 1025px) {
  .about__contents {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.about__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71;
  margin-bottom: 70px;
}
@media screen and (min-width: 1025px) {
  .about__text {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .about__img {
    width: 53.203125vw;
    flex-shrink: 0;
    max-width: 681px;
  }
}

.service {
  padding-bottom: 171px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .service {
    padding-bottom: 104px;
  }
}

.service__items {
  display: flex;
  flex-direction: column;
  gap: 73px;
  margin-left: 15px;
  margin-top: 67px;
}
@media screen and (min-width: 1025px) {
  .service__items {
    margin-top: 87px;
    flex-direction: row;
    gap: 70px;
    margin-left: 0;
    margin-top: 87px;
  }
}

@media screen and (min-width: 1025px) {
  .service__item {
    width: calc((100% - 140px) / 3);
  }
}

@media screen and (min-width: 1025px) {
  .service__item:nth-child(2) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1025px) {
  .service__item:nth-child(3) {
    margin-top: 120px;
  }
}

.service__img {
  position: relative;
  margin-bottom: 14px;
}
.service__img img {
  width: 100%;
}

.service__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  bottom: 33px;
  left: -15px;
}
.service__title h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  color: #163f74;
  background: #fff;
  align-self: flex-start;
}

.service__number {
  position: absolute;
  top: -55px;
  right: 4px;
  width: 99px;
  height: 120px;
}

.service__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  position: relative;
  z-index: 1;
}

.case__study {
  background: transparent url(../img/case-study-bg-sp.png) no-repeat center top/cover;
  position: relative;
  color: #fff;
  margin-bottom: 60px;
  padding-bottom: 152px;
}
@media screen and (min-width: 1025px) {
  .case__study {
    padding-top: 100px;
    padding-bottom: 123px;
    background: transparent url(../img/case-study-bg-pc.png) no-repeat center top/cover;
    margin-bottom: 119px;
  }
}

.case__study__contents {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 52px;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .case__study__contents {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    margin-top: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .case__study__item {
    width: calc((100% - 140px) / 3);
  }
}

.case__study__item__img {
  margin-bottom: 14px;
  background-color: #fff;
  padding: 20px 60px;
}
@media screen and (min-width: 1025px) {
  .case__study__item__img {
    margin-bottom: 16px;
  }
}
.case__study__item__img img {
  width: 100%;
}

.case__study__item__company {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 11px;
}
@media screen and (min-width: 1025px) {
  .case__study__item__company {
    margin-bottom: 12px;
  }
}

.case__study__item__bottom {
  display: flex;
  align-items: center;
}

.case__study__item__tag {
  margin-right: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  padding: 6px 16px;
  border: 1px solid #fff;
}

.case__study__item__arrow {
  width: 30px;
  height: 30px;
}

.news {
  padding-bottom: 175px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .news {
    padding-bottom: 160px;
    margin-bottom: 119px;
  }
}

.news__contents {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .news__contents {
    padding: 60px 40px;
    margin-top: 80px;
  }
}

.news__item {
  position: relative;
}
.news__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  bottom: 0;
  left: 0;
}

.news__contents:not(:first-child) .news__item__top {
  padding-top: 16px;
}
@media screen and (min-width: 1025px) {
  .news__contents:not(:first-child) .news__item__top {
    padding-top: 20px;
  }
}

.news__item__top {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
@media screen and (min-width: 1025px) {
  .news__item__top {
    margin-bottom: 17px;
  }
}

.news__tag {
  margin-right: auto;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #E61264;
  padding: 6px 20px;
  border: 1px solid #E61264;
}
@media screen and (min-width: 1025px) {
  .news__tag {
    font-size: 14px;
    padding: 8px 24px;
  }
}

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

.news__item__text {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .news__item__text {
    font-size: 16px;
  }
}

.cta {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .cta {
    flex-direction: row;
  }
}

.cta__download {
  background: linear-gradient(rgba(0, 82, 162, 0.8), rgba(0, 82, 162, 0.8)), url(../img/download-bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 1025px) {
  .cta__download {
    width: 50%;
  }
}

.cta__contents {
  padding: 46px 40px 25px;
}
@media screen and (min-width: 1025px) {
  .cta__contents {
    padding-top: 55px;
    padding-bottom: 49px;
  }
}

.cta__title {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.cta__title h2 {
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 6px;
}
@media screen and (min-width: 1025px) {
  .cta__title h2 {
    font-size: 60px;
    margin-bottom: 3px;
  }
}
.cta__title p {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.cta__btn {
  padding: 29px 102px;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  font-family: "Fira Sans", sans-serif;
  color: #fef251;
  border: 2px solid #fef251;
  display: block;
  position: relative;
  margin: 0 auto;
  transition: background 0.6s ease, color 0.6s, right 0.6s ease;
  max-width: 296px;
}
@media screen and (min-width: 1025px) {
  .cta__btn {
    padding: 34px 92px;
    max-width: 317px;
    width: 100%;
    font-size: 24px;
  }
}
.cta__btn:hover {
  background: #fef251;
  color: #1a1a1a;
}
.cta__btn:hover::after {
  background: transparent url(../img/icon-arrow-black.svg) no-repeat center center/contain;
  right: 10px;
}
.cta__btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 14px;
  background: transparent url(../img/icon-arrow-yellow.svg) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: right 0.3s ease, background 0.6s ease;
}

.cta__contact {
  background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/contact-bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 1025px) {
  .cta__contact {
    width: 50%;
  }
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 13px;
}
@media screen and (min-width: 1025px) {
  .footer {
    padding-top: 120px;
    padding-bottom: 17px;
  }
}

.footer__contents {
  max-width: 290px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .footer__contents {
    max-width: 380px;
  }
}

.footer__title {
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 22px;
}
@media screen and (min-width: 1025px) {
  .footer__title {
    font-size: 52px;
  }
}

.footer__text {
  font-size: 14px;
  line-height: 1.71;
  font-weight: 500;
  margin-bottom: 76px;
}

.copyright {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .copyright {
    font-size: 14px;
    line-height: 1.71;
  }
}

.news__detail__wrapper {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .news__detail__wrapper {
    flex-direction: row;
    gap: 40px;
    padding-left: 7.03125vw;
    padding-right: 7.03125vw;
    padding-bottom: 175px;
  }
}

.news__detail__contents {
  flex-grow: 1;
}

.news__contents__top {
  display: flex;
  align-items: center;
}

.news__contents__top--category {
  color: #E61264;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px 12px;
  border: 1px solid #E61264;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .news__contents__top--category {
    font-size: 14px;
    padding: 8px 24px;
  }
  .news__contents__top--category.--small {
    padding: 4px 12px;
  }
}

.news__contents__top__date {
  color: #888;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.news__contents__title {
  margin-top: 5px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .news__contents__title {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 22px;
    margin-bottom: 41px;
  }
}

.news__contents__wrapper img {
  width: 100%;
  margin-bottom: 40px;
}
.news__contents__wrapper h2 {
  color: #163f74;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 7px 26px 10px;
  background: #F8F8F8;
  position: relative;
  margin-bottom: 21px;
}
@media screen and (min-width: 1025px) {
  .news__contents__wrapper h2 {
    margin-bottom: 18px;
  }
}
.news__contents__wrapper h2::before {
  width: 6px;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #163f74;
}
.news__contents__wrapper h3 {
  color: #163f74;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  -webkit-text-decoration-color: #163f74;
          text-decoration-color: #163f74; /* 下線の色 */
  text-underline-offset: 5px;
  margin-bottom: 18px;
}
@media screen and (min-width: 1025px) {
  .news__contents__wrapper h3 {
    margin-bottom: 25px;
  }
}
.news__contents__wrapper h4 {
  color: #163f74;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 7px;
}
@media screen and (min-width: 1025px) {
  .news__contents__wrapper h4 {
    margin-bottom: 14px;
  }
}
.news__contents__wrapper p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71; /* 171.429% */
  margin-bottom: 32px;
}
.news__contents__wrapper ul {
  gap: 20px;
  margin-bottom: 57px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .news__contents__wrapper ul {
    margin-left: 40px;
    gap: 16px;
    margin-bottom: 40px;
  }
}

.quotation {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71; /* 171.429% */
  padding: 30px 32px;
  background: #F8F8F8;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .quotation {
    padding: 33px 35px;
  }
}
.quotation::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #163f74;
  top: 0;
  left: 0;
}

.quotation__img {
  position: absolute;
  width: 78px;
  top: 15px;
  left: 15px;
}

.pagination {
  display: flex;
}

.pagination__btn {
  display: block;
  padding: 8px 16px;
  color: #163f74;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #163f74;
}

.--prev {
  margin-right: auto;
}

.news__detail__wrapper__right {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1025px) {
  .news__detail__wrapper__right {
    gap: 83px;
    width: 320px;
    flex-shrink: 0;
  }
}

.news__sidebar__category {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.news__sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news__sidebar__item__link {
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .news__sidebar__item__link {
    gap: 16px;
  }
}

.news__sidebar__item__link__img {
  aspect-ratio: 120/90;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .news__sidebar__item__link__img {
    aspect-ratio: 100/100;
    width: 100px;
  }
}
.news__sidebar__item__link__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__sidebar__item__link__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.news__sidebar__item__link__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.42; /* 142.857% */
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 3; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}

.news__right__category__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.news__right__category__items {
  display: flex;
  flex-direction: column;
}

.news__right__category__item {
  border-bottom: 1px solid #ddd;
}

.news__right__category__item:first-child {
  border-top: 1px solid #ddd;
}

.news__right__category__item__link {
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 39px;
  position: relative;
  display: block;
}
.news__right__category__item__link::before {
  position: absolute;
  content: "";
  background: transparent url(../img/common/arrow-blue-next-02.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.news__detail__contents__category {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .news__detail__contents__category {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 27px;
  }
}

.news__detail__contents__category__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .news__detail__contents__category__wrapper {
    gap: 40px;
    margin-bottom: 60px;
  }
}

.news__detail__contents__category__link {
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .news__detail__contents__category__link {
    gap: 20px;
  }
}

.news__detail__contents__category__link__right {
  gap: 4px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .news__detail__contents__category__link__right {
    gap: 17px;
  }
}

.news__detail__contents__category__item__img {
  aspect-ratio: 120/90;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .news__detail__contents__category__item__img {
    aspect-ratio: 250/156;
    width: 19.53125vw;
  }
}
.news__detail__contents__category__item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination__detail {
  display: flex;
  gap: 6px;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .pagination__detail {
    gap: 8px;
  }
}

.pagination__detail__btn {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #888;
  font-weight: 500;
  background: #F8F8F8;
}
@media screen and (min-width: 1025px) {
  .pagination__detail__btn {
    width: 50px;
    height: 50px;
  }
}
.pagination__detail__btn.--current {
  color: #fff;
  background: #163f74;
}

.download__contents {
  display: flex;
  flex-direction: column;
  gap: 59px;
  background: #fff;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .download__contents {
    flex-direction: row;
    gap: 40px;
    padding-left: 7.03125vw;
    padding-right: 7.03125vw;
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 1025px) {
  .download__left {
    margin: 0;
    width: calc((100% - 40px) / 2);
  }
}

.download__left__lead {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 140% */
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .download__left__lead {
    font-size: 28px;
  }
}

.download__left__img {
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .download__left__img {
    margin-left: 90px;
    margin-right: 90px;
  }
}

.download__left__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71; /* 171.429% */
}

.download__right {
  border-radius: 12px;
  background: #EDF3F8;
  padding: 38px 20px;
}
@media screen and (min-width: 1025px) {
  .download__right {
    width: calc((100% - 40px) / 2);
    margin: 0;
    padding: 40px;
  }
}

.download__right__lead {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .download__right__lead {
    font-size: 32px;
    line-height: 1.5;
  }
}

.form-group-submit {
  text-align: center;
}

.submit-button {
  color: #163f74;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 26px 60px;
  background-color: #fff;
  border: 1px solid #163f74;
  max-width: 100%;
  display: flex;
  margin: 0 auto;
}

.privacy__policy {
  text-decoration: underline;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
}

.wpcf7-list-item-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.wpcf7-list-item {
  margin: 0;
}

.form-group-checkbox {
  margin-bottom: 44px !important;
}

.form-group-checkbox {
  text-align: center;
}

.download__right__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
  line-height: 2;
}

.download__right__link {
  display: block;
  color: #023E78;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration: underline;
  position: relative;
  margin-bottom: 36px;
}

.contact__contents {
  background: #fff;
}

.contact__lead {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7; /* 171.429% */
  margin-bottom: 60px;
}

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

.form-select {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #DDD;
  padding: 12px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  /* 矢印を右端に配置 */
  background-position: right 16px center;
}

.form-textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #DDD;
  padding: 12px 16px;
  margin-top: 8px;
}

/* 初期表示（value="" の状態）はグレー */
.form-select {
  color: #CCC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 8px;
  background-color: #fff;
  padding: 12px 16px;
}

/* ちゃんと選択されたら黒に */
.form-select:valid {
  color: #000;
}

select:has(option:checked[value=""]) {
  color: #D9D9D9;
}

.form-textarea::-moz-placeholder {
  color: #CCC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form-textarea::placeholder {
  color: #CCC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* チェックボックスとラベル全体を囲む要素のスタイル */
.wpcf7-acceptance label {
  position: relative; /* これがカスタムチェックボックスの位置の基準になります */
  padding-left: 28px; /* 左側にカスタムチェックボックスを置くスペースを確保 */
  cursor: pointer; /* クリックできることを示すカーソルに */
  display: inline-flex; /* 要素を横並びにし、中央揃えしやすくする */
  align-items: center;
  min-height: 22px; /* チェックボックスの高さに合わせる */
}

/* 1. デフォルトのチェックボックスを非表示にする */
.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0; /* 透明にして見えなくする */
  width: 0;
  height: 0;
}

/* 2. カスタムチェックボックスの「四角い枠」を作成する */
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 上下中央に配置 */
  width: 28px; /* 枠の幅 */
  height: 28px; /* 枠の高さ */
  border: 1px solid #3E3E3E; /* 枠線の色と太さ */
  background-color: #fff; /* 枠の背景色 */
}

/* 3. チェックが入った時の「チェックマーク」を作成する */
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 10px; /* チェックマークの左からの位置 */
  top: 50%; /* チェックマークの上からの位置（transformで調整）*/
  /* チェックマークの形を、幅と高さを指定した要素を回転させて作る */
  width: 6px;
  height: 12px;
  border: solid #3E3E3E; /* チェックマークの色 */
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.btn--0302A {
  position: absolute;
  bottom: -75px;
  z-index: 10;
  right: 125px;
}
@media screen and (min-width: 1025px) {
  .btn--0302A {
    top: 54px;
    right: 250px;
  }
}
.btn--0302A.--case-study {
  bottom: -80px;
}
@media screen and (min-width: 1025px) {
  .btn--0302A.--case-study {
    top: 50px;
  }
}
.btn--0302A.--about {
  bottom: -80px;
}
@media screen and (min-width: 1025px) {
  .btn--0302A.--about {
    top: 45px;
  }
}
.btn__link {
  display: inline-block;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .btn__link {
    font-size: 32px;
  }
}
.btn__link span {
  position: relative;
  display: inline-block;
}
.btn__link span::before {
  content: "";
  position: absolute;
  top: calc(50% + 4px);
  translate: 0 -50%;
  left: calc(100% + 18px);
  width: 64px;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.5s ease;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .btn__link span::before {
    width: 121px;
  }
}
.btn__link span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.7px);
  translate: 0 -50%;
  rotate: 45deg;
  left: calc(100% + 68px);
  width: 16px;
  height: 2px;
  background: #1a1a1a;
  transition: left 0.5s ease;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .btn__link span::after {
    left: calc(100% + 125px);
  }
}
@media (any-hover: hover) {
  .btn__link:hover span::before {
    background: #000;
    width: 160px;
  }
  .btn__link:hover span::after {
    background: #000;
    left: calc(100% + 164px);
  }
}

.btn__circle {
  width: 51px;
  height: 51px;
  border-radius: 51px;
  background: #FFF400;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 57px);
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .btn__circle {
    left: calc(100% + 108px);
  }
}

.service__title__page {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4; /* 140% */
  padding-bottom: 61.6vw;
}
@media screen and (min-width: 1025px) {
  .service__title__page {
    padding-top: 80px;
    padding-bottom: 80px;
    font-size: 28px;
    padding-bottom: 133px;
  }
}

.service__contents {
  background: #fff;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  gap: 61.6vw;
}
@media screen and (min-width: 1025px) {
  .service__contents {
    padding-bottom: 19.453125vw;
    gap: 27.109375vw;
  }
}

.service__contents__item {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .service__contents__item {
    width: 46.09375vw;
    padding: 82px 40px 60px;
  }
}

.service__contents__item__wrapper {
  position: relative;
}

@media screen and (min-width: 1025px) {
  .service__contents .service__contents__item__wrapper:nth-child(2) {
    margin-left: auto;
  }
}

.service__contents__item--number {
  position: absolute;
  color: #163f74;
  font-family: "Fira Sans", sans-serif;
  font-size: 68px;
  font-style: italic;
  font-weight: 500;
  top: -42px;
}
.service__contents__item--number.--left {
  left: 20px;
}
.service__contents__item--number.--right {
  right: 20px;
}

.service__contents__item--img {
  position: absolute;
  width: 50.1333333333vw;
  top: -35.4666666667vw;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .service__contents__item--img {
    width: 43.75vw;
    top: 4.921875vw;
  }
}

.service__contents__item--img:nth-child(1),
.service__contents__item--img:nth-child(3) {
  right: -5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .service__contents__item--img:nth-child(1),
.service__contents__item--img:nth-child(3) {
    right: 3.125vw;
  }
}

.service__contents__item__wrapper:nth-child(2) .service__contents__item--img {
  /* 好きなスタイル */
  left: -5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .service__contents__item__wrapper:nth-child(2) .service__contents__item--img {
    left: -39.0625vw;
  }
}

.service__item__title {
  margin-bottom: 31px;
}
.service__item__title h2 {
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 1025px) {
  .service__item__title h2 {
    font-size: 40px;
  }
}
.service__item__title p {
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  color: #163f74;
}
@media screen and (min-width: 1025px) {
  .service__item__title p {
    font-size: 16px;
  }
}

.service__item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .service__item__text {
    margin-bottom: 58px;
  }
}

.service__item__detail {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .service__item__detail {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.service__item__detail h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
.service__item__detail p {
  font-size: 14px;
  line-height: 1.71;
  font-weight: 500;
}
.service__item__detail li {
  display: flex;
  flex-direction: row;
  gap: 52px;
  border-bottom: 1px solid #ccc;
  padding-top: 18px;
  padding-bottom: 18px;
  align-items: center;
}

.service__item__detail > li:first-child {
  border-top: 1px solid #ccc;
}

.service__item__detail--title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.section__link__wrapper {
  text-align: center;
}

.section__link {
  display: inline-block;
  padding: 24px 80px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #163f74;
  border: 1px solid #163f74;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .section__link {
    font-size: 16px;
  }
}
.section__link::after {
  position: absolute;
  content: "";
  background: transparent url(../img/common/arrow-blue-next.svg) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.service__flow__contents {
  padding: 60px 20px;
}
@media screen and (min-width: 1025px) {
  .service__flow__contents {
    padding: 80px 60px 119px;
  }
}

.service__flow__title {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .service__flow__title {
    margin-bottom: 78px;
  }
}

.service__flow__img {
  display: block;
  text-align: center;
}

.faq {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 100px;
}

.faq__contents {
  max-width: 688px;
  margin: 0 auto;
}

.faq__title {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .faq__title {
    margin-bottom: 60px;
  }
}

.faq__q {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  display: flex;
  cursor: pointer;
}
.faq__q p {
  margin-right: auto;
  font-weight: 700;
}
.faq__q.--open {
  color: #E61264;
}

.faq__a {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DDDDDD;
  display: none;
}

.q__icon {
  width: 21px;
  height: 21px;
  position: relative;
  flex-shrink: 0;
}

.q__icon--bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.q__icon--bar.--open {
  background: #E61264;
}

.q__icon--bar:first-child {
  transform: translateY(-50%) rotate(0deg);
}
.q__icon--bar:first-child.--open {
  transform: translateY(-50%) rotate(45deg);
}

.q__icon--bar:last-child {
  transform: translateY(-50%) rotate(90deg);
}
.q__icon--bar:last-child.--open {
  transform: translateY(-50%) rotate(-45deg);
}

.case__category {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  padding-right: 40px;
  gap: 20px;
  padding-bottom: 62px;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .case__category {
    flex-direction: row;
    gap: 16px;
    padding-left: 90px;
  }
}

.case__category__item {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background: #EEE;
}
.case__category__item a {
  display: block;
  padding: 12px;
}

.case__items {
  display: flex;
  flex-direction: column;
  gap: 62px;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1025px) {
  .case__items {
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 160px;
  }
}

.case__title {
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  position: relative;
  margin-bottom: 29px;
}
.case__title::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 100%;
  background: #163f74;
  top: 0;
  left: 0;
}
.case__title h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.case__title p {
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.case__item__detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .case__item__detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case__item__detail__item {
  background: #FFF;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}

.case__item__detail__item__top {
  padding: 18px 20px 19px;
  background: #163f74;
  color: #fff;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.case__item__detail__item__top__company {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.case__item__detail__item__top__company--category {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 150% */
}

.case__item__detail__item__top__company--name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.case__item__detail__item__top__img {
  width: 90px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  padding: 8px 19px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
}
.case__item__detail__item__top__img img {
  width: 52px;
}
@media screen and (min-width: 1025px) {
  .case__item__detail__item__top__img img {
    width: 88px;
  }
}

.case__item__detail__item__contents {
  padding: 22px 20px 16px;
}

.case__item__detail__item__contents__lead {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: 10px;
  -webkit-text-decoration-color: #ddd;
          text-decoration-color: #ddd;
  margin-bottom: 33px;
}

.case__item__detail__item__contents__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case__item__detail__item__contents__item--lead {
  padding-left: 26px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
  position: relative;
}
.case__item__detail__item__contents__item--lead::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: transparent url(../img/case/check.svg) no-repeat center center/contain;
  left: 0;
  top: 2px;
}

.case__item__detail__item__contents__item--text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71; /* 171.429% */
}

.about__container {
  background: #fff;
  padding-top: 60px;
}
@media screen and (min-width: 1025px) {
  .about__container {
    padding-top: 80px;
  }
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 254px;
  padding-bottom: 278px;
}
@media screen and (min-width: 1025px) {
  .about__wrapper {
    margin-left: 7.03125vw;
    margin-right: 7.03125vw;
    gap: 20.3125vw;
    padding-bottom: 23.125vw;
  }
}

.about__wrapper__contents {
  position: relative;
}
.about__contents__img img {
  width: 100%;
}

.about__title {
  position: absolute;
  top: 20px;
  left: 20px;
}
.about__title h2 {
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .about__title h2 {
    font-size: 100px;
  }
}
.about__title p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 1025px) {
  .about__title p {
    font-size: 24px;
  }
}

.about__detail__text {
  padding: 20px;
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
  width: 89.3333333333vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -116px;
  max-width: 688px;
}
@media screen and (min-width: 1025px) {
  .about__detail__text {
    padding: 32px 40px;
    width: 53.75vw;
    bottom: -120px;
  }
}

.about__contents__title {
  color: #163f74;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 18px;
}
@media screen and (min-width: 1025px) {
  .about__contents__title {
    font-size: 24px;
    margin-bottom: 31px;
  }
}

.about__contents__lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}

.about__company {
  background: transparent url(../img/case-study-bg-sp.png) no-repeat center top/cover;
  padding: 60px 0;
}
@media screen and (min-width: 1025px) {
  .about__company {
    background: transparent url(../img/case-study-bg-pc.png) no-repeat center top/cover;
  }
}

.about__company__title {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .about__company__title {
    margin-bottom: 60px;
  }
}

.about__company__contents {
  background: #fff;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media screen and (min-width: 1025px) {
  .about__company__contents {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 60px 40px 80px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__company__table {
  table-layout: fixed;
  width: 100%;
}
.about__company__table th, .about__company__table td {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .about__company__table th, .about__company__table td {
    font-size: 16px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 32px;
  }
}
.about__company__table th {
  flex-shrink: 0;
  text-align: left;
  width: 26.6666666667vw;
  border-top: 1px solid #163f74;
}
@media screen and (min-width: 1025px) {
  .about__company__table th {
    width: 15.625vw;
  }
}
.about__company__table tr:last-child th {
  border-bottom: 1px solid #163f74;
}
.about__company__table td {
  flex-grow: 1;
  border-top: 1px solid #E8EAEC;
}
.about__company__table tr:last-child td {
  border-bottom: 1px solid #E8EAEC;
}

.officer {
  padding-top: 60px;
  padding-bottom: 166px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .officer {
    padding-top: 120px;
    padding-bottom: 187px;
  }
}

.officer__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .officer__title {
    font-size: 24px;
    margin-bottom: 60px;
  }
}

.officer__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (min-width: 1025px) {
  .officer__list {
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1025px) {
  .officer__member {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
}

.officer__img {
  margin-left: 18.1333333333vw;
  margin-right: 18.1333333333vw;
  margin-bottom: 22px;
}
@media screen and (min-width: 1025px) {
  .officer__img {
    margin-left: 0;
    margin-right: 0;
    width: 18.75vw;
    flex-shrink: 0;
  }
}

.officer__name {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 17px;
}
.officer__name span {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-right: 20px;
}
.officer__name p {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.officer__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71; /* 171.429% */
  margin-bottom: 20px;
}

.officer__sns {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.wpcf7-response-output {
  display: none !important;
}

/* メニューの項目間にスラッシュを追加 */
.header__nav__items > li:not(:first-child)::before {
  content: "／";
  margin: 0 1em; /* スラッシュの左右に余白を設ける */
  color: #333; /* スラッシュの色（お好みに合わせて変更）*/
}

.download__right__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.form-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 5px;
  border: 1px solid #DDD;
  background: #FFF;
  margin-top: 8px;
}

.form-input::-moz-placeholder {
  color: #CCC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form-input::placeholder {
  color: #CCC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form-group {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .form-group {
    margin-bottom: 32px;
  }
}

.required-tag {
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 2px 8px;
  background: #E61264;
  margin-left: 8px;
}