/* ============================================================
   株式会社abeille コーポレートサイト 共通スタイル
   トーン: 手書きロゴに合わせた白黒モノトーン。
   余白をたっぷりとった、上質でシンプルな佇まい。
   モチーフ: ロゴのミツバチと点線の飛行跡
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f3;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #6e6e6e;
  --accent: #1a1a1a;
  --label: #8f8f8f;
  --line: #e3e3e0;
  --footer: #1a1a1a;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --latin: "Cormorant Garamond", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s, background .2s, border-color .2s; }

.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.logo { display: flex; align-items: center; }

.logo-img { height: 46px; width: auto; }

.logo:hover { opacity: 0.7; }

.global-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  list-style: none;
}

.global-nav a {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.global-nav a:hover { opacity: 0.6; }

.global-nav a.active { border-bottom-color: var(--ink); }

.header-sns { display: flex; align-items: center; gap: 14px; }

.header-sns a { display: inline-flex; opacity: 0.85; }

.header-sns a:hover { opacity: 0.4; }

.header-sns svg { width: 18px; height: 18px; display: block; }

/* ---------- ヒーロー（トップ） ---------- */

.hero {
  position: relative;
  padding: 110px 24px 120px;
  text-align: center;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(45deg, rgba(26, 26, 26, 0.022) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(-45deg, rgba(26, 26, 26, 0.022) 0 2px, transparent 2px 9px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  background-image: url("../assets/bee.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-label {
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: 0.42em;
  color: var(--label);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.hero-lead {
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: 15px;
  color: var(--ink-soft);
}

.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- ボタン ---------- */

.btn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-align: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn:hover { background: var(--ink); color: var(--white); }

.btn-solid { background: var(--ink); color: var(--white); }

.btn-solid:hover { background: transparent; color: var(--ink); }

/* ---------- セクション共通 ---------- */

.section { padding: 90px 0; }

.section-alt { background: var(--bg-alt); }

.section-label {
  font-family: var(--latin);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--label);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 18px;
}

/* ロゴの「点線の飛行跡」を見出し下のあしらいに */
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 0;
  border-bottom: 2px dotted var(--ink);
  margin: 24px auto 0;
  opacity: 0.5;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- カード ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.card p { font-size: 14px; color: var(--ink-soft); }

.card .card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.card .card-link:hover { opacity: 0.55; }

/* ---------- オンラインストア ---------- */

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.store-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 28px;
  text-align: center;
}

.store-card:hover { border-color: var(--ink); }

.store-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 3px 14px;
  margin-bottom: 16px;
}

.store-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.store-card p { font-size: 13px; color: var(--ink-soft); }

.store-card .arrow { margin-top: 14px; font-size: 13px; color: var(--ink); letter-spacing: 0.15em; }

/* ---------- いま動いている情報 ---------- */

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.live-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px;
}

a.live-card:hover { border-color: var(--ink); }

.live-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.live-card p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 10px; }

.live-ig svg { width: 34px; height: 34px; margin-bottom: 14px; color: var(--ink); }

.live-ig-id {
  font-family: var(--latin);
  font-size: 17px;
  color: var(--ink) !important;
  letter-spacing: 0.05em;
}

.live-card .arrow { margin-top: 8px; font-size: 13px; color: var(--ink); letter-spacing: 0.15em; }

.live-card .card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.live-card .card-link:hover { opacity: 0.55; }

.feed-list { list-style: none; margin: 0 0 14px; }

.feed-list li {
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font-size: 13.5px;
  line-height: 1.6;
}

.feed-list li:first-child { border-top: 1px solid var(--line); }

.feed-list a:hover { opacity: 0.6; }

.miel-cover {
  width: 100%;
  max-width: 300px;
  border: 1px solid var(--line);
  display: block;
  margin: 4px 0 10px;
}

