:root {
  /* ===== Design Tokens ===== */
  --atom-red: #b30009;
  --atom-red-dark: #800006;
  --atom-black: #1a1a1a;
  --atom-gray-text: #666;
  --atom-gray-light: #fff6f6;
  --atom-gray-border: #e0e0e0;
  --atom-white: #fff;

  /* Fonts */
  --font-serif-en: "Cormorant Garamond", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", -apple-system, sans-serif;

  /* Layout */
  --max-width: 1080px;
  --content-width: 720px;
  --side-pad: clamp(16px, 5vw, 48px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  color: var(--atom-black);
  background: var(--atom-white);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

/* ===== Image Placeholders ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--atom-gray-light) 0%, #fde8e8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(179, 0, 9, 0.4);
  text-align: center;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 14px,
    rgba(179, 0, 9, 0.04) 14px,
    rgba(179, 0, 9, 0.04) 15px
  );
}
.img-placeholder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
.img-placeholder-inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}
.img-placeholder-inner .label {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.img-placeholder-inner .desc {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(179, 0, 9, 0.5);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* ===== TOP NOTICE BAR ===== */
.notice-bar {
  background: var(--atom-black);
  color: var(--atom-white);
  padding: 8px var(--side-pad);
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.notice-bar strong {
  color: #ffe100;
  font-weight: 700;
}

/* ===== HEADER ===== */
.header {
  background: var(--atom-white);
  border-bottom: 1px solid var(--atom-gray-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.97);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--atom-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--atom-black);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--atom-gray-text);
  font-weight: 400;
  margin-top: 2px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.header-tel-label {
  font-size: 12px;
  color: var(--atom-gray-text);
  letter-spacing: 0.1em;
}
.header-tel a {
  font-size: 30px;
  font-weight: 600;
  color: var(--atom-black);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.header-btn {
  background: var(--atom-red);
  color: var(--atom-white);
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.header-btn:hover {
  background: var(--atom-red-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--atom-white);
  overflow: hidden;
  padding: 80px var(--side-pad) 100px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: var(--atom-gray-light);
  z-index: 0;
}
.hero::after {
  content: "相続";
  position: absolute;
  top: 8%;
  left: -3%;
  font-family: var(--font-serif);
  font-size: clamp(200px, 27.5vw, 350px);
  font-weight: 700;
  color: var(--atom-gray-light);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--atom-red);
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--atom-red);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--atom-black);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero h1 .accent {
  color: var(--atom-red);
  position: relative;
  display: inline-block;
}
.hero-lead {
  font-size: 20px;
  color: var(--atom-gray-text);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  background: var(--atom-white);
  border: 1px solid var(--atom-gray-border);
  padding: 8px 16px;
  font-size: 16px;
  color: var(--atom-black);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero-badge strong {
  color: var(--atom-red);
  font-weight: 700;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-group a {
  background: var(--atom-red);
  color: var(--atom-white);
  padding: 20px 32px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(179, 0, 9, 0.25);
  white-space: nowrap;
}
.hero-cta-group a > span {
  white-space: nowrap;
}
.hero-cta-group a:hover {
  background: var(--atom-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(179, 0, 9, 0.35);
}
.hero-cta-group a .tel-num {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}
.cta-secondary {
  background: transparent;
  color: var(--atom-black);
  padding: 17px 28px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--atom-black);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.cta-secondary:hover {
  background: var(--atom-black);
  color: var(--atom-white);
}

/* Hero Right - Representative Portrait */
.hero-portrait {
  position: relative;
}
.hero-portrait-frame {
  background: var(--atom-white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  border-top: 4px solid var(--atom-red);
  overflow: hidden;
}
.hero-portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-portrait-caption {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--atom-black);
  color: var(--atom-white);
  padding: 20px 28px;
  max-width: 75%;
  border-left: 3px solid var(--atom-red);
  z-index: 3;
}
.hero-portrait-caption .role {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--atom-red);
  margin-bottom: 6px;
}
.hero-portrait-caption .name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.hero-portrait-caption .credential {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero-portrait-deco {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--atom-red);
  color: var(--atom-white);
  padding: 12px 20px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(179, 0, 9, 0.35);
}

/* ===== SECTION ===== */
.section {
  padding: 96px var(--side-pad);
  position: relative;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-inner.narrow {
  max-width: var(--content-width);
}
.section-eyebrow {
  display: none;
}
/* Hide all English section name labels (per spec) */
.hero-eyebrow,
.cta-big-label,
.cta-big-free,
.cta-big-divider {
  display: none !important;
}
.section-eyebrow--hidden-original {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--atom-red);
  letter-spacing: 0.25em;
  text-align: center;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 500;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--atom-red);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--atom-black);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.section-title.large {
  font-size: clamp(35px, 5vw, 45px);
  line-height: 1.5;
}
.section-lead {
  text-align: center;
  font-size: 18px;
  color: var(--atom-gray-text);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 2;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--atom-gray-light);
}
.problem-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  margin-top: 40px;
  align-items: center;
}
.problem-image {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  position: relative;
}
.problem-image img {
  width: 100%;
  height: auto;
  display: block;
}
.problem-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(179, 0, 9, 0.4);
  pointer-events: none;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-card {
  background: var(--atom-white);
  padding: 28px 32px;
  border-left: 3px solid var(--atom-red);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
}
.problem-num {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 60px;
  font-weight: 500;
  color: var(--atom-red);
  line-height: 1;
  opacity: 0.7;
}
.problem-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--atom-black);
  margin-bottom: 10px;
  line-height: 1.6;
}
.problem-card p {
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 1.9;
}

