/* profile ページ固有CSS（静的profile/index.htmlのインライン<style>から抽出） */
/* ===== 上部の帯（バナー） ===== */
  .pbanner {
    position: relative; padding: clamp(150px,18vw,230px) 0 clamp(48px,6vw,80px);
    background: linear-gradient(120deg, #2e9e5b 0%, #27884d 60%, #1f7d57 100%);
    color: #fff; overflow: hidden;
  }
  .pbanner::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
    border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.14), transparent 70%);
    pointer-events: none;
  }
  .pbanner__inner { width: min(1180px, 100% - 48px); margin-inline: auto; position: relative; z-index: 1; }
  .pbanner__en { font-family: var(--en); font-weight: 300; font-size: clamp(34px,5vw,58px); line-height: 1; letter-spacing: .04em; }
  .pbanner__jp { margin-top: 14px; font-size: clamp(16px,2vw,22px); font-weight: 500; letter-spacing: .06em; }

  /* ===== パンくず ===== */
  .crumb { width: min(1180px, 100% - 48px); margin: 22px auto 0; font-size: 13px; color: #78857e; }
  .crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
  .crumb a { color: #78857e; transition: color .2s; }
  .crumb a:hover { color: var(--green); }
  .crumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #b8c2bc; }
  .crumb [aria-current="page"] { color: var(--ink); }

  /* ===== 会社概要テーブル ===== */
  .profile { position: relative; width: min(980px, 100% - 48px); margin: clamp(48px,6vw,90px) auto clamp(72px,9vw,120px); overflow: hidden; }
  .profile__deco { position: absolute; right: -70px; top: -30px; width: clamp(200px,24vw,340px); opacity: .05; pointer-events: none; z-index: 0; }
  .profile__head { position: relative; z-index: 1; margin-bottom: clamp(24px,3vw,38px); }
  .profile__en { font-family: var(--en); font-weight: 300; font-size: clamp(24px,3vw,34px); line-height: 1; letter-spacing: .04em; color: var(--green); }
  .profile__jp { margin-top: 8px; font-size: clamp(20px,2.2vw,25px); font-weight: 600; letter-spacing: .06em; color: var(--ink); }

  .profile__table { position: relative; z-index: 1; border-top: 1px solid #dbe6de; }
  .profile__row { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid #dbe6de; }
  .profile__th {
    padding: 26px 24px 26px 4px; font-size: 17px; font-weight: 600; letter-spacing: .04em;
    color: var(--ink);
  }
  .profile__td { padding: 26px 4px 26px 0; font-size: clamp(16px,1.15vw,18px); line-height: 1.95; color: #37453e; }

  /* 役員リスト */
  .profile__people { list-style: none; display: grid; gap: 8px; }
  .profile__people li { display: flex; flex-wrap: wrap; gap: 4px 18px; align-items: baseline; }
  .profile__role { min-width: 176px; font-size: 15px; color: #6a776f; letter-spacing: .02em; }
  .profile__name { font-weight: 500; color: var(--ink); }

  /* 所在地 */
  .profile__addr + .profile__addr { margin-top: 24px; padding-top: 24px; border-top: 1px dashed #d5e0d8; }
  .profile__addr-label { display: inline-block; margin-bottom: 8px; font-size: 16px; font-weight: 700; color: var(--green); letter-spacing: .04em; }
  .profile__addr-tel { margin-top: 6px; font-size: 15.5px; color: #55635b; }
  .profile__map-embed { width: 100%; max-width: 580px; aspect-ratio: 16 / 9; margin: 14px 0 4px; border-radius: 6px; overflow: hidden; border: 1px solid #e2ebe4; background: #eef3ef; }
  .profile__map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
  .profile__map { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 14.5px; color: var(--green); }
  .profile__map::after { content: "›"; font-size: 15px; }
  .profile__map:hover { text-decoration: underline; }

  /* 許認可リスト */
  .profile__list { list-style: none; display: grid; gap: 10px; }
  .profile__extlink { display: inline-flex; align-items: center; gap: 9px; color: #37453e; transition: color .2s; }
  .profile__extlink:hover { color: var(--green); }
  .profile__extlink:hover .profile__exticon { transform: translate(1px,-1px); }
  .profile__exticon { width: 15px; height: 15px; flex: none; stroke: var(--green); transition: transform .2s; }

  /* ===== レスポンシブ ===== */
  @media (max-width: 640px) {
    .profile__row { grid-template-columns: 1fr; }
    .profile__th { padding: 20px 4px 0; }
    .profile__td { padding: 10px 4px 22px; }
    .profile__role { min-width: 140px; }
  }
