/* ========================================
   LPプロジェクト - 汎用CSSフレームワーク
   Flexboxベース / レスポンシブ重視 / 再利用可能
   ======================================== */

/* ========================================
   1. リセット & ベース設定
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /* デフォルトフォントサイズを基準にrem計算 */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  /* 基本の行間とテキストカラー */
}

.page-content {
  max-width: 1500px;
  margin: 110px auto 0;
  background-color: #FFFFFF;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* 画像のレスポンシブ対応とインライン余白の解消 */
}

a {
  text-decoration: none;
  color: inherit;
  /* リンクのデフォルトスタイルをリセット */
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
  /* ホバー時に透過 */
}

ul, ol {
  list-style: none;
  /* リストスタイルをリセット（グローバルナビ等で使用） */
}

/* ========================================
   2. コンテナシステム
   max-width + margin: 0 auto で中央寄せ
   固定パディングではなく、コンテンツ幅で管理
   ======================================== */

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  /* 中央寄せ: 固定パディングではなく、max-widthで幅を制限 */
  padding: 0 20px;
  /* コンテナ内の最小パディング: レスポンシブ対応のため最小値を設定 */
}

/* コンテナ内のパディングは必要に応じて個別に設定
   セクション単位で .section { padding: 60px 20px; } ではなく
   コンテナ内で .container { padding: 60px 20px; } のように管理 */

/* ========================================
   3. Flexboxレイアウトシステム
   display: flex + gap でオートレイアウトを再現
   ======================================== */


/* ========================================
   4. 汎用コンポーネント
   再利用可能なレイアウトパターン
   ======================================== */

/* グリッドレイアウト（Flexboxで実現） */
.grid {
  display: flex;
  flex-wrap: wrap;
  /* グリッド風レイアウトをFlexboxで実現 */
}

/* カードレイアウト */
.card {
  display: flex;
  flex-direction: column;
  /* カード内のコンテンツを縦方向に配置 */
}

/* 中央寄せコンテンツ */
.content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* テキストと要素の両方を中央寄せ */
}

/* ========================================
   5. レスポンシブブレイクポイント
   1000px, 768px, 480px
   ======================================== */



/* 改行ユーティリティクラス */
.br-mobile {
  display: none;
  /* モバイル改行: デフォルトでは非表示 */
}

.br-mobile-480 {
  display: none;
  /* 480px以下専用改行: デフォルトでは非表示 */
}

.br-1250 {
  display: none;
  /* 1250px以下専用改行: デフォルトでは非表示 */
}

.span-1250 {
  display: inline;
  /* 1250px以下専用span: デフォルトでは表示 */
}

.br-desktop {
  display: block;
  /* デスクトップ改行: デフォルトでは表示 */
}

/* ========================================
   6. ユーティリティクラス
   よく使うスタイルをクラス化
   ======================================== */

/* 表示/非表示 */
.hidden {
  display: none;
}

/* 幅のユーティリティ */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

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

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

.text-right {
  text-align: right;
}

/* マージン（必要に応じて追加） */
.m-auto {
  margin: 0 auto;
}

/* ========================================
   7. プロジェクト固有のスタイル
   ガッツレンタカーLP - Figmaデザイン準拠
   ======================================== */

/* セクション共通 */
.section {
  width: 100%;
  /* セクション幅は100%で、コンテナ内で中央寄せ */
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  width: 100%;
  max-width: 1500px;
  background-color: #FFFFFF;
  padding: 0 20px;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
}

.header.header--scrolled {
  box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.35);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo-guts {
  display: block;
  height: auto;
  width: 100%;
  max-width: 317px;
}
.header-logo-aisei{
  display: block;
  height: auto;
  width: 100%;
  max-width: 233px;
}

.header-nav-wrapper {
    display: flex;
    align-items: stretch;
    gap: 20px;
    height: 110px;
    width: auto;
}

.header-nav-item {
  display: flex;
  align-items: center;
  /* ナビゲーション項目: 横並び */
}

.header-web-reservation {
  background-color: #9ADB3A;
  padding: 21px 0;
  /* Web予約ボタン: 緑背景 */
}

.header-nav-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 20px 90px;
  /* コンテンツ部分: テキストと矢印、左側にアイコン分のパディング */
  position: relative;
  /* 疑似要素の基準位置 */
}

.header-nav-content::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 37px;
    background-image: url(images/web-reservation-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-web-reservation {
  color: #050505;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
  /* ボタンテキスト: リンクスタイル */
}

.header-arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
  width: 33px;
  height: 33px;
  z-index: 10;
  transition: transform 0.3s ease;
  /* ホバー時のアニメーション用 */
}

.header-nav-content:hover .header-arrow {
  transform: translateX(-50%) translateY(calc(50% + 5px));
  /* 全体ホバー時に矢印を下に少し移動 */
}

.header-tel {
  background-color: #FFFFFF;
  /* 電話番号部分: 白背景 */
}

.header-tel-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 20px 10px 28px;
  /* 電話番号コンテンツ: 縦並び、左側にアイコン分のパディング */
  position: relative;
  /* 疑似要素の基準位置 */
}

