@charset "UTF-8";
/* リセットCSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(
    7px,
    3.4666666667vw,
    50px
  ); /* 最小10px, 最大16px、幅に応じて調整 */
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  font-style: normal;
  font-size: 1rem; /* html基準に依存 */
  background-color: #f4f7ff;
  color: #192445;
  width: 100%;
  box-sizing: border-box;
}

body,
html {
  overflow-x: clip !important;
}

.pc-only {
  display: none !important;
}

.sp-only {
  display: block;
}

/* 大見出し: Butler */
h1 {
  font-family: "Butler", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem); /* 画面幅に応じて調整 */
  line-height: 1.2;
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.4;
}

/* リンクや画像の基本スタイル */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.logo_arrow_btn {
  width: 0.5rem; /* アイコンの幅 */
  height: auto; /* 自動で高さを調整 */
}

.container {
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0); /* 背景を半透明に */
  overflow: visible; /* デフォルトは内容を表示 */
  transition: overflow 0.3s ease; /* スムーズな切り替え効果 */
}
.header.blur {
  backdrop-filter: blur(12px);
}
.header.blur:has(.active) {
  background-color: #f4f7ff;
}
.header .header_container {
  width: 100%;
  display: flex;
  align-items: center;
}
.header .header_container .hamburger_menu {
  display: none; /* 初期状態は非表示（PC用では不要） */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 1rem 0 auto;
}
.header .header_container .hamburger_menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header .header_container .hamburger_menu {
  display: flex; /* モバイルサイズで表示 */
}
.header .header_container .hamburger_menu.color-blue span {
  background-color: #003aa7;
}
.header .header_container .main_logo .home_link {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin-top: 1.4em;
  margin-left: 1.4rem;
  margin-bottom: 1.4rem;
}
.header .header_container .main_logo .home_link .main_logo_img {
  width: 6.6666666667rem;
  margin-right: 2.2666666667rem;
}
.header .header_container .main_logo .home_link .main_logo_text {
  font-size: 0.8461538462rem;
  color: #ffffff;
  padding-top: 0.2rem;
  font-weight: 400;
}
.header .header_container .nav_header .nav_header_contents {
  visibility: hidden; /* 初期状態は非表示 */
  flex-direction: column;
  background-color: #f4f7ff;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  padding: 0.5rem 30px 0px 30px;
  width: 100%;
  height: 100lvh;
  opacity: 0; /* アニメーションの開始状態 */
  transform: translateY(-20%);
  transition: all 0.3s ease-out;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header .header_container .nav_header .nav_header_contents.active {
  visibility: visible;
  opacity: 1; /* 表示状態 */
  transform: translateY(0);
  transition: all 0.3s ease-out;
}
.header .header_container .nav_header a {
  color: #003aa7;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.003rem;
}
.header .header_container .nav_header .nav_item,
.header .header_container .nav_header .nav_item_blank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #dcdcdc; /* 下線 */
  text-decoration: none;
  color: #2c3e50;
  transition: background-color 0.3s;
}
.header .header_container .nav_header .nav_item:hover,
.header .header_container .nav_header .nav_item_blank:hover {
  background-color: rgba(220, 220, 220, 0.2); /* ホバー時の背景色 */
}
.header .header_container .nav_header .nav_item_title {
  font-family: "Butler", serif;
  font-size: clamp(14px, 4.4vw, 25px);
  font-weight: 300;
  color: #a1bfd8;
}
.header .header_container .nav_header .nav_item_subtitle {
  font-size: clamp(10px, 3.7vw, 20px);
  color: #003aa7; /* 日本語部分の文字色 */
}
.header .header_container .nav_header .nav_item_icon {
  width: clamp(14px, 8.4vw, 40px);
  height: clamp(14px, 8.4vw, 40px);
  background-color: #a1bfd8; /* 丸い背景色 */
  border-radius: 50%; /* 丸くする */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, transform 0.2s;
}
.header .header_container .nav_header .nav_item_icon img {
  width: clamp(10px, 1.6vw, 20px);
  height: clamp(10px, 1.6vw, 20px);
}
.header .header_container .nav_header .nav_item:hover .nav_item_icon,
.header .header_container .nav_header .nav_item_blank:hover .nav_item_icon {
  background-color: #003aa7; /* ホバー時の丸い背景色 */
  transform: scale(1.1); /* ホバー時に少し大きく */
}

.header.menu-active-bg {
  background-color: #f4f7ff;
  box-shadow: inset 0 -1px 0 #ddd;
}

.fade-out,
.fade-in {
  transition: opacity 1s ease;
}

.fade-out {
  opacity: 0;
  box-shadow: none;
}

.fade-in {
  opacity: 1;
  box-shadow: none;
}

