:root {
  --navy: #062B63;
  --text: #17345C;
  --orange: #F26A1B;
  --pale: #F7F9FC;
  --blue: #EAF0F7;
  --line: #D8E0EA;
  --white: #FFFFFF;
  --shadow: 0 16px 38px rgba(6, 43, 99, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#services, #flow, #works, #plans, #about, #contact, [id] {
  scroll-margin-top: 90px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 17%, rgba(242, 106, 27, .08) 0 2px, transparent 3px),
    linear-gradient(180deg, #fff 0%, #fff 58%, #f8fbff 100%);
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(216, 224, 234, .72);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 178px;
}
.brand-logo {
  width: 52px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-logo-full {
  width: auto;
  height: 62px;
}
.brand-text {
  display: grid;
  line-height: 1;
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: var(--navy);
  letter-spacing: .03em;
}
.brand-kana {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .24em;
  text-align: center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.nav a,
.nav-sub-toggle {
  position: relative;
  padding: 8px 0;
}
.nav > a[aria-current="page"]::after,
.nav-item.is-current > .nav-sub-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--orange);
  transform: translateX(-50%);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(6, 43, 99, .14); }
.button.primary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 28px rgba(6, 43, 99, .2);
}
.button.secondary { color: var(--navy); background: #fff; }
.button.outline-orange { color: var(--orange); background: #fff; }
.button.orange { color: #fff; background: var(--orange); border-color: var(--orange); }
.button.orange .arrow { color: #fff; }
.button.line-button {
  color: #fff;
  background: #06C755;
  border-color: #06C755;
  position: relative;
}
.button.line-button::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 5.94 2 10.7c0 3.02 1.9 5.67 4.75 7.24-.21.78-.76 2.82-.87 3.26-.14.55.2.55.42.4.17-.12 2.7-1.83 3.8-2.57.6.09 1.23.13 1.9.13 5.52 0 10-3.94 10-8.7S17.52 2 12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 5.94 2 10.7c0 3.02 1.9 5.67 4.75 7.24-.21.78-.76 2.82-.87 3.26-.14.55.2.55.42.4.17-.12 2.7-1.83 3.8-2.57.6.09 1.23.13 1.9.13 5.52 0 10-3.94 10-8.7S17.52 2 12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.button.line-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .55;
}
.arrow { color: var(--orange); font-size: 20px; line-height: 1; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  padding: 64px 0 44px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 40px;
}
.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .02em;
}
.hero-copy h1 .hero-lede {
  display: inline-block;
  font-size: .55em;
  font-weight: 700;
}
.hero-copy h1 strong {
  color: var(--orange);
  font-weight: 700;
}
.hero-copy p {
  width: min(570px, 100%);
  margin: 24px 0 28px;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.visual {
  position: relative;
}
.diag-card {
  display: block;
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 30px 28px;
  background: #fff;
  border-top: 4px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(6, 43, 99, .14);
}
.diag-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.diag-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(6, 43, 99, .2);
}
.diag-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.diag-card-link:hover .diag-cta {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(242, 106, 27, .45);
}
.diag-pill {
  display: inline-block;
  padding: 5px 14px;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.diag-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
}
.diag-cat::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.diag-question {
  margin: 10px 0 20px;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1.5;
}
.diag-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.diag-dot {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.diag-dot.active { background: var(--orange); }
.diag-line {
  width: 22px;
  height: 1px;
  background: var(--line);
}
.diag-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 14px 4px;
  background: var(--blue);
  border-radius: 10px;
  margin-bottom: 18px;
  text-align: center;
}
.diag-stats strong {
  display: block;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
}
.diag-stats span {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}
.diag-desc {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.icon {
  width: 42px;
  height: 42px;
  color: var(--navy);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon .accent { stroke: var(--orange); }
.mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, var(--pale));
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(6, 43, 99, .06);
}
.mark::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 99px;
}
section { position: relative; }
.services {
  z-index: 2;
  margin-top: 8px;
  padding-bottom: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(216, 224, 234, .72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-card-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 22px 24px;
}
.service-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}
.service-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.section-title {
  margin: 56px 0 28px;
  color: var(--navy);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
  text-align: center;
  letter-spacing: .16em;
}
.section-title::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 0 auto 16px;
  background: var(--orange);
  border-radius: 2px;
}
.section-tag-wrap {
  text-align: center;
}
.section-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 22px;
  background: #FBE4D5;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 999px;
}
.section-title--tag {
  margin-top: 0;
}
.section-title--tag::before {
  display: none;
}
.section-title--tag .dash {
  display: inline-block;
  margin: 0 12px;
  color: var(--orange);
  font-weight: 700;
}
.brand-mark {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 1px;
}
.doc-sheet-card {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.doc-sheet-link {
  display: block;
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.doc-sheet-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(6, 43, 99, .2);
}
.doc-sheet-thumb {
  width: 100%;
  display: block;
}
.doc-sheet-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.doc-sheet-cta .arrow { color: var(--orange); }
.faq {
  padding: 24px 0 8px;
}
.faq-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
}
.faq-title {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .08em;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.sp-only { display: none; }
.pc-only { display: inline; }
/* 日本語見出しを文節単位で折り返す(単語途中の改行防止・対応ブラウザのみ) */
h1, h2, h3 { word-break: auto-phrase; }
.section-lead {
  width: min(760px, 100%);
  margin: -12px auto 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}
.steps {
  padding-bottom: 18px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: stretch;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  min-height: 122px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(242, 106, 27, .22);
  border-radius: 8px;
}
.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -34px;
  top: 50%;
  color: var(--navy);
  font-size: 34px;
  font-weight: 500;
  transform: translateY(-50%);
}
.num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}
.step-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}
.step-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.about {
  padding: 26px 0 38px;
  background:
    linear-gradient(175deg, transparent 0 32%, rgba(234, 240, 247, .72) 32% 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 54px;
}
.photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(6, 43, 99, .12);
}
/* 代表のあいさつに添える丸いアイコン */
.about-grid.has-portrait { grid-template-columns: 220px 1fr; gap: 44px; }
.about-portrait { margin: 0; text-align: center; }
.about-portrait img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}
.about-portrait figcaption {
  margin-top: 12px;
  color: #5a6b82;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.about-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.about-tagline::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.about h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.55;
  letter-spacing: .12em;
}
.about p {
  margin: 0;
  max-width: 570px;
  font-size: 17px;
  font-weight: 700;
}
.about-profile {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(6, 43, 99, .12);
}
.about-profile h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 900;
  line-height: 1.5;
}
.about-profile p {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}
.works {
  padding: 54px 0 34px;
  background: #fff;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.ba-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(216, 224, 234, .8);
}
.ba-before {
  background: var(--pale);
}
.ba-after {
  background: #fff;
  border-color: rgba(242, 106, 27, .4);
  box-shadow: var(--shadow);
}
.ba-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}
.ba-badge-before {
  color: #fff;
  background: var(--navy);
}
.ba-badge-after {
  color: #fff;
  background: var(--orange);
}
.ba-photo {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.ba-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ba-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.ba-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--orange);
}
.plan-section {
  padding: 20px 0 46px;
  background: #fff;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(216, 224, 234, .9);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(6, 43, 99, .09);
}
.plan-card.featured {
  border-color: rgba(242, 106, 27, .5);
  background: linear-gradient(180deg, #fff, #fff8f4);
}
.monitor-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  min-height: 420px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(6, 43, 99, .3);
  background-color: var(--navy);
  background-image: url('monitor-banner-bg.jpg');
  background-size: cover;
  background-position: center;
}
.monitor-zabuton {
  position: relative;
  z-index: 1;
  margin: 28px;
  padding: 34px 38px;
  width: min(560px, 100%);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(6, 43, 99, .22);
}
.monitor-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}
.monitor-zabuton h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  line-height: 1.45;
}
.monitor-price {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}
.monitor-price span {
  margin-left: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.monitor-desc {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}
.plan-grid-sub {
  grid-template-columns: repeat(2, 1fr);
}
.plan-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.plan-card.featured .plan-badge { background: var(--orange); }
.plan-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.4;
}
.price {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}
.plan-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}
.cta {
  padding: 42px 0 16px;
  background:
    radial-gradient(circle at 12% 50%, rgba(242, 106, 27, .2) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 50%, rgba(242, 106, 27, .2) 0 1px, transparent 2px),
    linear-gradient(180deg, #fff, #f8fbff);
}
.cta-box {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 48px;
  padding: 44px 48px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(216, 224, 234, .7);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.cta-intro {
  position: sticky;
  top: 112px;
}
.cta-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-align: center;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}
.cta-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: .1em;
}
.cta-intro p.cta-sub {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--text);
  text-align: center;
}
.contact-form {
  display: grid;
  gap: 20px;
  padding: 28px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.contact-form[hidden] { display: none; }
.form-field {
  display: grid;
  gap: 8px;
}
.form-label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.form-required,
.form-optional {
  display: inline-flex;
  margin-left: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  vertical-align: 2px;
}
.form-required { color: #fff; background: var(--orange); }
.form-optional { color: #60728a; background: #e4eaf1; }
.contact-form input[type="text"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid #bac6d5;
  border-radius: 7px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form select { min-height: 52px; }
.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 43, 99, .12);
}
.form-help {
  margin: 0;
  color: #60728a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
  flex: 0 0 auto;
}
.privacy-check a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.contact-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.contact-status {
  min-height: 1.5em;
  margin: -8px 0 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.contact-alt-note {
  margin: 24px 0 0;
  color: #60728a;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.contact-success {
  padding: 44px 30px;
  background: linear-gradient(180deg, #f5f9ff, #fff);
  border: 1px solid rgba(6, 43, 99, .18);
  border-radius: 10px;
  text-align: center;
}
.contact-success-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
}
.contact-success h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}
.contact-success p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.contact-frame,
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer {
  margin-top: 28px;
  padding: 32px 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent),
    var(--navy);
  box-shadow: 0 -10px 32px rgba(6, 43, 99, .16);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer .brand-name,
.footer .brand-kana,
.footer .brand { color: #fff; }
.footer .brand-logo {
  padding: 4px;
  background: #fff;
  border-radius: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
}
@media (max-width: 1040px) {
  .nav { gap: 17px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .step-card::after { display: none; }
  .ba-grid, .plan-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .wrap { width: min(100% - 32px, 640px); }
  .header-inner { min-height: 68px; position: relative; }
  .brand-name { font-size: 25px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 20px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 26px rgba(6, 43, 99, .1);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-child { border-bottom: none; }
  .nav > a[aria-current="page"]::after, .nav-item.is-current > .nav-sub-toggle::after { display: none; }
  .hero { padding-top: 42px; }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero-copy p { font-size: 15px; line-height: 1.9; }
  .hero-actions .button { width: 100%; }
  .service-grid, .step-grid, .about-grid, .about-grid.has-portrait { grid-template-columns: 1fr; }
  .service-card-body { grid-template-columns: 54px 1fr; padding: 20px; }
  .section-title { letter-spacing: .08em; }
  .ba-photo { aspect-ratio: 4 / 3; }
  .cta-box { grid-template-columns: 1fr; padding: 28px 24px; gap: 28px; }
  .cta-intro { position: static; }
  .contact-form { padding: 22px 18px; }
  .footer-inner { flex-direction: column; }
  .footer-nav { gap: 16px 22px; }
  .monitor-banner { min-height: 0; }
  .monitor-zabuton { margin: 18px; padding: 26px 22px; width: auto; }
  .monitor-zabuton .button { width: 100%; }
  .plan-grid-sub { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand { min-width: 0; gap: 8px; }
  .brand-name { font-size: 20px; }
  .header-inner { gap: 10px; }
  .button.outline-orange { padding: 0 14px; font-size: 12px; min-height: 40px; }
  .nav-toggle { width: 40px; height: 40px; }
  .hero-copy h1 { font-size: 32px; line-height: 1.6; }
  .diag-card { padding: 24px 20px; }
  .step-card { min-height: auto; }
}

/* 現場でよく聞くお声（共感セクション） */
.voices {
  padding: 54px 0 30px;
  background: var(--pale);
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.voice-card {
  position: relative;
  padding: 26px 26px 22px;
  background: #fff;
  border: 1px solid rgba(216, 224, 234, .9);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(6, 43, 99, .06);
}
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 18px;
  color: rgba(242, 106, 27, .28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}
.voice-quote {
  position: relative;
  margin: 10px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}
.voice-quote span {
  display: block;
  margin-top: 8px;
  color: #5a6b82;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.7;
}
.voices-bridge {
  margin: 30px auto 0;
  max-width: 720px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(242, 106, 27, .4);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}
.voices-bridge p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.85;
}
.voices-bridge .voices-bridge-sub {
  margin-top: 10px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voice-quote { font-size: 15.5px; }
}

/* ===== 2026-09-19 複数ページ化で追加した部品 ===== */

/* ヘッダーのプルダウン */
.nav-item { position: relative; }
.nav-sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.nav-sub-toggle .caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.nav-item.open .caret { transform: rotate(225deg); margin-top: 3px; }
.subnav {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  width: 340px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(6, 43, 99, .16);
  transform: translateX(-50%);
  white-space: normal;
}
.subnav::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item.open .subnav { display: block; }
@media (hover: hover) and (min-width: 821px) {
  .nav-item:hover .subnav { display: block; }
}
.subnav a {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
}
.subnav a:hover, .subnav a[aria-current="page"] { background: var(--pale); }
.subnav strong { display: block; color: var(--navy); font-size: 14px; }
.subnav small { display: block; margin-top: 2px; color: #5a6b82; font-size: 12px; font-weight: 700; line-height: 1.5; }
.subnav .subnav-label {
  margin: 8px 14px 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.subnav .subnav-new {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 10px;
  vertical-align: 2px;
}
@media (max-width: 820px) {
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-sub-toggle { width: 100%; justify-content: space-between; padding: 13px 0; }
  .subnav {
    position: static;
    width: auto;
    margin: 0 0 12px;
    padding: 4px;
    background: var(--pale);
    border: 0;
    box-shadow: none;
    transform: none;
  }
  .subnav::before { display: none; }
  .nav .subnav a { border-bottom: 0; padding: 10px 12px; }
}

/* 下層ページの見出し帯 */
.page-hero {
  padding: 56px 0 44px;
  background:
    radial-gradient(circle at 88% 20%, rgba(242, 106, 27, .10) 0 90px, transparent 91px),
    linear-gradient(180deg, #f5f8fd, #fff);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #5a6b82;
  font-size: 12px;
  font-weight: 700;
}
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--orange); }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.page-eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}
.page-hero .lead {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}
.page-body { padding: 16px 0 40px; }
.block { padding: 40px 0; }
.block + .block { border-top: 1px solid rgba(216, 224, 234, .7); }
.block-title {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(21px, 2.6vw, 27px);
  font-weight: 900;
  line-height: 1.5;
}
.block-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1.05em;
  margin-right: 12px;
  vertical-align: -3px;
  background: var(--orange);
  border-radius: 3px;
}
.block-lead { max-width: 780px; margin: -6px 0 22px; font-size: 15.5px; font-weight: 700; line-height: 1.9; }
.prose { max-width: 780px; }
.prose p { margin: 0 0 1em; font-size: 16px; font-weight: 700; line-height: 1.95; }
.prose p:last-child { margin-bottom: 0; }
.small-note { margin: 14px 0 0; color: #5a6b82; font-size: 13px; font-weight: 700; line-height: 1.75; }

/* 汎用カード */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.info-card {
  position: relative;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(6, 43, 99, .06);
}
.info-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; line-height: 1.45; }
.info-card p { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.8; }
.info-card p + p { margin-top: 8px; }
.info-card .num { margin-bottom: 12px; }
.info-card.accent { border-color: rgba(242, 106, 27, .45); background: linear-gradient(180deg, #fff, #fff8f4); }
a.info-card { display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
a.info-card:hover { transform: translateY(-3px); box-shadow: 0 20px 36px rgba(6, 43, 99, .14); }
a.info-card .card-more { margin-top: auto; padding-top: 14px; }
.card-more { display: inline-flex; gap: 6px; margin-top: 14px; color: var(--navy); font-size: 14px; font-weight: 900; }
.card-more::after { content: "→"; color: var(--orange); }
.tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--navy);
  background: var(--blue);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.3;
}
.tag.orange { color: #fff; background: var(--orange); }
.tag.navy { color: #fff; background: var(--navy); }
.tag.green { color: #1B6A50; background: #E1F1EA; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-row .tag { margin-bottom: 0; }

/* サービス入口（トップ） */
.service-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(216, 224, 234, .9);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-link:hover { transform: translateY(-3px); box-shadow: 0 24px 44px rgba(6, 43, 99, .18); }
.service-link img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-link-body { flex: 1; padding: 22px 24px 4px; }
.service-link h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; line-height: 1.45; }
.service-link p { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.8; }
.service-link .card-more { margin: 14px 24px 22px; }
.service-link.is-new { border-color: rgba(242, 106, 27, .55); }

/* 診断の2段 */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tier {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(6, 43, 99, .08);
}
.tier.deep { border-color: rgba(242, 106, 27, .5); background: linear-gradient(180deg, #fff, #fff8f4); }
.tier h3 { margin: 0 0 4px; color: var(--navy); font-size: 22px; }
.tier .tier-price { margin: 0 0 6px; color: var(--orange); font-size: 22px; font-weight: 900; }
.tier .tier-price span { margin-left: 8px; color: var(--text); font-size: 13px; font-weight: 700; }
.tier .tier-for { margin: 0 0 16px; font-size: 14px; font-weight: 700; line-height: 1.8; }
.tier .tier-out { margin: 16px 0 20px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 13.5px; font-weight: 700; line-height: 1.8; }
.tier .button { margin-top: auto; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 26px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.7;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(45deg);
}
.dot-list { margin: 0; padding: 0; list-style: none; }
.dot-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

/* 事例 */
.case {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.case + .case { margin-top: 28px; }
.case-side {
  padding: 22px;
  background: var(--pale);
  border-radius: 10px;
  align-self: start;
}
.case-side .case-name { margin: 6px 0 4px; color: var(--navy); font-size: 21px; font-weight: 900; line-height: 1.45; }
.case-side .case-meta { margin: 0 0 14px; font-size: 13px; font-weight: 700; line-height: 1.7; color: #5a6b82; }
.case-side dl { margin: 0; font-size: 13.5px; font-weight: 700; line-height: 1.7; }
.case-side dt { color: var(--orange); font-size: 11.5px; font-weight: 900; letter-spacing: .06em; }
.case-side dd { margin: 0 0 10px; }
.case-side dd:last-child { margin-bottom: 0; }
.case-side .case-link { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.case-main h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.case-main h3:not(:first-child) { margin-top: 24px; }
.case-main p { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.9; }
.case-steps { margin: 0; padding: 0; list-style: none; counter-reset: cs; }
.case-steps li {
  counter-increment: cs;
  position: relative;
  margin-bottom: 10px;
  padding: 12px 14px 12px 50px;
  background: var(--pale);
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.75;
}
.case-steps li::before {
  content: counter(cs);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.case-lesson {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #fff8f4;
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.85;
}
.case-lesson strong { display: block; margin-bottom: 2px; color: var(--navy); }

/* 料金表 */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.price-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15px; }
.price-table th, .price-table td { padding: 15px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: 0; }
.price-table thead th { background: var(--pale); color: var(--navy); font-size: 13px; font-weight: 900; white-space: nowrap; }
.price-table tbody th { color: var(--navy); font-weight: 900; width: 36%; }
.price-table td { font-weight: 700; line-height: 1.75; }
.price-table td.yen { color: var(--orange); font-weight: 900; white-space: nowrap; }
.price-table small { display: block; margin-top: 3px; color: #5a6b82; font-size: 12.5px; font-weight: 700; line-height: 1.6; }
.price-group + .price-group { margin-top: 48px; }
.price-group-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px; margin-bottom: 14px; }
.price-group-head h2 { margin: 0; color: var(--navy); font-size: 22px; font-weight: 900; }
.price-group-head a { color: var(--navy); font-size: 13px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

/* 私たちについて */
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.person {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.person-avatar {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--navy);
  background: var(--blue);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
}
.person-avatar.has-photo { background: none; overflow: hidden; }
.person-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-role { margin: 0; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.person-name { margin: 2px 0 8px; color: var(--navy); font-size: 22px; font-weight: 900; }
.person p { margin: 0; font-size: 14.5px; font-weight: 700; line-height: 1.85; }
.facts { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.facts div { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.facts div:last-child { border-bottom: 0; }
.facts dt { padding: 14px 18px; background: var(--pale); color: var(--navy); font-size: 14px; font-weight: 900; }
.facts dd { margin: 0; padding: 14px 18px; font-size: 14.5px; font-weight: 700; line-height: 1.8; }

/* ページ末の相談帯 */
.cta-band {
  margin: 30px 0 10px;
  padding: 40px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 20%, rgba(242, 106, 27, .35) 0 70px, transparent 71px),
    var(--navy);
  border-radius: 14px;
  text-align: center;
}
.cta-band h2 { margin: 0 0 10px; font-size: clamp(21px, 2.6vw, 28px); font-weight: 900; line-height: 1.5; }
.cta-band p { margin: 0 auto 22px; max-width: 640px; font-size: 15px; font-weight: 700; line-height: 1.85; opacity: .92; }
.cta-band .cta-actions { margin-top: 0; }

/* トップの事例・入口 */
.works-strip { padding: 50px 0 40px; background: var(--pale); }
.section-more { margin-top: 26px; text-align: center; }
.home-services { padding: 10px 0 30px; }

@media (max-width: 1040px) {
  .card-grid, .card-grid.four, .service-links { grid-template-columns: repeat(2, 1fr); }
  .case { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .card-grid, .card-grid.two, .card-grid.four, .service-links, .tier-grid, .people { grid-template-columns: 1fr; }
  .case { padding: 22px 18px; gap: 20px; }
  .page-hero { padding: 34px 0 28px; }
  .block { padding: 30px 0; }
  .facts div { grid-template-columns: 1fr; }
  .facts dt { padding-bottom: 6px; }
  .facts dd { padding-top: 6px; }
  .person { grid-template-columns: 60px 1fr; padding: 20px; gap: 14px; }
  .person-avatar { width: 60px; height: 60px; font-size: 20px; }
  .cta-band { padding: 30px 20px; }
  .cta-band .button, .section-more .button, .tier .button { width: 100%; }
  .button { white-space: normal; text-align: center; line-height: 1.4; padding-top: 10px; padding-bottom: 10px; }
}
.muted { color: #5a6b82; }

/* ヒーロー（2026-09-19 読まれない前提で作り直し） */
.hero-v2 { padding: 56px 0 56px; }
.hero-v2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-v2-who {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: var(--navy);
  background: var(--blue);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}
.hero-v2 h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
}
.hero-v2 h1 strong { color: var(--orange); }
.hero-v2-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 28px; padding: 0; list-style: none; }
.hero-v2-chips li {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy);
}
.hero-v2-chips b { color: #5a6b82; font-size: 12px; font-weight: 700; }
.hero-v2-pick {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-top: 4px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(6, 43, 99, .14);
}
.hero-v2-pick-title { margin: 0 0 2px; color: #5a6b82; font-size: 13px; font-weight: 900; letter-spacing: .06em; }
.pick {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--pale);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.pick:hover { border-color: var(--navy); background: #fff; transform: translateX(3px); }
.pick-new { background: #fff5ee; }
.pick-new:hover { border-color: var(--orange); }
.pick-icon { display: grid; place-items: center; width: 52px; height: 52px; background: #fff; border-radius: 50%; }
.pick-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pick-new .pick-icon svg { stroke: var(--orange); }
.pick-text strong { display: block; color: var(--navy); font-size: 19px; font-weight: 900; line-height: 1.4; }
.pick-text small { display: block; margin-top: 2px; color: #5a6b82; font-size: 12.5px; font-weight: 700; line-height: 1.5; }
.pick-arrow { color: var(--orange); font-size: 22px; font-weight: 900; }
.pick-badge { padding: 5px 10px; color: #fff; background: var(--orange); border-radius: 999px; font-size: 12px; font-weight: 900; white-space: nowrap; }
.pick-sub { margin-top: 4px; color: var(--navy); font-size: 13px; font-weight: 800; text-align: center; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1040px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .hero-v2 { padding: 30px 0 40px; }
  .hero-v2 h1 { font-size: clamp(32px, 9.5vw, 44px); }
  .hero-v2-who { font-size: 13px; }
  .hero-v2-chips { margin: 20px 0 22px; gap: 8px; }
  .hero-v2-chips li { padding: 8px 12px; font-size: 15px; }
  .hero-v2-pick { padding: 18px 14px; }
  .pick { grid-template-columns: 44px 1fr auto; gap: 10px; padding: 14px 12px; }
  .pick-icon { width: 44px; height: 44px; }
  .pick-icon svg { width: 24px; height: 24px; }
  .pick-text strong { font-size: 16.5px; }
  .hero-v2-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-v2-copy { display: contents; }
  .hero-v2-who { align-self: flex-start; }
  .hero-v2-pick { order: 2; margin-top: 4px; }
  .hero-v2 .hero-actions { order: 3; margin-top: 18px; flex-wrap: nowrap; gap: 10px; }
  .hero-v2 .hero-actions .button { width: auto; flex: 1 1 0; padding: 0 12px; min-height: 52px; font-size: 15px; white-space: nowrap; gap: 8px; }
  .hero-v2-chips { flex-wrap: nowrap; margin: 18px 0 20px; gap: 6px; }
  .hero-v2-chips li { flex: 1 1 0; padding: 7px 8px; font-size: 13.5px; border-left-width: 3px; }
  .hero-v2-chips b { font-size: 10.5px; }
  .pick-text small { font-size: 12px; }
  .pick-badge { padding: 4px 8px; font-size: 11px; }
}

/* 診断を入口にしたトップ（2026-09-19） */
.hero-v3 h1 { font-size: clamp(34px, 3.8vw, 52px); }
.hero-v3-main .button.orange { box-shadow: 0 14px 28px rgba(242, 106, 27, .3); }
.hero-v3-others { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.hero-v3-others a {
  display: inline-flex;
  flex-direction: column;
  padding: 10px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--navy);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  transition: background .15s ease;
}
.hero-v3-others a:hover { background: var(--pale); }
.hero-v3-others span { color: #5a6b82; font-size: 12px; font-weight: 700; }
.report-mock {
  margin: 0;
  padding: 26px;
  background: #fff;
  border-top: 4px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(6, 43, 99, .14);
}
.report-mock figcaption { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--navy); font-size: 18px; font-weight: 900; }
.report-mock figcaption .tag { margin: 0; }
.report-rows { margin: 0; padding: 0; list-style: none; }
.report-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 800;
}
.mk { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-size: 18px; font-weight: 900; }
.mk.ok { color: #1B6A50; background: #E1F1EA; }
.mk.mid { color: #8a5a00; background: #FBF1D8; }
.mk.ng { color: #b42318; background: #FDE8E6; }
.report-top3 { margin-top: 16px; padding: 16px 18px; background: #fff5ee; border-radius: 10px; }
.report-top3 p { margin: 0 0 6px; color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: .06em; }
.report-top3 ol { margin: 0; padding-left: 1.3em; color: var(--navy); font-size: 15px; font-weight: 800; line-height: 1.8; }
@media (max-width: 820px) {
  .hero-v3 .report-mock { order: 4; margin-top: 26px; padding: 18px; }
  .hero-v3 .hero-v3-others { order: 3; }
  .hero-v3 .hero-actions { order: 2; margin-top: 0; }
  .hero-v3-others a { flex: 1 1 0; padding: 9px 10px; font-size: 14px; }
  .hero-v3-others span { font-size: 11px; }
  .report-rows li { font-size: 14.5px; padding: 10px 2px; }
  .report-top3 ol { font-size: 14px; }
}

/* 下層の見出し帯に画像を置く／診断カードの写真（2026-09-19） */
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.page-hero-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 14px; box-shadow: 0 18px 40px rgba(6, 43, 99, .16); }

.choice-visual {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 99, .1);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 16px 36px rgba(6, 43, 99, .1);
}
.choice-visual img {
  width: 100%;
  height: auto;
}
.choice-visual figcaption {
  padding: 14px 18px 16px;
  color: var(--navy);
  background: #fff;
  font-size: .9rem;
  line-height: 1.8;
}
.tier-photo { width: calc(100% + 56px); max-width: none; margin: -28px -28px 20px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px 12px 0 0; }
.tier { overflow: hidden; }
.tier .tag { align-self: flex-start; }
@media (max-width: 1040px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
}

.paths-figure { display: block; width: min(860px, 100%); margin: 0 auto 24px; border-radius: 14px; box-shadow: 0 12px 28px rgba(6, 43, 99, .1); }
.paths-figure { height: auto; }

/* ===== 2026-09-20 デザイン刷新（参考：モダナイズ／クリエイトワン。画像を増やさずCSSだけで） ===== */

/* 見出し：英字の小見出し＋日本語の大見出しを左寄せ */
.sec { padding: 84px 0; }
.sec-pale { background: var(--pale); }
.sec-head { margin-bottom: 36px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; }
.sec-en {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
}
.sec-en::before { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.sec h2, .statement h2, .about-x h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}
.sec-lead { max-width: 720px; margin: 16px 0 0; font-size: 16px; font-weight: 700; line-height: 1.9; }
.sec-more { margin: 26px 0 0; text-align: center; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
}
.text-link::after { content: "→"; color: var(--orange); transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* 最初の画面：濃紺の色面（画像なし・グラデーションのみ） */
.hero-x {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 110%, rgba(242, 106, 27, .28) 0, rgba(242, 106, 27, 0) 34%),
    radial-gradient(circle at 92% 8%, rgba(120, 170, 255, .30) 0, rgba(120, 170, 255, 0) 38%),
    linear-gradient(135deg, #062B63 0%, #0B3C86 55%, #0E4AA0 100%);
}
.hero-x::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  pointer-events: none;
}
.hero-x-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-x-who {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 16px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}
.hero-x h1 { margin: 0; color: #fff; font-size: clamp(34px, 4.4vw, 58px); font-weight: 900; line-height: 1.35; letter-spacing: .03em; }
.hero-x h1 strong { color: #FFB27A; }
.hero-x-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 30px; padding: 0; list-style: none; }
.hero-x-chips li {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}
.hero-x-chips b { color: rgba(255, 255, 255, .72); font-size: 12px; font-weight: 700; }
.hero-x .button.orange { box-shadow: 0 14px 28px rgba(0, 0, 0, .22); }
.hero-x-others { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.hero-x-others a {
  display: inline-flex;
  flex-direction: column;
  padding: 10px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  transition: background .15s ease;
}
.hero-x-others a:hover { background: rgba(255, 255, 255, .1); }
.hero-x-others span { color: rgba(255, 255, 255, .72); font-size: 12px; font-weight: 700; }
.hero-x .report-mock { color: var(--text); box-shadow: 0 30px 60px rgba(0, 0, 0, .28); }

/* 一言の帯（なぜ診断から始めるのか） */
.statement { padding: 96px 0; color: #fff; text-align: center; background: #041F49; }
.statement .sec-en { color: #FFB27A; }
.statement h2 { color: #fff; }
.statement p { max-width: 760px; margin: 24px auto 0; font-size: 17px; font-weight: 700; line-height: 2.1; opacity: .92; }
.statement .statement-sign { margin-top: 30px; color: #FFB27A; font-size: 15px; letter-spacing: .12em; opacity: 1; }

/* 業種の札 */
.industry { margin-top: 44px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.industry-title { margin: 0 0 14px; color: var(--navy); font-size: 16px; font-weight: 900; }
.industry-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.industry-list li { padding: 7px 14px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 800; }
.industry-list li.real { color: #fff; background: var(--navy); border-color: var(--navy); }
.industry-legend { margin: 14px 0 0; color: #5a6b82; font-size: 12.5px; font-weight: 700; }
.industry-legend span { display: inline-block; padding: 1px 8px; border: 1px solid var(--line); border-radius: 999px; }
.industry-legend span.real { color: #fff; background: var(--navy); border-color: var(--navy); }
.industry-legend .text-link { font-size: 12.5px; gap: 4px; border-bottom-width: 1px; padding-bottom: 0; }
.industry-legend .text-link::after { display: none; }

.service-links.two { grid-template-columns: repeat(2, 1fr); }

/* 私たちについて（トップ） */
.about-x { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-x p { margin: 18px 0 0; font-size: 16px; font-weight: 700; line-height: 1.95; }
.about-x-photo { width: 100%; border-radius: 14px; box-shadow: var(--shadow); }

/* 料金カード（トップ） */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--orange); }
.price-card h3 { margin: 4px 0 8px; color: var(--navy); font-size: 18px; line-height: 1.45; }
.price-card-yen { margin: 0 0 8px; color: var(--orange); font-size: 26px; font-weight: 900; }
.price-card p:last-child { margin: 0; font-size: 13.5px; font-weight: 700; line-height: 1.7; color: #5a6b82; }
.faq .sec-head { text-align: left; }

/* 最後の相談：左右2枚のパネル */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
  padding: 56px 64px;
  color: #fff;
  overflow: hidden;
  transition: filter .2s ease;
}
.split-panel:hover { filter: brightness(1.08); }
.split-diag { background: linear-gradient(135deg, #062B63, #0E4AA0); }
.split-line { background: linear-gradient(135deg, #04A84A, #06C755); }
.split-en { font-size: 40px; font-weight: 900; letter-spacing: .08em; line-height: 1; opacity: .95; }
.split-title { margin-top: 12px; font-size: 22px; font-weight: 900; }
.split-text { max-width: 380px; font-size: 14.5px; font-weight: 700; line-height: 1.8; opacity: .9; }
.split-arrow {
  position: absolute;
  right: 56px;
  top: 56px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  font-size: 20px;
  transition: transform .2s ease;
}
.split-panel:hover .split-arrow { transform: translateX(6px); }

/* フッター：大きな英字の透かし */
.footer { position: relative; overflow: hidden; margin-top: 0; padding: 56px 0 0; }
.footer-watermark {
  display: block;
  margin-top: 34px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 14vw, 190px);
  line-height: .85;
  letter-spacing: .02em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.footer-copy { padding: 14px 0 18px; color: rgba(255, 255, 255, .6); font-size: 12px; text-align: center; }

@media (max-width: 1040px) {
  .hero-x-grid, .about-x { grid-template-columns: 1fr; gap: 36px; }
  .price-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .sec { padding: 56px 0; }
  .sec-head { margin-bottom: 26px; }
  .hero-x { padding: 36px 0 48px; }
  .hero-x h1 { font-size: clamp(32px, 9.5vw, 44px); }
  .hero-x-who { font-size: 13px; }
  .hero-x-chips { flex-wrap: nowrap; gap: 6px; margin: 20px 0 22px; }
  .hero-x-chips li { flex: 1 1 0; padding: 7px 8px; font-size: 13.5px; border-left-width: 3px; }
  .hero-x-chips b { font-size: 10.5px; }
  .hero-x .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-x .hero-actions .button { width: auto; flex: 1 1 0; padding: 0 12px; min-height: 52px; font-size: 15px; white-space: nowrap; gap: 8px; }
  .hero-x-others a { flex: 1 1 0; padding: 9px 10px; font-size: 14px; }
  .hero-x-others span { font-size: 11px; }
  .hero-x .report-mock { padding: 18px; }
  .statement { padding: 60px 0; text-align: left; }
  .statement p { font-size: 15.5px; margin-left: 0; }
  .service-links.two, .price-cards, .split-cta { grid-template-columns: 1fr; }
  .industry { padding: 20px; }
  .split-panel { min-height: 0; padding: 36px 24px; }
  .split-en { font-size: 30px; }
  .split-arrow { right: 24px; top: 32px; width: 44px; height: 44px; }
}

/* 下層ページの見出し帯もトップと同じ濃紺に */
.page-hero {
  color: #fff;
  border-bottom: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(120, 170, 255, .28) 0, rgba(120, 170, 255, 0) 40%),
    linear-gradient(135deg, #062B63 0%, #0B3C86 60%, #0E4AA0 100%);
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255, 255, 255, .9); }
.page-hero .page-eyebrow { color: #FFB27A; letter-spacing: .2em; }
.page-hero .breadcrumb { color: rgba(255, 255, 255, .7); }
.page-hero .breadcrumb li + li::before { color: #FFB27A; }
.page-hero-img { box-shadow: 0 24px 50px rgba(0, 0, 0, .3); }
@media (max-width: 820px) {
  .hero-x h1 { font-size: clamp(28px, 8.6vw, 40px); }
}
.sign-note { margin: 10px 0 0; color: rgba(255, 255, 255, .7); font-size: 13px; font-weight: 700; letter-spacing: .06em; }

/* ===== C案：しるべーじゅらしさ版（白とクリーム＋ロゴの星＋道しるべの線） ===== */
:root { --cream: #FFF7EF; --cream-line: #F0E3D6; }

/* ロゴの星（小見出しと区切りに使う共通の印） */
.star, .sec-jp::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6c.5 4.6 1.9 7.2 4.3 8.4 1.5.8 3.3 1.3 6.1 1.6-2.8.3-4.6.8-6.1 1.6-2.4 1.2-3.8 3.8-4.3 8.4-.5-4.6-1.9-7.2-4.3-8.4-1.5-.8-3.3-1.3-6.1-1.6 2.8-.3 4.6-.8 6.1-1.6C10.1 8.8 11.5 6.2 12 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6c.5 4.6 1.9 7.2 4.3 8.4 1.5.8 3.3 1.3 6.1 1.6-2.8.3-4.6.8-6.1 1.6-2.4 1.2-3.8 3.8-4.3 8.4-.5-4.6-1.9-7.2-4.3-8.4-1.5-.8-3.3-1.3-6.1-1.6 2.8-.3 4.6-.8 6.1-1.6C10.1 8.8 11.5 6.2 12 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.sec-jp {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
}

/* 背景は白とクリーム。濃紺は効かせどころだけ */
.sec-pale { background: var(--cream); }
.page { background: #fff; }

/* 最初の画面：明るく、診断レポートを主役に */
.hero-x {
  color: var(--text);
  padding: 60px 0 72px;
  background:
    radial-gradient(circle at 88% 16%, rgba(242, 106, 27, .10) 0, rgba(242, 106, 27, 0) 30%),
    linear-gradient(180deg, var(--cream) 0%, #fff 78%);
  border-bottom: 1px solid var(--cream-line);
}
.hero-x::after { display: none; }
.hero-x-grid { grid-template-columns: .92fr 1.08fr; gap: 48px; }
.hero-x-who {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--cream-line);
}
.hero-x h1 { color: var(--navy); }
.hero-x h1 strong { color: var(--orange); }
.hero-x-chips li {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--cream-line);
  border-left: 4px solid var(--orange);
  box-shadow: 0 6px 16px rgba(6, 43, 99, .05);
}
.hero-x-chips b { color: #8a7566; }
.hero-x-others a { color: var(--navy); border-color: #C9D3E0; background: #fff; }
.hero-x-others a:hover { background: var(--cream); }
.hero-x-others span { color: #7a8798; }
.hero-x .report-mock {
  border-top: 5px solid var(--orange);
  box-shadow: 0 24px 50px rgba(6, 43, 99, .16);
}
.report-mock figcaption { font-size: 19px; }

/* 「なぜ診断から」：濃紺のベタ面ではなく、紙のような白い囲み */
.statement {
  padding: 74px 0;
  color: var(--text);
  background: var(--cream);
  text-align: center;
}
.statement .wrap {
  position: relative;
  width: min(860px, calc(100% - 48px));
  padding: 52px 40px 44px;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(6, 43, 99, .07);
}
.statement .sec-jp { justify-content: center; color: var(--navy); }
.statement h2 { color: var(--navy); }
.statement p { color: var(--text); opacity: 1; }
.statement .statement-sign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-line);
  color: var(--orange);
  font-size: 16px;
  letter-spacing: .12em;
}
.statement .statement-sign::before,
.statement .statement-sign::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6c.5 4.6 1.9 7.2 4.3 8.4 1.5.8 3.3 1.3 6.1 1.6-2.8.3-4.6.8-6.1 1.6-2.4 1.2-3.8 3.8-4.3 8.4-.5-4.6-1.9-7.2-4.3-8.4-1.5-.8-3.3-1.3-6.1-1.6 2.8-.3 4.6-.8 6.1-1.6C10.1 8.8 11.5 6.2 12 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6c.5 4.6 1.9 7.2 4.3 8.4 1.5.8 3.3 1.3 6.1 1.6-2.8.3-4.6.8-6.1 1.6-2.4 1.2-3.8 3.8-4.3 8.4-.5-4.6-1.9-7.2-4.3-8.4-1.5-.8-3.3-1.3-6.1-1.6 2.8-.3 4.6-.8 6.1-1.6C10.1 8.8 11.5 6.2 12 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* 進め方：道しるべの線でつなぐ */
.steps .step-grid, .sec .step-grid { position: relative; }
.sec .step-grid::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 38px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(242, 106, 27, .55) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.sec .step-card { position: relative; z-index: 1; background: #fff; border-color: var(--cream-line); }
.sec-pale .step-card { background: #fff; }
.sec .step-card .num { box-shadow: 0 0 0 6px var(--cream); }

/* 下層ページの見出し帯も紙の色に */
.page-hero {
  color: var(--text);
  border-bottom: 1px solid var(--cream-line);
  background:
    radial-gradient(circle at 92% 14%, rgba(242, 106, 27, .10) 0, rgba(242, 106, 27, 0) 32%),
    linear-gradient(180deg, var(--cream), #fff);
}
.page-hero h1 { color: var(--navy); }
.page-hero .lead { color: var(--text); }
.page-hero .breadcrumb { color: #7a8798; }
.page-hero .breadcrumb li + li::before { color: var(--orange); }
.page-hero-img { box-shadow: 0 20px 44px rgba(6, 43, 99, .14); }

/* 事例・カードの縁もやわらかく */
.info-card, .tier, .industry, .price-card, .faq-item { border-color: var(--cream-line); }
.industry-list li { border-color: var(--cream-line); }

/* フッター：英字の透かしをやめ、屋号の由来を置く */
.footer-watermark { display: none; }
.footer-tagline {
  margin: 30px 0 0;
  color: #FFB27A;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
}
.split-en { font-size: 28px; letter-spacing: .06em; }

@media (max-width: 1040px) {
  .sec .step-grid::before { display: none; }
}
@media (max-width: 820px) {
  .statement .wrap { padding: 32px 22px 28px; }
  .statement { text-align: center; }
}

/* 見出しが割れないように（C案の調整） */
.hero-x-grid { grid-template-columns: 1.02fr .98fr; gap: 40px; }
.hero-x h1 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.4; }
@media (max-width: 820px) { .hero-x h1 { font-size: clamp(28px, 8.4vw, 40px); } }
.statement .sign-note { color: #8a7566; }

/* コラム記事の読みやすさ */
.article .prose p { font-size: 16.5px; line-height: 2.05; }
.article .block-title { margin-top: 8px; }
.article code { padding: 2px 6px; background: var(--cream, #FFF7EF); border: 1px solid var(--cream-line, #F0E3D6); border-radius: 4px; font-size: .92em; word-break: break-all; }
.article .prose h3 { margin: 26px 0 8px; color: var(--navy); font-size: 18px; }
.article .prose a:not(.text-link):not(.button) { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ===== 2026-09-21 背景色を青灰に（社長決定。生成りはピンクに見えるため） ===== */
:root { --cream: #F5F8FC; --cream-line: #E2E8F0; }
.hero-x { background: linear-gradient(180deg, #F2F6FC 0%, #fff 78%); }
.page-hero { background: linear-gradient(180deg, #F2F6FC, #fff); }
.statement { background: #F5F8FC; }
.report-top3 { background: #F4F7FB; }
.tier.deep { background: linear-gradient(180deg, #fff, #FAFCFF); border-color: rgba(6, 43, 99, .25); }
.info-card.accent { background: linear-gradient(180deg, #fff, #FAFCFF); }
.sign-note { color: #5a6b82; }

/* ===== スマホ幅の最終調整（あとから足した指定に打ち消されないよう、ファイル末尾に置く） ===== */
@media (max-width: 1040px) {
  .hero-x-grid, .about-x, .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .sec .step-grid::before { display: none; }
}
@media (max-width: 820px) {
  .hero-x { padding: 28px 0 40px; }
  .hero-x-grid { gap: 22px; }
  .hero-x h1 { font-size: clamp(28px, 8.4vw, 40px); }
  .card-grid, .card-grid.two, .card-grid.four, .service-links, .service-links.two, .tier-grid, .people, .price-cards, .split-cta { grid-template-columns: 1fr; }
}

/* スマホでは表を横スクロールさせず、1件ずつのカードにする */
@media (max-width: 560px) {
  .price-table-wrap { overflow: visible; border: 0; background: transparent; border-radius: 0; }
  .price-table { display: block; min-width: 0; }
  .price-table thead { display: none; }
  .price-table tbody, .price-table tr { display: block; }
  .price-table tr {
    margin-bottom: 10px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .price-table th, .price-table td { display: block; width: auto; padding: 0; border: 0; }
  .price-table tbody th { margin-bottom: 8px; font-size: 16px; }
  .price-table td.yen { margin-bottom: 8px; font-size: 19px; }
  .price-table td:empty { display: none; }
  .price-table small { margin-top: 4px; }
}

/* ===== 2026-09-21 文字の読みやすさ（コントラスト）を確保 =====
   ブランドのオレンジ #F26A1B は白との明暗差が3.06しかないため、
   文字・ボタンには濃いオレンジを使う。飾り（星・線・記号）は元の色のまま。 */
:root { --orange-text: #B85210; --line-green: #06863B; }
.button.orange { background: var(--orange-text); border-color: var(--orange-text); }
.button.outline-orange { color: var(--orange-text); }
.button.line-button { background: var(--line-green); border-color: var(--line-green); }
.split-line { background: linear-gradient(135deg, #046B31, var(--line-green)); }
.tag.orange, .subnav-new { background: var(--orange-text); }
.subnav-label, .statement-sign, .report-top3 p, .case-side dt, .price-table td.yen,
.tier-price, .price-card-yen, .industry-legend, .sec-en { color: var(--orange-text); }
.hero-x-chips b, .hero-x-others span, .subnav small, .muted, .small-note,
.service-link .tag, .card-more, .voice-quote span { color: #55606f; }
.sign-note { color: #55606f; }
.tier .tier-price span { color: var(--text); }

/* 連絡方法の選択 */
.form-fieldset { margin: 0; padding: 0; border: 0; }
.form-fieldset legend { padding: 0; }
.choice-row { display: flex; gap: 10px; }
.choice {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #bac6d5;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
}
.choice:has(input:checked) { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(6, 43, 99, .15); background: var(--pale); }
.choice input { width: 18px; height: 18px; accent-color: var(--navy); }
.contact-form [hidden] { display: none; }
/* 先に書いた指定のほうが強い箇所を上書き（コントラスト確保） */
.subnav .subnav-new { background: var(--orange-text); }
.subnav .subnav-label { color: var(--orange-text); }
.statement .statement-sign { color: var(--orange-text); }
.statement .sign-note { color: #55606f; }
.statement .statement-sign::before, .statement .statement-sign::after { background: var(--orange-text); }

/* ===== 文字の折り返しを幅に左右されにくくする ===== */
h1, h2, h3, .cta-band p, .sec-lead, .block-lead, .statement p, .page-hero .lead, .split-text, .hero-x-who {
  word-break: auto-phrase;      /* 文節で折り返す（対応ブラウザ） */
  text-wrap: pretty;            /* 最後の1行に1語だけ残さない */
}
.cta-band h2, .statement h2, .split-title { text-wrap: balance; }
.cta-band p { max-width: 34em; }
.statement p { max-width: 36em; }
/* 濃紺の上のオレンジの円が濁って見えるため、白のごく薄い円に */
.cta-band {
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 255, 255, .10) 0 70px, transparent 71px),
    var(--navy);
}

/* フッター：ロゴ・メニュー・由来を中央にそろえる（折り返しても崩れないように） */
.footer-inner {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-nav { justify-content: center; gap: 14px 24px; max-width: 900px; }
.footer .brand { min-width: 0; }
.footer-tagline { margin-top: 22px; }
.footer-copy a { color: rgba(255, 255, 255, .85); text-decoration: underline; text-underline-offset: 3px; }

/* フッター：3つのまとまりに分けて、幅が変わっても崩れないようにする */
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px 56px;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}
.footer-cols ul { margin: 0; padding: 0; list-style: none; }
.footer-cols li { margin-bottom: 9px; }
.footer-cols a { font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, .92); }
.footer-cols a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-col-title {
  margin: 0 0 12px;
  color: #FFB27A;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; justify-items: center; text-align: center; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 24px; text-align: left; }
  .footer-cols > div:last-child { grid-column: span 2; }
}
.cta-title, .cta-sub, .contact-success h3, .contact-success p { word-break: auto-phrase; text-wrap: balance; }
/* 濃紺の帯の円は、うっすらだけ見える程度に */
.cta-band {
  background:
    radial-gradient(circle at 92% 24%, rgba(255, 255, 255, .06) 0 64px, transparent 65px),
    var(--navy);
}

/* ヒーロー：3つの入口 */
.hero-x-lead { margin: 20px 0 26px; font-size: 16.5px; font-weight: 700; line-height: 1.95; }
.hero-x-note { margin: 14px 0 0; color: #55606f; font-size: 13.5px; font-weight: 700; }
.pick-list {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-top: 4px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(6, 43, 99, .12);
}
.pick-list-title { margin: 0 0 2px; color: #55606f; font-size: 13px; font-weight: 900; letter-spacing: .06em; }
/* 診断レポートの見本を診断の欄で見せる */
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 32px; }
.mock-note p { margin: 0 0 12px; font-size: 15.5px; font-weight: 700; line-height: 1.9; }
.mock-note p:last-child { margin-bottom: 0; }
.mock-note strong { color: var(--navy); font-size: 17px; }
@media (max-width: 1040px) { .mock-row { grid-template-columns: 1fr; gap: 20px; } }
/* スマホではヒーローのボタンを縦並びにする（横並びだとLINEボタンがはみ出すため） */
@media (max-width: 560px) {
  .hero-x .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-x .hero-actions .button { flex: 1 1 100%; width: 100%; }
}
/* 折衷案：はじめての方への入口を少し目立たせる */
.hero-x-others-strong a { background: #fff; border: 2px solid var(--navy); padding: 12px 18px; font-size: 16px; }
.hero-x-others-strong a:hover { background: var(--pale); }
.hero-x-others-strong span { color: #55606f; font-size: 12.5px; }