.header-tel-content::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 22px;
    height: 29px;
    background-image: url(images/tel-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-tel-number {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1em;
  color: #000000;
  /* 電話番号: 太字、30px */
}

.header-tel-hours {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  /* 受付時間: 14px */
}

/* ========================================
   ファーストビュー
   ======================================== */
.fv {
  position: relative;
  /* FVセクション: 相対配置（タイトルを絶対配置するため） */
  background-color: #9ADB3A;
  /* FV背景色: ライムグリーン */
}

.fv .container {
  position: relative;
  /* 絶対配置の基準位置 */
  max-width: 1500px;
  /* FV専用のmax-width: Figmaデザイン準拠 */
  /* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */
}

.fv-content {
  display: flex;
  align-items: center;
  gap: 50px;
  /* Flexbox + gap: オートレイアウトを再現、要素間のスペースを自動管理 */
}

.fv-image {
  width: 830px;
  min-height: 831px; /* 最小高さを指定 */
  background-image: url('images/fv-car.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 0 30px 30px 0;
  /* 背景画像: 右側のみ角丸、アスペクト比を維持 */
}

.fv-top-image {
  width: 100%;
  display: block;
  /* 高さは指定しない: プロジェクトルールに準拠 */
}

.fv-title-container {
  position: absolute;
  left: 40px;
  bottom: -15px;
  /* FVタイトルコンテナ: .containerを基準に左40px、下0に配置 */
}

.fv-title {
  display: block;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応（1.5倍で書き出し） */
}

.fv-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 20px;
  /* テキストエリア: 縦並び、gapでスペース管理 */
}

.fv-price-container {
  display: flex;
  flex-direction: column;
  width: 535px;
  /* 価格コンテナ: 固定幅 */
}

.fv-price-box-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 45px 45px 30px;
  background-color: #FFFF00;
  border: 5px solid #000000;
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  /* 価格ボックス上部: 黄色背景、上部のみ角丸 */
}

.fv-price-box-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 45px 45px;
  background-color: #FFFFFF;
  border: 5px solid #000000;
  border-radius: 0 0 30px 30px;
  /* 価格ボックス下部: 白背景、下部のみ角丸 */
}

.fv-price-label {
  display: block;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.fv-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* 価格リスト: 縦並び */
}

.fv-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 23px;
  padding: 15px 0 25px;
  border-bottom: 2px dashed #000000;
  /* 価格項目: 期間ラベルと価格表示の間隔 */
}

.fv-price-period {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: #000000;
  color: #FFFFFF;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  border: 1px solid #000000;
  width: 112px;
  /* 期間ラベル: 24時間、1週間、1ヶ月 */
}

.fv-price-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* 価格表示エリア: 縦並び */
}

.fv-price-main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* 価格メイン部分: 価格と単位を横並び */
}

.fv-price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 93px;
  line-height: 1em;
  color: #FF5B5B;
  /* 価格金額: 大きな赤文字 */
}

.fv-price-unit {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 39px;
  line-height: 1.4;
  color: #FF5B5B;
  width: 78px;
  height: 93px;
  display: flex;
  align-items: flex-end;
  /* 価格単位: "円〜" */
}

.fv-price-tax {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1em;
  color: #000000;
  text-align: right;
  /* 税込価格: 右寄せ */
}

/* ========================================
   CTAセクション
   ======================================== */
.cta {
  position: relative;
  /* ガッツくん画像の絶対配置の基準 */
  background-color: #1C3981;
  /* CTA背景色: 青（フォールバック） */
  background-image: url('images/dot_blue_back.png');
  background-repeat: repeat;
  background-position: 0 0;
  /* 背景画像: ドットパターンを繰り返し表示 */
  padding: 50px 0;
  /* 上下パディング: 50px */
}

.cta-guts {
  position: absolute;
  right: 30px;
  bottom: 30px;
  /* 右下に配置 */
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  /* Flexbox + gap: コンテンツを縦方向に配置、中央寄せ */
}

.cta-text {
  color: #FFFFFF;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* Flexbox + gap: ボタンを縦方向に配置、中央寄せ */
}

.btn-cta-primary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 25px 110px 25px 64px;
  /* 右側パディング: 元の64px + 画像幅33px + gap 13px = 110px */
  background-color: #FFFF00;
  /* ボタン背景色: 黄 */
  border-radius: 127px;
  /* 角丸: 127px（完全に丸いボタン） */
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.25);
  /* ボックスシャドウ */
  position: relative;
  /* 疑似要素の基準位置 */
  transition: background-color 0.3s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* ホバー時のアニメーション用：より滑らかなイージング */
  animation: btn-bounce 2s ease-in-out infinite;
  /* カチカチ動くアニメーション */
}

.btn-cta-primary:hover {
  animation: none;
  /* ホバー時はアニメーションを停止 */
  background-color: #FFFFFF;
  /* ホバー時に背景を白に変更 */
  opacity: 1;
}

@keyframes btn-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-cta-primary::after {
  content: '';
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  background-image: url('images/arrow_right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* 右矢印画像: 右側に配置、元の右パディング64pxの位置 */
}

.btn-badge {
  display: inline-block;
  padding: 13px 25px;
  background-color: #1C3981;
  /* バッジ背景色: 青 */
  color: #FFFFFF;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  border-radius: 50px;
}

.btn-text {
  color: #1C3981;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.4;
}


.cta-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  /* Flexbox + gap: 電話番号とテキストを横並び、中央揃え */
}

.cta-tel-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
}

.cta-tel-number {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1em;
}

/* ========================================
   選ばれる理由セクション
   ======================================== */
.reasons {
  padding: 50px 0;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-image: url('images/reason_back.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* 背景画像: リピート無し、containで中央配置 */
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.reasons-title-group {
  display: flex;
  justify-content: center;
  align-items: center;
  /* タイトルグループ: 中央配置 */
}

.reasons-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
  /* Flexbox + gap: ヘッダーを縦方向に配置、中央寄せ */
}

.reasons-title-image {
  display: block;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応（1.5倍で書き出し） */
}

.reasons-cards {
  display: flex;
  gap: 50px;
  max-width: 1112px;
  margin: 0 auto;
  /* Flexbox + gap: カードを横並び、コンテンツ幅最大1112px、中央寄せ */
}

.reason-card {
    flex: 1;
    border-radius: 30px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 3px solid;
}

.reason-card-header {
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-color: #FFFF00;
  border-bottom: 3px solid #000000;
  padding: 30px;
  min-height: 226px;
  /* ヘッダー最小高さ: デザイン準拠 */
}

.reason-card-logo {
  width: 112px;
  height: 70px;
  object-fit: cover;
  /* Gロゴ: サイズ固定 */
}

.reason-card-title {
  font-family: 'Noto Serif', serif;
  font-weight: 600;
  font-size: clamp(21px, calc(35px - (1100px - 100vw) * 14 / 331), 35px);
  line-height: 1.4;
  color: #FF5B5B;
  text-align: center;
  margin-top: 10px;
  /* カードタイトル: 赤色、1100px〜769pxで21pxまで可変 */
}

.reason-card-body {
  padding: 30px;
  background-color: #FFFFFF;
  border-top: none;
}

.reason-card-text {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.6;
  color: #000000;
  /* カード本文: 行間1.6で読みやすく */
}

/* ========================================
   3冠獲得セクション
   ======================================== */
.awards {
  padding: 100px 0;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-color: #FFFFFF;
  border: 40px solid #3ABE3A;
  /* ボーダー: 40px グリーン（デザイン準拠） */
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.awards-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  max-width: 1112px;
  margin: 0 auto;
  /* Flexbox + gap: コンテンツを縦方向に配置、中央寄せ、コンテンツ幅最大1112px */
}

.awards-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.4;
  color: #000000;
}

