/* ===============================
   共通
   =============================== */

.page-company .company-wrapper {
  font-family: inherit;
}

.u-pc {
  display: inline; /* SP 対応時に media query で調整 */
}

.company-section {
  position: relative;
  padding: 80px 0;
}

.company-section__inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ===============================
   大理石背景ブロック（経営理念／方針）
   =============================== */

.company-section--philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-image: url('../../images/company/bg-marble_pc.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}

.company-heading {
  font-size: 40px;   /* PC */
  text-align: center;
  margin: 0 0 24px;
}

.company-text {
  font-size: 28px;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 60px;
}

/* 経営方針だけ余白を少し詰めたい場合 */
.company-heading--policy {
  margin-top: 40px;
}

/* 内側の幅を決めて中央に寄せる */
.company-section--philosophy .company-section__inner {
  max-width: 1200px;    /* 好みで 900〜1100px くらいに調整 */
  margin: 0 auto;
  padding: 20px 20px 10px;
}

/* 1ブロック分の共通余白 */
.company-row {
  margin-bottom: 80px;   /* 経営理念と経営方針の間の余白 */
}

/* 上段：経営理念（見出し 左 / 本文 右） */
.company-row--vision {
  display: flex;
  align-items: center;
  gap: 100px;             /* 見出しと本文の間隔 */
  margin-bottom: 120px;
}

/* 経営理念 見出し：左寄せ＋幅は内容ぶんだけ */
.company-heading--vision {
  flex: 0 0 auto;
  text-align: left;      /* 共通の center を上書き */
  margin: 0;             /* 下の余白は row 側で調整するので0 */
}

/* 経営理念 本文：右側いっぱい＋左揃え */
.company-text--vision {
  flex: 1;
  text-align: left;      /* 共通の center を上書き */
  margin: 40px 0 0;             /* 下余白もここでは0（行間だけで十分） */
}

/* 下段：経営方針（見出しは中央、本文は中央寄せ＋左揃え） */
.company-row--policy {
  text-align: center;
}

/* 経営方針 見出し：中央にポンと置きたいので inline-block */
.company-heading--policy {
  display: inline-block;
  margin: 0 0 24px;
  margin-bottom: 30px;
}

/* 経営方針 本文：塊として中央にしつつ、文字は左揃え */
.company-text--policy {
  max-width: 910px;      /* 行の長さをちょっと抑える */
  margin: 0 auto 40px;   /* 中央寄せ＋下に少し余白 */
  text-align: left;      /* 共通の center を上書き */
}


/* ===============================
   代表挨拶（黒チェック背景）
   =============================== */

.company-section--greeting{
  position: relative; /* ::before のため */
}

.company-section--greeting::before{
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-image: url('../../images/company/bg-greeting_pc.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
}

/* インナー（代表挨拶だけ細め） */
.company-section--greeting .company-section__inner--narrow{
  max-width: 1200px;
  margin: 0 auto;
}

/* h2は中央（ここだけ中央寄せ） */
.company-section--greeting .company-section__inner--narrow{
  text-align: center;
}

.company-heading--greeting{
  color: #ffffff;
}

.company-heading--greeting::before,
.company-heading--greeting::after{
  background-color: #ffffff;
}

/* -------------------------------
   PC：2カラム（外枠は .company-greeting）
   ------------------------------ */
.company-section--greeting .company-greeting{
  margin-top: 32px;
  display: grid;
  grid-template-columns: 360px 1fr; /* 左固定・右可変 */
  gap: 48px;
  align-items: start;
  text-align: left; /* 中身は左基準に戻す */
}

/* 左：写真＋名前 */
.company-section--greeting .company-greeting__left{
  text-align: left;
}

.company-section--greeting .company-greeting__photo{
  margin: 0;
}

.company-section--greeting .company-greeting__photo img{
  display: block;
  width: 100%;
  height: auto;
}

/* 代表者名（PCは写真の下） */
.company-section--greeting .company-greeting__name{
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  margin: 18px 0 0;
}

/* 右：サブ見出し＋本文 */
.company-section--greeting .company-greeting__right{
  text-align: left;
}

.company-section--greeting .company-subheading{
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 24px;
}

.company-section--greeting .company-greeting__body{
  font-size: 18px;
  color: #ffffff;
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

/* ===============================
   会社概要
   =============================== */

.company-section--outline {
  background: transparent; /* 背景なし */
}

.company-section__inner--outline {
  max-width: 920px;
  background-color: #ffffff;
  margin-top: 10px;
  padding: 20px 60px 40px;
  box-sizing: border-box;
  text-align: center;
}

.company-heading--outline {
  color: #000000;
  text-align: center;
  margin-bottom: 32px;
}

.company-outline {
  margin: 0;
  text-align: left;
}

.company-outline__row {
  display: flex;
  border-bottom: 1px solid rgba(119, 119, 119, 0.4392); /* #777, 43.92% */
  padding: 10px 0;
  font-size: 32px;
  gap: 40px;
}

.company-outline__row:last-child {
  border-bottom: none;
}

.company-outline__row dt {
  width: 30%;
  padding-left: 20px;
}

.company-outline__row dd {
  width: 70%;
  margin: 0;
}


/* ===============================
   Company（1280〜1025）
   PCレイアウト維持＋フォント中間
   =============================== */
@media (max-width: 1280px) and (min-width: 1025px){

  /* セクション余白をやや詰める */
  .company-section{
    padding: 70px 0;
  }

  /* h2 */
  .company-heading{
    font-size: 32px;   /* PC40 → 中間 */
    margin-bottom: 20px;
  }

  /* 理念・方針本文 */
  .company-text{
    font-size: 22px;   /* PC28 → 中間 */
    line-height: 1.8;
  }

  /* 行間バランス */
  .company-row--vision{
    gap: 80px;         /* PC100 → 中間 */
    margin-bottom: 100px;
  }

  /* =========================
     ① 経営理念／経営方針（大理石）
     “見せ幅”を狭めて中央に見せる
     ========================= */

  /* 背景はそのまま、内容の見せ幅だけ中央へ */
  .company-section--philosophy .company-section__inner{
    max-width: 900px;          /* ←ここで“中央感”が出ます（例） */
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 10px;
  }

  /* 経営理念：右側本文が間延びしないように上限を付ける */
  .company-text--vision{
    max-width: 620px;          /* ←行が長すぎるのを抑える */
    margin-top: 30px;          /* 既存40px→少しだけ詰めるなら */
  }

  /* 経営方針：本文だけ少し狭めて中央に見せる */
  .company-text--policy{
    max-width: 720px;          /* ←中央寄せされた塊に見える */
    margin-left: auto;
    margin-right: auto;
  }

  /* =========================
     代表挨拶
     ========================= */
  .company-section--greeting .company-section__inner--narrow{
    max-width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .company-section--greeting .company-greeting{
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .company-section--greeting .company-subheading{
    font-size: 24px;
  }

  .company-section--greeting .company-greeting__body{
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.9;
  }

  .company-section--greeting .company-greeting__name{
    font-size: 26px;
  }

  /* =========================
     会社概要
     ========================= */
  .company-section__inner--outline{
    max-width: 760px;          /* 920→好みで少しだけ */
    margin-left: auto;
    margin-right: auto;
  }
  
  .company-outline__row{
    font-size: 22px;   /* PC32 → 中間 */
    gap: 32px;
  }
}


/* ===============================
   Company（1024〜768）
   SPレイアウト＋中間フォント
   =============================== */
@media (max-width: 1024px) and (min-width: 768px){

  .u-pc{ display: none; }

  /* セクション余白 */
  .company-section{
    padding: 50px 0 10px;
  }

  .company-section__inner{
    padding: 0 24px;
  }

  /* =========================
     経営理念／方針
     ========================= */

  .company-row--vision{
    display: block;
    text-align: center;
    margin-bottom: 48px;
  }

  .company-heading{
    font-size: 28px;   /* SP24 < 中間 < PC32 */
    margin-bottom: 16px;
    text-align: center;
  }

  .company-text{
    max-width: 680px;
    font-size: 18px;   /* SP16 → 中間 */
    line-height: 1.9;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .company-text--policy{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* =========================
     代表挨拶
     ========================= */

  .u-pc{ display:none; }

  .company-section--greeting .company-section__inner--narrow{
    padding-left: 20px;
    padding-right: 20px;
  }

  .company-section--greeting .company-greeting{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .company-section--greeting .company-greeting__photo{
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .company-section--greeting .company-greeting__name{
    font-size: 26px;
    text-align: center;
    margin-top: 10px;
  }

  .company-section--greeting .company-subheading{
    font-size: 26px;
    line-height: 1.5;
    margin: 10px 0 12px;
  }

  .company-section--greeting .company-greeting__body{
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 60px;
  }

  /* =========================
     会社概要
     ========================= */

  .company-section__inner--outline{
    max-width: 560px;
    padding: 24px 24px 32px;
  }

  .company-heading--outline{
    font-size: 28px;
  }

  .company-outline__row{
    font-size: 18px;
    gap: 16px;
    padding: 12px 0;
  }
}


/* ===============================
   Company（SP：〜767）
   =============================== */
@media (max-width: 767.98px){

  /* PC用改行はSPでは無効化 */
  .u-pc{ display: none; }

  /* セクション余白（SP用に詰める） */
  .company-section{
    padding: 40px 0;
  }

  /* インナー：左右余白を20に */
  .company-section__inner{
    padding: 0 20px;
  }

  /* =========================
     ① 経営理念／経営方針（大理石）
     ========================= */

  .company-row {
    margin-bottom: 20px;   /* 経営理念と経営方針の間の余白 */
  }

  /* SPは縦並びにする */
  .company-row--vision{
    display: block;     /* flex解除 */
    text-align: center;
    gap: 0;
    margin-bottom: 40px;
  }

  /* h2：24 */
  .company-heading{
    font-size: 24px;
    margin: 0 0 16px;
    text-align: center; /* SPは基本中央 */
  }

  /* 本文：16 */
  .company-text{
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 40px;
    text-align: left; /* 読みやすさ優先 */
  }

  /* visionだけの上書き（PCの左寄せ指定を整理） */
  .company-heading--vision{
    display: inline-block;
    text-align: center;
    margin: 0 0 16px;
  }
  .company-text--vision{
    margin: 0;
    text-align: left;
  }

  /* policy：中央配置は維持しつつ、本文は左 */
  .company-row--policy{
    text-align: center;
  }
  .company-heading--policy{
    display: inline-block;
    margin: 0 0 16px;
  }
  .company-text--policy{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  /* philosophy内のインナーpaddingをSP用に調整 */
  .company-section--philosophy .company-section__inner{
    max-width: none;
    padding: 20px 20px 10px; /* PCのままでもOKだが一応統一 */
  }

  /* =========================
     ② 代表挨拶（黒チェック）
     ========================= */

  .u-pc{ display:none; }

  .company-section--greeting{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .company-heading--greeting{
    font-size: 24px;
    margin: 0 0 16px;
  }

  .company-section--greeting .company-greeting{
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .company-section--greeting .company-greeting__photo{
    width: min(300px, 100%);
    margin: 0 auto;
  }

  .company-section--greeting .company-greeting__name{
    font-size: 24px;
    text-align: center;
    margin: 0;
  }

  .company-section--greeting .company-subheading{
    font-size: 24px;
    margin: 10px 0 12px;
    line-height: 1.5;
  }

  .company-section--greeting .company-greeting__body{
    font-size: 16px;
    line-height: 1.9;
  }

  /* =========================
     ③ 会社概要
     ========================= */

  /* インナーの白ボックス：左右を詰める */
  .company-section__inner--outline{
    max-width: 460px;
    padding: 20px 10px 28px;
    margin-top: 0;
  }

  /* 見出し：24 */
  .company-heading--outline{
    font-size: 24px;
    margin-bottom: 20px;
  }

  /* 375～500付近16px狙い */
  .company-outline__row{
    font-size: clamp(14px, 4.0vw, 18px);
    gap: 12px;
    padding: 12px 0;
    align-items: flex-start;
  }

  /* dt/ddの比率をSP向けに少し調整 */
  .company-outline__row dt{
    width: 25%;
    padding-left: 0;
  }
  .company-outline__row dd{
    width: 75%;
    word-break: break-word; /* 住所など折り返し */
  }
}
