/* ===========================================
   MIRISE WordPress Theme - Main Stylesheet
   社会保険労務士法人ミライズ労務コンサルティング
   =========================================== */

/* --- CSS Variables --- */
:root {
  --navy: #0a1f44;
  --navy-mid: #15336b;
  --navy-light: #1e4a9a;
  --gold: #c8a45a;
  --gold-light: #e2c47e;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-light: #eef0f5;
  --gray: #8a93a8;
  --text: #1a2340;
  --text-light: #4a5568;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul, ol { list-style: none; }

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,31,68,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,164,90,.25);
  transition: background .3s;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 14px;
}
.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
}
.logo-ja {
  font-size: 9.5px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  white-space: nowrap;
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .07em;
  padding: 8px 14px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { transform: scaleX(1); }

/* --- Header Right --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.tel-label {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 500;
}
.tel-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.2;
}
.btn-contact-header {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-contact-header:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,31,68,.85) 0%, rgba(21,51,107,.65) 55%, rgba(10,31,68,.78) 100%),
    url('') center/cover no-repeat;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 72px;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  color: var(--gold);
  border: 1px solid rgba(200,164,90,.45);
  padding: 6px 18px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .3s ease forwards;
}
.hero-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .5s ease forwards;
}
.hero-catch em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15em;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.78);
  letter-spacing: .1em;
  line-height: 2.1;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp .8s .7s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s ease forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 38px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary svg {
  width: 16px; height: 16px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,164,90,.45);
}
.btn-secondary {
  color: var(--white);
  padding: 16px 38px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .12em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 2px;
  transition: all .25s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.45);
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.9); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================
   NUMBERS
   ============================ */
.numbers { background: var(--navy); }
.numbers-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(200,164,90,.18);
}
.number-item {
  padding: 44px 40px;
  text-align: center;
  border-right: 1px solid rgba(200,164,90,.12);
}
.number-item:last-child { border-right: none; }
.number-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.number-val .unit { font-size: 18px; font-weight: 400; }
.number-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ============================
   SECTION COMMON
   ============================ */
section { padding: 100px 40px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}
.section-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 20px;
}
.section-head.center .section-line { margin: 20px auto 0; }
.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2.1;
  margin-top: 20px;
}

/* ============================
   WHO WE ARE
   ============================ */
.who { background: var(--off-white); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.who-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2.3;
  margin-bottom: 22px;
}
.who-text p:last-child { margin-bottom: 0; }
.who-text strong { color: var(--navy); font-weight: 700; }
.who-visual { position: relative; }
.who-photo-bg {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(10,31,68,.12) 0%, rgba(21,51,107,.05) 100%),
    url('') center/cover no-repeat;
  border-radius: 3px;
}
.who-deco {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 48%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 3px;
  z-index: -1;
  opacity: .25;
}

/* ============================
   SERVICE
   ============================ */
.service { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: background .25s, transform .25s;
  position: relative;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.service-card:hover {
  background: #f9faff;
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2.1;
}
.service-more {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-more svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================
   PRICE（料金表）
   ============================ */
.price {
  padding: 100px 0;
  background: var(--off-white);
}
.price .section-ja { color: var(--navy); }

.price-table-wrap,
.price-spot-wrap {
  max-width: 900px;
  margin: 48px auto 0;
}
.price-table-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.price-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,31,68,.06);
}
.price-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 20px;
  text-align: center;
  white-space: nowrap;
}
.price-table thead th:first-child {
  background: var(--navy-mid);
}
.price-table tbody td {
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid var(--gray-light);
  white-space: nowrap;
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:hover {
  background: rgba(200,164,90,.04);
}
.price-table .td-label {
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: rgba(10,31,68,.02);
}
.price-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.8;
}

/* スポット料金グリッド */
.price-spot-wrap {
  margin-top: 56px;
}
.price-spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-spot-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(10,31,68,.06);
  border: 1px solid var(--gray-light);
  transition: transform .3s, box-shadow .3s;
}
.price-spot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10,31,68,.1);
}
.spot-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.spot-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.price-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .price-spot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .price-spot-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why { background: var(--navy); }
.why .section-ja { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  border: 1px solid rgba(200,164,90,.18);
  border-radius: 3px;
  padding: 40px 32px;
  background: rgba(255,255,255,.025);
  transition: all .3s;
}
.why-card:hover {
  background: rgba(255,255,255,.065);
  border-color: rgba(200,164,90,.5);
  transform: translateY(-4px);
}
.why-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,164,90,.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.why-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 2.2;
}

/* ============================
   GREETING
   ============================ */
.greeting { background: var(--off-white); }
.greeting-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.greeting-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2.4;
  margin-bottom: 24px;
}
.greeting-sig {
  margin-top: 36px;
  border-top: 1px solid rgba(200,164,90,.3);
  padding-top: 24px;
}
.greeting-sig .role {
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 6px;
}
.greeting-sig .name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.greeting-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10,31,68,.08);
}
.greeting-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(170deg, rgba(10,31,68,.18) 0%, transparent 40%),
    var(--gray-light) center top/cover no-repeat;
}
.greeting-card-info { padding: 24px; }
.greeting-card-info .c-role {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 6px;
}
.greeting-card-info .c-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.greeting-card-info .c-license {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
}