.awards-title {
  position: relative;
  /* 疑似要素の基準位置 */
  z-index: 1;
  /* 文字を前面に配置 */
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.4;
  color: #3ABE3A;
  padding-bottom: 0;
}

.awards-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 23px;
  background-color: #FFFF00;
  z-index: -1;
  /* 文字の裏に配置: 下線: 23px 黄 */
}

.awards-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-right: 194px;
  /* Flexbox + gap: ヘッダーを縦方向に配置、右側に194pxのパディング: 背景画像のスペース */
}

.awards-header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 194px;
  height: 100%;
  background-image: url('images/guts-pose-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* 背景画像: 右側に配置 */
}
.awards-cards {
  display: flex;
  gap: 50px;
  width: 100%;
  /* Flexbox + gap: カードを横並び */
}
.award-card {
  width: calc((100% - 100px) / 3);
  /* gap: 50px * 2 = 100px、3つのカードで均等分割 */
  border-radius: 30px;
  overflow: hidden;
  /* 角丸30px、画像が角丸に収まるようにoverflow: hidden */
}

.award-card-image {
  width: 100%;
  display: block;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.award-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  /* カードヘッダー: タイトルとバッジを縦並び */
}

.award-card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  /* カードボディ: No.1を中央配置 */
}

.award-card-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 15px;
}

.award-badge {
  display: inline-block;
  padding: 7px 20px;
  background-color: #FFFF00;
  color: #259125;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  border-radius: 34px;
}

.award-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 150px;
  line-height: 0.8;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 47%, rgba(212, 219, 0, 1) 100%);
  /* グラデーションテキスト */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.awards-image {
  display: block;
  margin: 0 auto;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.awards-note {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #000000;
  margin-top: 20px;
  /* 注釈テキスト: 小さめのフォントサイズ */
}

/* ========================================
   会社情報セクション
   ======================================== */
.company-info {
  background: rgba(20, 48, 91, 0.85);
  background-image: url('images/aisei_back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 背景画像: aisei_back.jpgを中央に配置、オーバーレイで半透明の青を重ねる */
  padding: 50px 0;
  width: 100%;
  margin: 0 auto;
}

.company-info .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.company-content-wrapper {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.company-logo-section {
  width: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.company-logo {
  max-width: 489px;
  width: 100%;
  height: auto;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.company-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  width: 100%;
}

.company-intro-title {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.448;
  text-align: center;
  color: #13305E;
}

.company-intro-text {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.429;
  text-align: center;
  color: #000000;
}

.company-badge {
  background-color: #14305B;
  padding: 10px 30px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.company-badge-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.362;
  text-align: center;
  color: #FFFFFF;
}

.company-description {
  width: 100%;
  padding: 20px 0 40px;
}

.company-description-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
}

.company-services {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 20px;
}

.service-item {
  flex: 1;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.service-icon {
  width: 72px;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
  object-fit: contain;
}

.service-name {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: #00264D;
  text-align: center;
  flex: 1;
}

/* ========================================
   最終CTAセクション
   ======================================== */
.final-cta {
  padding: 50px 0;
  background-color: #1C3981;
  /* 背景色: 青（フォールバック） */
  background-image: url('images/dot_blue_back.png');
  background-repeat: repeat;
  background-position: 0 0;
  /* 背景画像: ドットパターンを繰り返し表示 */
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  /* Flexbox + gap: コンテンツを縦方向に配置、中央寄せ */
}

.final-cta-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
}

.final-cta-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
}

.final-cta-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Flexbox + gap: 電話番号を縦方向に配置、中央寄せ */
}

.final-cta-tel-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  color: #FFFFFF;
}

.final-cta-tel-number {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1em;
  color: #FFFFFF;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  position: relative;
  padding: 20px 0 0;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-color: #FFFFFF;
}

.footer-gats {
  position: absolute;
  right: 14px;
  bottom: 50px;
  width: auto;
  /* 高さは指定しない: プロジェクトルールに準拠 */
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  /* Flexbox + gap: コンテンツを縦方向に配置、中央寄せ */
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Flexbox + gap: 情報を縦方向に配置 */
}

