@charset "UTF-8";
/**
 * Main SCSS
 * すべてのSCSSファイルをインポート・コンパイルの起点
 * 
 * 読み込み順序:
 * 1. Foundation（変数、関数、ミックスイン、グローバルスタイル）
 * 2. Layout（ページ構造）
 * 3. Component（UI部品）
 * 4. Utility（ユーティリティクラス）
 */
/**
 * Foundation Index
 * 変数、関数、ミックスイン、グローバルスタイルをエクスポート
 */
/**
 * Variables - カラーパレット
 * デザインシステムの色値を集約管理
 * Figma Design System: https://www.figma.com/design/BwIo17GBpySlyvXzCupKRO/
 */
/**
 * Variables - スペーシング
 * マージン、パディング、ギャップに使用
 */
/**
 * Variables - タイポグラフィ
 * フォントファミリーとサイズ
 */
/**
 * Variables - ブレークポイント
 * モバイルファースト: min-width を使用
 */
/**
 * Variables - ボーダーラディウス
 * コーナーの丸さ
 */
/**
 * Variables - トランジション
 * アニメーション時間
 */
/**
 * Variables - Z-index管理
 * レイヤー順を一元管理
 */
/**
 * Variables - メディアクエリ定数
 */
/**
 * Functions - SCSS 関数
 */
/**
 * ピクセル値をrem値に変換
 * @param {Number} $px - ピクセル値
 * @return {Number} rem値
 * 
 * @example
 * .element {
 *   padding: rem(16px);  // 1rem
 * }
 */
/**
 * emピクセル値をrem値に変換
 * @param {Number} $px - ピクセル値
 * @return {Number} em値
 * 
 * @example
 * .element {
 *   font-size: em(14px);  // 0.875em
 * }
 */
/**
 * 色の明度を調整
 * @param {Color} $color - 色
 * @param {Number} $percent - 調整パーセンテージ（正の値で明るく、負の値で暗く）
 * @return {Color} 調整された色
 * 
 * @example
 * .button {
 *   background: $body-green-2;
 *   
 *   &:hover {
 *     background: lighten-color($body-green-2, 10%);
 *   }
 * }
 */
/**
 * 色を暗くする
 * @param {Color} $color - 色
 * @param {Number} $percent - 調整パーセンテージ
 * @return {Color} 調整された色
 */
/**
 * 色を透明にする
 * @param {Color} $color - 色
 * @param {Number} $alpha - 透明度（0〜1）
 * @return {Color} 透明度が設定された色
 * 
 * @example
 * .overlay {
 *   background: rgba-color($body-green-2, 0.5);
 * }
 */
/**
 * ボックスシャドウ用の複数シャドウ値を結合
 * @param {String} $shadows - 複数のシャドウ値
 * @return {String} 結合されたシャドウ
 */
/**
 * Foundation Index
 * 変数、関数、ミックスイン、グローバルスタイルをエクスポート
 */
/**
 * Mixins - レスポンシブデザイン
 * モバイルファーストアプローチでメディアクエリを定義
 */
/**
 * ブレークポイント別メディアクエリ
 * @param {String} $breakpoint - ブレークポイント名（sm, md, lg, xl, 2xl）
 * 
 * @example
 * .container {
 *   width: 100%;
 *   @include mq('md') {
 *     width: 750px;
 *   }
 * }
 */
/**
 * Mixins - フレックスボックス
 * 一般的なフレックスレイアウトパターン
 */
/**
 * Flexボックスの初期化（行方向、アイテム中央揃え）
 */
/**
 * Flexボックス（行方向、スペース-ビットウィーン）
 */
/**
 * Flexボックス（列方向）
 */
/**
 * Mixins - テキスト関連
 */
/**
 * テキストを1行で省略（...で表示）
 */
/**
 * テキストを複数行で省略
 * @param {Number} $lines - 表示する最大行数
 * 
 * @example
 * .description {
 *   @include text-clamp(3);
 * }
 */
/**
 * フォントサイズと行の高さを同時に設定（レスポンシブ）
 * @param {Number} $size - フォントサイズ
 * @param {Number} $height - ラインハイト
 * 
 * @example
 * h1 {
 *   @include font-size-height(2rem, 1.2);
 * }
 */
/**
 * Mixins - ボーダー・アウトライン
 */
/**
 * ボーダーを一括設定
 * @param {Number} $width - ボーダー幅
 * @param {String} $color - ボーダー色
 * @param {String} $style - ボーダースタイル（solid, dashed等）
 */
/**
 * ボーダーラディウスを一括設定
 * @param {Number} $radius - ラディウス値
 */
/**
 * フォーカスアウトラインを設定
 * @param {String} $color - アウトライン色
 * @param {Number} $width - アウトライン幅
 */
/**
 * Mixins - アクセシビリティ
 */
/**
 * スクリーンリーダー専用テキスト
 * ビジュアルには表示されないが、スクリーンリーダーには読まれる
 */
/**
 * prefers-reduced-motion を考慮
 * ユーザーが動きを減らす設定をしている場合、アニメーションを無効化
 */
/**
 * Mixins - アスペクト比
 */
/**
 * アスペクト比を固定（padding-bottomトリック）
 * @param {Number} $width - 幅
 * @param {Number} $height - 高さ
 * 
 * @example
 * .video-container {
 *   @include aspect-ratio(16, 9);
 * }
 */
/**
 * Mixins - グラデーション
 */
