@charset "UTF-8";

/* ============================================================
   会社概要（Corporate Profile / Group / Guiding Principles）
   - デザイン基準：PC 1280px（コンテンツ幅 約890px 中央）
   - ヘッダー・フッターはフル幅、コンテンツは中央寄せ
   - SP はレイアウトが崩れない範囲で段組み変更
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
h1, h2, h3, h4, h5, h6, p, figure, figcaption, dl, dd, dt { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --c-navy: #0c1d3d;
  --c-black: #000;
  --c-text: #1a1a1a;
  --c-line: #c9c9c9;
  --c-subbar: #d9d9d9;
  --c-footer: #14133b;

  --ff-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
  --ff-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-en-head: "Avenir Next", "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;

  --page-w: 1280px;
  --content-w: 890px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-jp);
  color: var(--c-black);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page { background: #fff; }

/* ---------- Global header / footer（帯フル幅・中身は中央 max1280） ---------- */
.site-header { width: 100%; background: #fff; }
.site-footer { width: 100%; background: var(--c-footer); }
.site-header img,
.site-footer img {
  display: block;
  width: 100%;
  max-width: var(--page-w);
  height: auto;
  margin: 0 auto;
}

/* ---------- Breadcrumb（フル幅帯） ---------- */
.subbar { width: 100%; background: var(--c-subbar); }
.subbar__inner {
  max-width: var(--page-w);
  margin: 0 auto;
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 47px;
}
.breadcrumb {
  font-family: var(--ff-jp);
  font-size: 10px;
  line-height: 1.4;
  color: #000;
}
.breadcrumb__link { font-weight: 300; }

/* ---------- Content ---------- */
.content {
  padding: 56px 0 0;
}
.content__inner {
  width: var(--content-w);
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

/* ---------- Section common ---------- */
.sec + .sec { margin-top: 80px; }

.sec__head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.sec__title {
  font-family: var(--ff-en-head);
  font-weight: 700;
  font-size: 35px;
  line-height: 1.4;
  color: var(--c-navy);
}
.sec__title--2line { line-height: 1.3; }
.sec__sub {
  margin-top: 10px;
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-black);
}

/* ---------- Section 1: Corporate Profile ---------- */
.sec__body--profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 32px;
}
.profile { flex: 1 1 auto; }
.profile__row {
  display: flex;
  font-family: var(--ff-jp);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--c-black);
}
.profile__row dt {
  flex: 0 0 168px;
  font-weight: 300;
    line-height: 1.7;
}
.profile__row dd { flex: 1 1 auto;
    line-height: 1.7; }

.profile__figure { flex: 0 0 231px; }
.profile__figure img { width: 231px; height: auto; }
.profile__figure figcaption {
  margin-top: 8px;
  font-family: var(--ff-jp);
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-black);
  text-align: right;
}

/* ---------- Section 2: Group ---------- */
.sec__body--group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
  margin-top: 32px;
}
.group__text { flex: 1 1 auto; }
.group__text p {
  font-family: var(--ff-jp);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-black);
}
.group__text p + p { margin-top: 1.4em; }
.group__figure { flex: 0 0 291px; }
.group__figure img { width: 291px; height: auto; }

/* ---------- Section 3: Guiding Principles ---------- */
.principles { margin-top: 36px; }
.principle {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.principle + .principle { margin-top: 28px; }
.principle__img {
  flex: 0 0 204px;
  width: 204px;
  height: auto;
}
.principle__text { flex: 1 1 auto; }
.principle__en {
  font-family: var(--ff-en-head);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: var(--c-black);
}
.principle__jp {
  margin-top: 4px;
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-black);
}
.principle__desc {
  margin-top: 8px;
  font-family: var(--ff-jp);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-black);
}

/* 末尾の余白（フッター手前） */
.content { padding-bottom: 100px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .content { padding: 48px 0 80px; }
  .sec + .sec { margin-top: 64px; }
  .sec__title { font-size: clamp(26px, 3.4vw, 35px); }
}

@media (max-width: 768px) {
  .content__inner { max-width: calc(100% - 40px); }
  .sec__sub { font-size: clamp(15px, 2.4vw, 20px); }

  /* セクション1・2：画像を下に回す */
  .sec__body--profile,
  .sec__body--group {
    flex-direction: column;
    gap: 24px;
  }
  .profile__figure { align-self: center; }
  .profile__figure figcaption { text-align: center; }
  .group__figure { align-self: center; }
  .group__text p { font-size: 16px; }
  .profile__row { font-size: 16px; }
  .profile__row dt { flex-basis: 130px; }

  /* 行動指針 */
  .principle { gap: 18px; }
  .principle__img { flex-basis: 150px; width: 150px; }
  .principle__en { font-size: clamp(20px, 3.6vw, 26px); }
  .principle__jp { font-size: clamp(16px, 2.6vw, 20px); }
}

@media (max-width: 480px) {
  .subbar__inner { padding: 0 20px; min-height: 20px; }
  .content { padding: 32px 0 56px; }
  .content__inner { max-width: calc(100% - 32px); }
  .sec + .sec { margin-top: 48px; }

  .profile__row { flex-direction: column; }
  .profile__row dt { flex-basis: auto; font-weight: 600; }
  .profile__row dd { margin-bottom: 8px; }

  .profile__figure { flex-basis: auto; width: 100%; max-width: 280px; }
  .profile__figure img { width: 100%; }
  .group__figure { flex-basis: auto; width: 100%; max-width: 320px; }
  .group__figure img { width: 100%; }

  /* 行動指針：画像を上に積む */
  .principle { flex-direction: column; gap: 10px; }
  .principle__img { flex-basis: auto; width: 100%; max-width: 280px; }
}