/* ===== REASON SECTION ===== */
.reason-section {
  background: var(--atom-white);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 56px;
}
.reason-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.reason-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--atom-red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.reason-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.reason-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--atom-white);
  fill: none;
  stroke-width: 1.5;
}
.reason-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--atom-black);
  margin-bottom: 12px;
  line-height: 1.6;
}
.reason-content h3 .num {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--atom-red);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.reason-content p {
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 1.9;
}
.reason-content p .note {
  display: block;
  font-size: 14px;
  color: var(--atom-red);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ===== CONSULTATION SCENE SECTION ===== */
.scene-section {
  background: var(--atom-gray-light);
  padding: 0;
}
.scene-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.scene-image {
  position: relative;
}
.scene-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-image .img-placeholder {
  height: 100%;
}
.scene-content {
  padding: 72px var(--side-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}
.scene-content .section-eyebrow {
  justify-content: flex-start;
  margin-bottom: 16px;
}
.scene-content .section-eyebrow::before {
  display: none;
}
.scene-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(27px, 3.5vw, 35px);
  font-weight: 700;
  color: var(--atom-black);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.scene-content p {
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 2;
  margin-bottom: 16px;
}
.scene-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--atom-gray-border);
}
.scene-signature-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.scene-signature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scene-signature-img .img-placeholder {
  height: 100%;
}
.scene-signature-img .img-placeholder-inner svg {
  width: 24px;
  height: 24px;
}
.scene-signature-img .img-placeholder-inner .label {
  font-size: 11px;
}
.scene-signature-img .img-placeholder-inner .desc {
  display: none;
}
.scene-signature-text .role {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--atom-red);
}
.scene-signature-text .name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--atom-black);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

/* ===== FEE SECTION ===== */
.fee-section {
  background: var(--atom-white);
}
.fee-table-wrap {
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: var(--atom-white);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--atom-gray-border);
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
}
.fee-table thead {
  background: var(--atom-black);
  color: var(--atom-white);
}
.fee-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.fee-table th:last-child {
  text-align: right;
}
.fee-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--atom-gray-border);
  font-size: 18px;
  color: var(--atom-black);
}
.fee-table tr:last-child td {
  border-bottom: none;
}
.fee-table td:first-child {
  font-family: var(--font-serif);
  font-weight: 500;
}
.fee-table td:last-child {
  text-align: right;
  font-size: 33px;
  font-weight: 600;
  color: var(--atom-red);
  letter-spacing: 0.02em;
}
.fee-table td:last-child .unit {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--atom-gray-text);
  margin-left: 4px;
  font-weight: 400;
}
.fee-note {
  font-size: 14px;
  color: var(--atom-gray-text);
  margin-top: 20px;
  line-height: 1.9;
}

.fee-additional {
  margin-top: 32px;
}
.fee-additional-title {
  font-family: var(--font-serif-en);
  font-size: 26px;
  color: var(--atom-red);
  letter-spacing: 0.22em;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}
.fee-additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fee-additional-item {
  background: var(--atom-white);
  border: 1px solid var(--atom-gray-border);
  border-top: 2px solid var(--atom-red);
  padding: 20px 22px;
}
.fee-additional-item .name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--atom-black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.fee-additional-item .amount {
  font-size: 16px;
  color: var(--atom-gray-text);
  line-height: 1.6;
}
.fee-note {
  font-size: 14px;
  opacity: 0.7;
}

