/* さくら行政書士事務所 — 信頼系（ネイビー×白×桜色） */

:root {
  --bg: #ffffff;
  --bg-alt: #f2f5f9;
  --navy: #1f3a5f;
  --navy-deep: #16293f;
  --ink: #2b3542;
  --sakura: #d98a9e;
  --line: #d8dee6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.95;
}

/* header */
.header { border-bottom: 3px solid var(--navy); }

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5vw 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.logo { font-family: "Noto Serif JP", serif; font-size: 22px; font-weight: 600; color: var(--navy); }

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--sakura);
  color: #fff;
  border-radius: 6px;
  font-size: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

.header-contact { text-align: right; }

.header-tel a {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.header-hours { font-size: 12px; color: #66707d; }

.nav { display: flex; justify-content: center; gap: 4px; padding: 0 5vw 12px; flex-wrap: wrap; }

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 4px;
}

.nav a:hover { background: var(--bg-alt); color: var(--navy); }

/* hero */
.hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(217,138,158,0.18), transparent 34%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: 96px 5vw;
}

.hero-inner { max-width: 900px; margin: 0 auto; }

.hero h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-lead { opacity: 0.92; margin-bottom: 36px; }

.hero-button {
  display: inline-block;
  background: var(--sakura);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 46px;
  border-radius: 6px;
  transition: 0.25s;
}

.hero-button:hover { background: #c4758a; }

/* sections */
.section { padding: 84px 5vw; max-width: 940px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: 940px; margin-left: auto; margin-right: auto; }

.section-title {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 48px;
}

.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--sakura);
  margin: 14px auto 0;
}

/* services */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.service-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 6px;
  padding: 28px 26px;
  background: #fff;
}

.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; }

/* reasons */
.reason-list { list-style: none; max-width: 760px; margin: 0 auto; }

.reason-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.reason-icon { color: var(--sakura); padding-top: 4px; }
.reason-list h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.reason-list p { font-size: 14px; }

/* price */
.price-table { width: 100%; max-width: 720px; margin: 0 auto; border-collapse: collapse; }

.price-table th, .price-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.price-table th { text-align: left; font-weight: 500; }

.price-table td {
  text-align: right;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.price-note { max-width: 720px; margin: 20px auto 0; font-size: 13px; color: #66707d; }

/* profile */
.profile { display: flex; gap: 38px; align-items: flex-start; max-width: 760px; margin: 0 auto; }

.profile-photo {
  flex: 0 0 170px;
  height: 200px;
  border-radius: 6px;
  background: linear-gradient(165deg, #8fa3bd, #5c7495);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.2em;
  font-size: 14px;
}

.profile-name { font-family: "Noto Serif JP", serif; font-size: 21px; font-weight: 600; color: var(--navy); }
.profile-en { font-size: 13px; font-weight: 400; color: var(--ink); margin-left: 6px; }
.profile-license { font-size: 13px; color: var(--sakura); margin: 4px 0 12px; }

/* cta */
.cta {
  text-align: center;
  padding: 90px 5vw;
  background: var(--bg-alt);
}

.cta h2 { font-family: "Noto Serif JP", serif; font-size: 26px; color: var(--navy); margin-bottom: 14px; }

.cta-tel {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: 22px;
  border-bottom: 3px solid var(--sakura);
  padding-bottom: 4px;
}

.cta-sub { margin-top: 20px; font-size: 13px; color: #66707d; }

/* footer */
.footer { text-align: center; padding: 32px; background: var(--navy-deep); color: #fff; }
.footer-copy { font-size: 12px; opacity: 0.75; margin-top: 6px; }

/* mobile */
@media (max-width: 760px) {
  .header-top { flex-direction: column; text-align: center; }
  .header-contact { text-align: center; }
  .service-grid { grid-template-columns: 1fr; }
  .profile { flex-direction: column; align-items: center; text-align: center; }
  .section { padding: 56px 6vw; }
  .cta-tel { font-size: 30px; }
}