.footer-logo img {
  width: 373px;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.footer-store {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  color: #000000;
  text-align: center;
}

.footer-tel {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.4;
  color: #E60012;
  text-align: center;
}

.footer-tel a {
  color: #E60012;
  text-decoration: none;
}

.footer-hours,
.footer-address {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
}

.footer-copyright {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: #FFFFFF;
  background-color: #3ABE3A;
  text-align: center;
  margin-top: 20px;
  padding: 20px 0;
}

/* ========================================
   下部固定CVボタン
   ======================================== */
.cv-buttons {
  display: none;
  /* デフォルトでは非表示 */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  gap: 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cv-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cv-button:hover {
  opacity: 1;
  /* 透過しない */
}

.cv-button-web {
  background-color: #3ABE3A;
  /* 緑系の背景色 */
}

.cv-button-web:hover {
  background-color: #FFFFFF;
  /* ホバー時に白背景に */
  color: #3ABE3A;
  /* ホバー時に緑文字に */
  opacity: 1;
  /* 透過しない */
}

.cv-button-web span {
  display: inline;
}

.cv-button-tel {
  background-color: #1C3981;
  /* 青系の背景色 */
}

.cv-button-tel:hover {
  background-color: #FFFFFF;
  /* ホバー時に白背景に */
  color: #1C3981;
  /* ホバー時に青文字に */
  opacity: 1;
  /* 透過しない */
}

.voice-cards {
  display: flex;
  gap: 20px;
  /* Flexbox + gap: カードを横並び */
}

.voice-card {
  width: calc((100% - 2.5rem) / 3);
  /* gap-20 (1.25rem) * 2 = 2.5rem、3つのカードで均等分割 */
  background-color: #FFFFFF;
  border: 6px solid #3ABE3A;
  border-radius: 13px;
  padding: 30px 25px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.voice-image {
  width: 163px;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
  margin: 0 auto;
}

.voice-author {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.5;
  color: #3ABE3A;
  text-align: center;
  margin: 20px 0;
}

.voice-text {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}

.voice-decoration {
  position: absolute;
  left: 50%;
  top: -87px;
  transform: translateX(-50%) translateY(-50%);
  /* 横中央の上部に配置: 高さの半分上に配置 */
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

/* ========================================
   料金表セクション
   ======================================== */
.price {
  padding: 100px 0;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-color: #FFFFFF;
  background-image: url('images/tile_back.png');
  background-repeat: repeat;
  background-position: 0 0;
  /* 背景画像: 電話アイコンを繰り返し表示 */
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.price-content {
  max-width: 1312px;
  margin: 0 auto;
  /* コンテンツ幅最大1312px、中央寄せ */
}

.price-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 1em;
  color: #3ABE3A;
  background-color: #3ABE3A;
  color: #FFFFFF;
  padding: 30px 0;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.price-table-wrapper {
  width: 100%;
  overflow-x: auto;
  /* テーブルラッパー: 横スクロール可能 */
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  /* テーブルボーダーを結合 */
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
}

.price-table thead {
  background-color: #9ADB3A;
  /* ヘッダー背景色: ライムグリーン */
}

.price-table th {
  padding: 20px 0;
  border-right: 1px solid #FFFFFF;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1em;
  color: #000000;
  text-align: center;
}

.price-table th:last-child {
  border-right: none;
  /* 最後のセルは右ボーダーなし */
}

.price-table tbody tr {
  border-bottom: 1px solid #D3D3D3;
}

.price-table tbody tr:last-child {
  border-bottom: none;
  /* 最後の行は下ボーダーなし */
}

.price-table td {
  padding: 10px 20px;
  border-right: 1px solid #D3D3D3;
  vertical-align: middle;
  text-align: center;
  /* テーブルセル: 中央配置 */
}

.price-table td:last-child {
  border-right: none;
  /* 最後のセルは右ボーダーなし */
}

.price-table-cell-label {
  background-color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 1em;
  color: #000000;
  text-align: left;
  /* ラベルセルは左寄せ */
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0;
  justify-content: center;
  /* Flexbox: 金額と単位を横並び、中央配置 */
  margin-bottom: 15px;
}

.price-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1em;
  color: #3ABE3A;
}

.price-unit {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1em;
  color: #3ABE3A;
}

.price-tax {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
  color: #000000;
}

.price-note {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #0C0C0C;
  background-color: #EFEFEF;
  padding: 30px 20px;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

/* ========================================
   ご利用の流れセクション
   ======================================== */
.flow {
  padding: 100px 0;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-color: #9ADB3A;
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.flow-content {
  position: relative;
  /* 絶対配置の基準位置 */
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1112px;
  margin: 0 auto;
  /* Flexbox + gap: コンテンツを縦方向に配置、コンテンツ幅最大1112px、中央寄せ */
}

.flow-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  /* Flexbox + gap: ヘッダーを縦方向に配置、中央寄せ */
}

.flow-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  color: #000000;
}

.flow-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #000000;
}

.flow-subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  color: #000000;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 82px;
  /* Flexbox + gap: ステップ間のスペースを自動管理、縦方向に配置 */
  position: relative;
  /* 相対配置: ロゴの絶対配置の基準 */
}

.flow-step {
  position: relative;
  /* 疑似要素の基準位置 */
  display: flex;
  flex-direction: column;
  /* Flexbox: ステップ内を縦方向に配置 */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  /* カードシャドウ */
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -60px;
  /* gap: 82pxの半分（41px）下に配置 */
  left: 50%;
  transform: translateX(-50%);
  /* 横中央配置 */
  width: 33px;
  height: 33px;
  background-image: url('images/arrow-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* 矢印画像: gapの上下中央に配置 */
}

.flow-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Flexbox + gap: 番号とタイトルを横並び */
  padding: 22px 32px;
  background-color: #008800;
  /* ヘッダー背景色: ダークグリーン */
}

.flow-step-number {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  color: #FFFFFF;
}

.flow-step-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 1.1;
  color: #FFFFFF;
}

.flow-step-body {
  padding: 30px 50px;
  background-color: #FFFFFF;
}

.flow-step-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.7;
  color: #000000;
}

.flow-logo {
  position: absolute;
  /* 絶対配置: デザイン上の位置を再現 */
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  /* 中央配置: top 0、横中央 */
  width: 273px;
  /* ロゴサイズ: Figmaデザイン準拠 */
}

/* ========================================
   お客様の声セクション
   ======================================== */
.voice {
  padding: 60px 0;
  background-color: #FFFFFF;
  border: 40px solid #3ABE3A;
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.voice-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  position: relative;
  /* 絶対配置の基準位置 */
  max-width: 1112px;
  margin: 0 auto;
  width: 100%;
  /* Flexbox + gap: コンテンツを縦方向に配置、中央寄せ、コンテンツ幅最大1112px */
}

.voice-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* Flexbox + gap: ヘッダーを縦方向に配置、中央寄せ */
}

.voice-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
  color: #000000;
}

