/* ============================================================
   JAPAN PROPERTY MANAGEMENT
   common/css/style.css
   ============================================================ */


/* ============================================================
   1. CSS 変数（カラー・フォント）
   ============================================================ */
:root {
  /* ブランドカラー */
  --color-green         : #7ED957;   /* メインアクセント（緑） */
  --color-green-dark    : #6BCB45;   /* ホバー用 濃い緑 */

  /* 背景系 */
  --color-bg-dark       : #0B111A;   /* ダークセクション背景 */
  --color-bg-card       : #131A23;   /* ダークカード背景 */
  --color-bg-darker     : #06090E;   /* 最暗部背景 */

  /* テキスト系 */
  --color-text-base     : #1D1D1D;   /* 本文テキスト */
  --color-text-muted    : #666666;   /* 補足テキスト */

  /* ボーダー */
  --color-border-dark   : #2A323D;   /* ダーク背景上のボーダー */
  --color-border-light  : #E5E7EB;   /* ライト背景上のボーダー */

  /* フォント */
  --font-base           : 'Noto Sans JP', sans-serif;
}


/* ============================================================
   2. リセット・ベーススタイル
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family : var(--font-base);
  color       : var(--color-text-base);
  line-height : 1.6;
  background  : #fff;
}

/* 最大幅ラッパー */
.container {
  max-width : 1200px;
  margin    : 0 auto;
  padding   : 0 20px;
}


/* ============================================================
   3. ユーティリティクラス
   ============================================================ */

