  /* =========================
     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;
}

  /* =========================
     Hero (Top Visual)
  ========================= */
.hero {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  transition: opacity 1.2s ease;
}

.img-1 {
  position: relative;
  z-index: 1;
  filter: grayscale(100%) contrast(90%);
}

.img-2 {
  z-index: 2;
  opacity: 0;
}

  /* =========================
     Section Common
  ========================= */
  section {
    padding: 140px 24px;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-head {
    margin-bottom: 64px;
  }

  .section-head .en {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #6b4a2d;
    margin-bottom: 12px;
  }

  .section-head .jp {
    font-size: 28px;
    letter-spacing: 0.25em;
  }

  /* =========================
     About
  ========================= */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  /* =========================
     Service
  ========================= */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .service-box {
    background: #fff;
    padding: 36px;
    border: 1px solid #ddd;
  }

  .service-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
  }

/* =========================
   HOME NEWS
========================= */
.home-news {
  background: #f3f1ec;
  padding: 120px 24px;
}

.news-list {
  max-width: 700px;     /* ← センター配置 */
  margin: 0 auto;
  list-style: none;
}

.news-list li {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 18px;
}

.news-list time {
  color: #777;
  min-width: 90px;
  letter-spacing: 0.05em;
}

.news-list a {
  color: #111;
  line-height: 1.6;
}

.news-list a:hover {
  opacity: 0.7;
}


  /* =========================
   Google Map
========================= */
.map-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;

  /* グレースケール処理 */
  filter: grayscale(100%) contrast(90%) brightness(95%);
}

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

/* 全体 */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;   /* ←高さを揃える */
}

/* 左ブロック */
.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;
}

/* =========================
   SNS
========================= */
.footer-right {
  text-align: right;
}

.footer-sns {
  display: flex;
  gap: 24px;
}

.footer-sns a {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #aaa;
  transition: 0.3s;
}

.footer-sns a:hover {
  color: #fff;
}


  /* =========================
     Responsive
  ========================= */
  @media (max-width: 768px) {
    section { padding: 100px 20px; }
    .about { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr; }
    .hero-logo img { width: 60%; }
  }