/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2a4a;
  --navy-mid:  #2c4a7c;
  --navy-light:#3a5f9e;
  --gold:      #c9a84c;
  --gold-light:#e8c96a;
  --bg:        #f4f6f9;
  --bg-white:  #ffffff;
  --text:      #2d2d2d;
  --text-muted:#666666;
  --border:    #d8dde6;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(0,0,0,.10);
  --transition:0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "游明朝", Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--navy-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

/* ===== Layout ===== */
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section--gray { background: var(--bg); }
.section--white { background: var(--bg-white); }
.section--navy  { background: var(--navy); color: #fff; }

/* ===== Typography ===== */
.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.3em;
  letter-spacing: .05em;
}
.section__title--white { color: #fff; }

.section__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 3rem;
  letter-spacing: .08em;
}
.section__sub--white { color: rgba(255,255,255,.7); }

.section__divider {
  width: 50px; height: 3px;
  background: var(--gold);
  margin: 0.6rem auto 0;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px; max-width: 1100px; margin: 0 auto;
}

.site-logo {
  display: flex; flex-direction: column; line-height: 1.2;
}
.site-logo__main {
  font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: .06em;
}
.site-logo__sub {
  font-size: .65rem; color: var(--gold-light); letter-spacing: .1em;
}
.site-logo__tagline {
  font-size: .56rem;
  color: var(--gold-light);
  letter-spacing: .02em;
  margin-top: 3px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .site-logo__tagline {
    white-space: normal;
    max-width: 220px;
    font-size: .5rem;
    line-height: 1.4;
    margin-top: 2px;
  }
}

.site-nav { display: flex; gap: 0; }
.site-nav a {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 0 14px;
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  letter-spacing: .04em;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
.nav-tel {
  font-size: .9rem; color: var(--gold-light); letter-spacing: .05em;
  white-space: nowrap;
}
.nav-tel strong { font-size: 1.05rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a6e 100%);
  color: #fff;
  padding: 96px 20px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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/g%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero__catch {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}
.hero__catch em {
  color: var(--gold-light);
  font-style: normal;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 2.4rem;
}
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.badge--gold { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }

.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  font-size: .95rem;
  font-family: inherit;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: 600;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-light); color: var(--navy); }
.btn--outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn--navy {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-mid); color: #fff; }
.btn--sm { padding: 10px 22px; font-size: .88rem; }

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}
.feature-card__icon {
  font-size: 2.2rem; margin-bottom: .6rem;
}
.feature-card__title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: .4rem;
}
.feature-card__text { font-size: .88rem; color: var(--text-muted); }