/**
 * 線形グラデーション
 * @param {String} $direction - 方向（to right, to bottom等）
 * @param {String} $colors - カラーストップ（#fff 0%, #000 100%）
 */
/**
 * Mixins - ホバー・フォーカス状態
 */
/**
 * ホバー・フォーカス・アクティブ時のトランジション
 * @param {Number} $duration - トランジション時間
 */
/**
 * Mixins - 絶対・相対配置
 */
/**
 * 絶対配置で中央に配置
 */
/**
 * 相対配置でオフセット設定
 */
/**
 * 見出しに使うバー
 */
/**
 * ホバー用の背景擬似要素
 */
/**
 * Foundation Index
 * 変数、関数、ミックスイン、グローバルスタイルをエクスポート
 */
/**
 * リセット・ノーマライズ
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 150px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 120px;
  }
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * タイポグラフィ
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-feature-settings: "palt" on;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p,
span {
  margin: 0;
  text-wrap: wrap;
  font-feature-settings: "palt" on;
}

div {
  font-feature-settings: "palt" on;
}

/**
 * リスト
 */
ul,
ol {
  list-style: none;
  font-feature-settings: "palt" on;
}

/**
 * リンク
 */
a {
  color: #007E85;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-feature-settings: "palt" on;
}

/**
 * ボタンリセット
 */
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-feature-settings: "palt" on;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/**
 * フォーム要素リセット
 */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

/**
 * 画像
 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/**
 * テーブル
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * prefers-reduced-motion への対応
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * Layout - メインレイアウト関連
 * ページ全体の構造やグリッド系のスタイルを定義
 */
/* ============================================
   Header Component
   ============================================ */
