*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: #1c1c1c;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --logo-green: #5bb85d;
  --accent:       #4ecb6a;
  --accent-hover: #3ab857;
  --accent-light: #edfaf1;
  --accent-mid:   #72d988;
  --accent-pale:  #f2fdf5;
  --text:         #1c1c1c;
  --text-light:   #5a5a5a;
  --text-muted:   #a0a0a0;
  --border:       #e8e8e8;
  --bg-off:       #f9faf8;
  --max: 1180px;
  --max-wide: 1380px;
  --radius: 6px;
}

/* ===== HEADER ===== */
header {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 20px;
  text-decoration: none; color: var(--text);
}
.logo img {
  display: block;
  height: 72px;
  width: auto;
}
.logo-text { display: flex; flex-direction: column; gap: 4px; }
.logo-text .logo-ja {
  font-size: 28px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--text);
}
.logo-text .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
}
nav { display: flex; align-items: center; }
nav a {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px; height: 88px; justify-content: center;
  text-decoration: none; color: var(--text);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  position: relative; transition: color .2s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 24px; right: 24px;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transition: transform .25s ease;
  border-radius: 2px 2px 0 0;
}
nav a:hover { color: var(--accent-hover); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
nav a.active { color: var(--accent-hover); }
nav a .nav-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 4px;
  transition: color .2s;
}
nav a:hover .nav-en { color: var(--accent); }
.hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 10px 22px; border-radius: 40px; text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(78,203,106,.28);
  white-space: nowrap;
}
.hdr-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-group-logo img {
  display: block;
  height: 28px;
  width: auto;
}

/* ===== HERO ===== */
.hero {
  margin-top: 66px;
  min-height: 640px;
  min-height: calc(100vh - 66px);
  max-height: 860px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d7eadc;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-media img.is-active {
  opacity: 1;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(240,251,243,.08) 0%, rgba(240,251,243,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 84px 40px 110px;
  text-align: center;
  color: #fff;
}
.hero-note {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 30px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
h1.hero-title {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 auto 24px;
  max-width: 1000px;
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}
h1.hero-title .title-line {
  display: block;
}
h1.hero-title .title-line-nowrap {
  white-space: nowrap;
}
h1.hero-title .line-accent {
  color: #8de3a0;
  position: relative;
  display: inline-block;
}
h1.hero-title .line-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 10px;
  background: rgba(78,203,106,.38);
  border-radius: 999px;
  z-index: -1;
}
.hero-body {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.84);
  max-width: 620px;
  margin: 0 auto 38px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-company-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  padding: 15px 32px; border-radius: 40px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(78,203,106,.35);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(78,203,106,.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.96); font-size: 18px; font-weight: 700;
  letter-spacing: 0.04em; text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,.8); padding-bottom: 4px;
  transition: color .2s, border-color .2s, opacity .2s;
  text-shadow: 0 4px 14px rgba(0,0,0,.16);
}
.btn-secondary:hover { color: #fff; border-color: #fff; opacity: .82; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-decoration: none;
  border-bottom: 2px solid var(--accent-mid); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.btn-link:hover { color: var(--accent-hover); border-color: var(--accent); }

/* ===== SECTION SHARED ===== */
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 40px; }

.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-hover); margin-bottom: 14px;
}
.sec-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--accent); border-radius: 1px;
}
.sec-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; line-height: 1.45; letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.sec-body {
  font-size: 14px; line-height: 2.1; color: var(--text-light); max-width: 520px;
}

/* ===== NEWS ===== */
.news-bar {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 36px 0 0;
}
.news-bar .container-wide {
  max-width: var(--max);
}
.news-bar-inner {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(91,184,93,.16);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(24,34,26,.12);
  padding: 28px 30px;
}
.news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.news-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #89945b;
}
.news-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.news-panel {
  width: 100%;
}
.news-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.news-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.news-row {
  display: grid;
  grid-template-columns: 126px 104px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  transition: color .2s ease;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.news-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.news-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
}
.news-thumb img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  cursor: zoom-in;
  transition: opacity .2s;
}
.news-thumb img:hover { opacity: .8; }

