.hero {
  position: relative;
  overflow: hidden;
  background-color: #eef7fc;
  background-image: url("../images/top/hero_img_pc.png");
  background-position: 45% 50%;
  background-size: 105% auto;
  background-repeat: no-repeat;
  color: var(--ink);
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 850px) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 500px;
  padding: 48px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .03em;
  font-feature-settings: "palt" 1;
}

.hero h1 {
  color: var(--navy);
  max-width: 850px;
  margin: 0;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
}

.hero h1 .text-muted {
  color: var(--muted);
  font-weight: 700;
}

.hero-break-sp {
  display: none;
}

.lead-break-sp {
  display: none;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .03em;
}

.hero-assurance {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: none;
  margin: 0;
}

.assurance-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 204px;
  width: 204px;
  height: 204px;
  padding: 40px 20px;
  border-radius: 50%;
  background: var(--navy-500);
  color: var(--white);
  overflow: hidden;
  box-shadow: none;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.assurance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/hero-badge-mask.svg") center / cover no-repeat;
}

.assurance-card span {
  position: relative;
  z-index: 1;
}

.contact-strip {
  padding: 48px 0;
  background: var(--navy-50);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  width: min(100% - 64px, 1028px);
  margin: 0 auto;
}

.contact-strip--hero .contact-strip-inner {
  width: min(100% - 64px, 922px);
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 0 0 519px;
  min-height: 139px;
  padding: 20px 40px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 4px rgba(0, 0, 0, .15);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-strip--hero .contact-line {
  flex: 0 0 auto;
  min-height: auto;
  padding: 16px 24px;
}

.contact-line-icon {
  flex: 0 0 76px;
  width: 76px;
  height: 70px;
  object-fit: contain;
}

.contact-line span,
.contact-phone span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.contact-line strong {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 1px;
  white-space: nowrap;
}

.contact-line-title-break {
  display: none;
}

.contact-line-small-break {
  display: none;
}

.contact-line small {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .85px;
  white-space: nowrap;
}

.contact-secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-700);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-line:hover,
.contact-line:focus-visible {
  background: #09A854;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 8px 14px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.contact-phone:hover,
.contact-phone:focus-visible {
  color: var(--navy-500);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  background: var(--navy-700);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 8px 14px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.contact-phone-icon {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy-700);
}

.contact-phone-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-phone strong {
  font-family: var(--font-num);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.contact-phone small {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .15px;
  text-align: center;
  white-space: nowrap;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  padding: 0 48px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, .15);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  white-space: nowrap;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-mail-icon {
  width: 50px;
  height: 46px;
  object-fit: contain;
}

.hero-visual {
  min-height: 500px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 24px 0 0;
}

.hero-point {
  min-height: 92px;
  padding: 14px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-point b {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.hero-point span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

section {
  padding: 72px 0;
  background: var(--white);
}

section:nth-of-type(even) {
  background: var(--paper);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: .03em;
  font-weight: 800;
  font-feature-settings: "palt" 1;
}

.section-desc {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.link-more {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.concerns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.concern {
  min-height: 176px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.concern::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
}

.concern-icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 8px;
}

.concern .num {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.concern h3,
.guide-card h3,
.article h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0;
}

.concern p,
.guide-card p,
.article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ━━━━ いま知りたい セクション ━━━━ */
section.concerns-section {
  padding: 156px 0;
  background: var(--navy-500);
}

.concerns-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-bottom: 72px;
  text-align: center;
}

.concerns-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--white);
  font-feature-settings: "palt" 1;
}

.concerns-title-top {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.concerns-title-top strong {
  font-weight: 800;
}

.concerns-title-bottom {
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 700;
  line-height: 1.25;
}

.concerns-desc {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.topic-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.topic-card-img {
  height: 222px;
  overflow: hidden;
  flex-shrink: 0;
  background-image: url("../images/common/記事アイキャッチ画像.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 160ms ease;
}

.topic-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 24px 24px 16px;
}

.topic-card-body h3 {
  margin: 0;
  color: var(--navy-600);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-wrap: normal;
}

.topic-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.topic-card-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-top: auto;
  min-height: 49px;
  padding: 0 24px 16px;
  flex-shrink: 0;
  color: var(--muted);
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.topic-card-arrow {
  flex-shrink: 0;
  display: block;
}

.topic-card:hover,
.topic-card:focus-visible {
  box-shadow: 0 12px 28px rgba(5, 24, 48, .2);
  transform: translateY(-4px);
}

.topic-card:hover .topic-card-img,
.topic-card:focus-visible .topic-card-img {
  transform: scale(1.03);
}

.topic-card:hover h3,
.topic-card:focus-visible h3 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* ━━━━ ここまで いま知りたい ━━━━ */

section.guide-section {
  padding: 156px 0;
  background: var(--navy-50);
}

.guide-section .wrap {
  width: min(1210px, calc(100% - 64px));
}

.guide-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-bottom: 72px;
  text-align: center;
}

.guide-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--navy-700);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.guide-title strong {
  color: var(--navy-600);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.guide-desc {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 324px;
  padding: 0 32px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.guide-card.is-disabled {
  padding-bottom: 16px;
}

.guide-card:hover,
.guide-card:focus-visible {
  box-shadow: 0 12px 28px rgba(26, 84, 159, .16);
  transform: translateY(-4px);
}

.guide-card:hover .guide-label,
.guide-card:focus-visible .guide-label {
  background: var(--teal-500);
}

.guide-icon {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  margin-bottom: 0;
}

.guide-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.guide-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border-radius: 40px;
  background: var(--teal-400);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.guide-label-break {
  display: none;
}

.guide-card p {
  flex: 1;
  min-height: 72px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .5px;
}

.guide-more {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: auto;
  background: url("../images/top/guide-arrow.svg") center / contain no-repeat;
}

section.feature {
  padding: 156px 0;
  background: var(--white);
  color: var(--ink);
}

.feature .wrap {
  display: block;
  width: min(1210px, calc(100% - 64px));
}

.feature-head {
  text-align: center;
  margin: 0 auto 72px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 82px 96px;
}

.feature h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 0 36px;
  color: var(--navy-700);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0;
}

.feature h2 strong {
  color: var(--navy-700);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.reason-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.reason-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.reason-number {
  display: flex;
  flex: 0 0 112px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 112px;
  height: 112px;
  padding-top: 18px;
  border-radius: 50%;
  background: var(--navy-400);
  color: var(--white);
  font-family: var(--font-num);
  line-height: 1;
  text-align: center;
}

.reason-number span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.reason-number strong {
  display: block;
  width: auto;
  margin-top: -4px;
  color: var(--white);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -.25px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.reason-line {
  display: block;
  width: 80px;
  height: 2px;
  margin: 5px 0 4px;
  background: var(--white);
}

.reason-body {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.reason-media {
  flex: 0 0 216px;
  width: 216px;
  height: 128px;
  border-radius: 6px;
  background-color: #D9D9D9;
  background-position: center;
  background-size: cover;
}

.reason-item:nth-child(1) .reason-media {
  background-image: url("../images/top/reason/reason-01.png");
}

.reason-item:nth-child(2) .reason-media {
  background-image: url("../images/top/reason/reason-02.png");
}

.reason-item:nth-child(3) .reason-media {
  background-image: url("../images/top/reason/reason-03.png");
}

.reason-item:nth-child(4) .reason-media {
  background-image: url("../images/top/reason/reason-04.png");
}

.reason-heading h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--navy-500);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .72px;
}

.reason-heading h3 .text-muted {
  color: #5a6472;
  font-weight: 700;
}

.reason-body p {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #5a6472;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .36px;
}

section.articles-section {
  padding: 156px 0;
  background: var(--navy-600);
}

.articles-section .wrap {
  display: flex;
  width: min(1280px, calc(100% - 64px));
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.articles-head {
  text-align: center;
}

.articles-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--white);
  letter-spacing: 0;
}

.articles-title span {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.articles-title strong {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.articles-panel {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}

.articles-list {
  display: flex;
  flex-direction: column;
  padding: 80px 64px;
}

.article {
  display: grid;
  grid-template-columns: 386px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 217px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease;
}

.article + .article {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-100);
}

.article-thumb {
  position: relative;
  display: block;
  width: 386px;
  height: 217px;
  border-radius: 16px;
  overflow: hidden;
  background: #D9D9D9;
}

.article-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 160ms ease;
}

.article-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 160ms ease;
}

a.article:hover,
a.article:focus-visible {
  transform: translateY(-2px);
}

a.article:hover .article-title,
a.article:focus-visible .article-title {
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

a.article:hover .article-thumb::before,
a.article:focus-visible .article-thumb::before,
a.article:hover .article-thumb img,
a.article:focus-visible .article-thumb img {
  transform: scale(1.03);
}

.article-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .15px;
  white-space: nowrap;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 2px solid var(--navy-500);
  border-radius: 8px;
  color: var(--navy-600);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: .1px;
}

.article-title {
  width: 100%;
  color: var(--navy-500);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.34;
}

.article-desc {
  width: 100%;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.article-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 7px;
  margin-top: 37px;
  color: var(--muted);
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.article-more-icon,
.articles-more-icon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-500);
}

.article-more-icon {
  width: 24px;
  height: 24px;
}

.articles-more-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
}