/* ===== DEADLINE SECTION ===== */
.deadline-section {
  background: var(--atom-gray-light);
  position: relative;
}
.deadline-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}
.deadline-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deadline-circle {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  position: relative;
  margin-top: 20px;
}
/* Stopwatch crown (top button) */
.deadline-circle::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 14px;
  background: linear-gradient(160deg, #4a4a4a, #111111);
  border-radius: 4px 4px 2px 2px;
  z-index: 2;
}
.deadline-circle::after {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 8px;
  background: linear-gradient(160deg, #4a4a4a, #111111);
  border-radius: 2px 2px 0 0;
  z-index: 2;
}
/* Stopwatch side buttons */
.deadline-circle .stopwatch-side {
  position: absolute;
  top: 8%;
  width: 10px;
  height: 16px;
  background: linear-gradient(160deg, #4a4a4a, #111111);
  border-radius: 2px;
  z-index: 3;
}
.deadline-circle .stopwatch-side.left {
  left: 16.5%;
  transform: rotate(-30deg);
}
.deadline-circle .stopwatch-side.right {
  right: 16.5%;
  transform: rotate(30deg);
}
.deadline-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: relative;
  z-index: 1;
}
.deadline-circle-bg {
  fill: none;
  stroke: rgba(179, 0, 9, 0.1);
  stroke-width: 3;
}
.deadline-circle-outer {
  fill: var(--atom-white);
  stroke: url(#ringGrad);
  stroke-width: 1;
}
.deadline-circle-progress {
  fill: none;
  stroke: var(--atom-red);
  stroke-width: 3.5;
  stroke-linecap: butt;
  stroke-dasharray: 172.5 65.26;
  stroke-dashoffset: 0;
}
.deadline-circle-fade {
  fill: none;
  stroke: url(#arcFadeGrad);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 24.5 214.26;
  stroke-dashoffset: -172.5;
}
/* Tick marks for stopwatch */
.deadline-tick {
  stroke: #2a2a2a;
  stroke-width: 0.7;
  stroke-linecap: round;
}
.deadline-tick.major {
  stroke-width: 1.2;
}
.deadline-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.deadline-center-num {
  font-family: var(--font-serif);
  font-size: 115px;
  font-weight: 700;
  color: var(--atom-black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.deadline-center-num .small {
  font-size: 32px;
  font-weight: 600;
  color: var(--atom-red);
  margin-left: 2px;
}
.deadline-center-label {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--atom-gray-text);
  letter-spacing: 0.15em;
  margin-top: 8px;
  font-weight: 500;
}
.deadline-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(27px, 3.5vw, 35px);
  font-weight: 700;
  color: var(--atom-black);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.deadline-content .lead {
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 2;
  margin-bottom: 28px;
}
.deadline-content .lead strong {
  color: var(--atom-red);
  font-weight: 700;
}
.penalty-list {
  list-style: none;
  background: var(--atom-white);
  padding: 24px 28px;
  border-left: 3px solid var(--atom-red);
}
.penalty-list li {
  padding: 10px 0;
  font-size: 18px;
  color: var(--atom-black);
  display: flex;
  align-items: center;
  gap: 12px;
}
.penalty-list li strong {
  color: var(--atom-red);
  font-family: var(--font-serif-en);
  font-size: 22px;
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}
.penalty-list li strong .num {
  font-family: var(--font-sans);
}

/* ===== MID CTA ===== */
.mid-cta-section {
  background: var(--atom-gray-light);
  padding: 0px var(--side-pad) 56px;
}
.mid-cta-inner {
  background: var(--atom-red);
  box-shadow: 0 6px 20px rgba(179, 0, 9, 0.25);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px 32px;
  margin: 0 auto;
  transition: all 0.3s;
}
.mid-cta-inner:hover {
  background: var(--atom-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(179, 0, 9, 0.35);
}
.mid-cta-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--atom-white);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.mid-cta-inner a {
  font-size: 32px;
  font-weight: 600;
  color: var(--atom-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}
.mid-cta-note {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .mid-cta-section {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .mid-cta-inner {
    width: 100%;
    padding: 20px;
  }
  .mid-cta-text {
    font-size: 16px;
  }
  .mid-cta-inner a {
    font-size: 26px;
  }
  .mid-cta-note {
    font-size: 14px;
    white-space: normal;
  }
}

/* ===== CASE SECTION ===== */
.case-section {
  background: var(--atom-white);
}
.case-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.case-item {
  background: var(--atom-white);
  border: 1px solid var(--atom-gray-border);
  border-top: 3px solid var(--atom-red);
  padding: 44px 48px;
  position: relative;
}
.case-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--atom-red);
  background: var(--atom-gray-light);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.case-title {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  color: var(--atom-black);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.case-summary {
  background: var(--atom-gray-light);
  border-left: 3px solid var(--atom-red);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.case-summary-label {
  display: block;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--atom-red);
  margin-bottom: 6px;
  font-weight: 500;
}
.case-summary p {
  font-size: 18px;
  color: var(--atom-black);
  line-height: 1.8;
  margin: 0;
}
.case-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--atom-gray-border);
  border-bottom: 1px solid var(--atom-gray-border);
}
.case-meta div {
  display: flex;
  flex-direction: column;
}
.case-meta dt {
  font-family: var(--font-serif-en);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--atom-red);
  font-weight: 700;
}
.case-meta dd {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--atom-black);
  letter-spacing: 0.02em;
}
.case-section-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--atom-black);
  border-left: 3px solid var(--atom-red);
  padding-left: 12px;
  margin-bottom: 14px;
  margin-top: 24px;
  letter-spacing: 0.05em;
}
.case-section-heading:first-of-type {
  margin-top: 0;
}
.case-body {
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 2;
  margin-bottom: 16px;
}
.case-body:last-of-type {
  margin-bottom: 0;
}
.case-result {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--atom-gray-border);
  flex-wrap: wrap;
}
.case-result-badge {
  background: var(--atom-red);
  color: var(--atom-white);
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 6px 14px;
}
.case-result-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--atom-black);
  letter-spacing: 0.03em;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

