:root {
  --main: #2563eb;
  --main-light: #dbeafe;
  --accent: #f97316;
  --text: #1f2933;
  --bg: #f5f7fa;
  --white: #ffffff;
  --border: #e5e7eb;

  --shadow-soft: 0 6px 16px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 18px 36px rgba(15, 23, 42, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
}

/* アクセシビリティ：スキップリンク */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  z-index: 100;
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 共通レイアウト */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ヘッダー・ナビ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  display: block;
  height: 64px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
}

/* ハンバーガーボタン */
.nav-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

/* ナビリンク（モバイル） */
.nav-links-wrapper {
  position: absolute;
  inset-inline: 0;
  top: 64px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out,
    visibility 0.18s;
}

.nav-links-wrapper.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 8px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-links a {
  display: block;
  padding: 8px 4px;
  font-size: 0.9rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.45);
}

/* ボタン */
.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--main);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.55);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
}

.btn-full {
  width: 100%;
}

/* main */
main {
  padding-bottom: 40px;
}

/* セクション共通 */
.section {
  padding: 32px 0;
}

.section-alt {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 0.78rem;
  color: #4b5563;
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.section-sub {
  font-size: 0.9rem;
  color: #6b7280;
}

/* ヒーロー */
.hero {
  padding: 24px 0 16px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-left {
  order: 2;
}

.hero-right {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-brand-img {
  width: 72px;
  height: auto;
  border-radius: 10px;
}

.hero-brand span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--main-light);
  color: #1d4ed8;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.hero-badge span {
  font-weight: 600;
}

.hero-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-title .accent {
  color: var(--main);
}

.hero-text {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 16px;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
  margin-bottom: 18px;
  padding-left: 0;
}

.hero-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 8px;
}

/* でんきくん周り（拡大アニメ対応） */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  transition: transform 0.25s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.hero-image img {
  width: 200px;
  max-width: 80%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  animation: wiggle 3s infinite ease-in-out;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(1.4deg) translateY(-3px);
  }
  50% {
    transform: rotate(0deg) translateY(0);
  }
  75% {
    transform: rotate(-1.4deg) translateY(-3px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}

/* ヒーローカード */
.hero-card {
  background: #111827;
  color: #e5e7eb;
  border-radius: 20px;
  padding: 16px 14px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.4), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 0.9rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.hero-card-large {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 0.76rem;
  color: #9ca3af;
  margin-bottom: 12px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  font-size: 0.78rem;
  margin: 0;
}

.hero-card-item {
  padding: 8px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.hero-card-label {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 2px;
}

.hero-card-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-note {
  font-size: 0.7rem;
  font-weight: 400;
}

.tel-link {
  white-space: nowrap;
}

/* サービスカード */
.cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-tagline {
  font-size: 0.82rem;
  color: var(--main);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 8px;
}

.card-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.card-list li::before {
  content: "・";
  margin-right: 2px;
}

/* 会社概要・理由 */
.two-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-box {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
}

.info-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-table {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.85rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #6b7280;
}

.info-value {
  font-weight: 500;
}

.reason-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.reason-list {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  padding-left: 0;
}

.reason-list li::before {
  content: "★";
  color: #fbbf24;
  margin-right: 6px;
}

/* 施工事例 */
.works-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.work-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
}

.work-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.work-meta {
  color: #6b7280;
  margin-bottom: 4px;
}

.work-text {
  color: #4b5563;
}

/* お問い合わせ */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
}

.form-row {
  margin-bottom: 10px;
}

label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.required {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.8rem;
}

input,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.9rem;
  background: #f9fafb;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--main);
  outline-offset: 1px;
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
}

.form-note-bottom {
  margin-top: 10px;
}

.contact-info {
  font-size: 0.9rem;
}

.contact-highlight {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--main-light);
  color: #1d4ed8;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* フッター */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  font-size: 0.78rem;
  color: #6b7280;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-separator {
  opacity: 0.5;
}