/* ===== Services ===== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.service-card__head {
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.service-card__head-icon { font-size: 1.6rem; }
.service-card__head-title { font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; }
.service-card__body { padding: 22px 24px; }
.service-card__body p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-card__list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.service-card__list li {
  font-size: .88rem; padding-left: 1.2em; position: relative;
}
.service-card__list li::before {
  content: "▶"; font-size: .6rem; color: var(--gold);
  position: absolute; left: 0; top: .3em;
}
.service-card__price {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
  color: var(--navy-mid);
  font-weight: 600;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 24px 12px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem; color: var(--gold);
  z-index: 1;
}
.step__num {
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  margin: 0 auto .6rem;
}
.step__label { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.step__text  { font-size: .78rem; color: var(--text-muted); }

/* ===== Area ===== */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.area-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.area-card--main { border-color: var(--gold); background: rgba(201,168,76,.12); }
.area-card__name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.area-card--main .area-card__name { color: var(--gold-light); }
.area-card__note { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 20px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .95rem; font-weight: 700;
  color: var(--navy); line-height: 1.6;
  transition: background var(--transition);
}
.faq-q:hover { background: #f0f4f9; }
.faq-q-mark {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}
.faq-chevron {
  margin-left: auto; flex-shrink: 0;
  font-size: .8rem; color: var(--gold);
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px 58px;
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.85;
}
.faq-a.open { display: block; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: #fff;
  padding: 56px 20px;
  text-align: center;
}
.cta-banner__title {
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: .06em; margin-bottom: .6rem;
}
.cta-banner__sub { font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: 1.8rem; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Profile ===== */
.profile-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.profile-photo {
  width: 100%; border-radius: var(--radius);
  background: linear-gradient(135deg, #c8d4e8, #8fa8cc);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(0,0,0,.3);
  font-size: .8rem; text-align: center;
  border: 1px solid var(--border);
}
.profile-photo__icon { font-size: 3.5rem; margin-bottom: .4rem; }

.profile-name { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.profile-title { font-size: .88rem; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; letter-spacing: .08em; }
.profile-desc { font-size: .93rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 1rem; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.profile-tag {
  background: #eef2f9; color: var(--navy-mid);
  font-size: .8rem; padding: 4px 12px;
  border-radius: 20px; border: 1px solid #c5d0e0;
}

/* ===== Philosophy ===== */
.philosophy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.philosophy-item {
  background: var(--bg-white);
  border-left: 4px solid var(--gold);
  padding: 20px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.philosophy-item__title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.philosophy-item__text  { font-size: .88rem; color: var(--text-muted); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.info-box__title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
}
.info-row {
  display: flex; gap: 12px; margin-bottom: .7rem; font-size: .9rem;
}
.info-row__label {
  flex-shrink: 0; width: 90px;
  color: var(--text-muted); font-size: .82rem;
}
.info-row__val { color: var(--text); }
.info-row__val a { color: var(--navy-mid); }

.map-wrap {
  width: 100%; height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.form-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.form-box__title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
}
.form-placeholder {
  background: #f0f4f9;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .9rem; text-align: center; gap: 8px;
}
.form-placeholder__icon { font-size: 2rem; }

/* ===== Hours Table ===== */
.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table th,
.hours-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hours-table th { background: #f0f4f9; color: var(--navy); font-weight: 700; width: 40%; }
.hours-badge {
  display: inline-block;
  background: #e8f0e0; color: #3a6020;
  font-size: .75rem; padding: 2px 8px; border-radius: 10px;
  margin-left: 6px;
}

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 56px 20px 48px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: .06em;
  margin-bottom: .4rem;
}
.page-hero__sub { font-size: .88rem; color: rgba(255,255,255,.75); letter-spacing: .06em; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}
.breadcrumb__inner {
  max-width: 960px; margin: 0 auto;
  font-size: .8rem; color: var(--text-muted);
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb__sep { color: var(--border); }

/* ===== Footer ===== */
.site-footer {
  background: #0f1d33;
  color: rgba(255,255,255,.75);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand__name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.footer-brand__addr { font-size: .82rem; line-height: 1.8; color: rgba(255,255,255,.65); }
.footer-brand__tel  { font-size: 1.1rem; color: var(--gold-light); margin-top: .5rem; }
.footer-nav h4      { font-size: .85rem; color: var(--gold-light); margin-bottom .7rem; letter-spacing: .08em; }
.footer-nav h4 { margin-bottom: .7rem; }
.footer-nav ul      { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav ul li a { font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-nav ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 960px; margin: 0 auto;
  padding-top: 20px;
  font-size: .78rem; color: rgba(255,255,255,.4);
  text-align: center;
}

/* ===== Highlight boxes ===== */
.highlight-box {
  background: #f0f4f9;
  border-left: 4px solid var(--navy);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
}
.notice-box {
  background: #fff8e8;
  border: 1px solid #e8c96a;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .88rem;
  display: flex; gap: 10px; align-items: flex-start;
}
.notice-box__icon { font-size: 1.2rem; flex-shrink: 0; }

/* ===== Price Table ===== */
.price-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.price-table th,
.price-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}
.price-table thead th { background: var(--navy); color: #fff; font-weight: 700; }
.price-table tbody tr:nth-child(even) { background: #f8f9fb; }
.price-table .price-val { font-weight: 700; color: var(--navy-mid); }
.price-note { font-size: .8rem; color: var(--text-muted); margin-top: .5rem; }
.price-hidden-notice {
  background: #f0f4f9; border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 16px 18px; font-size: .88rem; color: var(--text-muted); text-align: center;
}

/* 価格表の横幅を統一（相続・不動産登記・成年後見・商業登記） */
.price-table--fixed { table-layout: fixed; }
.price-table--fixed th:nth-child(1),
.price-table--fixed td:nth-child(1) { width: 45%; }
.price-table--fixed th:nth-child(2),
.price-table--fixed td:nth-child(2) { width: 55%; }
.price-table--fixed td { word-break: break-word; }

/* ===== Area Grid ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.area-block {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.area-block__pref {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: .5rem;
  letter-spacing: .06em;
}
.area-block__cities {
  font-size: .83rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

/* ===== News List ===== */
/* ===== 事務所理念 (creed) ===== */
.creed-statement {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.85;
  letter-spacing: .05em;
}
.creed-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
}
.creed-intro p {
  font-size: .95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.creed-intro p:last-child { margin-bottom: 0; }
.creed-closing {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.creed-closing__main {
  display: block;
  font-size: clamp(1.45rem, 3.8vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  letter-spacing: .05em;
  position: relative;
  padding-bottom: 1.1rem;
}
.creed-closing__main::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 1.1rem auto 0;
}
.creed-closing__sub {
  display: block;
  font-size: .95rem;
  color: var(--text-muted);
  margin-top: 1.1rem;
  letter-spacing: .03em;
}

.creed-subhead {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: .1em;
  margin-bottom: 1.6rem;
}
.creed-subhead::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: .5rem auto 0;
}
.creed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.creed-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.creed-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.creed-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.creed-card__list li {
  position: relative;
  padding-left: 1.4em;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.creed-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 768px) {
  .creed-grid { grid-template-columns: 1fr; }
}

.news-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-updated {
  max-width: 700px;
  margin: 12px auto 0;
  text-align: right;
  font-size: .75rem;
  color: #9aa3af;
  letter-spacing: .04em;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item__date {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: .82rem;
  letter-spacing: .04em;
}
.news-item__title { color: var(--text); }
.news-item--error { color: var(--text-muted); font-size: .88rem; justify-content: center; }
.news-item__file {
  margin-left: 10px;
  font-size: .8rem;
  color: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
  transition: background var(--transition);
}
.news-item__file:hover { background: #eef2f9; color: var(--navy); }

/* ===== Article List (コラム／学習ノート) ===== */
.article-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-updated {
  max-width: 760px;
  margin: 12px auto 0;
  text-align: right;
  font-size: .75rem;
  color: #9aa3af;
  letter-spacing: .04em;
}
.article-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  transition: .2s;
}
.article-item:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.1); border-color: var(--gold); }
.article-item__link { display: block; padding: 18px 20px; text-decoration: none; color: inherit; }
.article-item__date {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-bottom: .3rem;
}
.article-item__title { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.article-item__excerpt { display: block; font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.article-item--error { padding: 14px 0; text-align: center; color: var(--text-muted); font-size: .88rem; border: none; box-shadow: none; background: none; }

/* ===== Article Body（個別記事ページ） ===== */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: .96rem; line-height: 1.6; color: var(--text); margin-bottom: 2.2rem; }

/* ===== Office Photos ===== */
.office-photos {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.office-photos__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.office-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.office-photos__grid img {
  width: 100%; height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.office-photo-placeholder {
  height: 130px;
  background: #f0f4f9;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; color: var(--text-muted); text-align: center;
}
.office-photo-placeholder__icon { font-size: 1.4rem; }
.office-photo-placeholder__label { font-size: .78rem; font-weight: 600; }
.office-photo-placeholder__hint  { font-size: .65rem; color: #bbb; }

/* ===== Sakura Photo Section ===== */
.sakura-section {
  background: #fff8f8;
  border-top: 1px solid #f0d0d0;
  border-bottom: 1px solid #f0d0d0;
  padding: 40px 20px;
}
.sakura-section__inner { max-width: 960px; margin: 0 auto; }
.sakura-photo-wrap {
  width: 100%; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
}
.sakura-photo-wrap img,
.sakura-photo {
  width: 100%; height: 480px; object-fit: cover;
  object-position: center 30%;
  display: block; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sakura-photo-placeholder {
  width: 100%; height: 360px;
  background: linear-gradient(135deg, #ffe8f0 0%, #ffd6e8 50%, #ffe0b0 100%);
  border: 2px dashed #e0a0b0;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: #b06080; text-align: center;
}
.sakura-photo-placeholder__icon { font-size: 3rem; }
.sakura-photo-placeholder__text { font-size: 1.1rem; font-weight: 700; }
.sakura-photo-placeholder__hint { font-size: .82rem; color: #c080a0; line-height: 1.6; }
.sakura-section__caption {
  text-align: center; font-size: .88rem;
  color: var(--text-muted); letter-spacing: .06em;
}
.sakura-section__caption-icon { margin-right: 4px; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; }
  .site-nav.open {
    display: flex;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 8px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
  }
  .site-nav.open a {
    height: auto; padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .95rem;
  }
  .hamburger { display: flex; }
  .nav-cta .nav-tel { display: none; }

  .profile-wrap { grid-template-columns: 1fr; }
  .profile-photo { max-width: 180px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .step:nth-child(4)::after { display: none; }

  .hero { padding: 72px 20px 64px; }
  .section { padding: 52px 0; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .features { grid-template-columns: 1fr 1fr; }
}

/* ===== Responsive info-grid (replaces inline 2/3-col grids) ===== */
.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 2rem; }
.info-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 2rem; }

@media (max-width: 600px) {
  .info-grid-2,
  .info-grid-3 {
    grid-template-columns: 1fr;
  }
}