/* ===== FLOW SECTION ===== */
.flow-section {
  background: var(--atom-white);
}
.flow-timeline {
  margin-top: 56px;
  position: relative;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}
.flow-timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--atom-red);
  opacity: 0.3;
}
.flow-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.flow-step:last-child {
  margin-bottom: 0;
}
.flow-num {
  width: 72px;
  height: 72px;
  background: var(--atom-white);
  border: 2px solid var(--atom-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: var(--atom-red);
  position: relative;
  z-index: 2;
}
.flow-step .flow-num {
  background: var(--atom-red);
  color: var(--atom-white);
}
.flow-body {
  background: var(--atom-gray-light);
  padding: 22px 28px;
  border-left: 3px solid var(--atom-red);
  margin-top: 8px;
}
.flow-body h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--atom-black);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.flow-body .time {
  display: inline-block;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--atom-red);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  font-weight: 500;
}
.flow-body p {
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 1.9;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--atom-gray-light);
}
.faq-list {
  margin-top: 56px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--atom-white);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--atom-gray-border);
}
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--atom-black);
  line-height: 1.7;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.faq-q::before {
  content: "Q";
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 32px;
  color: var(--atom-red);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 600;
}
.faq-q::after {
  content: "+";
  margin-left: auto;
  font-size: 30px;
  color: var(--atom-gray-text);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 26px 26px 70px;
  font-size: 18px;
  color: var(--atom-gray-text);
  line-height: 1.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--atom-black);
  color: var(--atom-white);
  text-align: center;
  padding: 96px var(--side-pad);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(179, 0, 9, 0.2),
    transparent 60%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
}
.cta-section .section-eyebrow {
  color: var(--atom-red);
  margin-bottom: 20px;
}
.cta-section .section-eyebrow::before,
.cta-section .section-eyebrow::after {
  background: var(--atom-red);
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 45px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.cta-section .lead {
  font-size: 18px;
  color: #fff;
  margin-bottom: 48px;
  line-height: 2;
}
.cta-big {
  background: var(--atom-white);
  padding: 40px 44px 44px;
  border-top: 4px solid var(--atom-red);
  max-width: 580px;
  margin: 0 auto;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.cta-big-label {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 16px;
  color: var(--atom-red);
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  font-weight: 500;
}
.cta-big-title {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--atom-black);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cta-big-free {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 16px;
  color: var(--atom-red);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  font-weight: 500;
}
.cta-big-free-note {
  font-size: 14px;
  color: var(--atom-gray-text);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.cta-big a {
  font-size: 68px;
  font-weight: 600;
  color: var(--atom-black);
  text-decoration: none;
  display: block;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.cta-big:hover a {
  color: var(--atom-red);
}
.cta-big-hours {
  font-size: 15px;
  color: var(--atom-gray-text);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.cta-big-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--atom-gray-border);
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.2em;
}
.cta-big-divider::before,
.cta-big-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--atom-gray-border);
}
.cta-mail-btn {
  display: block;
  background: var(--atom-black);
  color: var(--atom-white);
  padding: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.cta-mail-btn:hover {
  background: var(--atom-red);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--atom-black);
  color: #fff;
  padding: 56px var(--side-pad) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-label {
  background: #ffffff;
  display: block;
  height: 37px;
  width: auto;
  padding: 9px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--atom-white);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.footer-desc {
  font-size: 15px;
  line-height: 2;
}
.footer-col h4 {
  color: var(--atom-white);
  font-size: 15px;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col p,
.footer-col li {
  font-size: 15px;
  line-height: 2;
  list-style: none;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--atom-red);
}
.footer-bottom {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ===== FLOATING CTA ===== */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--atom-white);
  border-top: 1px solid var(--atom-gray-border);
  padding: 10px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.float-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  background: var(--atom-red);
  color: var(--atom-white);
}
.float-cta a svg {
  position: relative;
  top: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-inner > * {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero-inner > *:nth-child(2) {
  animation-delay: 0.2s;
}

br.mob {
  display: none;
}
@media (max-width: 768px) {
  br.mob {
    display: block;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .notice-bar {
    font-size: 14px;
    padding: 6px 12px;
  }
  .header-inner {
    padding: 12px var(--side-pad);
  }
  .logo-text {
    font-size: 18px;
  }
  .logo-text small {
    font-size: 12px;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
  }
  .header-tel,
  .header-btn {
    display: none;
  }

  .hero {
    padding: 48px var(--side-pad) 80px;
  }
  .hero::before {
    width: 100%;
    opacity: 0.4;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .problem-card p,
  .reason-content p,
  .scene-content p,
  .case-summary p,
  .case-body,
  .deadline-content .lead,
  .penalty-list li,
  .flow-body p,
  .faq-a-inner,
  .cta-section .lead {
    font-size: 16px;
  }
  .hero-portrait-caption {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 16px;
  }
  .hero-portrait-deco {
    font-size: 14px;
    padding: 8px 14px;
    right: 0;
    top: 0;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group a {
    padding: 18px 22px;
    font-size: 16px;
    white-space: normal;
    width: 100%;
  }
  .hero-cta-group a > span {
    white-space: normal;
  }
  .hero-cta-group a .tel-num {
    font-size: 26px;
  }

  .section {
    padding: 64px var(--side-pad);
  }
  .section-title.large {
    font-size: 30px;
  }
  .case-title-label {
    font-size: 0.7em;
  }
  .section-lead {
    font-size: 16px;
    margin-bottom: 0;
  }

  .problem-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-image {
    max-width: 300px;
    margin: 0 auto;
    order: 1;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .problem-card {
    grid-template-columns: 48px 1fr;
    padding: 20px 22px;
    gap: 14px;
  }
  .problem-num {
    font-size: 45px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reason-item {
    gap: 18px;
  }
  .reason-icon {
    width: 56px;
    height: 56px;
  }
  .reason-icon svg {
    width: 26px;
    height: 26px;
  }

  .scene-wrap {
    grid-template-columns: 1fr;
  }
  .scene-image {
    min-height: 280px;
  }
  .scene-content {
    padding: 48px var(--side-pad);
  }

  .fee-table th,
  .fee-table td {
    padding: 14px 16px;
    font-size: 16px;
  }
  .fee-table td:last-child {
    font-size: 24px;
    white-space: nowrap;
  }
  .fee-additional-grid {
    grid-template-columns: 1fr;
  }

  .case-item {
    padding: 32px 24px;
  }
  .case-title {
    font-size: 21px;
  }
  .case-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .case-meta dt {
    font-size: 14px;
  }
  .cta-big-title {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .deadline-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .deadline-visual {
    max-width: 320px;
    margin: 0 auto;
  }
  .deadline-center-num {
    font-size: 85px;
  }
  .deadline-center-num .small {
    font-size: 28px;
  }

  .flow-timeline::before {
    left: 22px;
  }
  .flow-step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .flow-num {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .flow-body {
    padding: 16px 18px;
  }

  .faq-q {
    font-size: 18px;
    padding: 18px 20px;
    gap: 14px;
  }
  .faq-a-inner {
    padding: 0 20px 24px 52px;
  }

  .cta-section {
    padding: 64px var(--side-pad);
  }
  .cta-big {
    padding: 28px 24px 20px;
  }
  .cta-big a {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .float-cta {
    display: flex;
  }
}