/* --- テキスト --- */
.u-text-green   { color: var(--color-green)       !important; }
.u-text-white   { color: #fff                     !important; }
.u-text-center  { text-align: center; }
.u-text-muted   { color: var(--color-text-muted); }
.u-text-light   { color: rgba(255,255,255,0.7); }

/* --- 背景 --- */
.u-bg-light     { background: #F8F9FA; }
.u-bg-dark      { background: var(--color-bg-dark); }
.u-bg-darker    { background: var(--color-bg-darker); }
.u-bg-black     { background: #000; }

/* --- スペーシング --- */
.u-mt-sm        { margin-top: 10px; }
.u-mt-md        { margin-top: 30px; }

/* --- サイズ --- */
.u-w-full       { width: 100%; }


/* ============================================================
   4. ボタン
   ============================================================ */

/* 共通ベース */
.btn {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  gap             : 10px;
  padding         : 12px 24px;
  border-radius   : 30px;
  font-family     : var(--font-base);
  font-weight     : 700;
  font-size       : 14px;
  text-decoration : none;
  cursor          : pointer;
  border          : none;
  transition      : opacity 0.3s;
}
.btn:hover { opacity: 0.9; }

/* バリエーション */
.btn--green  { background: var(--color-green);  color: #fff; }
.btn--white  { background: #fff;                color: #000; }
.btn--dark   { background: #111A24;             color: #fff; }

/* サイズ */
.btn--large  { padding: 16px 40px; font-size: 16px; border-radius: 40px; }
.btn--small  { padding: 8px 24px;  font-size: 13px; }


/* ============================================================
   5. ヘッダー
   ============================================================ */
.header {
  position        : absolute;
  top: 0; left: 0; right: 0;
  padding         : 20px 40px;
  display         : flex;
  justify-content : space-between;
  align-items     : center;
  z-index         : 10;
  color           : white;
}

/* ロゴ */
.header__logo {
  display     : flex;
  align-items : center;
  gap         : 12px;
  font-weight : 700;
  font-size   : 14px;
  letter-spacing: 1px;
}

/* ナビゲーション */
.header__nav { display: flex; gap: 24px; }
.header__nav a {
  color           : white;
  text-decoration : none;
  font-size       : 14px;
}
.header__nav a:hover { color: var(--color-green); }


/* ============================================================
   6. ヒーローセクション
   ============================================================ */
.hero {
  position        : relative;
  height          : 100vh;
  min-height      : 800px;
  background-size : cover;
  background-position: center;
  display         : flex;
  flex-direction  : column;
  justify-content : center;
  align-items     : center;
  text-align      : center;
  color           : white;
}

/* オーバーレイ（暗幕） */
.hero::before {
  content    : '';
  position   : absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background : linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  z-index    : 1;
}

.hero__content {
  position   : relative;
  z-index    : 2;
  max-width  : 800px;
  margin-top : 40px;
}

.hero__label       { font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; font-weight: 500; }
.hero__title       { font-size: 52px; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.hero__description { font-size: 18px; margin-bottom: 30px; font-weight: 300; }
.hero__sub-text    { font-size: 14px; margin-bottom: 40px; color: rgba(255,255,255,0.9); line-height: 1.8; }
.hero__note        {
  font-size    : 11px;
  color        : rgba(255,255,255,0.6);
  margin-top   : 15px;
  max-width    : 550px;
  margin-left  : auto;
  margin-right : auto;
  line-height  : 1.6;
}

/* スクロール誘導アイコン */
.hero__scroll-arrow {
  position  : absolute;
  bottom    : 40px;
  left      : 50%;
  transform : translateX(-50%);
  z-index   : 2;
  color     : white;
  font-size : 24px;
  opacity   : 0.7;
  animation : anim-bounce 2s infinite;
  cursor    : pointer;
}

@keyframes anim-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0)     translateX(-50%); }
  40%                      { transform: translateY(-10px) translateX(-50%); }
  60%                      { transform: translateY(-5px)  translateX(-50%); }
}


/* ============================================================
   7. セクション 共通
   ============================================================ */
.section { padding: 100px 0; }

.section__label {
  color          : var(--color-green);
  font-size      : 12px;
  letter-spacing : 2px;
  margin-bottom  : 15px;
  font-weight    : 700;
  text-transform : uppercase;
}
.section__title {
  font-size     : 36px;
  font-weight   : 700;
  margin-bottom : 30px;
  line-height   : 1.4;
}
.section__description {
  font-size     : 15px;
  color         : var(--color-text-muted);
  margin-bottom : 50px;
  line-height   : 1.8;
}
.section__description--dark { color: rgba(255,255,255,0.7); }


/* ============================================================
   8. コンセプトセクション
   ============================================================ */
.concept__inner {
  display     : flex;
  align-items : center;
  gap         : 60px;
}
.concept__text  { flex: 1; }
.concept__media { flex: 1; position: relative; }
.concept__media img { width: 100%; border-radius: 12px; display: block; }

/* 画像上のキャプション */
.concept__caption {
  position    : absolute;
  bottom: 20px; left: 20px;
  color       : white;
  font-size   : 12px;
  text-shadow : 0 1px 3px rgba(0,0,0,0.8);
  line-height : 1.6;
}

/* 引用ブロック */
.concept__quote {
  border-left   : 3px solid var(--color-green);
  padding-left  : 20px;
  margin        : 30px 0;
  font-size     : 16px;
  line-height   : 1.6;
  font-weight   : 500;
}

.concept__body       { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.concept__body--note { font-size: 13px; color: var(--color-text-muted); }


/* ============================================================
   9. サービスセクション
   ============================================================ */

/* カード行 */
.services__row {
  display         : flex;
  justify-content : center;
  gap             : 20px;
  margin-bottom   : 20px;
}
.services__row--top    .service-card { width: calc(33.333% - 13.33px); }
.services__row--bottom .service-card { width: calc(40% - 10px); }

/* 個別カード */
.service-card {
  position            : relative;
  background-size     : cover;
  background-position : center;
  color               : white;
  border-radius       : 12px;
  overflow            : hidden;
  padding             : 40px 30px;
  display             : flex;
  flex-direction      : column;
  align-items         : center;
  justify-content     : center;
  min-height          : 380px;
  text-align          : center;
}
.service-card::before {
  content    : '';
  position   : absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background : rgba(0,0,0,0.65);
  z-index    : 1;
  transition : background 0.3s;
}
.service-card:hover::before { background: rgba(0,0,0,0.5); }
.service-card > * { position: relative; z-index: 2; }

/* 番号バッジ */
.service-card__number {
  position    : absolute;
  top: 20px; left: 20px;
  background  : white;
  color       : black;
  width       : 36px;
  height      : 36px;
  border-radius: 50%;
  display     : flex;
  align-items : center;
  justify-content: center;
  font-weight : bold;
  font-size   : 14px;
}

/* アイコン */
.service-card__icon {
  width           : 56px;
  height          : 56px;
  background      : rgba(126,217,87,0.2);
  color           : var(--color-green);
  border          : 1px solid rgba(126,217,87,0.5);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  margin-bottom   : 25px;
  font-size       : 20px;
}

.service-card__title { font-size: 18px; margin-bottom: 15px; font-weight: 700; line-height: 1.4; }
.service-card__text  { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; }


/* ============================================================
   10. なぜ必要か（Why This Matters）セクション
   ============================================================ */
.risk-cards {
  display               : grid;
  grid-template-columns : repeat(3, 1fr);
  gap                   : 20px;
  margin-top            : 50px;
}

.risk-card {
  background    : var(--color-bg-card);
  border        : 1px solid var(--color-border-dark);
  border-radius : 12px;
  padding       : 40px 30px;
}
.risk-card__header {
  display         : flex;
  justify-content : space-between;
  align-items     : flex-start;
  margin-bottom   : 30px;
}
.risk-card__number {
  font-size   : 56px;
  color       : rgba(255,255,255,0.05);
  font-weight : 700;
  line-height : 1;
  margin-top  : -10px;
}
.risk-card__icon {
  width           : 48px;
  height          : 48px;
  background      : rgba(126,217,87,0.1);
  color           : var(--color-green);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  font-size       : 20px;
}
.risk-card__title { font-size: 18px; margin-bottom: 15px; font-weight: 700; }
.risk-card__text  { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }


/* ============================================================
   11. バナー（中間帯）
   ============================================================ */
.banner {
  background    : linear-gradient(to bottom, #090D14, #0F1A15);
  padding       : 80px 0;
  border-top    : 1px solid rgba(255,255,255,0.05);
  border-bottom : 1px solid rgba(255,255,255,0.05);
}
.banner__text { font-size: 28px; line-height: 1.6; font-weight: 500; }


/* ============================================================
   12. 強み（Our Strengths）セクション
   ============================================================ */
.strengths-grid {
  display               : grid;
  grid-template-columns : repeat(2, 1fr);
  gap                   : 20px;
  margin-top            : 50px;
}

.strength-card {
  background    : var(--color-bg-card);
  border        : 1px solid var(--color-border-dark);
  border-radius : 12px;
  padding       : 40px;
  display       : flex;
  align-items   : flex-start;
  gap           : 24px;
}
.strength-card__icon {
  width           : 56px;
  height          : 56px;
  background      : rgba(126,217,87,0.1);
  color           : var(--color-green);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  font-size       : 20px;
  flex-shrink     : 0;
}
.strength-card__title { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.strength-card__text  { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }


/* ============================================================
   13. ファーストステップセクション
   ============================================================ */
.first-step { background: #fff; }
.first-step .section__title { font-size: 42px; margin-bottom: 20px; }

/* 区切り線 */
.divider {
  width      : 40px;
  height     : 2px;
  background : #E5E7EB;
  border     : none;
  margin     : 30px auto;
}

.first-step__note {
  font-size    : 11px;
  color        : var(--color-text-muted);
  margin-top   : 15px;
  max-width    : 600px;
  margin-left  : auto;
  margin-right : auto;
  line-height  : 1.6;
}


/* ============================================================
   14. お問い合わせ（Contact）セクション
   ============================================================ */
.contact {
  position            : relative;
  background-size     : cover;
  background-position : center;
  padding             : 120px 0;
  color               : white;
}

/* オーバーレイ */
.contact::before {
  content    : '';
  position   : absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background : rgba(14,20,27,0.85);
  z-index    : 1;
}

.contact__inner {
  position        : relative;
  z-index         : 2;
  display         : flex;
  justify-content : space-between;
  align-items     : center;
}

/* 左カラム（コピー） */
.contact__copy { flex: 1; padding-right: 60px; }
.contact__heading {
  font-size     : 64px;
  font-weight   : 700;
  line-height   : 1.1;
  margin-bottom : 40px;
}
.contact__note {
  font-size   : 11px;
  max-width   : 400px;
  line-height : 1.6;
  color       : rgba(255,255,255,0.7);
}

/* 右カラム（フォームカード） */
.contact__form-wrapper { width: 480px; flex-shrink: 0; }
.contact__form-card {
  background    : white;
  color         : var(--color-text-base);
  padding       : 40px;
  border-radius : 12px;
  box-shadow    : 0 20px 40px rgba(0,0,0,0.2);
}
.contact__form-card h3 { font-size: 24px; margin-bottom: 5px; font-weight: 700; }
.contact__form-card p  { color: var(--color-text-muted); font-size: 14px; margin-bottom: 25px; }

/* フォームパーツ */
.form__group { margin-bottom: 20px; }
.form__label {
  display       : block;
  font-size     : 12px;
  font-weight   : 700;
  margin-bottom : 8px;
  color         : #333;
}
.form__input,
.form__textarea {
  width         : 100%;
  padding       : 14px;
  border        : 1px solid var(--color-border-light);
  border-radius : 6px;
  font-family   : inherit;
  font-size     : 14px;
  outline       : none;
  transition    : border-color 0.3s;
}
.form__input:focus,
.form__textarea:focus { border-color: var(--color-green); }
.form__textarea       { height: 120px; resize: none; }
.form__char-count     { font-size: 11px; color: #999; text-align: left; margin-top: 8px; }


/* ============================================================
   15. フッター
   ============================================================ */
.footer {
  background  : #000;
  color       : #fff;
  padding     : 80px 0 40px;
  font-size   : 13px;
  border-top  : 1px solid #111;
}

.footer__grid {
  display               : grid;
  grid-template-columns : 2fr 1fr 1fr 1fr 1.5fr;
  gap                   : 40px;
  margin-bottom         : 60px;
}

/* ロゴ行 */
.footer__logo    { display: flex; align-items: center; gap: 10px; font-size: 20px; margin-bottom: 20px; }
.footer__tagline { color: var(--color-green); font-size: 18px; font-weight: 700; margin-bottom: 15px; }
.footer__desc    { color: #888; line-height: 1.6; font-size: 12px; }

/* カラム見出し */
.footer__col-heading {
  color          : var(--color-green);
  font-size      : 12px;
  font-weight    : 700;
  letter-spacing : 1px;
  margin-bottom  : 20px;
  text-transform : uppercase;
}

/* リンクリスト */
.footer__links    { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 12px; }
.footer__links a  { color: #ccc; text-decoration: none; font-size: 13px; }
.footer__links a:hover { color: var(--color-green); }

/* CTAボックス */
.footer__cta-box {
  border        : 1px solid rgba(255,255,255,0.15);
  border-radius : 8px;
  padding       : 25px 20px;
  text-align    : center;
}
.footer__cta-link {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  gap             : 8px;
  color           : var(--color-green);
  text-decoration : none;
  font-weight     : 700;
  margin-bottom   : 15px;
  font-size       : 13px;
}
.footer__cta-note { font-size: 11px; color: #888; line-height: 1.5; }

/* 最下部バー */
.footer__bottom {
  display         : flex;
  justify-content : space-between;
  align-items     : center;
  border-top      : 1px solid rgba(255,255,255,0.1);
  padding-top     : 30px;
  color           : #666;
  font-size       : 12px;
}
.footer__bottom-links a { color: #666; text-decoration: none; margin-left: 20px; }

/* SNSアイコン */
.footer__socials { display: flex; gap: 12px; margin: 0 auto; }
.footer__socials a {
  width           : 36px;
  height          : 36px;
  border          : 1px solid rgba(255,255,255,0.15);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  color           : #fff;
  text-decoration : none;
  transition      : all 0.3s;
}
.footer__socials a:hover {
  background   : var(--color-green);
  border-color : var(--color-green);
}


/* ============================================================
   16. フィーチャーセクション（OUR FEATURES）
   ============================================================ */
.features { background: #F8F9FA; }

.features__header {
  max-width     : 800px;
  margin        : 0 auto 60px;
  text-align    : center;
}

/* メインポイントボックス */
.feature-main-point {
  background    : #fff;
  padding       : 40px 50px;
  border-radius : 16px;
  margin-bottom : 50px;
  box-shadow    : 0 10px 30px rgba(0,0,0,0.05);
  text-align    : center;
}
.feature-main-point__title {
  font-size   : 22px;
  font-weight : 700;
  line-height : 1.6;
}
.feature-main-point__title span { color: var(--color-green); }
.feature-main-point__body {
  margin-top  : 20px;
  font-size   : 14px;
  color       : var(--color-text-muted);
  line-height : 1.8;
}

/* 4グリッド */
.feature-grid {
  display               : grid;
  grid-template-columns : repeat(2, 1fr);
  gap                   : 24px;
  margin-bottom         : 40px;
}

.feature-item {
  background    : #fff;
  padding       : 50px;
  border-radius : 16px;
  position      : relative;
  box-shadow    : 0 10px 30px rgba(0,0,0,0.05);
  overflow      : hidden;
}

.feature-item__num {
  position    : absolute;
  top: 16px;  right: 32px;
  font-size   : 80px;
  font-weight : 900;
  color       : #f0f0f0;
  line-height : 1;
  user-select : none;
}

.feature-item__content { position: relative; z-index: 1; }

.feature-item__label {
  display       : flex;
  align-items   : center;
  gap           : 8px;
  color         : var(--color-green);
  font-size     : 13px;
  font-weight   : 700;
  margin-bottom : 16px;
}

.feature-item__title {
  font-size     : 20px;
  font-weight   : 700;
  margin-bottom : 16px;
  line-height   : 1.4;
}

.feature-item__body {
  font-size     : 14px;
  color         : var(--color-text-muted);
  margin-bottom : 20px;
  line-height   : 1.8;
}

.feature-item__list { list-style: none; padding: 0; }
.feature-item__list li {
  font-size     : 13px;
  margin-bottom : 8px;
  display       : flex;
  align-items   : center;
  gap           : 8px;
}
.feature-item__list li i { color: var(--color-green); font-size: 11px; }

/* まとめボックス（下部） */
.feature-summary {
  background    : #fff;
  padding       : 40px 50px;
  border-radius : 16px;
  text-align    : center;
  box-shadow    : 0 10px 30px rgba(0,0,0,0.05);
}
.feature-summary__text {
  font-size   : 22px;
  font-weight : 700;
  line-height : 1.6;
}
.feature-summary__text span { color: var(--color-green); }


/* ============================================================
   17. サービスカード（画像infograph）更新
   ============================================================ */

/* 上段3枚: index2.html スタイルに合わせた画像付きカード */
.services__row--top .service-card,
.services__row--bottom .service-card {
  background-color : #1a1a1a;   /* 画像がない場合のフォールバック */
}

/* service-card の画像オーバーレイはそのまま */



/* ============================================================
   18. リスクカード（WHY THIS MATTERS）拡張スタイル
   ============================================================ */

/* 4カラム対応 */
.risk-cards {
  grid-template-columns : repeat(2, 1fr);
}

.risk-card__list {
  list-style  : none;
  padding     : 0;
  margin      : 0 0 20px;
}
.risk-card__list li {
  font-size     : 13px;
  color         : rgba(255,255,255,0.75);
  line-height   : 1.8;
  padding-left  : 16px;
  position      : relative;
  margin-bottom : 6px;
}
.risk-card__list li::before {
  content  : "・";
  position : absolute;
  left     : 0;
  color    : var(--color-green);
}

.risk-card__note {
  margin-top  : 20px;
  font-size   : 12px;
  color       : var(--color-green);
  line-height : 1.6;
}



/* ============================================================
   19. OUR STRENGTHS infograph アイコン（角丸正方形）
   ============================================================ */
.strength-card__icon--square {
  border-radius : 8px;   /* 既存の 50% を上書きして角丸正方形に */
}



/* ============================================================
   20. レスポンシブデザイン（モバイル対応）
       ※ PC版（1024px以上）は一切変更なし
   ============================================================ */

/* ----------------------------------------------------------
   タブレット（768px〜1023px）
---------------------------------------------------------- */
@media (max-width: 1023px) {

  /* ヘッダー */
  .header {
    padding: 16px 24px;
  }
  .header__nav {
    gap: 16px;
  }
  .header__nav a {
    font-size: 13px;
  }

  /* ヒーロー */
  .hero__title { font-size: 40px; }

  /* コンセプト */
  .concept__inner {
    flex-direction: column;
    gap: 40px;
  }
  .concept__text,
  .concept__media {
    flex: none;
    width: 100%;
  }

  /* サービス */
  .services__row--top .service-card {
    width: calc(33.333% - 13.33px);
  }
  .services__row--bottom .service-card {
    width: calc(40% - 10px);
  }

  /* リスクカード */
  .risk-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 強み */
  .strengths-grid {
    grid-template-columns: 1fr;
  }

  /* コンタクト */
  .contact__inner {
    flex-direction: column;
    gap: 40px;
  }
  .contact__copy {
    padding-right: 0;
    text-align: center;
  }
  .contact__form-wrapper {
    width: 100%;
    max-width: 480px;
  }

  /* フッター */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer__bottom-links a {
    margin-left: 10px;
    margin-right: 10px;
  }
}


/* ----------------------------------------------------------
   スマートフォン（767px以下）
---------------------------------------------------------- */
@media (max-width: 767px) {

  /* --- ヘッダー --- */
  .header {
    padding: 16px 20px;
    position: fixed;
    background: rgba(10, 15, 24, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .header__nav {
    display: none; /* スマホではナビを非表示（ハンバーガー対応は後述） */
  }
  .header__logo span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* --- ハンバーガーメニューボタン --- */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 100;
    background: none;
    border: none;
    padding: 0;
  }
  .header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- モバイルナビオーバーレイ --- */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 24, 0.97);
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .mobile-nav.is-open {
    display: flex;
  }
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
  }
  .mobile-nav a:hover { color: var(--color-green); }
  .mobile-nav .btn {
    margin-top: 8px;
  }

  /* --- ヒーロー --- */
  .hero {
    padding-top: 72px; /* fixed header分 */
    min-height: 100svh;
  }
  .hero__content {
    margin-top: 0;
    padding: 0 24px;
  }
  .hero__label     { font-size: 11px; letter-spacing: 1px; margin-bottom: 14px; }
  .hero__title     { font-size: 28px; line-height: 1.4; margin-bottom: 16px; }
  .hero__description { font-size: 15px; margin-bottom: 20px; }
  .hero__sub-text  { font-size: 13px; margin-bottom: 30px; }
  .hero__note      { font-size: 11px; }
  .btn--large      { font-size: 14px; padding: 14px 28px; }

  /* --- セクション共通 --- */
  .section { padding: 64px 0; }
  .section__title { font-size: 26px; margin-bottom: 20px; }
  .section__description { font-size: 14px; margin-bottom: 36px; }

  /* --- コンセプト --- */
  .concept__inner {
    flex-direction: column;
    gap: 32px;
  }
  .concept__text,
  .concept__media {
    flex: none;
    width: 100%;
  }
  .concept__quote {
    font-size: 15px;
    margin: 20px 0;
  }
  .concept__body { font-size: 14px; }

  /* --- フィーチャー --- */
  .features { }
  .feature-main-point {
    padding: 28px 24px;
  }
  .feature-main-point__title { font-size: 17px; }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-item {
    padding: 32px 24px;
  }
  .feature-item__num {
    font-size: 60px;
    top: 10px; right: 16px;
  }
  .feature-item__title { font-size: 17px; }
  .feature-summary {
    padding: 28px 24px;
  }
  .feature-summary__text { font-size: 17px; }

  /* --- サービス --- */
  .services__row {
    flex-direction: column;
    align-items: center;
  }
  .services__row--top .service-card,
  .services__row--bottom .service-card {
    width: 100%;
    max-width: 420px;
    min-height: 320px;
  }
  .service-card__title { font-size: 17px; }

  /* --- WHY THIS MATTERS --- */
  .why-matters .section__title { font-size: 24px; }
  .risk-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .risk-card {
    padding: 28px 24px;
  }
  .risk-card__title { font-size: 16px; }

  /* --- バナー --- */
  .banner { padding: 56px 0; }
  .banner__text { font-size: 20px; }

  /* --- OUR STRENGTHS --- */
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .strength-card {
    padding: 28px 24px;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .strength-card__title { font-size: 16px; }

  /* --- ファーストステップ --- */
  .first-step .section__title { font-size: 30px; }

  /* --- コンタクト --- */
  .contact {
    padding: 80px 0;
  }
  .contact__inner {
    flex-direction: column;
    gap: 40px;
  }
  .contact__copy {
    padding-right: 0;
    text-align: center;
  }
  .contact__heading {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .contact__note {
    margin: 0 auto;
    text-align: center;
  }
  .contact__form-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .contact__form-card {
    padding: 28px 24px;
  }

  /* --- フッター --- */
  .footer { padding: 56px 0 32px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .footer__bottom-links a {
    margin-left: 8px;
    margin-right: 8px;
  }
  .footer__socials { justify-content: center; }

  /* --- ユーティリティ調整 --- */
  .container { padding: 0 16px; }
  .u-mt-md { margin-top: 20px; }
  .btn--green.btn--large,
  .btn--dark.btn--large {
    width: 100%;
    max-width: 400px;
  }
}


/* ハンバーガー: PCでは非表示 */
.header__hamburger { display: none; }
/* モバイルナビ: PCでは非表示 */
.mobile-nav { display: none; }

/* PC: Contactボタン表示 */
.header__cta-btn { display: inline-flex; }

@media (max-width: 767px) {
  .header__cta-btn { display: none; } /* スマホではヘッダーのContactボタンを隠す */
  .header__hamburger { display: flex; }
}