/* Lightbox */
.news-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.news-lightbox.is-open { display: flex; }
.news-lightbox img {
  max-width: min(90vw, 960px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  cursor: default;
}
.news-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
}
.news-row:hover { color: var(--accent-hover); }
.news-date {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #89945b;
  white-space: nowrap;
}
.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 4px 10px;
  border: 1px solid rgba(137,148,91,.35);
  color: #89945b;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 11px;
}
.news-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.news-more-link {
  align-self: flex-start;
  color: var(--accent-hover);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease;
}
.news-more-link[hidden] { display: none !important; }
.news-more-link svg { transition: transform .2s ease; }
.news-more-link:hover {
  color: var(--text);
  transform: translateX(2px);
}
.news-more-link .news-more-text {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}

/* News accordion */
.news-entry { border-bottom: 1px solid var(--border); }
.news-row {
  grid-template-columns: 126px 104px minmax(0, 1fr) 28px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.news-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #89945b;
  transition: transform .25s ease;
}
.news-entry.is-open .news-toggle { transform: rotate(180deg); }
.news-row[disabled] { cursor: default; }
.news-row[disabled] .news-toggle { display: none; }
.news-detail[hidden] { display: none; }
.news-detail-inner {
  padding: 2px 0 22px 266px;
}
.news-detail-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.news-detail-photo img {
  width: 190px;
  height: 138px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  cursor: zoom-in;
  transition: opacity .2s;
}
.news-detail-photo img:hover { opacity: .85; }
.news-detail-body {
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-light);
  max-width: 760px;
}
.news-detail-link {
  color: var(--accent-hover);
  text-decoration: underline;
  word-break: break-all;
}
.news-detail-link:hover {
  color: var(--accent);
}

/* ===== SERVICE ===== */
.service-sec {
  position: relative;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
  padding-top: 72px;
}
.service-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("bridge_watercolor_bg.svg") center center / 100% 100% no-repeat;
  opacity: 1;
  pointer-events: none;
}
.service-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.34), rgba(255,255,255,.42));
  pointer-events: none;
}
.service-sec .container {
  position: relative;
  z-index: 1;
}
.service-header {
  text-align: center;
  margin-bottom: 44px;
}
.service-header .sec-label {
  justify-content: center;
}
.service-header .sec-label::before {
  display: none;
}
.service-header .sec-title {
  margin-bottom: 12px;
}
.service-summary {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card-media {
  height: 230px;
  background: var(--accent-pale);
  overflow: hidden;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(78,203,106,.12);
  border-color: var(--accent-mid);
}
.service-card-body {
  padding: 24px 26px 28px;
  text-align: center;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.service-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
  min-height: 78px;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 18px;
  border: 1px solid var(--text-light);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.service-link:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  background: var(--accent-pale);
}

/* ===== RECRUIT ===== */
.recruit-sec {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.recruit-inner {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 48px;
  align-items: center;
}
.recruit-visual {
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #dcece1;
}
.recruit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-content .sec-label::before {
  display: none;
}
.recruit-copy {
  font-size: 15px;
  line-height: 2;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 16px;
}
.recruit-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}
.recruit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== COMPANY ===== */
.company-sec { background: #fff; }
.company-cta-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-top: 52px;
}
.company-cta-desc {
  font-size: 14px; line-height: 2; color: var(--text-light); margin: 16px 0 28px;
}
.company-kpi { display: flex; gap: 48px; margin-bottom: 36px; }
.kpi-item { display: flex; flex-direction: column; gap: 5px; }
.kpi-num {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 52px; font-weight: 700; color: #1f7a3a; line-height: 1;
}
.kpi-num small { font-size: 22px; }
.kpi-label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; }
.company-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ceo-quote-block {
  background: var(--accent-pale); border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 32px 36px; margin-bottom: 20px;
}
.ceo-quote-text {
  font-size: 15px; line-height: 2; color: var(--text);
  font-weight: 500; margin-bottom: 16px;
}
.ceo-quote-attr { font-size: 12px; color: var(--text); font-weight: 600; font-style: normal; }

