  /* =========================
     Base / Reset
  ========================= */
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    color: #1e1e1e;
    line-height: 1.9;
    background-color: #f3f1ec; /* 生成り */
  }

  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }

  /* =========================
     Header
  ========================= */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid #ddd;
    z-index: 1000;
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-text {
    letter-spacing: 0.2em;
    font-size: 18px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    font-size: 14px;
  }
  /* ロゴ＋会社名まとめ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ロゴマーク共通 */
.logo-mark {
  height: 28px;     /* ← 両方完全に同サイズ */
  width: auto;
  opacity: 0.9;
}

/* 会社名 */
.logo-text {
  letter-spacing: 0.2em;
  font-size: 18px;
  white-space: nowrap;
}

/* Page Header */
.page-header {
  padding: 120px 20px 80px;
  text-align: center;
}

.page-en {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #777;
  margin-bottom: 10px;
}

.page-ja {
  font-size: 32px;
  font-weight: normal;
}

/* =========================
   News Detail
========================= */
.news-detail {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px 160px;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #666;
  margin-bottom: 40px;
}

.news-category {
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

.news-title {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* =========================
   Body
========================= */
.news-body p {
  margin-bottom: 32px;
  font-size: 15px;
}

/* =========================
   Back Link
========================= */
.news-back {
  margin-top: 100px;
  text-align: center;
}

.news-back a {
  font-size: 13px;
  letter-spacing: 0.2em;
  padding-bottom: 6px;
  border-bottom: 1px solid #111;
}

/* =========================
   Footer
========================= */
footer {
  background: #111;
  color: #eaeaea;
  padding: 80px 24px 60px;
  font-size: 15px;
}

/* 全体 */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* 左ブロック */
.footer-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ロゴ2点 */
.footer-logos {
  display: flex;
  gap: 16px;
}

/* ロゴ共通（高さ＝本文3行分相当） */
.footer-logo img {
  height: 150px; /* ← 約6行分 */
  width: auto;
  opacity: 0.9;
}

/* 会社情報 */
.footer-company {
  line-height: 1.8;
}

/* =========================
   Privacy Policy（中央下）
========================= */
.footer-privacy {
  text-align: center;
  margin-top: 48px;
}

.footer-privacy a {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #ccc;
}

.footer-privacy span {
  display: block;
  font-size: 11px;
  margin-top: 6px;
  opacity: 0.7;
}
  /* =========================
     Responsive
  ========================= */
  @media (max-width: 768px) {
    section { padding: 100px 20px; }
    .about { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr; }
    .hero-logo img { width: 60%; }
  }