/* 画面が広くなってからの調整 ===========================*/

/* 600px〜：少しゆとりレイアウト */
@media (min-width: 600px) {
  body {
    font-size: 15px;
  }

  .logo-img {
    height: 80px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* 900px〜：PCレイアウト */
@media (min-width: 900px) {
  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links-wrapper {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-bottom: none;
  }

  .nav-links {
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }

  .nav-links a {
    position: relative;
    padding: 6px 0;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--main);
    transition: width 0.2s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-left {
    flex: 3;
    order: 1;
  }

  .hero-right {
    flex: 2.5;
    order: 2;
  }

  .hero-brand-img {
    width: 100px;
  }

  .hero-image img {
    width: 260px;
    max-width: 260px;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column {
    flex-direction: row;
  }

  .contact-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-card {
    padding: 20px 18px;
  }
}

/* 1100px〜：さらに少しだけ調整 */
@media (min-width: 1100px) {
  .section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

/* 営業ステータスバッジ */
.biz-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e5e7eb;
  color: #374151;
  white-space: nowrap;
}

.biz-status-badge.is-open {
  background: #dcfce7;
  color: #15803d;
}

.biz-status-badge.is-closed {
  background: #fee2e2;
  color: #b91c1c;
}

.biz-status-badge.is-holiday {
  background: #fef3c7;
  color: #92400e;
}

/* スマホ向けレイアウト調整 */
@media (max-width: 480px) {
  /* 「9:00〜18:00」とバッジを縦積み＆少し小さく */
  .hero-card-large {
    font-size: 1.2rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* 営業ステータスバッジを折り返し許可＆幅制限 */
  .biz-status-badge {
    margin-left: 0;
    margin-top: 2px;
    max-width: 100%;
    white-space: normal;  /* ← これが重要：折り返しOKにする */
    text-align: left;
  }

  /* 電話番号も必要なら折り返しOKに */
  .tel-link {
    white-space: normal;
  }
}

/* ────────────────
   お知らせスペース
──────────────── */
.notice-bar {
  background: #fff4e6;
  border-top: 2px solid #ffbb66;
  border-bottom: 2px solid #ffbb66;
  padding: 18px 0;
  margin-top: -12px;
}

.notice-inner {
  text-align: center;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}

.notice-title {
  font-weight: 700;
  color: #d35400;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.notice-text {
  font-size: 0.9rem;
}

/* スマホ対応 */
@media (max-width: 480px) {
  .notice-text {
    font-size: 0.85rem;
  }
}

/* ────────────────
   お知らせスペース（重複だけど既存仕様を維持）
──────────────── */
.notice-bar {
  background: #fff4e6;
  border-top: 2px solid #ffbb66;
  border-bottom: 2px solid #ffbb66;
  padding: 18px 0;
}

.notice-inner {
  text-align: center;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}

.notice-title {
  font-weight: 700;
  color: #d35400;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.notice-text {
  font-size: 0.9rem;
}

/* 営業日カレンダー */
.holiday-calendar {
  margin-top: 10px;
}

.holiday-calendar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.holiday-cell {
  min-width: 88px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 0.78rem;
}

.holiday-date {
  font-weight: 600;
  margin-bottom: 2px;
}

.holiday-label {
  font-size: 0.75rem;
}

.holiday-cell.is-range {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #b91c1c;
}

.holiday-cell.is-today {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.7);
}

/* 最終更新日時 */
.notice-updated {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #6b7280;
}

/* 休業期間中だけ点滅させる */
.notice-bar.is-holiday-range {
  animation: notice-blink 1.3s ease-in-out infinite;
}

@keyframes notice-blink {
  0%, 100% {
    background-color: #fff4e6;
  }
  50% {
    background-color: #ffe4e6;
  }
}

/* スマホ向け微調整 */
@media (max-width: 480px) {
  .notice-text {
    font-size: 0.85rem;
  }
  .holiday-cell {
    min-width: 80px;
  }

  .hero-card-large {
    font-size: 1.2rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .biz-status-badge {
    margin-left: 0;
    margin-top: 2px;
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .tel-link {
    white-space: normal;
  }
}

/* ─────────────────────────────
   ▼ メリハリ強化（おすすめ全部）追記
   セクション交互背景 / カード影の強弱 / 重要箇所の強調
───────────────────────────── */

/* セクション背景：交互に濃淡＋区切り線 */
.section {
  background: #ffffff;
}

.section-alt {
  background: #f3f4f6;
  box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.03);
}

.section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* セクションヘッダーをゆったり */
.section-header {
  margin-bottom: 36px;
}

/* タイトルとタグのメリハリ強化 */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.section-tag {
  background: var(--main-light);
  color: var(--main);
  font-weight: 700;
  font-size: 0.8rem;
}

/* カード影の強弱＋ホバーアニメーション */
.card,
.work-card {
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

/* 見出しに統一感のある強調 */
.card-title,
.info-heading,
.reason-title,
.work-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

/* 説明文は読みやすさ重視 */
.card-text,
.work-text,
.section-sub {
  line-height: 1.65;
  color: #4b5563;
}

/* 情報テーブルの区切り線をはっきり */
.info-row {
  border-bottom: 1px solid #e5e7eb;
}

/* 重要箇所は太字＋アクセントカラーで強調 */
strong {
  color: var(--accent);
  font-weight: 700;
}

/* ▼ ここから でんきくん用フェードインアニメーション追記 ▼ */

/* ランダムで読み込んだときに「ふわっ」と出すクラス */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards, wiggle 3s infinite ease-in-out 0.8s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.0);
  }
}

/* でんきくん コメント表示 */
.denki-comment {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

/* でんきくん 吹き出し */
.denki-bubble {
  position: absolute;
  top: 8px;
  right: 8px;
  max-width: 180px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  color: #111827;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.denki-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 10px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.denki-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   日立チェーンストール（最終版）
   スマホ：ロゴと横1行
   PC：ロゴ右の赤い2行バッジ
=============================== */

/* ロゴ文字は折り返さない */
.logo-text {
  white-space: nowrap;
}

/* スマホ〜タブレット：横1行・小さめ表示 */
.hitachi-chainstore {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-left: 4px;
  font-size: 10px;
  color: #b91c1c;
  white-space: nowrap;
}

.hitachi-chainstore-jp {
  font-weight: 600;
}

.hitachi-chainstore-en {
  display: none;
}

/* PC（幅 1024px〜）：ロゴ右の2行バッジ */
@media (min-width: 1024px) {
  .logo-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hitachi-chainstore {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 24px;
    padding: 4px 10px;
    background: #b91c1c;
    color: #ffffff;
    border-radius: 6px;
    line-height: 1.1;
    font-size: 11px;
    white-space: normal;
  }

  .hitachi-chainstore-jp {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .hitachi-chainstore-en {
    display: block;
    font-size: 9px;
    letter-spacing: 0.08em;
    opacity: 0.9;
  }

  .nav-links-wrapper {
    margin-left: auto;
  }
}
/* PC用：日立チェーンストールをヘッダーの一番左に固定 */
@media (min-width: 1024px) {

  /* コンテナを基準に絶対配置できるようにする */
  .site-header .container {
    position: relative;
  }

  /* 日立チェーンストールバッジを左端に固定 */
  .site-header .hitachi-chainstore {
    position: absolute;
    left: 16px;              /* ここが「一番左」の位置。調整OK */
    top: 50%;
    transform: translateY(-50%);

    margin-left: 0;          /* 以前の margin-left を打ち消す */
  }

  /* ロゴ＋はやし電器は、バッジと重ならないように右にずらす */
  .site-header .logo-area {
    margin-left: 140px;      /* バッジの幅に合わせて調整用。狭い/広いならここを変えてOK */
  }
}