.voice-title {
  position: relative;
  /* 疑似要素の基準位置 */
  z-index: 1;
  /* 文字を前面に配置 */
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.4;
  color: #3ABE3A;
  padding-bottom: 0;
}

.voice-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 23px;
  background-color: #FFFF00;
  z-index: -1;
  /* 文字の裏に配置: 下線: 23px 黄 */
}

/* ========================================
   FAQセクション
   ======================================== */
.faq {
  padding: 100px 0;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-color: #FFFFFF;
  background-image: url('images/tile_back.png');
  background-repeat: repeat;
  background-position: 0 0;
  /* 背景画像: タイルパターンを繰り返し表示 */
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  /* Flexbox + gap: コンテンツを縦方向に配置、中央寄せ、絶対配置の基準位置 */
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* Flexbox + gap: ヘッダーを縦方向に配置、中央寄せ */
}

.faq-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
  color: #000000;
}

.faq-title {
  position: relative;
  /* 疑似要素の基準位置 */
  z-index: 1;
  /* 文字を前面に配置 */
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.4;
  color: #3ABE3A;
  padding-bottom: 0;
}

.faq-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 23px;
  background-color: #FFFF00;
  z-index: -1;
  /* 文字の裏に配置: 下線: 23px 黄、文字の下部に5px被る */
}

.faq-list {
  display: block;
  /* ブロック要素: dl要素のデフォルト表示 */
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  /* dl要素: 定義リスト */
}


.faq-list dd {
  margin: 0;
  /* ddのデフォルトマージンをリセット */
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #3ABE3A;
  padding: 22px 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  /* クリック可能 */
  transition: border-radius 0.3s ease;
  /* 角丸のアニメーション */
  margin: 20px 0 0;
}

.faq-question.active {
  border-radius: 10px 10px 0 0;
  /* アクティブ時: 上側のみ角丸 */
}

.faq-question::after {
  content: '';
  margin-left: auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  /* 下向きV字（丸みあり）: SVGで作成、右側に配置 */
}

.faq-question.active::after {
  transform: rotate(180deg);
  /* アクティブ時: 180度回転して上向きに */
}

.faq-q {
  font-family: 'Futura PT', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #FFFF00;
  /* Qマーク: 黄色 */
}

.faq-question-text {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  color: #FFFFFF;
  flex: 1;
  /* 質問テキスト: Qマークの横に配置 */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  /* デフォルトで非表示: max-heightでアニメーション */
  opacity: 0;
  background-color: #FBFDE9;
  padding: 0 30px;
  border-radius: 0 0 10px 10px;
  margin-bottom: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease;
  /* スムーズなアニメーション */
}

.faq-answer.active {
  max-height: 2000px;
  /* 十分に大きな値: コンテンツが収まるように */
  opacity: 1;
  padding: 20px 30px;
  margin-bottom: 30px;
  /* アクティブ時: 表示、アコーディオン間の余白 */
}

.faq-decoration {
  position: absolute;
  /* 絶対配置: デザイン上の位置を再現 */
  right: 50%;
  transform: translateX(50%);
  top: -177px;
  width: 193px;
  /* ロゴサイズ: Figmaデザイン準拠 */
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.faq-answer p {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: #000000;
  white-space: pre-line;
  /* 改行を保持: <br>タグで改行されたテキストを正しく表示 */
}

/* ========================================
   店舗紹介セクション
   ======================================== */
.store {
  position: relative;
  padding: 80px 0 130px;
  /* 上下パディングのみ: 左右はコンテナで管理 */
  background-color: #3ABE3A;
}

.store-logo {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  /* 高さは指定しない: プロジェクトルールに準拠 */
}

/* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */

.store-content {
  max-width: 1112px;
  margin: 0 auto;
  width: 100%;
  /* コンテンツ幅最大1112px、中央寄せ */
}

.store .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-bottom: 30px;
}

.store-title-image {
  display: block;
  /* 高さは指定しない: プロジェクトルールに準拠（背景画像は除く） */
  /* HTMLのwidth属性でRetina対応 */
}

.store-info-content {
  width: 100%;
  display: flex;
  gap: 30px;
  background-color: #FFFFFF;
  padding: 30px;
}

.store-info-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.store-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.store-address {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.362;
  color: #000000;
}

.store-tel {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1em;
  color: #3ABE3A;
}

.store-tel a {
  color: #3ABE3A;
  text-decoration: none;
}

.store-hours,
.store-holiday {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.362;
  color: #000000;
}

.store-map {
  width: 100%;
  height: 322px;
}