.miel-vol {
  font-size: 12px !important;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ---------- お知らせ ---------- */

.news-list { list-style: none; max-width: 780px; margin: 0 auto; }

.news-list li { border-bottom: 1px solid var(--line); }

.news-list li:first-child { border-top: 1px solid var(--line); }

.news-list a,
.news-list .news-row {
  display: flex;
  gap: 28px;
  padding: 22px 12px;
  align-items: baseline;
  flex-wrap: wrap;
}

.news-list a:hover { background: rgba(26, 26, 26, 0.03); }

.news-date {
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.news-cat {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 2px 12px;
  white-space: nowrap;
}

.news-title-text { font-size: 14.5px; flex: 1; min-width: 200px; }

.more-wrap { text-align: center; margin-top: 44px; }

/* ---------- 会社概要テーブル ---------- */

.company-table {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid var(--line);
  padding: 20px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.company-table tr:first-child th,
.company-table tr:first-child td { border-top: 1px solid var(--line); }

.company-table th {
  width: 180px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pending {
  color: #b0543f;
  font-size: 13px;
  background: rgba(176, 84, 63, 0.07);
  padding: 2px 10px;
}

/* ---------- アクセス ---------- */

.map-frame {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(1);
}

.access-note {
  max-width: 780px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- 事業内容ページ ---------- */

.biz-block {
  max-width: 820px;
  margin: 0 auto 72px;
}

.biz-block:last-child { margin-bottom: 0; }

.biz-num {
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--label);
}

.biz-block h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 6px 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px dotted rgba(26, 26, 26, 0.4);
}

.biz-block p { margin-bottom: 16px; font-size: 15px; }

.biz-block h4 {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 30px 0 10px;
}

.tag-soon {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 1px 10px;
  margin-left: 10px;
  white-space: nowrap;
}

.biz-block ul {
  margin: 0 0 16px 1.4em;
  font-size: 15px;
}

.biz-block li { margin-bottom: 6px; }

/* ---------- ページタイトル（下層） ---------- */

.page-header {
  padding: 72px 24px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.page-header .section-label { margin-bottom: 8px; }

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* ---------- お問い合わせ ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.contact-value {
  font-family: var(--latin);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 10px;
  word-break: break-all;
}

.contact-card p { font-size: 13px; color: var(--ink-soft); }

.contact-note {
  max-width: 820px;
  margin: 40px auto 0;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 28px;
}

/* ---------- プライバシーポリシー ---------- */

.policy-body { max-width: 780px; margin: 0 auto; }

.policy-body h2 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 44px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--ink);
}

.policy-body p, .policy-body li { font-size: 14.5px; color: var(--ink); }

.policy-body ul { margin: 10px 0 10px 1.5em; }

.policy-date { margin-top: 44px; font-size: 13.5px; color: var(--ink-soft); text-align: right; }

/* ---------- フッター ---------- */

.site-footer {
  background: var(--footer);
  color: #c9c9c9;
  padding: 64px 24px 32px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* 黒ロゴ（透過PNG）を反転して白ロゴとして使用 */
.footer-logo .logo-img { height: 52px; width: auto; filter: invert(1); opacity: 0.92; }

.footer-address { margin-top: 20px; font-size: 13px; line-height: 2; color: #9a9a9a; font-style: normal; }

.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }

.footer-nav h4 {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: #8a8a8a;
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-nav ul { list-style: none; }

.footer-nav li { margin-bottom: 10px; }

.footer-nav a { font-size: 13.5px; }

.footer-nav a:hover { color: #ffffff; }

.footer-bottom {
  max-width: 1040px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #3a3a3a;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #8a8a8a;
}

.footer-bottom a:hover { color: #ffffff; }

/* ---------- レスポンシブ ---------- */

@media (max-width: 720px) {
  .hero { padding: 70px 24px 80px; }
  .section { padding: 64px 0; }
  .header-inner { justify-content: center; }
  .global-nav ul { justify-content: center; }
  .logo-img { height: 40px; }
  .company-table th { width: auto; display: block; border-bottom: none; padding-bottom: 0; }
  .company-table td { display: block; padding-top: 6px; }
  .footer-inner { flex-direction: column; }
}