/* ============================
   NEWS
   ============================ */
.news { background: var(--white); }
.news-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
}
.news-list { list-style: none; }
.news-item {
  display: grid;
  grid-template-columns: 96px 76px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
  text-decoration: none;
  color: var(--text);
  transition: color .2s;
}
.news-item:first-child { border-top: 1px solid var(--gray-light); }
.news-item:hover { color: var(--navy-light); }
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gray);
  letter-spacing: .04em;
}
.news-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 2px;
  text-align: center;
}
.cat-info { background: #e8f0ff; color: var(--navy-light); }
.cat-law { background: #fff3e0; color: #b45309; }
.cat-news { background: #e8f5e9; color: #2e7d32; }
.cat-default { background: var(--gray-light); color: var(--text-light); }
.news-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .1em;
  text-decoration: none;
  transition: gap .2s;
}
.news-more:hover { gap: 12px; }
.news-more svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================
   CTA
   ============================ */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8a45a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .32em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  margin-bottom: 52px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-cta-main {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 52px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-cta-main svg {
  width: 16px; height: 16px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-cta-main:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,164,90,.5);
}
.btn-cta-sub {
  color: rgba(255,255,255,.75);
  padding: 18px 52px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .12em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-cta-sub svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,.75);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-cta-sub:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #060f24;
  padding: 72px 40px 32px;
  color: rgba(255,255,255,.45);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(.35);
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
}
.footer-logo-ja {
  font-size: 9.5px;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
}
.footer-brand p { font-size: 12px; line-height: 2.1; }
.footer-nav h4,
.footer-info h4 {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-nav a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-info p { font-size: 12px; line-height: 2.3; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; letter-spacing: .08em; }

/* ============================
   FLOATING CONTACT BUTTON
   ============================ */
.float-contact {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 99;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(200,164,90,.5);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-contact svg {
  width: 15px; height: 15px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.float-contact:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,164,90,.6);
}

/* ============================
   ANIMATION
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   BLOG / ARCHIVE PAGES
   ============================ */
.page-header-area {
  background: var(--navy);
  padding: 140px 40px 60px;
  text-align: center;
}
.page-header-area .section-ja { color: var(--white); }

.blog-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px;
}
.blog-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-light);
  text-decoration: none;
  color: var(--text);
  transition: color .2s;
}
.blog-card:first-child { border-top: 1px solid var(--gray-light); }
.blog-card:hover { color: var(--navy-light); }
.blog-card-thumb {
  aspect-ratio: 16/10;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
}

/* --- Single Post --- */
.single-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.single-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light);
}
.single-body {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-light);
}
.single-body h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 48px 0 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.single-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 16px;
}
.single-body p { margin-bottom: 24px; }
.single-body ul, .single-body ol {
  margin: 0 0 24px 24px;
  list-style: disc;
}
.single-body li { margin-bottom: 8px; }
.single-body img {
  border-radius: 3px;
  margin: 24px 0;
}
.single-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: var(--off-white);
  margin: 24px 0;
  font-style: italic;
}
.single-body a {
  color: var(--navy-light);
  text-decoration: underline;
}

/* --- Fixed Page --- */
.page-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px;
}
.page-content .entry-content {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-light);
}
.page-content .entry-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 48px 0 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.page-content .entry-content p { margin-bottom: 24px; }

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0 80px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: all .2s;
}
.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination .current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* --- Breadcrumb --- */
.breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 40px;
  font-size: 12px;
  color: var(--gray);
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* --- Contact Form 7 Styling --- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s;
  background: var(--white);
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.wpcf7 textarea { min-height: 180px; resize: vertical; }
.wpcf7 label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.wpcf7 p { margin-bottom: 24px; }
.wpcf7 input[type="submit"] {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 52px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Noto Sans JP', sans-serif;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,164,90,.45);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(6,15,36,.98);
    padding: 24px 40px;
    border-bottom: 1px solid rgba(200,164,90,.2);
  }
  .main-nav.is-open a {
    padding: 12px 0;
    font-size: 15px;
  }
  .menu-toggle { display: block; }
  .header-tel { display: none; }
  .who-grid,
  .greeting-grid { grid-template-columns: 1fr; }
  .greeting-grid { gap: 40px; }
  .service-grid,
  .why-grid { grid-template-columns: 1fr; }
  .numbers-inner { grid-template-columns: 1fr; }
  .number-item {
    border-right: none;
    border-bottom: 1px solid rgba(200,164,90,.1);
  }
  .news-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-thumb { max-width: 320px; }
  section { padding: 72px 24px; }
  .header-inner { padding: 0 20px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 0 20px; padding-top: 72px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .float-contact {
    bottom: 16px; right: 16px;
    padding: 12px 20px;
    font-size: 12px;
  }
}