.article-more-icon::before,
.articles-more-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.article-more-icon::before {
  color: var(--white);
}

.articles-more-icon::before {
  color: var(--navy-400);
}

.articles-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 324px;
  min-height: 84px;
  padding: 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--navy-400);
  color: var(--white);
  box-shadow: 0 6px 3px rgba(0, 0, 0, .15);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.articles-more-btn:hover,
.articles-more-btn:focus-visible {
  border-color: var(--navy-100);
  background: var(--navy-50);
  color: var(--navy-500);
  box-shadow: 0 8px 8px rgba(0, 0, 0, .18), 0 16px 32px rgba(5, 24, 48, .22);
  transform: translateY(-2px);
}

.articles-more-btn:hover .articles-more-icon,
.articles-more-btn:focus-visible .articles-more-icon {
  background: var(--navy-500);
}

.articles-more-btn:hover .articles-more-icon::before,
.articles-more-btn:focus-visible .articles-more-icon::before {
  color: var(--white);
}

section.directory {
  background: var(--navy-400);
  color: var(--white);
}

.directory .section-head {
  justify-content: center;
  margin-bottom: 48px;
  text-align: center;
}

.directory .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.directory .section-title span:first-child {
  font-size: 52px;
}

.directory .section-title span:last-child {
  font-size: 45px;
}