.header {
  background-color: #F5F7F7;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition: box-shadow 250ms;
}
.header.is-drawer {
  box-shadow: 0 2px 16px 0 rgba(4, 63, 66, 0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 56px;
  gap: 1.5rem;
  border-bottom: 1px solid #B0BEBF;
}
@media (min-width: 768px) and (max-width: 991px) {
  .header__inner {
    padding-right: 90px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    max-width: 100%;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    padding: 16px 18px 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .header__inner {
    padding-right: 84px;
  }
}
.header__logo-group {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 24px 0 28px;
}
@media (max-width: 767px) {
  .header__logo-group {
    gap: 18px;
    padding: 0;
  }
}
.header__logo-main {
  width: 184px;
  height: 44px;
  flex-shrink: 0;
}
.header__logo-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .header__logo-main {
    width: 142px;
    height: 34px;
  }
}
.header__logo-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.header__logo-sub img {
  width: 94px;
  height: auto;
  gap: 8px;
}
.header__powered-by {
  font-size: 0.75rem;
  color: #404040;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 767px) {
  .header__powered-by {
    font-size: 11px;
  }
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
@media (max-width: 575px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 28px;
}
.header__nav-link {
  color: #1A1A1A;
  font-weight: 500;
  transition: color 250ms;
  line-height: 1.5;
  padding: 35px 0 37px;
  position: relative;
}
@media (max-width: 767px) {
  .header__nav-link {
    padding: 0;
  }
}
.header__nav-link::before {
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #007E85;
  transition: opacity 250ms, visibility 250ms;
}
.header__nav-link:hover {
  color: #007E85;
}
.header__nav-link:hover::before {
  opacity: 1;
  visibility: visible;
}
.header__contact-btn {
  background: linear-gradient(135deg, #d1133c 0%, #cf3858 100%);
  color: #FFFFFF;
  padding: 6px 24px 8px;
  border-radius: 100vmax;
  font-weight: 700;
  line-height: 1.5;
  transition: transform 250ms, box-shadow 250ms;
  display: block;
}
.header__contact-btn::before {
  content: "";
  position: absolute;
  visibility: hidden;
  border-radius: 100vmax;
  transition: opacity 250ms, visibility 250ms;
  display: block;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  mix-blend-mode: soft-light;
}
.header__contact-btn:hover {
  box-shadow: 0 2px 16px 0 rgba(107, 32, 48, 0.2);
  transform: translate(0, -1px);
}
.header__contact-btn:hover::before {
  visibility: visible;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .header__contact-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

/* ============================================
  Hamburger menu
============================================ */
.hamburger {
  position: fixed;
  width: 30px;
  aspect-ratio: 1/1;
  right: 32px;
  padding: 7px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hamburger {
    right: 32px;
  }
}
@media (max-width: 767px) {
  .hamburger {
    right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hamburger {
    right: 28px;
  }
}
.hamburger span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 100vmax;
  background-color: #007E85;
  transition: top 250ms, rotate 250ms;
}
.hamburger span:nth-of-type(1) {
  top: 7px;
}
.hamburger span:nth-of-type(1):is(.is-active *) {
  top: 15px;
  rotate: 45deg;
}
.hamburger span:nth-of-type(2) {
  top: 15px;
}
.hamburger span:nth-of-type(2):is(.is-active *) {
  display: none;
}
.hamburger span:nth-of-type(3) {
  top: 23px;
}
.hamburger span:nth-of-type(3):is(.is-active *) {
  top: 15px;
  rotate: -45deg;
}

/* ============================================
  drawer
============================================ */
.drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms;
}
.drawer.is-show {
  display: grid;
  grid-template-rows: 1fr;
}
.drawer__wrap {
  overflow: hidden;
  padding-inline: 20px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .drawer__wrap {
    padding-inline: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .drawer__wrap {
    padding-inline: 56px;
  }
}
.drawer__list {
  padding: 4px 0 0;
}
.drawer__item {
  border-bottom: solid 1px #C7D9DA;
}
.drawer__link {
  display: block;
  padding: 20px 0px 24px;
  padding-bottom: 24px;
  color: #1A1A1A;
  font-weight: 500;
}
.drawer__btn-wrap {
  text-align: center;
  margin: 32px auto;
}

/* ============================================
   Client Logo (Common Identifier)
   ============================================ */
.client-logo-heading {
  text-align: center;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 767px) {
  .client-logo-heading {
    font-size: 20px;
  }
}

.client-logo-gallery {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 8px;
}
@media (max-width: 767px) {
  .client-logo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    gap: 8px 8px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .client-logo-gallery {
    grid-template-columns: repeat(3, 168px);
  }
}

.client-logo {
  width: 168px;
  aspect-ratio: 16/9;
}
/* ============================================
   Hero Section
   ============================================ */
.hero__image-area {
  position: absolute;
  z-index: 1;
  width: 1132px;
  right: 56px;
  top: -36px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__image-area {
    width: calc(100% - 72px);
    right: 36px;
    top: 360px;
  }
}
@media (max-width: 767px) {
  .hero__image-area {
    width: calc(100% - 24px);
    height: auto;
    left: 12px;
    top: 194px;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__triangle-area {
  position: absolute;
  mix-blend-mode: screen;
  z-index: 3;
}
.hero__triangle-area svg {
  width: 100%;
  height: 100%;
}
.hero__triangle-area:nth-of-type(1) {
  top: -3%;
  right: 535px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__triangle-area:nth-of-type(1) {
    top: 44%;
    right: 78%;
  }
}
@media (max-width: 767px) {
  .hero__triangle-area:nth-of-type(1) {
    width: 36px;
    aspect-ratio: 11/9;
    top: 44%;
    left: 15%;
  }
}
.hero__triangle-area:nth-of-type(2) {
  bottom: -23%;
  right: 580px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__triangle-area:nth-of-type(2) {
    right: 50%;
    bottom: 25%;
  }
}
@media (max-width: 767px) {
  .hero__triangle-area:nth-of-type(2) {
    width: 62px;
    aspect-ratio: 1/1;
    top: 56%;
    left: 35%;
  }
}
.hero__triangle-area:nth-of-type(3) {
  top: 27%;
  right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__triangle-area:nth-of-type(3) {
    top: 52%;
  }
}
@media (max-width: 767px) {
  .hero__triangle-area:nth-of-type(3) {
    top: 48%;
    width: 48px;
    height: 48px;
  }
}
.hero__content {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .hero__content {
    padding-inline: 20px;
  }
}
.hero__copy {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .hero__copy {
    padding-inline: 9px;
    margin-bottom: 1.5rem;
  }
}
.hero__copy-sub {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .hero__copy-sub {
    margin-bottom: 12px;
  }
}
.hero__copy-sub-text {
  font-size: 1.25rem;
  margin-bottom: 2px;
  border: solid 1px #20676B;
  padding: 4px 16px 6px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.015em;
  font-weight: 700;
  color: #20676B;
}
@media (max-width: 767px) {
  .hero__copy-sub-text {
    font-size: 18px;
    padding: 3px 12px 4px;
    margin-bottom: 2px;
  }
}
.hero__copy-sub-text .hero__copy-highlight {
  font-size: 32px;
  font-weight: 800;
  display: inline-block;
  background: linear-gradient(90deg, #084E52 0%, #008087 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .hero__copy-sub-text .hero__copy-highlight {
    font-size: 1.25rem;
  }
}
.hero__copy-sub-brand {
  font-size: 36px;
  color: #20676B;
  font-weight: 700;
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (max-width: 767px) {
  .hero__copy-sub-brand {
    font-size: 20px;
    gap: 3px;
  }
}
.hero__copy-brand-red {
  color: #AD0026;
}
.hero__copy-main {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .hero__copy-main {
    margin-bottom: 142px;
  }
}
.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero__title {
    font-size: 53px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 26px;
    gap: 8px;
  }
}
.hero__title span {
  background-color: #FFFFFF;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 16px 10px;
  box-shadow: 0 0 24px 0 rgba(12, 178, 186, 0.15);
}
@media (max-width: 767px) {
  .hero__title span {
    padding: 2px 8px 4px;
    white-space: nowrap;
    box-shadow: 0 0 20px 0 rgba(12, 178, 186, 0.15);
  }
}
.hero__features {
  top: 84%;
  right: 24px;
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 136px);
  gap: 8px;
  margin-top: 3rem;
  z-index: 5;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__features {
    display: flex;
    justify-content: center;
    position: static;
    gap: 8px;
    place-content: center;
    margin-top: 40vw;
  }
}
@media (max-width: 767px) {
  .hero__features {
    display: flex;
    justify-content: center;
    position: static;
    gap: 8px;
    place-content: center;
    margin-top: 1.5rem;
  }
}

/* ============================================
   Feature Card
   ============================================ */
.feature-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0.5rem;
  background: linear-gradient(225deg, #1EC1C9 0%, #277D82 50%, #006F75 100%);
  box-shadow: 0 0 24px rgba(8, 137, 144, 0.1);
  aspect-ratio: 1/1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .feature-card {
    width: 136px;
  }
}
@media (max-width: 767px) {
  .feature-card {
    width: 100px;
    padding: 4px;
  }
}
.feature-card__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 15px 0 20px;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid #B0BEBF;
}
.feature-card__label {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 767px) {
  .feature-card__label {
    font-size: 14px;
  }
}
.feature-card__label span {
  display: block;
  font-size: 22px;
  margin-bottom: 2px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .feature-card__label span {
    font-size: 17px;
    margin-bottom: 0;
  }
}

/* ============================================
   Logo Gallery
   ============================================ */
.logo-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 84px;
  background-color: #FFFFFF;
  border: solid 1px #C7D9DA;
  gap: 64px;
  margin-top: 48px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .logo-gallery {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-gallery {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .logo-gallery {
    flex-wrap: wrap;
    gap: 24px 24px;
    padding: 24px 24px;
    max-width: 100%;
    margin-top: 28px;
  }
}
.logo-gallery__item:nth-of-type(1) {
  height: 40px;
}
@media (max-width: 767px) {
  .logo-gallery__item:nth-of-type(1) {
    height: 23px;
    margin-left: -1px;
  }
}
.logo-gallery__item:nth-of-type(2) {
  height: 44px;
}
@media (max-width: 767px) {
  .logo-gallery__item:nth-of-type(2) {
    height: 26px;
    margin-right: -1px;
  }
}
.logo-gallery__item:nth-of-type(3), .logo-gallery__item:nth-of-type(4) {
  height: 48px;
}
@media (max-width: 767px) {
  .logo-gallery__item:nth-of-type(3), .logo-gallery__item:nth-of-type(4) {
    height: 28px;
  }
}
.logo-gallery__item img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================
   Solution Cards
   ============================================ */
.solution-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 3rem;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .solution-cards {
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

.solution-card {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 24px 0 rgba(8, 137, 144, 0.1);
  padding: 48px 88px 72px;
}
@media (max-width: 767px) {
  .solution-card {
    padding: 24px 20px 28px;
    box-shadow: 0 2px 16px 0 rgba(8, 137, 144, 0.1);
  }
}
.solution-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .solution-card__header {
    margin-bottom: 20px;
  }
}
.solution-card__title {
  font-size: 28px;
  font-weight: 700;
  color: #404040;
  line-height: 1.25;
  margin: 0;
  position: relative;
}
.solution-card__title::before {
  content: "";
  position: absolute;
  left: -88px;
  width: 64px;
  height: 1px;
  background-color: #00A5AD;
  top: 50%;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .solution-card__title::before {
    width: 24px;
  }
}
@media (max-width: 767px) {
  .solution-card__title::before {
    left: -32px;
  }
}
.solution-card__title::after {
  content: "";
  position: absolute;
  right: -88px;
  width: 64px;
  height: 1px;
  background-color: #00A5AD;
  top: 50%;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .solution-card__title::after {
    width: 24px;
  }
}
@media (max-width: 767px) {
  .solution-card__title::after {
    right: -32px;
  }
}
@media (max-width: 767px) {
  .solution-card__title {
    font-size: 24px;
  }
}
.solution-card__content {
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .solution-card__content {
    display: block;
  }
}
@media (max-width: 767px) {
  .solution-card__content {
    display: block;
  }
}
.solution-card__figure {
  width: 360px;
  height: auto;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .solution-card__figure {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .solution-card__figure {
    width: 100%;
  }
}
.solution-card__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution-card__text {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .solution-card__text {
    gap: 8px;
  }
}
.solution-card__title {
  font-size: 28px;
  font-weight: 700;
  color: #404040;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .solution-card__title {
    text-align: center;
    font-size: 20px;
  }
}
.solution-card__subtitle {
  color: #00A5AD;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 991px) {
  .solution-card__subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .solution-card__subtitle {
    font-size: 20px;
    margin-top: 16px;
  }
}
.solution-card__description {
  font-size: 22px;
  color: #404040;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 767px) {
  .solution-card__description {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ============================================
   Case Cards
   ============================================ */
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .case-cards {
    display: block;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

.case-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 9;
  border-radius: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 0 2px 24px 0 rgba(8, 137, 144, 0.1);
  padding: 24px 24px 32px;
  gap: 0;
}
.case-card--nobtn {
  grid-row: span 8;
}
@media (max-width: 767px) {
  .case-card {
    display: block;
    padding: 24px 20px 32px;
    box-shadow: 0 2px 16px 0 rgba(8, 137, 144, 0.1);
  }
}
@media (max-width: 767px) {
  .case-card:not(:first-of-type) {
    display: block;
    margin-top: 16px;
  }
}
.case-card__category {
  font-size: 18px;
  position: relative;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  color: #404040;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 8px;
}
.case-card__category::before {
  left: -28px;
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #00A5AD;
  top: 50%;
  transform: translateY(50%);
}
.case-card__category::after {
  right: -28px;
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #00A5AD;
  top: 50%;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .case-card__category {
    font-size: 18px;
  }
}
.case-card__title {
  font-size: 28px;
  font-weight: 700;
  color: #404040;
  text-align: center;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .case-card__title {
    font-size: 28px;
  }
}
.case-card__figure {
  width: 100%;
  margin-top: 24px;
}
.case-card__figure img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-card__metric {
  padding: 4px 0;
  background-color: #F5F7F7;
  text-align: center;
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .case-card__metric {
    padding: 0.5rem 1rem;
  }
}
.case-card__metric-text {
  font-size: 24px;
  font-weight: 700;
  color: #00A5AD;
  margin: 0;
  line-height: 1.25;
}
.case-card__content {
  margin-top: 16px;
}
.case-card__detail-list {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.case-card__detail-list:not(:first-of-type) {
  padding-top: 12px;
  border-top: solid 1px #C7D9DA;
}
.case-card__detail-list:not(:last-of-type) {
  padding-bottom: 12px;
}
.case-card__detail-list:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .case-card__detail-list {
    margin-bottom: 0.5rem;
  }
}
.case-card__detail-term {
  padding: 0 8px 2px;
  background-color: #FFFFFF;
  font-weight: 700;
  line-height: 1.5;
  background-color: #007E85;
  color: #FFFFFF;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .case-card__detail-term {
    font-size: 16px;
  }
}
.case-card__detail-definition {
  margin: 0;
}
.case-card__detail-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-card__detail-item {
  font-size: 16px;
  color: #404040;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
  font-weight: 500;
}
.case-card__detail-item::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  left: 0;
  background-color: #B0BEBF;
  top: 10px;
}
@media (max-width: 767px) {
  .case-card__detail-item::before {
    top: 9px;
  }
}
.case-card__detail-item:last-child {
  margin-bottom: 0;
}
.case-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px 8px;
  color: #404040;
  line-height: 1.5;
  font-weight: 700;
  border-radius: 100vmax;
  border: solid 1px #B0BEBF;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 28px;
  transition: background-color 250ms, border 250ms, color 250ms;
}
.case-card__link:hover {
  background-color: #F5F7F7;
  border: solid 1px #007E85;
  color: #007E85;
}
@media (max-width: 767px) {
  .case-card__link {
    padding: 4px 24px 8px;
    margin-top: 24px;
  }
}

/* ============================================
   Reason Section
   ============================================ */
.reason-content {
  display: flex;
  flex-direction: column;
  gap: 115px;
}
@media (max-width: 767px) {
  .reason-content {
    gap: 62px;
  }
}
.reason-content__point-wrapper {
  text-align: center;
}
.reason-content__point-wrapper:first-child {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .reason-content__point-wrapper:first-child {
    margin-top: 46px;
  }
}
.reason-content__cover {
  display: inline-block;
  font-size: 32px;
  width: 100%;
  color: #1A1A1A;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .reason-content__cover {
    font-size: 21px;
    margin-top: 16px;
  }
}
.reason-content__description {
  font-size: 24px;
  margin-top: 20px;
  line-height: 1.75;
  font-weight: 500;
  color: #404040;
}
@media (max-width: 767px) {
  .reason-content__description {
    font-size: 16px;
    margin-bottom: 1rem;
    margin-top: 12px;
  }
}
.reason-content__highlights {
  list-style: none;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .reason-content__highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.reason-content__highlight-item {
  padding: 32px 40px;
  background: linear-gradient(48deg, #006F75 -2.2%, #197579 50.37%, #1EC1C9 102.94%);
  box-shadow: 0 2px 24px 0 rgba(8, 137, 144, 0.4);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 767px) {
  .reason-content__highlight-item {
    box-shadow: 0 2px 16px 0 rgba(8, 137, 144, 0.1);
    padding: 16px 20px 20px;
  }
}
.reason-content__highlight-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .reason-content__highlight-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.reason-content__highlight-item h4 span {
  display: block;
  font-size: 48px;
}
@media (max-width: 767px) {
  .reason-content__highlight-item h4 span {
    font-size: 36px;
  }
}
.reason-content__highlight-inner {
  padding-top: 16px;
  border-top: dashed 1px #FFFFFF;
  text-align: left;
}
@media (max-width: 767px) {
  .reason-content__highlight-inner {
    padding-top: 8px;
  }
}
.reason-content__highlight-inner p {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .reason-content__highlight-inner p {
    font-size: 15px;
  }
}

.reason-point {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding: 32px 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  --gradient: linear-gradient(90deg, #45DEE5 0%, #00A9B2 100%);
  border-width: 1px;
}
.reason-point::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-mask-image: conic-gradient(red), conic-gradient(red);
          mask-image: conic-gradient(red), conic-gradient(red);
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  border: 1px solid transparent;
  background-image: var(--gradient);
  background-origin: border-box;
}
@supports (-webkit-touch-callout: none) {
  .reason-point {
    border: solid 1px #00A9B2;
  }
  .reason-point::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .reason-point {
    padding: 20px 24px;
  }
}
.reason-point__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1A1A1A;
  background: linear-gradient(90deg, #45DEE5 0%, #00A9B2 100%);
  padding: 5px 20px;
  top: -16px;
}
@media (max-width: 767px) {
  .reason-point__title {
    gap: 8px;
    top: -14px;
  }
}
.reason-point__title span {
  font-size: 24px;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 767px) {
  .reason-point__title span {
    font-size: 18px;
    gap: 8px;
  }
}
.reason-point__label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #00A5AD;
  display: block;
}
@media (max-width: 767px) {
  .reason-point__label {
    font-size: 0.875rem;
  }
}
.reason-point__text {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .reason-point__text {
    font-size: 24px;
  }
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-table__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .comparison-table__title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.table {
  width: 100%;
  margin-top: 60px;
  filter: drop-shadow(0 2px 24px rgba(23, 26, 26, 0.3));
  transform: translateZ(0);
}
@media (max-width: 767px) {
  .table {
    filter: none;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .table.pc-hide {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .table.pc-hide.table--sp-under {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .table__sp-wrapper {
    box-shadow: 0 2px 16px 0 rgba(23, 26, 26, 0.2);
  }
}

.table__row {
  display: flex;
}
.table__row--header {
  align-items: end;
}
.table__row:nth-of-type(n+3) {
  border-top: solid 1px #B0BEBF;
}

.table__cell {
  font-size: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .table__cell {
    padding: 11px 0 14px;
    font-size: 14px;
  }
}
.table__cell:not(.table__cell--header) {
  position: relative;
  z-index: 1;
}
.table__cell--header {
  color: #1A1A1A;
  text-align: center;
}
.table__cell--feature {
  background-color: #D3E9EB;
  padding: 14px 16px 18px;
  font-weight: 500;
  width: 12.5%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .table__cell--feature {
    width: 25%;
    padding: 11px 0 14px;
    font-size: 14px;
  }
}
.table__cell--feature.table__cell--header {
  opacity: 0;
  visibility: hidden;
}
.table__cell--other {
  background-color: #F5F7F7;
  text-align: center;
  font-weight: 500;
  width: 37.5%;
  flex-shrink: 0;
  padding: 14px 16px 18px;
  color: #404040;
}
@media (max-width: 767px) {
  .table__cell--other {
    width: 75%;
    padding: 10px 12px 14px;
    font-size: 16px;
    justify-content: left;
  }
}
.table__cell--other.table__cell--header {
  background-color: #B0BEBF;
}
@media (max-width: 767px) {
  .table__cell--other.table__cell--header {
    width: 100%;
    padding: 8px 16px 11px;
    justify-content: center;
    font-size: 18px;
  }
}
.table__cell--other:not(:first-of-type) {
  border-right: solid 1px #B0BEBF;
}
.table__cell--doctorsme {
  background-color: #FFFFFF;
  color: #00A5AD;
  text-align: center;
  font-size: 22px;
  width: 50%;
  flex-shrink: 0;
  font-weight: 700;
  padding: 12px 16px 17px;
}
@media (max-width: 767px) {
  .table__cell--doctorsme {
    width: 75%;
    padding: 10px 12px 15px;
    font-size: 18px;
    justify-content: left;
    text-align: left;
  }
}
.table__cell--doctorsme.table__cell--header {
  color: #1A1A1A;
  background: linear-gradient(72deg, #00A9B2 0%, #45DEE5 100.12%);
  padding: 22px 0 28px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .table__cell--doctorsme.table__cell--header {
    width: 100%;
    padding: 14px 16px 18px;
    justify-content: center;
    font-size: 20px;
  }
}

.reason-additional {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  background-color: rgba(0, 165, 173, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(0, 165, 173, 0.3);
}
@media (max-width: 767px) {
  .reason-additional {
    padding: 1.5rem;
  }
}

.reason-additional__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 767px) {
  .reason-additional__text {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ============================================
   Department Cards
   ============================================ */
.department-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .department-cards {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 1.5rem;
  }
}

.department-card {
  background-color: #FFFFFF;
  color: #FFFFFF;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(8, 137, 144, 0.1);
}
@media (max-width: 767px) {
  .department-card {
    box-shadow: 0 2px 16px 0 rgba(8, 137, 144, 0.1);
  }
}
.department-card__title {
  font-size: 1.25rem;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  background-color: #00A5AD;
  border-radius: 16px 16px 0 0;
  line-height: 1.5;
  padding: 12px 0 16px;
}
@media (max-width: 767px) {
  .department-card__title {
    font-size: 20px;
    padding: 8px 0 12px;
  }
}
.department-card__description {
  line-height: 1.75;
  letter-spacing: 0.015em;
  padding: 16px 24px 24px;
  font-weight: 500;
  color: #404040;
  text-align: left;
}
@media (max-width: 767px) {
  .department-card__description {
    box-shadow: 0 2px 16px 0 rgba(8, 137, 144, 0.1);
    padding: 12px 20px 20px;
  }
}

.howto-border {
  padding-top: 88px;
  border-top: solid 1px #B0BEBF;
}
@media (max-width: 767px) {
  .howto-border {
    padding-top: 40px;
  }
}

/* ============================================
   Flowchart
   ============================================ */
.flowchart {
  display: grid;
  grid-template-columns: repeat(auto-fit, 168px);
  gap: 40px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 40px 64px;
  box-shadow: 0 2px 24px 0 rgba(8, 137, 144, 0.1);
  border-radius: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .flowchart {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .flowchart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 16px 0 rgba(8, 137, 144, 0.1);
    margin-top: 16px;
    padding: 20px 20px;
  }
}

.flowchart-step {
  flex-shrink: 0;
  text-align: center;
  position: relative;
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: solid 1px #C7D9DA;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .flowchart-step {
    padding: 24px;
    flex-direction: row;
    gap: 24px;
  }
}
.flowchart-step:not(:first-of-type)::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #C7D9DA;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .flowchart-step:not(:first-of-type)::before {
    width: 32px;
    left: -32px;
  }
}
@media (max-width: 767px) {
  .flowchart-step:not(:first-of-type)::before {
    left: 50%;
    top: -16px;
    width: 1px;
    height: 16px;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 767px) {
  .flowchart-step {
    width: 100%;
  }
}
.flowchart-step__number {
  color: #20676B;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 767px) {
  .flowchart-step__number {
    font-size: 16px;
    justify-content: left;
  }
}
.flowchart-step__number span {
  font-size: 20px;
}
.flowchart-step__label {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .flowchart-step__label {
    text-align: left;
  }
}
.flowchart-step__icon {
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .flowchart-step__icon {
    margin: 0;
  }
}
.flowchart-step__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================
   CV Content
   ============================================ */
.cv__link {
  display: block;
  width: 100%;
  position: relative;
  background: linear-gradient(90deg, #D1133C 0%, #CF3858 100%);
  padding: 56px 96px 128px;
  border-radius: 8px;
  transition: all 250ms;
}
.cv__link::before {
  content: "";
  position: absolute;
  visibility: hidden;
  transition: opacity 250ms, visibility 250ms;
  display: block;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  mix-blend-mode: soft-light;
}
@media (max-width: 767px) {
  .cv__link {
    padding: 24px 24px 17.075vw;
  }
}
.cv__link:hover {
  transform: translate(0, -2px);
}
.cv__link:hover::before {
  visibility: visible;
  opacity: 0.4;
}

.cv-content {
  text-align: center;
}
.cv-content__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cv-content__body {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cv-content__body {
    flex-direction: column;
    gap: 24px;
  }
}
.cv-content__main {
  flex: 1;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cv-content__main {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cv-content__main {
    text-align: center;
  }
}
.cv-content__action {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cv-content__action {
    width: 100%;
  }
}
.cv-content__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .cv-content__title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
.cv-content__description {
  color: #FFFFFF;
  margin-top: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cv-content__description {
    margin-top: 8px;
    font-size: 15px;
  }
}
.cv-content__action {
  display: flex;
  background-color: #FFFFFF;
  padding: 20px 80px 24px;
  border-radius: 100vmax;
}
@media (max-width: 767px) {
  .cv-content__action {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 18px 0 22px;
  }
}
.cv-content__cta-text {
  color: #D1133C;
  line-height: 1.25;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cv-content__cta-text {
    font-size: 18px;
  }
}
.cv-content__label {
  position: absolute;
  width: 100%;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  opacity: 0.15;
  bottom: 0;
  font-size: 115px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  left: 0;
}
@media (min-width: 768px) and (max-width: 1128px) {
  .cv-content__label {
    font-size: 10.25vw;
  }
}
@media (max-width: 767px) {
  .cv-content__label {
    font-size: 9.33vw;
    bottom: 12px;
  }
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-to-top {
  display: flex;
  margin-top: 56px;
  justify-content: right;
  background-color: #F5F7F7;
}
@media (max-width: 767px) {
  .scroll-to-top {
    margin-top: 32px;
  }
}
.scroll-to-top__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #D3E9EB;
  color: #007E85;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 250ms;
  text-decoration: none;
}
@media (max-width: 767px) {
  .scroll-to-top__link {
    width: 56px;
  }
}
.scroll-to-top__link:hover {
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .scroll-to-top__link svg {
    width: 24px;
    aspect-ratio: 1/1;
  }
}
.scroll-to-top__link path {
  transition: fill 250ms;
}
.scroll-to-top__link path:is(.scroll-to-top__link:hover *) {
  fill: #00A5AD;
}

/* ============================================
   Footer
============================================ */
.footer {
  background-color: #D3E9EB;
  padding: 20px 0 22px;
}
@media (max-width: 767px) {
  .footer {
    padding: 12px 0 14px;
  }
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer__inner {
    gap: 1.5rem;
  }
}
.footer__copyright {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #404040;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 13px;
  }
}

/**
 * Component - 再利用可能なコンポーネント
 * ボタン、カード、フォーム要素など
 */
/* ============================================
   Button Component
   ============================================ */
.btn-wrapper {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .btn-wrapper {
    margin-top: 32px;
  }
}
.btn-wrapper--hero {
  text-align: left;
  margin-top: 56px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-wrapper--hero {
    text-align: center;
    margin-top: 36px;
  }
}
@media (max-width: 767px) {
  .btn-wrapper--hero {
    margin-top: 24px;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px 24px;
  border-radius: 100vmax;
  font-size: 24px;
  font-weight: 700;
  transition: transform 250ms;
  box-shadow: 0 4px 4px 0 rgba(107, 32, 48, 0.12);
}
@media (max-width: 767px) {
  .btn {
    width: 100%;
    max-width: 335px;
    padding: 18px 0 22px;
    font-size: 18px;
  }
}
.btn--primary {
  background: linear-gradient(90deg, #D1133C 0%, #CF3858 100%);
  color: #FFFFFF;
  line-height: 1.25;
}
.btn--primary::before {
  content: "";
  position: absolute;
  visibility: hidden;
  border-radius: 100vmax;
  transition: opacity 250ms, visibility 250ms;
  display: block;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  mix-blend-mode: soft-light;
}
.btn--primary:hover {
  transform: translate(0, -2px);
}
.btn--primary:hover::before {
  visibility: visible;
  opacity: 0.5;
}

/* ============================================
   Heading Component
   ============================================ */
.section__title {
  margin-bottom: 40px;
  color: #1A1A1A;
  font-size: 32px;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: block;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.section__title::before {
  content: "";
  position: absolute;
  left: -88px;
  width: 64px;
  height: 1px;
  background-color: #00A5AD;
  top: 50%;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .section__title::before {
    width: 24px;
  }
}
@media (max-width: 767px) {
  .section__title::before {
    left: -32px;
  }
}
.section__title::after {
  content: "";
  position: absolute;
  right: -88px;
  width: 64px;
  height: 1px;
  background-color: #00A5AD;
  top: 50%;
  transform: translateY(50%);
}
@media (max-width: 767px) {
  .section__title::after {
    width: 24px;
  }
}
@media (max-width: 767px) {
  .section__title::after {
    right: -32px;
  }
}
.section__title--intro {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .section__title--intro {
    font-size: 18px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.section__title--intro .section__title--highlight {
  color: #00A5AD;
  font-size: 36px;
  display: inline-block;
  transform: translateY(1.5px);
}
@media (max-width: 767px) {
  .section__title--intro .section__title--highlight {
    font-size: 20px;
    transform: translateY(1px);
  }
}
.section__title--main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767px) {
  .section__title--main {
    gap: 4px;
  }
}
.section__title--main::before, .section__title--main::after {
  display: none;
}
.section__title--en {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #20676B 0%, #00A5AD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .section__title--en {
    font-size: 64px;
  }
}
.section__title--ja {
  font-size: 32px;
  font-weight: 700;
  color: #467A7D;
  letter-spacing: 0.015em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .section__title--ja {
    font-size: 24px;
  }
}
.section__title--inverse {
  color: #FFFFFF;
}
.section__title--inverse .section__title--en,
.section__title--inverse .section__title--ja {
  color: #FFFFFF;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #404040;
  margin-top: 1rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .section__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section__subtitle--solution {
    font-size: 18px;
  }
}
.section__subtitle--introduction {
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .section__subtitle--introduction {
    margin-top: 16px;
  }
}

/* ============================================
   Wrapper Component
   ============================================ */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 36px;
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
  }
}
.wrapper--hero {
  max-width: 100%;
  padding-inline: 56px;
  position: relative;
}
@media (max-width: 767px) {
  .wrapper--hero {
    padding-inline: 0;
  }
}
.wrapper--cv {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.section--hero {
  position: relative;
  background-color: #F5F7F7;
  padding: 169px 0 180px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section--hero {
    padding: 150px 0 9.172vw;
  }
}
@media (max-width: 767px) {
  .section--hero {
    padding: 104px 0 9.6vw;
  }
}
.section--client-logo {
  background-color: #00A5AD;
  padding: 40px 0 64px;
}
@media (max-width: 767px) {
  .section--client-logo {
    padding: 24px 0 40px;
  }
}
.section--introduction {
  background-color: #F5F7F7;
  padding: 88px 0 180px;
}
@media (max-width: 767px) {
  .section--introduction {
    padding: 40px 0 88px;
  }
}
.section--solution {
  background-color: #D3E9EB;
  padding: 0 0 118px;
  display: grid;
  grid-template-rows: auto 1fr;
}
@media (max-width: 767px) {
  .section--solution {
    padding: 0 0 48px;
  }
}
.section__header--solution {
  margin-top: -60px;
}
@media (max-width: 767px) {
  .section__header--solution {
    margin-top: -36px;
  }
}
.section--case {
  background-color: #F5F7F7;
  padding: 64px 0 96px;
}
@media (max-width: 767px) {
  .section--case {
    padding: 32px 0 48px;
  }
}
.section--department {
  padding: 96px 0;
  background-color: #F5F7F7;
}
@media (max-width: 767px) {
  .section--department {
    padding: 48px 0;
  }
}
.section--howto {
  background-color: #F5F7F7;
  padding: 0px 0 60px;
}
@media (max-width: 767px) {
  .section--howto {
    padding: 0px 0 24px;
  }
}
.section--howto .wrapper {
  padding-top: 0px;
}
@media (max-width: 767px) {
  .section--howto .wrapper {
    padding-inline: 0;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}
.section--cv {
  padding: 60px 0 16px;
  background-color: #F5F7F7;
}
@media (max-width: 767px) {
  .section--cv {
    padding: 24px 0 16px;
  }
}
.section--reason {
  padding: 64px 0 112px;
  background-image: url("../img/reason_img.jpg");
  position: relative;
  background-position: 50% 50%;
}
.section--reason::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  opacity: 0.5;
  z-index: 1;
}
.section--reason .wrapper {
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .section--reason {
    padding: 32px 0 48px;
  }
}

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

@media (min-width: 992px) {
  .pc-hide {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .xl-hide {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .md-show {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .md-hide {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tb-hide {
    display: none !important;
  }
}

/**
 * Utility - ユーティリティクラス
 * 単一責務の小さなスタイルクラス
 * 例: u-hidden, u-sr-only, u-text-center
 */
/**
 * 表示/非表示
 */
.u-hidden {
  display: none !important;
}

.u-visible {
  display: block !important;
}

.u-invisible {
  visibility: hidden !important;
}

/**
 * スクリーンリーダー専用テキスト
 * ビジュアルには表示されないが、スクリーンリーダーには読まれる
 */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/**
 * テキスト配置
 */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

/**
 * テキスト修飾
 */
.u-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/**
 * 浮動
 */
.u-float-left {
  float: left !important;
}

.u-float-right {
  float: right !important;
}

.u-float-none {
  float: none !important;
}

/**
 * クリア
 */
.u-clearfix::after {
  display: table;
  clear: both;
  content: "";
}

/**
 * その他ユーティリティ
 */
.u-pointer-events-none {
  pointer-events: none !important;
}

.u-pointer-events-auto {
  pointer-events: auto !important;
}

.u-user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}