.first_view {
  position: relative;
  width: 100%;
}
.first_view .first_view_container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.first_view .first_view_container .first_view_left {
  display: flex;
  position: relative; /* 子要素の絶対配置の基準にする */
}
.first_view .first_view_container .first_view_left .swiper-container {
  width: 100%;
  height: 27.6923076923rem;
  position: relative;
  overflow: hidden;
}
.first_view
  .first_view_container
  .first_view_left
  .swiper-container
  .swiper-slide {
  flex: 1 0 auto; /* 各スライドの幅を均等に */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.first_view
  .first_view_container
  .first_view_left
  .swiper-container
  .swiper-slide
  img {
  width: 100%;
  height: 27.6923076923rem;
  object-fit: cover;
}
.first_view
  .first_view_container
  .first_view_left
  .swiper-container
  .swiper-slide
  .crop-image {
  object-position: 70% center; /* 画像を右にずらす */
  transform: scale(1.8);
}
.first_view
  .first_view_container
  .first_view_left
  .swiper-container
  .swiper-pagination-progress {
  top: 15.892308rem;
  left: 2.1333333333rem;
  height: 7.6923076923rem;
  width: 0.1rem;
  background: rgba(225, 203, 203, 0.3);
  z-index: 10;
}
.first_view
  .first_view_container
  .first_view_left
  .swiper-container
  .swiper-pagination-fraction_sp {
  font-family: "Plus Jakarta Sans", serif;
  position: absolute;
  top: 25rem;
  left: 2.1rem;
  transform: translateX(-50%);
  font-size: 0.9230769231rem;
  color: #ffffff;
  z-index: 10;
}
.first_view
  .first_view_container
  .first_view_left
  .swiper-container
  .swiper-pagination-progress
  .swiper-pagination-progressbar-fill {
  background: #ffffff; /* プログレスバーの色 */
}
.first_view .first_view_container .company_division-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 27.6923076923rem;
  overflow: visible;
}
.first_view .first_view_container .company_division-container .inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.first_view
  .first_view_container
  .company_division-container
  .company_division {
  position: absolute;
  right: 1rem;
  bottom: 0;
  transform: translateY(25%);
  width: 8.8rem;
  height: auto;
  aspect-ratio: 1;
  z-index: 2;
  overflow: hidden;
}
.first_view
  .first_view_container
  .company_division-container
  .company_division.black {
  z-index: 1;
}
.first_view
  .first_view_container
  .company_division-container
  .company_division
  .company_division_img {
  width: 100%;
  height: 100%;
  animation: rotate-animation 10s linear infinite;
  color: #ffffff;
  opacity: 0.8;
}
.first_view
  .first_view_container
  .company_division-container
  .company_division
  .company_division_img.black {
  color: #000000;
  opacity: 1;
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.first_view .first_view_container .first_view_right {
  overflow: hidden;
}
.first_view .first_view_container .first_view_right .header_right_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .company_division.black {
  position: absolute;
  top: 21.3rem;
  left: 18.5rem;
  display: flex;
  justify-content: center;
  width: 8.8rem;
  z-index: 1;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .company_division_img.black {
  width: 8.8rem;
  height: auto;
  animation: rotate-animation 6s linear infinite;
  color: #000000;
  z-index: 1;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .official_partner {
  width: 7.6rem;
  position: absolute;
  top: 4.5rem;
  z-index: 1;
  right: 2rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section {
  font-family: "Noto Serif JP", serif;
  display: flex;
  flex-direction: column;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .company_logo {
  width: 13.533333rem;
  margin-bottom: 1.066667rem;
  margin: 1.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .headline_text {
  font-size: 2.1538461538rem;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .tagline_text {
  font-size: 1.1666666667rem;
  margin-bottom: 1.4666666667rem;
  margin-left: 1.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .tagline_text
  sup {
  font-size: 0.5em;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .description_section {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.1333333333rem;
  line-height: 1.9;
  display: flex;
  gap: 1em;
  margin-left: 1.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .description_section
  .description_paragraph {
  margin-bottom: 1.3333333333rem;
  font-weight: 400;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .description_section
  .description_paragraph
  sup {
  font-size: 0.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .header_text_section
  .description_section
  .support_rate_image {
  width: 8.466667rem;
  margin-left: auto;
  margin-right: 1.33333rem;
  margin-bottom: 2.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons {
  display: flex; /* 横並びにする */
  align-items: center; /* 縦方向中央揃え */
  justify-content: space-between; /* 要素間に適切な間隔を配置 */
  width: 100%;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .scroll-down-line {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  height: 4.1rem;
  width: 100%;
  margin-bottom: 3.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .scroll-down-line
  .line {
  position: absolute;
  width: 0.0666666667rem; /* 線の幅 */
  height: 3rem; /* アニメーション対象の高さ */
  background-color: #000;
  animation: scroll-down-line-animation 3s linear infinite;
  margin-left: 5rem;
  margin-left: 8.774rem;
}
@keyframes scroll-down-line-animation {
  0% {
    transform: translateY(-100%); /* 線が上から始まる */
  }
  100% {
    transform: translateY(200%); /* 線が完全に画面外に出る */
  }
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .scroll-text {
  position: absolute;
  visibility: visible;
  font-size: 0.9333333333rem;
  font-family: "Plus Jakarta Sans", serif;
  color: #000;
  margin-left: 6.8rem;
  margin-top: 3.2rem;
  text-align: center;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .cta_buttons {
  position: relative;
  display: flex;
  margin-left: auto;
  margin-top: 2rem;
  width: 100%;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .cta_buttons
  .btn_container {
  display: contents;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .cta_buttons
  .btn {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.76667rem;
  font-size: 1.0769230769rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  gap: 1.8rem;
  width: 100%;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .cta_buttons
  .btn.request {
  background-color: #003aa7;
  color: #ffffff;
  padding-left: 1.5rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .cta_buttons
  .btn.contact {
  background-color: #00d6b7;
  color: #323232;
  padding-left: 0.1rem;
}
.first_view
  .first_view_container
  .first_view_right
  .header_right_content
  .scroll-and-buttons
  .cta_buttons
  .btn:hover {
  opacity: 0.8;
}
.first_view .first_view_container .event_banners_sp {
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
}
.first_view .first_view_container .event_banners_sp .banner-and-close {
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}
.first_view
  .first_view_container
  .event_banners_sp
  .banner-and-close
  .close_btn_sp {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 998;
  transform: translate(50%, -50%);
  z-index: 998;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  pointer-events: auto;
}
.first_view
  .first_view_container
  .event_banners_sp
  .banner-and-close
  .banner_link {
  display: inline-block;
}
.first_view
  .first_view_container
  .event_banners_sp
  .banner-and-close
  .banner_link
  .banner_img {
  z-index: 2;
  width: 22rem;
  height: auto;
}

.problems {
  width: 100%;
  position: relative;
  padding: 0 2.1538461538rem;
  padding-bottom: 4rem;
  /* 横線の追加 */
  /* 真ん中の交差点を除外する */
  /* 真ん中の線を消す */
}
.problems .problems__header {
  margin-top: 1.9rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 4rem;
}
.problems .problems__header .problems__left {
  margin-top: 0.2rem;
}
.problems .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
}
.problems .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -1.5rem;
}
.problems .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.problems .problems__header .problems__right {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  margin-top: 3.6rem;
}
.problems .problems__header .problems__right .problems__subtitle {
  font-size: 2rem;
  letter-spacing: 0.036rem;
  line-height: 3.2rem;
}
.problems .problems__header .problems__right .problems__subtitle sup {
  font-size: 1rem;
  position: relative;
}
.problems .problems__header .problems__right .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  margin-top: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  text-align: left;
  line-height: 2.2rem;
}
.problems .problems__header .problems__right .problems__description sup {
  font-size: 0.65rem;
}
.problems .problem:not(:nth-child(2n))::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}
.problems .problem:nth-child(-n + 2)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.problems .problem:nth-child(2)::after {
  display: none;
}
.problems .problems__list::before {
  content: "";
  position: absolute;
  top: 47.4%;
  left: 49.7%;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #f4f7ff;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.problems .problem:nth-child(2n) {
  padding-left: 2.3rem;
}
.problems .problem:nth-child(n + 3) {
  padding-top: 2.3rem; /* 上側のマージンを追加 */
}
.problems .problems__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  position: relative; /* 線を配置する基準 */
}
.problems .problems__list .problem {
  width: calc(50% - 0px);
  position: relative;
  padding-bottom: 2.3rem;
}
.problems .problems__list .problem .problem__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.problems .problems__list .problem .problem__label {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  border: 0.1333rem solid #000;
  font-size: 0.9761538462rem;
  display: inline-block;
  padding: 0 0.5rem;
  font-weight: 400;
}
.problems .problems__list .problem .problem__number {
  font-size: 2.7692307692rem;
  font-weight: 400;
  font-family: "Butler", serif;
}
.problems .problems__list .problem .problem__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4615384615rem;
  margin-bottom: 1.1rem;
}
.problems .problems__list .problem .problem__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}
.problems .problems__list .problem .problem__link {
  font-family: "Butler", serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
  font-size: 1.1538461538rem;
  border: none;
  background: none;
  color: #192445;
  line-height: 1;
  vertical-align: middle;
}
.problems .problems__list .problem .problem__link .more_dot {
  width: 0.8rem;
  height: auto;
  object-fit: contain;
}
.problems .problems__list .problem .problem__link .btn_logo_arrow {
  width: 0.6rem;
  height: auto;
}
.problems .partners {
  text-align: left;
  margin-top: 4rem;
}
.problems .partners .partners__title {
  font-size: 0.9333333333rem;
  margin-bottom: 1rem;
  margin-left: 7.3rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
}
.problems .partners .partners__images {
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.problems .partners .partners__images .partners__image {
  display: inline-block;
  position: absolute;
  width: 24rem;
  z-index: 1;
  transform: translate(-50%, -50%);
  top: 6rem;
}

.column {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 7rem;
}
.column .problems__header {
  margin-top: 1.9rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.1538461538rem;
}
.column .problems__header .problems__left {
  margin-top: 0.2rem;
}
.column .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
}
.column .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -1.4rem;
}
.column .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.column .problems__header .problems__right {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  margin-top: 3.6rem;
}
.column .problems__header .problems__right .problems__subtitle {
  font-size: 2rem;
  letter-spacing: 0.036rem;
  line-height: 3.2rem;
}
.column .problems__header .problems__right .problems__subtitle sup {
  font-size: 1rem;
  position: relative;
}
.column .problems__header .problems__right .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  margin-top: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  text-align: left;
  line-height: 2.2rem;
}
.column .problems__header .problems__right .problems__description sup {
  font-size: 0.65rem;
}
.column .problems__header .problems {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左上揃え */
  gap: 3rem;
  padding: 0 0;
}
.column .problems__header .problems .problems__right {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.column .problems__header .problems .problems__right .problems__subtitle {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
}
.column .problems__header .problems .problems__right .problems__subtitle sup {
  font-size: 0.95rem;
  position: relative;
  top: -0.28rem;
}
.column .problems__header .problems .problems__right .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2rem;
  margin-top: 0.78rem;
  font-weight: 400;
}
.column
  .problems__header
  .problems
  .problems__right
  .problems__description
  sup {
  font-size: 0.65rem;
}
.column .problems__header .problems .problems__right .problems__button {
  margin-right: 20px; /* ボタンと画像間の余白 */
  margin-top: auto;
}
.column
  .problems__header
  .problems
  .problems__right
  .problems__button
  .columns__link {
  padding: 1.2rem 3rem;
  font-family: "Noto Serif JP", serif;
  background-color: #003aa7; /* ボタンの背景色 */
  color: #fff; /* ボタンの文字色 */
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1.0666666667rem;
  display: inline-flex; /* インライン要素を横並びに配置 */
  align-items: center; /* アイコンとテキストを縦方向に中央揃え */
}
.column
  .problems__header
  .problems
  .problems__right
  .problems__button
  .columns__link
  .columns__icon {
  margin-left: 1.4rem; /* テキストとの間に余白を追加 */
  display: inline-flex; /* インライン要素としてアイコンを扱う */
  align-items: center;
  width: 0.7rem;
}
.column
  .problems__header
  .problems
  .problems__right
  .problems__button
  .columns__link:hover {
  background-color: #0056b3; /* ホバー時の背景色 */
}
.column .problems__header .problems .problems__button {
  margin-right: 20px; /* ボタンと画像間の余白 */
  margin-top: auto;
  display: flex; /* フレックスボックスで中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
  margin: 0 auto; /* 追加の中央揃え */
  width: 100%; /* 必要に応じて幅を全体に揃える */
}
.column .problems__header .problems .problems__button .columns__link {
  padding: 1.2rem 3rem;
  font-family: "Noto Serif JP", serif;
  background-color: #003aa7; /* ボタンの背景色 */
  color: #fff; /* ボタンの文字色 */
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1.0666666667rem;
  display: inline-flex; /* インライン要素を横並びに配置 */
  align-items: center; /* アイコンとテキストを縦方向に中央揃え */
}
.column
  .problems__header
  .problems
  .problems__button
  .columns__link
  .columns__icon {
  margin-left: 1.4rem; /* テキストとの間に余白を追加 */
  display: inline-flex; /* インライン要素としてアイコンを扱う */
  align-items: center;
  width: 0.7rem;
}
.column .problems__header .problems .problems__button .columns__link:hover {
  background-color: #0056b3; /* ホバー時の背景色 */
}
.column .problems__header .problems .problems__images {
  width: 100%;
}
.column .problems__header .problems .problems__images .problems__image {
  display: flex;
  flex-wrap: wrap; /* 画像を複数行で配置 */
  align-items: flex-start; /* 縦方向の余白をなくす */
  gap: 0.6rem;
  width: 23.7rem;
}
.column .problems__header .problems .problems__images .problems__image a {
  flex: 1 1 calc(49% - 0.15rem); /* 幅を指定 */
  box-sizing: border-box; /* パディングやボーダーを含めた幅を計算 */
  text-align: center; /* 画像が中央揃え */
  width: 19.7rem;
}
.column .problems__header .problems .problems__images .problems__image img {
  width: 19.6rem;
  height: auto; /* アスペクト比を維持 */
  display: block; /* 不要な隙間を排除 */
}
.column .problems__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.5rem 3.6rem;
  margin-left: 3.2rem;
}
.column .problems__list .problem {
  flex: 1 1 calc(25% - 1rem);
  padding: 2rem 4.6rem;
  border-right: 1px solid #ddd;
}
.column .problems__list .problem:last-child {
  border-right: none;
}
.column .problems__list .problem .problem__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.column .problems__list .problem .problem__label {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  padding: 0.13rem 0.6rem;
  border: 0.1333rem solid #000;
  font-size: 0.846rem;
  display: inline-block;
}
.column .problems__list .problem .problem__number {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Butler", serif;
  padding-top: 0.5rem;
}
.column .problems__list .problem .problem__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}
.column .problems__list .problem .problem__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1rem;
  margin-bottom: 3.3rem;
}
.column .problems__list .problem .problem__link {
  font-family: "Butler", serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
  font-size: 1.0666666667rem;
  border: none;
  background: none;
}
.column .problems__list .problem .problem__link .more_dot {
  width: 1rem;
  height: auto;
  padding-bottom: 0.3rem;
}
.column .problems__list .problem .problem__link .btn_logo_arrow {
  width: 0.8rem;
  height: auto;
  padding-bottom: 0.3rem;
}
.column .partners {
  text-align: left;
  margin-top: 4rem;
}
.column .partners .partners__title {
  font-size: 0.9333333333rem;
  margin-bottom: 1rem;
  margin-left: 7.3rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
}
.column .partners .partners__images {
  width: 82%;
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
}
.column .partners .partners__images .partners__image {
  padding: 2rem 3.3rem 1rem 3.3rem;
  display: inline-block;
}

.steps {
  width: 100%;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.steps .problems__header {
  margin-top: 1.9rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.1538461538rem;
}
.steps .problems__header .problems__left {
  margin-top: 0.2rem;
}
.steps .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
}
.steps .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -1.5rem;
}
.steps .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.steps .problems__header .problems__container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.steps .problems__header .problems__container .problems__right {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 4rem;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__subtitle {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__subtitle
  sup {
  font-size: 0.95rem;
  position: relative;
  top: -0.28rem;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2rem;
  margin-top: 0.78rem;
  font-weight: 400;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__description
  sup {
  font-size: 0.65rem;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__button {
  margin-right: 20px; /* ボタンと画像間の余白 */
  margin-top: auto;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__button
  .columns__link {
  padding: 1.2rem 3rem;
  font-family: "Noto Serif JP", serif;
  background-color: #003aa7; /* ボタンの背景色 */
  color: #fff; /* ボタンの文字色 */
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1.0666666667rem;
  display: inline-flex; /* インライン要素を横並びに配置 */
  align-items: center; /* アイコンとテキストを縦方向に中央揃え */
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__button
  .columns__link
  .columns__icon {
  margin-left: 1.4rem; /* テキストとの間に余白を追加 */
  display: inline-flex; /* インライン要素としてアイコンを扱う */
  align-items: center;
  width: 0.7rem;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__button
  .columns__link:hover {
  background-color: #0056b3; /* ホバー時の背景色 */
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__circle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5384615385rem;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  background-color: #ff5500; /* 赤い丸の背景色 */
  width: 10.6666666667rem; /* 丸の幅 */
  height: 10.6666666667rem; /* 丸の高さ */
  border-radius: 50%; /* 円形にする */
  margin-top: 2rem;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__circle-text_sp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.steps
  .problems__header
  .problems__container
  .problems__right
  .problems__circle-text
  span {
  font-size: 2.2666666667rem;
}
.steps .problems__header .problems__container .problems__steps {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 1rem;
  /* 三角形のスタイル */
}
.steps .problems__header .problems__container .problems__steps .step {
  display: flex;
  position: relative;
  margin: 1rem 0;
  flex-direction: column;
  font-weight: 400;
}
.steps .problems__header .problems__container .problems__steps .step__number {
  display: flex;
  font-family: "Butler", serif;
  font-size: 1.4666666667rem;
  color: #333;
  align-items: center;
  justify-content: center;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__number
  span {
  font-size: 3.0666666667rem;
  margin-left: 1rem;
  font-weight: 400;
}
.steps .problems__header .problems__container .problems__steps .step__line {
  width: 0.2rem; /* 線の太さ */
  background-color: #192445; /* 線の色 */
  margin: 0 3.4rem; /* 線の左右のスペース */
  opacity: 0.1;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__line.step_01 {
  margin-left: 3.7rem;
}
.steps .problems__header .problems__container .problems__steps .step__content {
  gap: 4px;
  /* ボタンホバー時 */
  /* 無料アイコンのスタイル */
  /* ボタン内のアイコン */
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__content
  .flex {
  display: flex;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__content
  .step__button {
  display: inline-flex;
  width: 93%;
  align-items: center;
  background-color: #45d6c6;
  color: #003aa7;
  font-size: 1.2307692308rem;
  text-decoration: none;
  padding: 1rem 0;
  margin-top: 0.833333rem;
  /* padding-left: 0.5rem; */
  transition: background-color 0.3s ease;
  justify-content: center;
  gap: 2rem;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__content
  .step__button:hover {
  background-color: #39c0b2; /* 背景色を変更 */
  text-decoration: none;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__content
  .step__button-circle {
  font-family: "Noto Serif JP", serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #003aa7;
  font-size: 1.2307692308rem;
  font-weight: bold;
  width: 3rem;
  height: 3rem;
  border-radius: 50%; /* 円形にする */
  margin-right: 1.2rem; /* テキストとの間に余白 */
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__content
  .step__button-icon {
  display: flex;
  margin-left: 1.2rem;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__content
  .step__button-icon
  img {
  width: 0.6rem;
}
.steps .problems__header .problems__container .problems__steps .step__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  display: flex;
  font-size: 1.5384615385rem;
  align-items: baseline;
  width: 21.53846rem;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__title
  span {
  font-size: 0.8rem;
  color: #003aa7;
  margin-right: 0.5rem;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  border-left: 2px solid rgba(25, 36, 69, 0.1); /* 線を薄くする */
  width: 100%;
  font-size: 1.0769230769rem;
  color: #192445;
  text-align: left;
  padding: 0 1rem;
}
.steps .problems__header .problems__container .problems__steps .step__triangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #00e3c7;
  margin-left: 10.93rem;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__triangle_cotents {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__triangle_cotents
  .step__triangle1 {
  position: absolute;
  top: 0%;
  left: 44.6%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 1.2rem solid #00e3c7;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__triangle_cotents
  .step__triangle2 {
  position: absolute; /* 親要素を基準に絶対配置 */
  top: 100%; /* 親要素の下部に配置 */
  left: 44.6%; /* 親要素の中央に配置 */
  transform: translateX(-50%); /* 中央揃え */
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 1.2rem solid #00e3c7;
}
.steps
  .problems__header
  .problems__container
  .problems__steps
  .step__triangle_cotents
  .step__triangle3 {
  position: absolute; /* 親要素を基準に絶対配置 */
  top: 100%; /* 親要素の下部に配置 */
  left: 44.6%; /* 親要素の中央に配置 */
  transform: translateX(-50%); /* 中央揃え */
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 1.2rem solid #00e3c7;
}

.faq {
  width: 100%;
  position: relative;
  padding-bottom: 5.8rem;
  margin-top: 5rem;
  padding-top: -5rem;
}
.faq .problems__header {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.1538461538rem;
  padding-top: 5rem;
}
.faq .problems__header .problems__left {
  margin-top: 0.2rem;
}
.faq .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
}
.faq .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -1.5rem;
}
.faq .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.faq .problems__header .problems__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  margin-top: 5.3rem;
}
.faq .problems__header .problems__container .problems__faq_title {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-right: 8.4rem;
}
.faq
  .problems__header
  .problems__container
  .problems__faq_title
  .problems__subtitle {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
}
.faq
  .problems__header
  .problems__container
  .problems__faq_title
  .problems__subtitle
  sup {
  font-size: 0.95rem;
  position: relative;
  top: -0.28rem;
}
.faq
  .problems__header
  .problems__container
  .problems__faq_title
  .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2rem;
  margin-top: 0.78rem;
  font-weight: 400;
}
.faq
  .problems__header
  .problems__container
  .problems__faq_title
  .problems__description
  sup {
  font-size: 0.65rem;
}
.faq .problems__header .problems__faq_questions {
  margin-top: 24px;
}
.faq .problems__header .problems__faq_questions .problems__faq_item {
  border: 1px solid #e0e0e0;
  margin-bottom: 0.7rem;
  padding: 16px;
  background-color: #ffffff;
}
.faq .problems__header .problems__faq_questions .problems__question {
  align-items: flex-start;
  display: flex;
  cursor: pointer;
  justify-content: space-between; /* 左右に要素を配置 */
}
.faq
  .problems__header
  .problems__faq_questions
  .problems__question
  .problems__text {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  flex: 1;
  font-size: 1.3846153846rem;
  margin-left: 1rem;
  margin: 0;
  text-align: left;
  padding-right: 2rem;
  line-height: 2rem;
}
.faq
  .problems__header
  .problems__faq_questions
  .problems__question
  .problems__text
  sup {
  font-size: 0.7rem;
}
.faq .problems__header .problems__faq_questions .problems__icon {
  font-family: "Butler", serif;
  background-color: #00e3c7;
  color: #00439c;
  font-size: 1.4769230769rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  padding-top: 0.2rem;
}
.faq .problems__header .problems__faq_questions .problems__icon--answer {
  background-color: #00439c; /* Aの背景色 */
  color: #00e3c7;
}
.faq .problems__header .problems__faq_questions .problems__toggle {
  background: none;
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  width: 2.5rem; /* ボタンの幅 */
  height: 2.5rem; /* ボタンの高さ（幅と同じにして円形に） */
  background-color: #ffffff; /* ボタンの背景色 */
  border: 0.1rem solid #ebebeb; /* ボタンの枠線 */
  border-radius: 50%; /* 円形にする */
  font-size: 1.8rem; /* テキストサイズ */
  color: #003aa7; /* テキスト色 */
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s; /* ホバー時のアニメーション */
  padding-bottom: 0.3rem;
}
.faq .problems__header .problems__faq_questions .problems__toggle:hover {
  background-color: #003aa7; /* ホバー時の背景色 */
  color: #fff; /* ホバー時のテキスト色 */
}
.faq
  .problems__header
  .problems__faq_questions
  .problems__toggle[aria-expanded="true"] {
  transform: rotate(180deg); /* ＋を回転させて−に見せる */
}
.faq .problems__header .problems__faq_questions .problems__answer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #e0e0e0;
  color: #192445;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-10px); /* 上に少し移動 */
  transition: opacity 0.3s ease, transform 0.3s ease; /* アニメーションを適用 */
  opacity: 0; /* 初期状態は透明 */
  max-height: 0; /* 高さをゼロにして隠す */
  overflow: hidden; /* 隠れた内容を非表示に */
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease; /* スムーズなアニメーション */
}
.faq
  .problems__header
  .problems__faq_questions
  .problems__answer
  .problems__answer_text {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  flex: 1;
  margin: 0;
  text-align: left;
}
.faq
  .problems__header
  .problems__faq_questions
  .problems__answer
  .problems__answer_text
  sup {
  font-size: 0.7rem;
}
.faq .problems__header .problems__faq_questions .problems__answer.is-visible {
  opacity: 1; /* 不透明にする */
  transform: translateY(0); /* 元の位置に戻す */
  max-height: 13.3333333333rem;
  margin-top: 1.66667rem;
  padding-top: 1rem; /* 表示時のパディング */
}
.faq .problems__header .problems__faq_questions .problems__answer.is-hidden {
  display: block; /* フェードアウト時もブロック要素を保持 */
  opacity: 0; /* 透明にする */
  transform: translateY(-10px); /* 少し上に移動 */
}

.about_us {
  width: 100%;
  position: relative;
  padding-top: 4rem;
  background: #ffffff;
  padding-bottom: 4.3rem;
}
.about_us .problems__header {
  margin-top: 1.9rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.1538461538rem;
}
.about_us .problems__header .problems__left {
  margin-top: 0.2rem;
}
.about_us .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
}
.about_us .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -1.4rem;
}
.about_us .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.about_us .about_us__content {
  display: flex;
  flex-direction: column;
  padding: 0 2.1538461538rem;
  margin-top: 3.3rem;
}
.about_us .about_us__content .about_us__mission .about_us__title {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 0.9333333333rem;
}
.about_us .about_us__content .about_us__mission .about_us__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9333333333rem;
  line-height: 1.5;
  margin-top: 1rem;
}
.about_us .about_us__content .about_us__mission .about_us__image {
  flex: 1 1 50%;
  text-align: center;
}
.about_us .about_us__content .about_us__mission .about_us__image img {
  width: 24.6666666667rem;
  height: auto;
  margin-top: 2.5rem;
}
.about_us .about_us__content .about_us__details {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 300;
}
.about_us .about_us__content .about_us__details .about_us__list {
  list-style: none;
  font-size: 1.2307692308rem;
  color: #192445;
  margin-top: 3.6rem;
}
.about_us .about_us__content .about_us__details .about_us__list li {
  font-weight: 300;
  margin-bottom: 0.4rem;
  display: grid;
  grid-template-columns: 4.9333333333rem auto;
  align-items: baseline; /* 縦位置を揃える */
  column-gap: 0.9333333333rem;
}
.about_us .about_us__content .about_us__details .about_us__list strong {
  font-weight: 400;
  display: block; /* 必ず block または inline-block にする */
  text-align: justify; /* 両端揃え */
  text-align-last: justify; /* 最終行の両端揃えを有効にする */
}
.about_us .about_us__content .about_us__details .about_us__more {
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
}
.about_us .about_us__content .about_us__details .about_us__more:hover {
  text-decoration: underline;
}
.about_us .about_us__content .problem__link {
  font-family: "Butler", serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
  font-size: 1.0666666667rem;
  border: none;
  background: none;
  margin-left: 10.2rem;
  margin-top: 3.9rem;
}
.about_us .about_us__content .problem__link .more_dot {
  width: 0.8rem;
  height: auto;
  padding-bottom: 0.3rem;
}
.about_us .about_us__content .problem__link .btn_logo_arrow {
  width: 0.6rem;
  height: auto;
  padding-bottom: 0.3rem;
}

.case-study {
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom, #ffffff 20%, #f4f7ff 100%);
}
.case-study .problems__header {
  margin-top: 1.9rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.1538461538rem;
  padding-top: 7rem;
  background: linear-gradient(to bottom, #ffffff, #f4f7ff);
}
.case-study .problems__header .problems__left {
  margin-top: 0.2rem;
}
.case-study .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
  line-height: 4.2rem;
}
.case-study .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -0.5rem;
}
.case-study .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.case-study .problems__header .problems__right {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  margin-top: 3.6rem;
}
.case-study .problems__header .problems__right .problems__subtitle {
  font-size: 2rem;
  letter-spacing: 0.036rem;
  line-height: 3.2rem;
}
.case-study .problems__header .problems__right .problems__subtitle sup {
  font-size: 1rem;
  position: relative;
}
.case-study .problems__header .problems__right .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  margin-top: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  text-align: left;
  line-height: 2.2rem;
}
.case-study .problems__header .problems__right .problems__description sup {
  font-size: 0.65rem;
}
.case-study .case-study__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative; /* デフォルト位置 */
  transition: transform 0.3s ease; /* アニメーション効果 */
  background-color: #f4f7ff;
  padding-bottom: 3rem;
}
.case-study .case-study__details .case-study__left {
  background-color: #f4f7ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.7rem 2.1538461538rem 0 2.1538461538rem;
}
.case-study .case-study__details .case-study__left .case-study__case-title {
  align-items: baseline;
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 1.6923076923rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.8rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__case-title
  .number {
  font-size: 6.9230769231rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__case-description {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__case-description
  sup {
  font-size: 1rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__case-description
  span {
  color: #192445;
  font-size: 1.0666666667rem;
}
.case-study .case-study__details .case-study__left .case-study__problem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  margin-bottom: 1.9rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-wrapper
  .case-study__problem-circle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.0666666667rem; /* 円のサイズ */
  height: 4.0666666667rem; /* 円のサイズ */
  background-color: #00e3c7; /* 背景色 */
  border-radius: 50%; /* 丸くする */
  top: -2rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-wrapper
  .case-study__problem-circle
  .case-study__problem-label {
  font-size: 1.2rem;
  color: #192445; /* テキスト色 */
  margin: 0; /* 余白をリセット */
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-wrapper
  .case-study__problem-line {
  flex-grow: 1;
  height: 0.2rem; /* 線の太さ */
  background-color: #d6d6d6; /* 線の色 */
  width: 22rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-list {
  display: flex;
  list-style: none; /* リストマーカーを非表示 */
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  flex-direction: column;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-list
  span {
  display: flex;
  justify-content: flex-start;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-list
  li {
  font-size: 1.2rem; /* テキストサイズ */
  color: #1a1a1a; /* テキスト色 */
  align-items: flex-start; /* 上揃えに配置 */
  margin-bottom: 0.6rem;
  line-height: 1.8rem;
}
.case-study
  .case-study__details
  .case-study__left
  .case-study__problem
  .case-study__problem-list
  .case-study__problem-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.2rem; /* 円の幅 */
  height: 1.2rem; /* 円の高さ */
  background-color: #192445; /* 番号の背景色 */
  color: #ffffff; /* 番号の文字色 */
  border-radius: 50%; /* 丸くする */
  font-size: 1rem; /* 番号のサイズ */
  font-weight: bold; /* 番号を太字に */
  margin-right: 0.3rem; /* 番号とテキストの間隔 */
}
.case-study .case-study__details .case-study__right {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
}
.case-study .case-study__details .case-study__right .case-study__graphic {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: fit-content;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__background {
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__background
  .case-study__backgroundimg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-repeat: no-repeat; /*--背景画像の繰り返し--*/
  background-size: cover; /*--背景画像のサイズ--*/
  background-position: center;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container {
  display: flex;
  flex-direction: column;
  height: fit-content;
  position: relative; /* 親要素にrelativeを設定 */
  overflow-x: hidden;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 4rem;
  left: 12rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__visual
  .circle {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.0666666667rem;
  height: 4.0666666667rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1333333333rem;
  text-align: center;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__visual
  .circle.solutions {
  background-color: #003aa7;
  margin-bottom: 19.7rem;
  font-weight: 300;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__visual
  .circle.improvement {
  background-color: #ff6c00;
  font-weight: 300;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__visual
  .line {
  position: absolute;
  width: 0.2rem;
  height: 1.63333rem;
  top: 21.8rem;
  background: none;
  border-left: 0.3rem dotted #a2acb8;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 2.1538461538rem;
  margin-top: 9.4rem;
  height: 80%;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1.8rem 1.8rem;
  position: relative; /* 擬似要素の基準位置を設定 */
  width: 100%;
  /* 吹き出しの三角形 */
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions::before,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements::before {
  content: "";
  position: absolute;
  left: 11rem;
  top: -0.88rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.9rem 0.9rem 0.9rem;
  border-color: transparent transparent rgba(255, 255, 255, 0.85) transparent;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions-title,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements-title {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  display: inline-block;
  padding: 0 0.55rem 0 0.59rem;
  background-color: #003aa7;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1.1rem;
  font-weight: 100;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions
  .case-study__solutions-list,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__solutions-list {
  font-family: "Noto Serif JP", serif;
  list-style: none; /* デフォルトのリストスタイルを無効化 */
  padding: 0;
  margin: 0;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions
  .case-study__solutions-list
  li,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__solutions-list
  li {
  display: flex;
  align-items: center; /* 縦方向の中央揃え */
  font-size: 1.4615384615rem;
  line-height: 1.6;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions
  .case-study__solutions-list
  li
  .checkbox,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__solutions-list
  li
  .checkbox {
  position: relative;
  width: 1.1333333333rem; /* 四角形のサイズ */
  height: 1.1333333333rem;
  border: 0.1rem solid #000; /* 四角形の枠線 */
  margin-right: 1rem; /* リストテキストとの余白 */
  flex-shrink: 0; /* サイズを固定 */
  background-color: #fff; /* 四角形の背景色 */
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__solutions
  .case-study__solutions-list
  li
  .checkbox__check,
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__solutions-list
  li
  .checkbox__check {
  position: absolute;
  top: 30%;
  left: 63%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.7rem;
  margin-top: 7.7rem;
  width: 100%;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__improvements-list {
  font-family: "Noto Serif JP", serif;
  list-style: none; /* デフォルトのリストスタイルを無効化 */
  padding: 0; /* 内側の余白をなくす */
  margin: 0; /* 外側の余白をなくす */
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__improvements-list
  .list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.1rem;
  font-size: 1.0769230769rem;
  line-height: 2rem;
  width: 100%;
  letter-spacing: -0.05rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__improvements-list
  .list-item
  .list-bullet {
  position: absolute;
  left: 0;
  top: 1.18rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #192445;
  border-radius: 50%;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__improvements-list
  .list-item
  sup {
  font-size: 0.7rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item {
  text-align: center;
  margin: 0 1rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .diagram-icon {
  height: auto;
  margin-bottom: 0.5rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-document {
  width: 3rem; /* 契約社員の勤怠管理アイコン */
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-system {
  width: 4.3rem; /* 既存の勤怠システムアイコン */
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-factory {
  width: 5rem; /* 工場独自の制度アイコン */
  margin-bottom: 0.8rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-usability {
  width: 6.5rem;
  margin-bottom: 0;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-customer {
  width: 4.5rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-works {
  width: 7.5rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .icon-seraku {
  width: 7.9rem;
  margin-bottom: -1rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .diagram-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item
  .diagram-text.text-works {
  margin-top: -1rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item.usability {
  margin-bottom: 1rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram
  .diagram-item.works {
  margin-bottom: -2rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram.case_02 {
  display: block;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram.case_02
  .bottom_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-left: 1.3rem;
  margin-top: 4.2rem;
  z-index: 2;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .case-study__diagram.case_02
  .bottom_contents.case_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  margin-top: 0;
  z-index: 2;
  margin-left: 0.7rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .diagram-caption {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: -1rem;
  font-size: 1.1538461538rem;
  color: #ff6c00; /* 強調色 */
  padding-top: 0.5rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .diagram-caption
  sup {
  font-size: 0.8rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .line-connector {
  padding: 0 3.9rem;
  width: 100%;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .line-connector.case_02 {
  padding: 0 0.9rem;
  margin-top: -13.7rem;
  z-index: -1;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .line-connector.case_03 {
  padding: 0px 7.4rem;
  margin-top: -4.4rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic
  .case-study__container
  .case-study__contents
  .case-study__improvements
  .line-connector.case_03_conector {
  padding: 0.5rem 12.68rem;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic.case_02
  .case-study__background
  .case-study__backgroundimg {
  right: 0;
}
.case-study
  .case-study__details
  .case-study__right
  .case-study__graphic.case_03
  .case-study__background
  .case-study__backgroundimg {
  right: 0;
  left: 0;
}
.case-study .case-study__details:last-child {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  transition: transform 0.3s ease;
  background-color: #f4f7ff;
  padding-bottom: 3rem;
}

.swiper-container {
  width: 100%;
  margin: 0 auto; /* 中央に配置 */
}

/* スライド要素 */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.services {
  position: relative;
  width: 100%;
  padding-top: 4rem;
  margin-top: -0.5rem;
  background-color: #f4f7ff;
}
.services .problems__header {
  padding-bottom: 11rem;
  margin-top: 1.9rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.2538461538rem;
}
.services .problems__header .problems__left {
  margin-top: 0.2rem;
}
.services .problems__header .problems__left .problems__title {
  color: #a2acb8;
  font-family: "Butler", serif;
  font-size: 4.4615384615rem;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 400;
}
.services .problems__header .problems__left .problems__title_kana {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2307692308rem;
  color: #192445;
  text-align: left;
  margin-top: -1.5rem;
}
.services .problems__header .problems__left .problems__title_kana span {
  padding-right: 1rem;
}
.services .problems__header .problems__right {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  margin-top: 3.6rem;
}
.services .problems__header .problems__right .problems__subtitle {
  font-size: 2rem;
  letter-spacing: 0.036rem;
  line-height: 3.2rem;
}
.services .problems__header .problems__right .problems__description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 1.2rem;
  margin-top: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  text-align: left;
  line-height: 2.2rem;
}
.services .problems__header .problems__right .problems__description sup {
  font-size: 0.65rem;
}
.services .service__container {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4.9rem;
  padding-bottom: 7rem;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}
.services .service__container .service__menu-list-horizontal {
  display: flex;
  justify-content: space-around;
  list-style: none;
  position: relative;
  width: 100%;
  padding-top: 1.6rem;
}
.services
  .service__container
  .service__menu-list-horizontal
  .service__menu-item-horizontal {
  cursor: pointer;
  color: #b0c9de;
  cursor: pointer;
}
.services
  .service__container
  .service__menu-list-horizontal
  .service__menu-item-horizontal.active {
  font-weight: bold;
  color: #fff;
}
.services
  .service__container
  .service__menu-list-horizontal
  .service__menu-item-horizontal.active
  svg {
  color: #fff !important;
}
.services .service__container .service__menu-list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  transition: top 0.1s, position 0.1s;
}
.services .service__container .service__menu-list .service__menu-item {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  color: #323232;
  opacity: 0.5;
  font-size: clamp(14px, 3.8vw, 20px);
  font-weight: bold;
  position: relative;
  transition: color 0.1s, opacity 0.1s;
  cursor: pointer;
}
.services .service__container .service__menu-list .service__menu-item::before {
  content: ""; /* 擬似要素でマークを作成 */
  width: 1.3em;
  height: 0.5em;
  margin-inline: auto;
  display: block;
  background-color: transparent;
  transition: background-color 0.1s;
}
.services .service__container .service__menu-list .service__menu-item.active {
  color: #00439c; /* アクティブ状態の色 */
  opacity: 1;
}
.services
  .service__container
  .service__menu-list
  .service__menu-item.active::before {
  background-color: #00c5b5; /* マークの色 */
}
.services .service__container .service__content {
  width: 100%;
  overflow: hidden;
}
.services .service__container .service__content .service__menu-list-horizontal {
  position: relative;
  top: 0;
  right: 0;
  display: flex; /* 横並びにする */
  list-style: none; /* デフォルトの箇条書きスタイルを削除 */
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-bottom: 1.2rem;
  transition: all 0.5s;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal.improvement {
  right: calc(clamp(120px, 25vw, 180px) + clamp(23px, 6.1vw, 35px));
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal.standardization {
  right: calc((clamp(120px, 25vw, 180px) + clamp(23px, 6.1vw, 35px)) * 2);
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal.maintenance {
  right: calc((clamp(120px, 25vw, 180px) + clamp(23px, 6.1vw, 35px)) * 3);
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal.integration {
  right: calc((clamp(120px, 25vw, 180px) + clamp(23px, 6.1vw, 35px)) * 4);
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .progress-bar {
  position: relative;
  width: clamp(23px, 6.1vw, 35px);
  height: 1.3rem;
  background-color: #e0e0e0;
  overflow: visible;
  margin-inline: -1px;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background-color: #00e3c7;
  border-radius: 0 4rem 4rem 0;
  transition: all 0.5s ease-in;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal.active
  ~ .progress-bar::after {
  width: 0%;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal {
  font-size: clamp(14px, 3.4vw, 23px);
  position: relative;
  cursor: pointer;
  transition: color 0.1s, opacity 0.1s;
  text-align: center;
  width: clamp(120px, 25vw, 180px);
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #d6e3ee;
  border-radius: 50%; /* 丸くする */
  background-color: #ffffff; /* デフォルトの背景色 */
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 1.6em 0 1em;
  font-family: "Noto Serif JP", serif;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal:first-child {
  margin-left: calc((100vw - clamp(120px, 25vw, 180px)) / 2);
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal
  .menu-number {
  font-family: "jost", sans-serif;
  display: inline-block;
  width: 2rem; /* 丸の直径 */
  height: 2rem; /* 丸の直径 */
  display: flex;
  justify-content: center; /* テキストを中央揃え */
  align-items: center;
  border: 1px solid #d6e3ee; /* 枠線の色 */
  border-radius: 50%; /* 丸くする */
  background-color: #b0c9de; /* 背景色 */
  color: #ffffff; /* テキストの色 */
  font-size: 0.8rem; /* テキストのサイズ */
  position: absolute; /* 親要素に対して絶対位置 */
  top: -1rem; /* 親要素の上部に配置 */
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.5s, color 0.5s, border-color 0.5s ease;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal
  .menu-icon {
  display: block;
  width: 1.4em;
  height: 1.4em;
  transition: opacity 0.5s ease;
  color: #b0c9de;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal
  .menu-arrow {
  display: block;
  width: 0.8em;
  height: 0.8rem;
  transition: opacity 0.5s ease; /* 切り替え時のアニメーション */
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal.active
  .menu-number {
  background-color: #00e3c7; /* アクティブ時の背景色 */
  color: #323232; /* アクティブ時のテキスト色 */
  border-color: #00e3c7; /* アクティブ時の枠線色 */
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal.active {
  color: #ffffff; /* アクティブ時の文字色 */
  background-color: #00439c; /* アクティブ時の背景色 */
  border-color: #00439c; /* アクティブ時の枠線色 */
  opacity: 1;
  z-index: 2;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
.services
  .service__container
  .service__content
  .service__menu-list-horizontal
  .service__menu-item-horizontal.active::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.7333333333rem;
  height: clamp(25px, 6.6vw, 40px);
  background-color: #00439c;
  transition: background-color 0.1s;
  top: 100%;
}
.services .service__container .service__content .service__sections {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  position: relative;
  z-index: 11;
  margin-inline: auto;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section {
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 4vw, 25px);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.3em 1.2em 1.2em;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .text-container {
  width: 100%;
  line-height: 1.4;
  font-weight: bold;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .text-container
  .main-text {
  font-family: "Noto Serif JP", serif;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .text-container
  .main-text
  sup {
  font-size: 0.5rem;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .example-list-container {
  display: flex;
  flex-direction: column;
  margin: 0.8rem 0 0;
  padding-top: 0.8rem;
  width: 100%;
  border-top: 1px solid #b0c9de;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .example-list-container
  .example-list {
  list-style: none; /* ドットを非表示 */
  font-size: clamp(15px, 4vw, 25px);
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  line-height: 1.4;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .example-list-container
  .example-list
  .example-title {
  font-size: 0.9em;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .example-list-container
  .example-list
  sup {
  font-size: 0.5em;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .example-list-container
  .example-list
  .example-list_little {
  font-size: 0.9em;
  margin-top: 0.8em;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section
  .content-wrapper
  .example-list-container
  .example-list
  .example {
  display: flex;
}
.services
  .service__container
  .service__content
  .service__sections
  .service__section.active {
  visibility: visible;
  width: 100%;
  height: fit-content;
  opacity: 1;
}

/* 課題ラベルと番号 */
.modal {
  display: none; /* 初期は非表示 */
  top: -10lvh;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 120lvh;
}
.modal .modal__content {
  background: #f6fbff;
  width: 90%;
  position: relative;
  padding: 2.323077rem 3.9230769231rem 0 3.9230769231rem;
  height: 90dvh;
  /* モーダルの閉じるボタン */
}
.modal .modal__content .modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal__content .modal__close .modal__close-icon {
  width: 100%;
  height: 100%;
  object-fit: contain; /* アイコンの比率を保持 */
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.modal .modal__content #modal-body {
  position: relative;
  overflow: hidden; /* はみ出した部分を隠す */
  width: 100%;
  height: 100%; /* 必要に応じて高さを調整 */
}
.modal .modal__content #modal-body .modal-layout {
  display: flex; /* 縦並びにする */
  align-items: center;
  flex-direction: column;
  width: 100%;
  transition: transform 0.5s ease-in-out; /* スライドアニメーション */
}
.modal .modal__content #modal-body .modal-layout .modal-left {
  display: flex;
  flex-direction: column; /* 縦方向に配置 */
  justify-content: center;
  /* 説明部分 */
  /* モーダルを閉じるボタン */
}
.modal .modal__content #modal-body .modal-layout .modal-left .modal-header {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-left
  .modal-header
  .modal-problem {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-left
  .modal-header
  .modal-problem
  .problem-label {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  padding: 0 0.29rem 0 0.29rem;
  border: 1px solid #00439c;
  font-size: 12px;
  color: #00439c;
  line-height: 1.4rem;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-left
  .modal-header
  .modal-problem
  .problem-number {
  font-family: "Butler", serif;
  font-size: clamp(50px, 13vw, 66px);
  color: #00439c;
  line-height: 1.1;
}
.modal .modal__content #modal-body .modal-layout .modal-left .modal-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 5.4vw, 30px);
  color: #192445;
  border-left: 0.7em solid #a2acb8; /* 左側にライン */
  padding-left: 1em;
  margin-bottom: 1.3em;
  font-weight: bold;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-left
  .modal-description {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: clamp(14px, 3.7vw, 20px);
  color: #555555;
  line-height: 1.6;
  letter-spacing: 0.09em;
  margin-bottom: 2.5em;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-left
  .modal-description
  sup {
  font-size: 0.5em;
}
.modal .modal__content #modal-body .modal-layout .modal-left .modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555555;
  cursor: pointer;
}
.modal .modal__content #modal-body .modal-layout .modal-right {
  display: flex;
  flex-direction: column; /* 縦方向に配置 */
  justify-content: flex-start;
}
.modal .modal__content #modal-body .modal-layout .modal-right .modal-solution {
  border-radius: 0.5rem;
  padding-top: 2.623077rem;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-right
  .modal-solution
  .solution-title {
  font-family: "Noto Serif JP", serif;
  border-left: 0.7em solid #00d6b7; /* 左側にアクセントライン */
  font-size: clamp(20px, 5.4vw, 30px);
  padding-left: 1em;
  color: #192445; /* テーマカラー */
  margin-bottom: 1em;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-right
  .modal-solution
  .solution-description {
  font-size: clamp(14px, 3.7vw, 20px);
  color: #555555;
  line-height: 1.6;
  letter-spacing: 0.092em;
}
.modal
  .modal__content
  #modal-body
  .modal-layout
  .modal-right
  .modal-solution
  .solution-description
  sup {
  font-size: 0.5em;
}
.modal .modal__content #modal-body .modal-layout .modal__close:hover {
  color: #000000;
}
.modal .modal__content #modal-body .modal-layout .modal-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 0.1rem; /* 横幅を設定 */
  position: relative;
}
.modal .modal__content #modal-body .modal-layout .vertical-line {
  width: 16.6153846154rem;
  height: 0.11rem;
  background-color: #b0c9de;
  position: relative;
}
.modal .modal__content #modal-body .modal-layout .triangle {
  width: 2rem;
  position: absolute;
  left: 50%;
}
.modal .modal__content #modal-body .modal-layout .triangle img {
  width: 1rem; /* アイコンの横幅 */
  height: auto; /* 縦横比を維持 */
  margin-top: 1.5rem;
  z-index: 1;
  transform: rotate(90deg); /* 90度回転 */
}
.modal .modal__content .modal__navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
}
.modal .modal__content .modal__navigation .modal__nav-btn {
  position: absolute;
  top: 50%; /* モーダルの中央に配置 */
  transform: translateY(-50%); /* ボタンの高さの半分だけ上に移動 */
  background-color: #00439c; /* ボタンの背景色 */
  color: #ffffff; /* ボタンの文字色 */
  border-radius: 50%; /* 丸いボタン */
  width: clamp(40px, 10.6vw, 60px); /* ボタンの幅 */
  height: clamp(40px, 10.6vw, 60px); /* ボタンの高さ */
  cursor: pointer; /* ポインター表示 */
  font-size: 1rem; /* フォントサイズ */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1333rem solid #ffffff;
}
.modal .modal__content .modal__navigation .modal__nav-btn .nav-icon {
  width: 12.5%; /* アイコンの幅 */
  height: auto; /* 高さは自動調整 */
  transition: transform 0.2s ease; /* ホバー時のアニメーション */
}
.modal .modal__content .modal__navigation .modal__nav-btn:disabled {
  opacity: 0.4; /* ボタンとアイコンを薄く表示 */
  cursor: not-allowed; /* 非アクティブ時のカーソル */
}
.modal .modal__content .modal__navigation #prev-button {
  left: 0;
  transform: translateX(-40%);
}
.modal .modal__content .modal__navigation #next-button {
  right: 0; /* モーダル右端に配置 */
  transform: translateX(40%);
}

/* 全体のフッター */
.footer {
  position: relative; /* ボタン配置の基準にする */
  background-color: #f4f7ff; /* 背景色 */
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  /* 認証情報 */
  /* コピーライト */
}
.footer.contact {
  padding-bottom: 1rem;
}
.footer .back-to-top {
  position: absolute; /* フッター右上に固定配置 */
  top: -3.5rem;
  right: 3rem;
  display: inline-block; /* リンクをインラインブロックに */
  text-decoration: none; /* 下線を削除 */
  cursor: pointer;
  width: 6.6666666667rem;
}
.footer .back-to-top__image {
  width: 100%; /* 画像の幅を指定 */
  height: auto; /* アスペクト比を保持 */
  transition: transform 0.3s ease, opacity 0.3s ease; /* ホバー時のアニメーション */
}
.footer .back-to-top:hover .back-to-top__image {
  transform: scale(1.1); /* ホバー時に拡大 */
  opacity: 0.8; /* ホバー時に少し透明に */
}
.footer .footer__container {
  width: 100%;
  gap: 11.4rem;
  /* ロゴ部分 */
  /* セパレーター */
  /* メニュー全体 */
}
.footer .footer__container .footer__logo {
  display: flex;
  justify-content: center;
}
.footer .footer__container .footer__logo img {
  width: 12rem;
  height: auto;
}
.footer .footer__container .footer__separator {
  width: 0.1rem;
  background-color: #192445;
  height: 8.6666666667rem;
  opacity: 0.4;
  margin-top: 1rem;
}
.footer .footer__container .footer__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3列のグリッド */
  gap: 1rem; /* 各メニュー項目の間隔 */
  flex: 1; /* メニュー部分が広がる */
  margin-top: 4.5rem;
  padding: 0 2.1538461538rem;
  /* メニュー項目 */
}
.footer .footer__container .footer__menu .footer__menu-item a {
  text-decoration: none; /* 下線を削除 */
  color: inherit; /* 親の色を引き継ぐ */
  display: block; /* ブロック全体をクリック可能に */
  transition: color 0.3s ease; /* カラーホバーアニメーション */
}
.footer .footer__container .footer__menu .footer__menu-item a:hover {
  color: #00439c; /* ホバー時のリンク色 */
}
.footer .footer__container .footer__menu .footer__menu-item h4 {
  font-family: "Butler", serif;
  font-size: 1.5384615385rem;
  color: #192445;
  font-weight: 300;
}
.footer .footer__container .footer__menu .footer__menu-item p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 0.9230769231rem;
}
.footer .footer__certifications {
  align-items: center;
  width: 100%;
}
.footer .footer__certifications-images {
  display: flex;
  gap: 1rem;
  padding: 4rem 2.1538461538rem 2rem 2.1538461538rem;
}
.footer .footer__certifications-images img {
  height: 3.5rem;
  width: 14.8rem;
}
.footer .footer__certifications-text {
  font-family: "Noto Serif JP", sans-serif;
  opacity: 0.8;
  color: #192445;
  font-size: 0.7461538462rem;
  padding: 0 2.1538461538rem;
}
.footer .footer__copyright {
  margin-top: 16px;
  opacity: 0.8;
  font-size: 0.8rem;
  text-align: center;
}

.contact-container {
  width: 100%;
  margin-top: 7rem;
  background-color: #f4f7ff;
  font-weight: 300;
  color: #192445;
  padding: 0 2.3076923077rem;
  padding-bottom: 11.5rem;
}
.contact-container h1 {
  font-size: clamp(48px, 12.8vw, 80px);
  font-family: "Butler", serif;
  color: #a2acb8;
  font-weight: 400;
  margin-bottom: -0.4rem;
}
.contact-container .sub-title {
  font-size: clamp(16px, 4.26vw, 25px);
  color: #192445;
  margin-bottom: 4rem;
}
.contact-container .form-group {
  margin-bottom: 1.2em;
  font-size: 1em;
}
.contact-container .form-group .textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ebebeb;
  font-size: clamp(16px, 4.26vw, 25px);
  box-sizing: border-box; /* padding を含めてサイズを計算 */
  margin-top: 0.3em;
}
.contact-container .form-group .name-input {
  display: flex;
  gap: 1.5em;
  width: 100%;
}
.contact-container .form-group label {
  font-size: clamp(16px, 4.26vw, 25px);
  color: #334067;
  display: flex;
  align-items: center;
  gap: 1em;
}
.contact-container .radio-group label {
  align-items: center; /* ラジオボタンとテキストを縦中央揃え */
  gap: 5px; /* ラジオボタンとテキストの間隔を調整 */
  font-size: clamp(16px, 4.26vw, 25px);
  color: #334067;
}
.contact-container .form-group label .required {
  font-size: 0.8em;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  background-color: rgba(25, 36, 69, 0.3);
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding: 0.3em 0.5em;
  display: inline-block;
}
.contact-container .contact_message .radio-group label {
  display: flex;
  flex-direction: row;
  align-items: center; /* ラジオボタンとテキストを縦方向に中央揃え */
  gap: 0; /* ラジオボタンとテキストの間隔 */
  font-size: 1em;
  color: #334067;
  white-space: nowrap; /* テキストの折り返しを防止 */
}
.contact-container .contact_message .radio-group label sup {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.contact-container .contact_message .radio-group label input[type="radio"] {
  margin: 0;
  margin-right: 8px;
  padding: 0;
  width: 1.5rem; /* 固定幅 */
  height: 1.5rem; /* 固定高さ */
  appearance: none;
  border: 1px solid #a2acb8; /* 外枠の色 */
  border-radius: 50%; /* 丸型にする */
  cursor: pointer;
  position: relative;
  background: #fff;
}
.contact-container
  .contact_message
  .radio-group
  label
  input[type="radio"]::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #00439c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}
.contact-container
  .contact_message
  .radio-group
  label
  input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.contact-container .contact_message .radio-group {
  font-size: 1rem;
  color: #334067;
  margin-top: 0.8em;
  margin-bottom: 0.5em;
}
.contact-container .contact_message textarea {
  width: 100%; /* テキストエリアを全幅に */
  padding: 0.8em;
  font-size: clamp(16px, 4.26vw, 25px);
  resize: none; /* サイズ変更を禁止 */
  box-sizing: border-box;
  border: 1px solid #ebebeb;
}
.contact-container .privacy {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: clamp(16px, 4.26vw, 25px);
  text-align: center;
  margin-top: 5.15rem;
}
.contact-container .privacy .privacy_text {
  font-size: 0.9em;
  margin-bottom: 1em;
}
.contact-container .privacy .privacy_text a {
  text-decoration: underline;
}
.contact-container .privacy .privacy_check {
  font-size: clamp(16px, 4.26vw, 25px);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.7em;
  justify-content: center;
  cursor: pointer;
}
.contact-container .privacy .privacy_check span {
  font-weight: 600;
}
.contact-container .privacy .privacy_check input[type="checkbox"] {
  width: 1.2em;
  height: 1.2em;
}
.contact-container .submit {
  display: flex;
  justify-content: center;
}
.contact-container .submit .submit-contents {
  display: inline-block;
}
.contact-container .submit .submit-contents .submit-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00e3c7;
  border: none;
  padding: 1.4em 2.4em 1.4em 4.3em;
  font-size: clamp(16px, 4.26vw, 25px);
  color: #192445;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  gap: 2.7rem;
}
.contact-container .submit .submit-contents .submit-btn img {
  width: 0.5em;
}
.contact-container .submit .submit-btn:hover {
  background-color: #47c9ad;
}

#froating-bunner {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 900;
  width: 100%;
}
#froating-bunner .cta_buttons {
  display: flex;
  margin-left: auto;
  width: 100%;
}
#froating-bunner .cta_buttons .btn {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.76667rem;
  font-size: 1.0769230769rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  gap: 1.8rem;
  width: 100%;
}
#froating-bunner .cta_buttons .btn.request {
  background-color: #003aa7;
  color: #ffffff;
}
#froating-bunner .cta_buttons .btn.contact {
  background-color: #00d6b7;
  color: #323232;
  padding-left: 0.1rem;
}
#froating-bunner .cta_buttons .btn:hover {
  opacity: 0.8;
}

/* 資料請求 */
.document-container {
  padding-left: 2em;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  margin-bottom: 30px;
  justify-content: center;
}

.document-feature {
  font-size: clamp(15px, 1.5vw, 20px);
}

.document-feature--title {
  font-size: clamp(16px, 4.26vw, 25px);
  text-align: center;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 10px;
}

.document-feature li {
  list-style-type: none;
  padding: 0;
}

.document-feature li {
  background-image: url(../images/products/check-img.png);
  background-size: 20px 20px; /* ここでサイズを指定 */
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 30px; /* アイコンとテキストの間にスペースを確保 */
}

.document-img {
  max-width: 250px;
  height: 100%;
}

/* サンクスページ */
.contact-container__thanks {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  margin-top: 17.876923rem;
  padding-inline: 50px;
  background-color: #f4f7ff;
  font-weight: 300;
  color: #192445;
  padding-bottom: 11.5rem;
}
.contact-container__thanks .title {
  display: none;
}

.button-container_thanks {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-click_thanks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00e3c7;
  border: none;
  padding: 1.4em 2.4em 1.4em 4.3em;
  font-size: clamp(16px, 4.26vw, 25px);
  color: #192445;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  gap: 2.7rem;
}

.button-click_thanks img {
  width: 0.7rem;
}