.directory .wrap {
  width: min(1280px, calc(100% - 64px));
}

.directory-panel {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  padding: 80px 56px;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
}

.directory-row {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 42px;
  padding: 26px 0;
  border-bottom: 1px solid #b7c2cf;
}

.directory-row:first-child {
  padding-top: 0;
}

.directory-row:last-child {
  border-bottom: 0;
}

.directory-row h3 {
  margin: 0;
  color: #5a6472;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .52px;
  white-space: nowrap;
}

.directory-row h3 span {
  color: var(--navy-400);
}

.directory-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.directory-row li {
  display: inline-flex;
}

.directory-row li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 32px;
  border: 2px solid var(--navy-400);
  border-radius: 88px;
  color: var(--navy-500);
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -.43px;
  text-align: center;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.directory-row li a:hover,
.directory-row li a:focus-visible {
  background: var(--navy-500);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(26, 84, 159, .2);
  transform: translateY(-2px);
}

.cta {
  padding: 96px 0;
  background: var(--navy-50);
  border-top: 1px solid #d8e7f0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.cta-head {
  text-align: center;
}

.cta-head h2 {
  margin: 0 0 24px;
  color: var(--navy-600);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
}

.cta-head p {
  margin: 0;
  color: #5a6472;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.cta .contact-line {
  padding: 16px;
}

.cta .contact-mail {
  display: none;
}