/* ===== CONTACT ===== */
.contact-sec {
  background: #e4e6e2;
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.contact-text .sec-label::before {
  display: none;
}
.contact-text h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.contact-text p { font-size: 15px; line-height: 2; color: var(--text-light); }
.contact-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.btn-cta-lg {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  padding: 17px 40px; border-radius: 40px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(78,203,106,.32);
  transition: background .2s, transform .15s;
}
.btn-cta-lg:hover { background: var(--accent-hover); transform: translateY(-2px); }
.tel-row {
  display: flex; align-items: center; gap: 12px;
}
.tel-row .tel-label {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
  background: var(--accent-light); border: 1px solid var(--accent-mid);
  padding: 3px 10px; border-radius: 40px;
}
.tel-row .tel-num {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--text); letter-spacing: 0.06em;
}
.tel-sub { font-size: 11px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  nav a { padding: 0 10px; }
  .hdr-cta { padding: 8px 12px; font-size: 11px; gap: 5px; }
  .logo-text .logo-en { display: none; }
  .logo img { height: 52px; }
  .logo-text .logo-ja { font-size: 22px; }
  .header-group-logo { display: none; }
}

@media (max-width: 1100px) {
  .header-inner,
  .container,
  .container-wide,
  .footer-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .recruit-inner,
  .company-cta-wrap {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 64px;
    gap: 12px;
    flex-wrap: nowrap;
  }
  nav { display: none; }
  .hdr-cta { display: none; }
  .hamburger { display: flex; }
  .hero {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
  }
  .news-bar {
    margin-top: 0;
    padding-top: 24px;
  }
  .news-bar-inner {
    padding: 24px 20px;
  }
  .news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-panel-inner {
    padding: 0;
  }
  .news-row {
    grid-template-columns: minmax(0, 1fr) 24px;
    column-gap: 12px;
    row-gap: 4px;
  }
  .news-date { grid-column: 1; }
  .news-tag { grid-column: 1; justify-self: start; }
  .news-title { grid-column: 1; }
  .news-toggle { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
  .news-detail-inner { padding-left: 0; padding-bottom: 18px; }
  .news-detail-photo img { width: 140px; height: 100px; }
}

@supports (height: 100svh) {
  .hero {
    min-height: calc(100svh - 66px);
  }
  @media (max-width: 820px) {
    .hero {
      min-height: calc(100svh - 64px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 640px) {
  .sec {
    padding: 72px 0;
  }
  .hero-content {
    padding: 72px 20px 100px;
  }
  .hero-note,
  .hero-body {
    font-size: 14px;
  }
  .hero-company-name {
    font-size: 17px;
  }
  .btn-secondary {
    font-size: 16px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-cta-lg {
    width: 100%;
    justify-content: center;
  }
  .recruit-inner {
    gap: 28px;
  }
  .contact-text h2 {
    font-size: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #143d27; color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-wrap { max-width: var(--max-wide); margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: block;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand .brand-name {
  font-size: 15px; font-weight: 700; color: #fff;
  display: block; margin-bottom: 4px;
}
.footer-brand .brand-en {
  font-family: 'Cormorant Garamond', serif; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.3);
}
.footer-brand .footer-addr {
  margin-top: 16px; font-size: 12px; line-height: 2.1;
}
.footer-brand .footer-group {
  margin-top: 14px; font-size: 11px;
  color: rgba(255,255,255,.3); font-style: normal;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  color: rgba(255,255,255,.25); letter-spacing: 0.04em;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 98;
}
.nav-open .mobile-nav { display: block; }
body.nav-open { overflow: hidden; }
.mobile-nav-panel {
  background: #fff;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mobile-nav-links a:hover { background: var(--accent-light); color: var(--accent-hover); }
.mobile-nav-links a.active { color: var(--accent-hover); background: var(--accent-pale); }
.mobile-nav-links a .nav-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 6px;
}
.mobile-nav-cta { padding: 20px 28px 24px; }
.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(78,203,106,.28);
  transition: background .2s;
}
.mobile-nav-cta a:hover { background: var(--accent-hover); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.4);
  z-index: 97;
}
.nav-open .mobile-nav-overlay { display: block; }
@media (max-width: 820px) { .hamburger { display: flex; } }

/* ===== FOOTER ひびみっけロゴ（右端） ===== */
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-hibimikke { flex-shrink: 0; background: #fff; border-radius: 8px; padding: 14px 16px; max-width: 230px; }
.footer-hibimikke img { width: 175px; max-width: 100%; height: auto; display: block; margin: 0 auto; }
.footer-hibimikke-text { margin-top: 8px; font-size: 11px; line-height: 1.6; color: #333; text-align: left; }
.footer-badges { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 640px) { .footer-top { flex-direction: column; } }