.store-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.store-info-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.store-image {
  width: 100%;
  height: 341px;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-message {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5em;
  color: #000000;
}

/* ========================================
   レスポンシブ対応（メディアクエリ）
   ======================================== */
@media (max-width: 1250px) {
  .br-1250 {
    display: block;
    /* 1250px以下: 改行を表示 */
  }
  
  .span-1250 {
    display: none;
    /* 1250px以下: spanを非表示 */
  }
}

@media (max-width: 1200px) {
  .awards-label {
    font-size: 30px;
  }
  
  .awards-title {
    font-size: 70px;
  }
}

@media (max-width: 1000px) {
  .company-logo-section {
    max-width: 100%;
    width: 100%;
    /* タブレット: 画像の最大幅を制限 */
  }
  
  .awards-header::after {
    display: none;
    /* 1000px以下: 背景画像を非表示 */
  }
  
  .awards-header {
    padding-right: 0;
    /* 1000px以下: 右パディングを削除 */
  }
  
  .reason-card-header {
    padding: 20px;
    min-height: 0;
    /* 1000px以下: パディングと最小高さを調整 */
  }
  
  .reason-card-body {
    padding: 20px;
    /* 1000px以下: パディングを調整 */
  }
  
  .reasons-cards {
    gap: 30px;
    /* タブレット: カードを縦並びに */
  }
  
  .awards-cards {
    gap: 30px;
    /* タブレット: gapを縮小 */
  }
  
  .award-card {
    width: calc((100% - 60px) / 3);
    /* gap: 30px * 2 = 60px、3つのカードで均等分割 */
  }
  
  .voice-cards {
    gap: 20px;
    /* タブレット: カードを縦並びに */
  }
  
  .company-services {
    grid-template-columns: repeat(2, 1fr);
    /* タブレット: グリッドを2列に変更 */
  }
  
  .voice-card {
    width: 100%;
    padding: 20px;
    /* 1000px以下: カード幅を100%に、パディングを調整 */
  }
  
  .reason-card-text {
    font-size: 20px;
  }
  
  .voice-author {
    font-size: 16px;
  }
  
  .btn-badge {
    font-size: 16px;
  }
  
  .btn-text {
    font-size: 26px;
  }
  
  .cta-text {
    font-size: 32px;
  }
  
  .cta-tel {
    flex-direction: column;
  }
  
  .awards-label {
    font-size: 26px;
  }
  
  .awards-title {
    font-size: 60px;
  }
  
  .faq-question-text {
    font-size: 26px;
  }
  
  .store-tel {
    font-size: 36px;
  }
  
  .final-cta-tel {
    flex-direction: column;
  }
  
  .footer-gats {
    display: none;
  }
}

@media (max-width: 1400px) {
  .cta-guts {
    right: 0px;
    width: 200px;
    /* 1400px以下: 位置とサイズを調整 */
  }
}

@media (max-width: 1240px) {
  .cta-guts {
    bottom: 220px;
    width: 150px;
    /* 1240px以下: 位置とサイズを調整 */
  }
}

@media (max-width: 1080px) {
  .header-nav-wrapper {
    display: none;
    /* 1080px以下: ヘッダーナビゲーションを非表示 */
  }
  
  .cta-guts {
    display: none;
    /* 1080px以下: ガッツくん画像を非表示 */
  }
  
  .cv-buttons {
    display: flex;
    background-color: #fff;
    /* 1080px以下: 下部固定CVボタンを表示 */
  }
  
  body {
    padding-bottom: 70px;
    /* CVボタンの高さ分のパディングを追加 */
  }
  .page-content {
    margin: 103px auto 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
    /* スマートフォンではベースフォントサイズを小さく */
  }
  .page-content {
    margin: 81px auto 0;
  }
  .gap-responsive {
    gap: 1rem;
    /* モバイルではgapを縮小 */
  }
  
  .br-desktop {
    display: none;
    /* モバイル: デスクトップ改行を非表示 */
  }
  
  .br-mobile {
    display: block;
    /* モバイル: モバイル改行を表示 */
  }
  
  .header-logo {
    gap: 10px;
    /* モバイル: 左パディングを縮小、gapも縮小 */
  }
  
  .header-logo-aisei,
  .header-logo-guts {
    max-width: 150px;
    height: auto;
    /* モバイル: ロゴサイズを縮小 */
  }
    
  .header-web-reservation,
  .header-tel {
    width: 100%;
    /* モバイル: 全幅表示 */
  }
  
  .header-tel-content {
    display: none;
    /* モバイル: 電話番号詳細を非表示（スペースの都合） */
  }
  
  .fv-title-container {
    position: static;
    /* モバイル: 絶対配置を解除 */
    margin-top: 20px;
    /* タイトルにマージンを追加 */
  }
  
  /* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */
  
  .fv-content {
    flex-direction: column;
    /* 縦並びに変更: モバイル表示に最適化 */
    gap: 20px;
    /* gapを縮小: モバイル表示に最適化 */
  }
  
  .fv-badge {
    font-size: 20px;
    /* バッジフォントサイズを縮小 */
  }
  
  .fv-price-container {
    width: 100%;
    max-width: 535px;
    /* 価格コンテナ: レスポンシブ対応 */
  }
  
  .fv-price-label {
    max-width: 100%;
    /* モバイル: 画像の最大幅を制限 */
  }
  
  .fv-price-period {
    font-size: 18px;
    width: 60px;
    /* 期間ラベル: フォントサイズと幅を縮小 */
  }
  
  .fv-price-amount {
    font-size: 60px;
    /* 価格金額: モバイルで縮小 */
  }
  
  .fv-price-unit {
    font-size: 25px;
    width: 50px;
    height: 60px;
    /* 価格単位: モバイルで縮小 */
  }
  
  .fv-price-tax {
    font-size: 18px;
    /* 税込価格: モバイルで縮小 */
  }
  
  .fv-title {
    max-width: 100%;
    /* モバイル: 画像の最大幅を制限 */
  }
  
  .reason-card-title {
    font-size: 28px;
    /* カードタイトル: フォントサイズを縮小 */
  }
  
  .reason-card-text {
    font-size: 20px;
    /* カード本文: フォントサイズを縮小 */
  }
  
  .faq-q {
    font-size: 30px;
    /* Qマーク: フォントサイズを縮小 */
  }
  
  .faq-question-text {
    font-size: 24px;
    /* 質問テキスト: フォントサイズを縮小 */
  }
  
  .cta-text {
    font-size: 28px;
    /* フォントサイズを縮小: 可読性を維持 */
  }
  
  .btn-text {
    font-size: 22px;
    /* ボタンテキストサイズを縮小: タップしやすさを維持 */
  }
  
  .reasons-title-image {
    max-width: 100%;
    /* タブレット: 画像の最大幅を制限 */
  }
  
  .awards-title {
    font-size: 50px;
    /* フォントサイズを縮小: 可読性を維持 */
  }
  
  .award-number {
    font-size: 100px;
    /* フォントサイズを縮小: 可読性を維持 */
  }
  
  /* パディングで管理せず、max-widthとmargin: 0 autoで中央寄せを管理 */
  /* 料金表はレスポンシブ時も通常のテーブル構造を維持し、
     行方向に「軽自動車（A-1クラス）／コンパクト（C-1クラス）」、
     列方向に「車種クラス／24時間／1週間／1ヶ月」となるFigmaレイアウトを再現 */
  
  .price-table-wrapper {
    overflow-x: auto;
    /* 1000px以下: テーブルラッパー内で横スクロール可能にする */
  }
  
  .price-table {
    min-width: 600px;
    /* テーブルの最小幅を設定: 横スクロールが発生するように */
  }
 
  
  
  .store-info-content {
    flex-direction: column;
    padding: 20px;
    /* モバイル: 縦並びに変更、パディングを縮小 */
  }
  
  .company-logo-section {
    width: 100%;
    /* モバイル: 幅を100%に */
  }
  
  .company-services {
    grid-template-columns: 1fr;
    /* モバイル: グリッドを1列に変更 */
  }
  
  .company-intro-title {
    font-size: 34px;
  }
  
  .company-content-wrapper {
    gap: 0;
  }
  
  .company-intro-text {
    font-size: 20px;
  }
  
  .company-badge-text {
    font-size: 18px;
  }
  
  .reasons-cards {
    gap: 20px;
    /* モバイル: gapを縮小 */
  }
  
  .awards-cards {
    gap: 20px;
    /* モバイル: gapをさらに縮小 */
  }
  
  .award-card {
    width: calc((100% - 40px) / 3);
    /* gap: 20px * 2 = 40px、3つのカードで均等分割 */
  }
  
  .voice-cards {
    flex-direction: column;
    gap: 30px;
    /* モバイル: カードを縦並びに、gapを縮小 */
  }

  
  .final-cta-title {
    font-size: 30px;
    /* 768px以下: フォントサイズを調整 */
  }
  
  .final-cta-text {
    font-size: 20px;
    /* 768px以下: フォントサイズを調整 */
  }
  
  .final-cta-tel-number {
    font-size: 40px;
    /* モバイル: フォントサイズを縮小 */
  }
  
  .final-cta-tel-text {
    font-size: 20px;
    /* モバイル: フォントサイズを縮小 */
  }
  
  .footer-tel {
    font-size: 40px;
    /* モバイル: フォントサイズを縮小 */
  }
  
  .footer-store {
    font-size: 20px;
    /* モバイル: フォントサイズを縮小 */
  }
  
  .footer-hours,
  .footer-address {
    font-size: 18px;
    /* モバイル: フォントサイズを縮小 */
  }
  
  .footer-copyright {
    font-size: 13px;
    /* モバイル: フォントサイズを縮小 */
  }
  
  .reasons-cards {
    flex-direction: column;
    /* タブレット: カードを縦並びに */
  }
  
  .btn-cta-primary::after {
    right: 34px;
  }
  
  .btn-cta-primary {
    padding: 10px 80px 10px 64px;
    flex-direction: column;
  }
  
  .cta-text {
    font-size: 20px;
  }
  
  .reason-card-header {
    min-height: 0;
  }
  
  .awards-title {
    font-size: 36px;
  }
  
  .awards-content {
    gap: 20px;
  }
  
  .awards {
    padding: 30px 0;
    border: 20px solid #3ABE3A;
  }
  
  .price {
    padding: 60px 0;
  }
  
  .price-table th {
    font-size: 18px;
  }
  
  .price-main {
    font-size: 30px;
  }
  .price-unit {
    font-size: 18px;
  }
  .price-tax {
    font-size: 16px;
  }
  .price-table-cell-label {
    font-size: 18px;
  }
  
  .flow-logo {
    top: -160px;
    width: 220px;
}
  
  .flow-title {
    font-size: 32px;
  }
  
  .flow-subtitle {
    font-size: 20px;
  }
  
  .flow-step-title {
    font-size: 24px;
  }
  
  .flow-step-text {
    font-size: 18px;
  }
  
  .flow-step-header {
    padding: 20px;
    /* 768px以下: パディングを調整 */
  }
  
  .flow-step-body {
    padding: 20px;
    /* 768px以下: パディングを調整 */
  }
  
  .flow-label {
    font-size: 26px;
  }
  
  .voice-label {
    font-size: 26px;
  }
  
  
  .voice-title {
    font-size: 40px;
  }
  
  .voice-text {
    font-size: 18px;
  }
  
  .faq-title {
    font-size: 40px;
  }
  
  .faq-question-text {
    font-size: 22px;
  }
  
  .faq-answer p {
    font-size: 18px;
  }
  
  .store-message {
    font-size: 18px;
  }
  
  .store {
    padding: 80px 0 60px;
  }
  .voice-decoration {
    top: -80px;
    width: 160px;
}
.store-logo {
  top: -70px;
  width: 220px;
}
}

@media (max-width: 570px) {
  .awards-cards {
    gap: 10px;
    /* 570px以下: gapを10pxに縮小 */
  }
  
  .award-card {
    width: calc((100% - 20px) / 3);
    /* gap: 10px * 2 = 20px、3つのカードで均等分割 */
  }
}

@media (max-width: 480px) {
  .br-mobile {
    display: block;
    /* 小型スマートフォン: モバイル改行を表示 */
  }
  
  .br-mobile-480 {
    display: block;
    /* 480px以下: 480px専用改行を表示 */
  }
  .page-content {
    margin: 72px auto 0;
  }
  .header-logo-aisei,
  .header-logo-guts {
    max-width: 120px;
    height: auto;
    /* 480px以下: ロゴサイズを調整 */
  }
  
  .fv-badge {
    font-size: 18px;
    /* バッジフォントサイズをさらに縮小 */
  }
  
  .fv-price-label {
    max-width: 100%;
    /* 小型スマートフォン: 画像の最大幅を制限 */
  }
  
  .fv-price-period {
    font-size: 16px;
    width: 50px;
    /* 期間ラベル: フォントサイズと幅をさらに縮小 */
  }
  
  .fv-price-amount {
    font-size: 40px;
    /* 価格金額: 小型スマートフォンでさらに縮小 */
  }
  
  .fv-price-unit {
    font-size: 18px;
    width: 40px;
    height: 40px;
    /* 価格単位: 小型スマートフォンでさらに縮小 */
  }
  
  .fv-price-tax {
    font-size: 16px;
    /* 税込価格: 小型スマートフォンでさらに縮小 */
  }
  
  .fv-title {
    max-width: 100%;
    /* 小型スマートフォン: 画像の最大幅を制限 */
  }
  
  .cta-text {
    font-size: 17px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .btn-cta-primary {
    padding: 15px 40px 15px 26px;
}
  
  .btn-cta-primary::after {
    right: 20px;
    width: 25px;
    height: 25px;
    /* 480px以下: 位置とサイズを調整 */
  }
  
  .cta-tel-text {
    font-size: 17px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .cta-tel-number {
    font-size: 30px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .cta-content {
    gap: 20px;
    /* 480px以下: gapを調整 */
  }
  
  .cta {
    padding: 30px 0;
    /* 480px以下: パディングを調整 */
  }
  
  .btn-text {
    font-size: 18px;
  }
  
  .reasons-header {
    gap: 30px;
    /* 480px以下: gapを調整 */
  }
  
  .reasons {
    padding: 30px 0;
    /* 480px以下: パディングを調整 */
  }
  
  .reason-card-title {
    font-size: 24px;
    /* カードタイトル: フォントサイズをさらに縮小 */
  }
  
  .reason-card-text {
    font-size: 18px;
    /* カード本文: フォントサイズをさらに縮小 */
  }
  
  .faq-q {
    font-size: 25px;
    /* Qマーク: フォントサイズをさらに縮小 */
  }
  
  .faq-question-text {
    font-size: 20px;
    /* 質問テキスト: フォントサイズをさらに縮小 */
  }
  
  .store-title-image {
    max-width: 100%;
    /* 小型スマートフォン: 画像の最大幅を制限 */
  }
  
  .store-message {
    font-size: 16px;
    /* 小型スマートフォン: フォントサイズを縮小 */
  }
  
  .store-image {
    height: 250px;
    /* 小型スマートフォン: 高さを縮小 */
  }
  
  .store-map {
    height: 250px;
    /* 小型スマートフォン: 高さを縮小 */
  }
  
  .company-intro-title {
    font-size: 24px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .company-intro-text {
    font-size: 16px;
    text-align: justify;
    /* 小型スマートフォン: フォントサイズをさらに縮小、両端揃え */
  }
  
  .company-badge-text {
    font-size: 16px;
  }
  
  .service-name {
    font-size: 16px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .company-description-text {
    font-size: 16px;
    text-align: justify;
    /* 小型スマートフォン: フォントサイズをさらに縮小、両端揃え */
  }
  
  .reasons-title-image {
    max-width: 100%;
    /* 小型スマートフォン: 画像の最大幅を制限 */
  }
  
  .awards-label {
    font-size: 21px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .awards-title {
    font-size: 7.5vw;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .award-number {
    font-size: 80px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .awards-cards {
    flex-direction: column;
    gap: 20px;
    /* 小型スマートフォン: カードを縦並びに */
  }
  
  .award-card {
    width: 100%;
    /* 小型スマートフォン: カード幅を100%に */
  }
  
  .price-title {
    font-size: 22px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .price-note {
    font-size: 16px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .price {
    padding: 30px 0 70px;
    /* 480px以下: パディングを調整 */
  }
  
  .price-table th,
  .price-table td {
    padding: 15px 10px;
    font-size: 14px;
    /* 小型スマートフォン: パディングとフォントサイズをさらに縮小 */
  }
  
  .flow-logo {
    top: -136px;
    width: 200px;
    /* 480px以下: 位置とサイズを調整 */
  }
  
  .flow-content {
    gap: 30px;
    /* 480px以下: gapを調整 */
  }
  
  .flow-steps {
    gap: 65px;
    /* 480px以下: gapを調整 */
  }
  
  .flow-step:not(:last-child)::after {
    bottom: -46px;
    width: 25px;
    height: 25px;
    /* 480px以下: 位置とサイズを調整 */
  }
  
  .flow-step-header {
    padding: 15px 20px;
    /* 小型スマートフォン: パディングを縮小 */
  }
  
  
  .flow-step-title {
    font-size: 19px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .voice-decoration {
    top: -70px;
    width: 130px;
    /* 480px以下: 位置とサイズを調整 */
  }
  
  .voice {
    border: 20px solid #3ABE3A;
    padding: 60px 0;
    /* 480px以下: ボーダーとパディングを調整 */
  }
  
  .voice-title {
    font-size: 40px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .voice-author {
    font-size: 24px;
    /* 小型スマートフォン: フォントサイズを縮小 */
  }
  
  .voice-text {
    font-size: 18px;
    /* 小型スマートフォン: フォントサイズを縮小 */
  }
  
.flow {
  padding: 70px 0;
}
  .faq-decoration {
    top: -128px;
    width: 130px;
    /* 480px以下: 位置とサイズを調整 */
  }
  
  .faq {
    padding: 60px 0 100px;
    /* 480px以下: パディングを調整 */
  }
  
  .faq-title {
    font-size: 40px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .store-logo {
    top: -60px;
    width: 200px;
    /* 480px以下: 位置とサイズを調整 */
  }
  
  .store-address {
    font-size: 18px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .store-tel {
    font-size: 32px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .store-hours,
  .store-holiday {
    font-size: 16px;
    /* 480px以下: フォントサイズを調整 */
  }
  
  .final-cta-content {
    gap: 20px;
    /* 480px以下: gapを調整 */
  }
  
  .final-cta-title {
    font-size: 28px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .final-cta-text {
    font-size: 20px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .final-cta-tel-number {
    font-size: 32px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .final-cta-tel-text {
    font-size: 18px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .footer-tel {
    font-size: 32px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .footer-store {
    font-size: 18px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .footer-hours,
  .footer-address {
    font-size: 16px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  
  .footer-copyright {
    font-size: 12px;
    /* 小型スマートフォン: フォントサイズをさらに縮小 */
  }
  .cv-button {
    font-size: 14px;
}
}