@media (max-width: 900px) {
  .hero .wrap,
  .feature .wrap {
    grid-template-columns: 1fr;
  }

  section.articles-section {
    padding: 96px 0;
  }

  .articles-section .wrap {
    width: min(100% - 48px, 760px);
    gap: 56px;
  }

  .directory .wrap {
    width: min(100% - 48px, 760px);
  }

  .articles-list {
    padding: 56px 40px;
  }

  .article {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
  }

  .article-thumb {
    width: 280px;
    height: 158px;
  }

  .article-title {
    font-size: 21px;
  }

  .article-desc {
    font-size: 17px;
  }

  .cta-head h2 {
    font-size: 28px;
  }

  .cta-head p {
    font-size: 18px;
  }

  .hero .wrap {
    min-height: auto;
    padding: 44px 0 48px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-assurance {
    flex-wrap: wrap;
    gap: 20px;
  }

  .assurance-card {
    flex-basis: 176px;
    width: 176px;
    height: 176px;
    font-size: 19px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(239, 247, 252, .98) 0%, rgba(239, 247, 252, .92) 58%, rgba(255, 255, 255, .9) 100%),
      url("../images/top/hero_img_pc.png") right top / auto 70% no-repeat,
      linear-gradient(180deg, #ffffff 0%, #eef7fc 100%);
  }

  .hero-visual {
    display: none;
  }

  .contact-strip-inner {
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 48px, 620px);
  }

  .contact-line {
    flex-basis: auto;
    width: 100%;
  }

  .contact-secondary {
    width: 100%;
    align-items: stretch;
  }

  .contact-phone {
    justify-content: center;
  }

  .contact-mail {
    width: 100%;
  }

  .hero-points,
  .reason-grid,
  .concerns,
  .concerns-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .directory-panel {
    padding: 48px 40px;
  }

  .directory-row {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: flex-start;
  }

  .directory-row h3 {
    font-size: 23px;
  }

  .directory-row li a {
    min-height: 44px;
    padding: 10px 24px;
    font-size: 15px;
    line-height: 20px;
  }

  section.guide-section {
    padding: 96px 0;
  }

  .feature {
    padding: 96px 0;
  }

  .feature .wrap {
    width: min(100% - 48px, 620px);
  }

  .feature-head {
    margin-bottom: 56px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .reason-item {
    gap: 20px;
  }

  .reason-heading {
    gap: 20px;
  }

  .reason-number {
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    padding-top: 14px;
  }

  .reason-number span {
    font-size: 13px;
  }

  .reason-number strong {
    margin-top: -3px;
    font-size: 52px;
  }

  .reason-line {
    width: 66px;
  }

  .reason-body {
    gap: 20px;
    width: 100%;
  }

  .reason-media {
    flex: 0 0 180px;
    width: 180px;
    height: 107px;
  }

  .reason-heading h3 {
    font-size: 30px;
  }

  .reason-body p {
    font-size: 16px;
  }

  .guide-head {
    gap: 28px;
    margin-bottom: 56px;
  }

  .guide-section .wrap {
    width: min(100% - 48px, 620px);
  }

  .guide-grid {
    gap: 28px;
  }

  .guide-card {
    min-height: 340px;
    padding: 28px 24px 22px;
  }

  .guide-label {
    font-size: 19px;
  }

  section.concerns-section {
    padding: 80px 0;
  }

  .concerns-head {
    gap: 24px;
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .hero {
    background-color: white;
    background-image: url("../images/top/hero_img_sp.png");
    background-position: center center;
    background-size: 502px auto;
    background-repeat: no-repeat;
    min-height: 456px;
  }

  .hero .wrap {
    position: relative;
    display: block;
    min-height: 456px;
    padding: 24px 0;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 2px;
    margin: 0;
  }

  .hero-break-sp {
    display: block;
  }

  .lead-break-sp {
    display: block;
  }

  .lead {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6472;
  }

  .hero-assurance {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: auto;
  }

  .assurance-card {
    flex: 1;
    max-width: 102px;
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
    width: auto;
    flex-basis: 0;
  }

  .contact-strip {
    padding: 32px 0;
  }

  .contact-strip-inner {
    flex-direction: column;
    gap: 24px;
    width: min(100% - 32px, 380px);
  }

  .contact-line {
    display: grid;
    grid-template-areas:
      "icon title"
      "small small";
    grid-template-columns: 58px 1fr;
    gap: 8px 12px;
    align-items: start;
    min-height: auto;
    padding: 18px;
  }

  .contact-line-icon {
    grid-area: icon;
    flex: none;
    width: 58px;
    height: 56px;
  }

  .contact-line > span {
    display: contents;
  }

  .contact-line strong {
    grid-area: title;
    font-size: 25px;
    white-space: nowrap;
    line-height: 1.2;
    align-self: center;
  }

  .contact-line-title-break {
    display: block;
  }

  .contact-line-small-break {
    display: block;
  }

  .contact-line small {
    grid-area: small;
    font-size: 17px;
    letter-spacing: .85px;
    white-space: normal;
    text-align: center;
  }

  .contact-secondary {
    flex-direction: column-reverse;
    gap: 24px;
    width: 100%;
  }

  .contact-phone {
    display: grid;
    grid-template-columns: 41px 1fr;
    column-gap: 8px;
    row-gap: 4px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    color: var(--navy-700);
  }

  .contact-phone > span:not(.contact-phone-icon) {
    display: contents;
  }

  .contact-phone-icon {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    flex: none;
    width: 41px;
    height: 41px;
    border-radius: 6px;
    align-self: center;
  }

  .contact-phone-icon img {
    width: 26px;
    height: 26px;
  }

  .contact-phone strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 42px;
    align-self: center;
  }

  .contact-phone small {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    font-size: 16px;
  }

  .contact-mail {
    width: 100%;
  }

  .contact-phone-icon img {
    width: 26px;
    height: 26px;
  }

  .contact-phone strong {
    font-size: 32px;
  }

  .contact-phone small {
    font-size: 12px;
  }

  .contact-mail {
    min-height: 54px;
    padding: 0 18px;
    font-size: 18px;
  }

  .contact-mail-icon {
    width: 42px;
    height: 34px;
  }

  .hero-points,
  .reason-grid,
  .concerns,
  .concerns-grid {
    grid-template-columns: 1fr;
  }

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

  .directory {
    padding: 72px 0;
  }

  .directory .section-head {
    margin-bottom: 32px;
  }

  .directory .section-title {
    gap: 10px;
    line-height: 1.2;
  }

  .directory .section-title span:first-child {
    font-size: 40px;
  }

  .directory .section-title span:last-child {
    font-size: 35px;
  }

  .directory-panel {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .directory-row {
    padding: 20px 0;
  }

  .directory-row h3 {
    font-size: 20px;
  }

  .directory-row ul {
    gap: 10px;
  }

  .directory-row li a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  section {
    padding: 52px 0;
  }

  section.concerns-section {
    padding: 72px 0;
  }

  .concerns-desc {
    white-space: normal;
  }

  section.guide-section {
    padding: 72px 0;
  }

  section.feature {
    padding: 72px 0;
  }

  .feature .wrap {
    width: min(100% - 48px, 420px);
  }

  .feature-head {
    margin-bottom: 40px;
  }

  .feature h2 {
    gap: 10px;
    font-size: 24px;
  }

  .feature h2 strong {
    font-size: 34px;
  }

  .feature p {
    font-size: 16px;
    line-height: 1.7;
  }

  .reason-grid {
    gap: 48px;
  }

  .reason-item {
    gap: 16px;
  }

  .reason-heading {
    gap: 16px;
  }

  .reason-number {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
    padding-top: 12px;
  }

  .reason-number span {
    font-size: 11px;
  }

  .reason-number strong {
    margin-top: -2px;
    font-size: 44px;
  }

  .reason-line {
    width: 54px;
    margin: 4px 0 3px;
  }

  .reason-body {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .reason-media {
    flex: none;
    width: 100%;
    min-height: 140px;
    height: 140px;
  }

  .reason-heading h3 {
    font-size: 28px;
    line-height: 1.35;
  }

  .reason-body p {
    font-size: 15px;
  }

  .guide-section .wrap {
    width: min(100% - 48px, 420px);
  }

  .guide-head {
    gap: 20px;
    margin-bottom: 40px;
  }

  .guide-title {
    gap: 10px;
    font-size: 28px;
  }

  .guide-title strong {
    font-size: 34px;
  }

  .guide-desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .guide-grid {
    gap: 24px;
  }

  .guide-card {
    min-height: 320px;
    padding: 16px;
  }

  .guide-card p {
    font-size: 14px;
  }

  .guide-label {
    min-height: 60px;
    margin-bottom: 20px;
    line-height: 1.25;
    text-align: center;
  }

  .guide-label-break {
    display: block;
  }

  .guide-card.is-disabled {
    padding: 16px 16px 22px;
  }

  span.guide-icon {
    width: 88px;
    height: 88px;
  }

  .guide-more {
    margin-top: auto;
    padding-top: 0;
  }

  .concerns-head {
    gap: 20px;
    margin-bottom: 40px;
  }

  .concerns-title {
    gap: 8px;
  }

  .topic-card-img {
    height: 160px;
  }

  .section-head {
    display: block;
  }

  .cta {
    padding: 32px 0;
  }

  .cta-inner {
    gap: 24px;
  }

  .cta .contact-strip-inner {
    width: 100%;
  }

  .cta .contact-mail {
    display: none;
  }

  .section-title,
  .feature h2,
  .cta-head h2 {
    font-size: 22px;
    line-height: 1.6;
  }

  .feature h2 strong {
    font-size: 34px;
  }

  .article {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  section.articles-section {
    padding: 72px 0;
  }

  .articles-section .wrap {
    width: min(100% - 48px, 420px);
    gap: 40px;
  }

  .directory .wrap {
    width: min(100% - 48px, 420px);
  }

  .articles-title span {
    font-size: 34px;
  }

  .articles-title strong {
    font-size: 28px;
  }

  .articles-list {
    padding: 32px 24px;
  }

  .article-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .article-meta {
    flex-wrap: wrap;
    font-size: 13px;
  }

  .article-title {
    font-size: 18px;
  }

  .article-desc {
    font-size: 15px;
  }

  .article-more {
    margin-top: 16px;
  }

  .articles-more-btn {
    width: 100%;
    min-height: 64px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-line,
  .contact-phone,
  .contact-mail,
  .topic-card,
  .topic-card-img,
  .guide-card,
  .article,
  .article-thumb::before,
  .article-thumb img,
  .articles-more-btn,
  .directory-row li a {
    transition-duration: .01ms;
  }

  .contact-line:hover,
  .contact-line:focus-visible,
  .contact-mail:hover,
  .contact-mail:focus-visible,
  .topic-card:hover,
  .topic-card:focus-visible,
  .topic-card:hover .topic-card-img,
  .topic-card:focus-visible .topic-card-img,
  .guide-card:hover,
  .guide-card:focus-visible,
  a.article:hover,
  a.article:focus-visible,
  a.article:hover .article-thumb::before,
  a.article:focus-visible .article-thumb::before,
  a.article:hover .article-thumb img,
  a.article:focus-visible .article-thumb img,
  .articles-more-btn:hover,
  .articles-more-btn:focus-visible,
  .directory-row li a:hover,
  .directory-row li a:focus-visible {
    transform: none;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .hero {
    background: url("../images/top/hero_img_pc.png") 55% center / 150% auto no-repeat #eef7fc;
  }

  .hero .wrap {
    width: min(100% - 48px, 720px);
    min-height: auto;
    padding: 56px 0 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.42;
  }

  .hero-lead {
    max-width: 100%;
  }

  .contact-strip-inner,
  .guide-section .wrap,
  .feature .wrap,
  .articles-section .wrap,
  .directory .wrap,
  .cta-inner {
    width: min(100% - 48px, 720px);
  }

  .contact-line strong {
    font-size: 28px;
  }

  .contact-line small {
    white-space: normal;
  }

  section.feature {
    padding: 72px 0;
  }

  .hero-points,
  .concerns,
  .concerns-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .concerns-grid,
  .guide-grid {
    gap: 32px;
  }

  .reason-heading {
    gap: 16px;
  }

  .reason-heading h3 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .reason-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .reason-media {
    flex: none;
    width: 100%;
    height: 140px;
  }

  .guide-card {
    min-height: 300px;
  }

  .articles-list {
    padding: 40px 32px;
  }

  .article {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

  .article-thumb {
    width: 220px;
    height: 124px;
  }

  .article-title {
    font-size: 19px;
  }

  .directory-panel {
    padding: 40px 32px;
  }

  .directory .section-title {
    white-space: normal;
    line-height: 1.15;
  }

  .directory .section-title span:first-child {
    font-size: 34px;
  }

  .directory .section-title span:last-child {
    font-size: 28px;
  }

  .cta {
    padding: 80px 0;
  }

  .concerns-desc {
    white-space: normal;
  }

  .concerns-title-top {
    font-size: 52px;
  }

  .concerns-title-bottom {
    font-size: 45px;
  }
}
