:root {
  --base-bg: #f8f8f7;
  --card-bg: #fcfcfb;
  --text-main: #2f3338;
  --text-sub: #676d73;
  --line: #e1e4e7;
  --section-gray: #e0e0e0;
  --accent: #415568;
  --accent-dark: #34495d;
  --accent-soft: #f1f4f7;
  --shadow-soft: 0 1px 4px rgba(24, 30, 38, 0.03);
  --shadow-md: 0 4px 12px rgba(24, 30, 38, 0.06);
  --shadow-lg: 0 8px 20px rgba(24, 30, 38, 0.09);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --container: 1140px;
  --anchor-offset: 86px;
  --brand-logo: url("assets/images/png/logo_1-(L).png");
  --fv-bg-opacity: 0.26;
  --display-font: "Avenir Next", "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
  --cta-link-btn-max: 310px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

.section-head[id] {
  scroll-margin-top: 0;
}

#news.section-head,
#message.section-head,
#topics.section-head {
  scroll-margin-top: 56px !important;
}

#company.section-head {
  scroll-margin-top: 40px !important;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text-main);
  background: #d9d9d9;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid #1f3850;
  outline-offset: 3px;
}

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

.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-head {
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(33, 50, 68, 0.14);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  min-height: 84px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn-primary {
  background: #2a3138;
  box-shadow: 0 2px 8px rgba(19, 24, 31, 0.14);
}

.header-actions .btn-primary:hover {
  background: #222930;
}

.fv {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 44px;
  background: #d9d9d9;
}

.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.fv::after {
  content: none;
}

.fv-inner {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.fv-title {
  margin: 0;
  width: 100%;
  font-size: 42px;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: pre-line;
  text-align: left;
  color: var(--text-main);
}

.fv-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.fv-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.fv-brand img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.fv-copy {
  width: 100%;
}

@media (min-width: 1024px) {
  .fv-brand {
    transform: translateX(-40px);
  }

  .fv-copy {
    transform: translate(4px, -12px);
  }
}

.fv-lead {
  margin: 22px 0 0;
  width: 100%;
  font-size: 30px;
  line-height: 1.5;
  color: #3a4047;
  letter-spacing: 0.005em;
  font-weight: 500;
  text-align: left;
  overflow-wrap: anywhere;
}

.fv-lead-emphasis {
  font-weight: 550;
}

.sp-only {
  display: none;
}

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

.fv-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.fv-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.fv-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d9d9d9;
  opacity: 0;
  filter: none;
  transform: none;
}

.news {
  background: #c7c7c7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.news .section-head {
  margin: 0;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-item {
  padding: 0;
  border: 0;
}

.news-item time {
  display: none;
}

.news-item a {
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.25;
  font-weight: 200;
  letter-spacing: 0.015em;
  color: #2d333a;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.news-item a:hover {
  color: #2d333a;
}

.news .container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 54px;
}

.message {
  position: relative;
  overflow: hidden;
  background: #fafaf9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.message::before {
  content: none;
}

.message-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: center;
}

.message-image {
  order: 2;
}

.message-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f1f3f5;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.message-content {
  order: 1;
}

.message .eyebrow {
  color: var(--accent);
}

.message .section-title {
  color: var(--text-main);
}

.message-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.95;
  color: var(--text-sub);
}

.message-content p + p {
  margin-top: 24px;
}

.message-sign {
  margin-top: 28px;
  font-weight: 500;
  color: var(--text-main);
}

.message .section-head,
.topics .section-head,
.company .section-head {
  margin-bottom: 56px;
}

.message .eyebrow,
.topics .eyebrow,
.company .eyebrow {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: 0.012em;
  text-transform: none;
  color: var(--accent);
}

.message .section-title,
.topics .section-title,
.company .section-title {
  margin-top: 16px;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(30px, 2.3vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #555d64;
}

.company .section-head {
  text-align: center;
}

.company .section-title {
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.35;
}

.news .eyebrow {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #2d333a;
}

.topics {
  background: var(--section-gray);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.topic-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.topic-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f2f4f6;
}

.topic-card h3 {
  margin: 20px 20px 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--accent);
  overflow-wrap: anywhere;
}

.topic-card p {
  margin: 0 20px 18px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-sub);
}

.topic-detail-btn {
  margin: auto 20px 22px;
  min-width: 196px;
  min-height: 46px;
  border: 1px solid #73889d;
  border-radius: 999px;
  background: #7f95ac;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(45, 63, 82, 0.12);
}

.topic-detail-btn span {
  margin-left: 12px;
  font-weight: 500;
}

.topic-detail-btn:hover {
  background: #7188a0;
}

.cta {
  background: #f8f8f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta.section {
  padding: 50px 0 70px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
  max-width: min(100%, calc((var(--cta-link-btn-max) * 2) + 88px));
  margin-inline: auto;
  align-items: start;
}

.cta-card {
  display: flex;
  flex-direction: column;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.cta-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #646b72;
  overflow-wrap: anywhere;
}

.cta-link-btn {
  margin-top: 14px;
  width: min(100%, var(--cta-link-btn-max));
  max-width: var(--cta-link-btn-max);
  min-height: 47px;
  padding: 0 30px;
  border-radius: 999px;
  border: 0;
  background: #2a3138;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(19, 24, 31, 0.14);
}

.cta-link-btn:hover {
  background: #222930;
}

.company {
  background: #fbfbfa;
  border-top: 1px solid var(--line);
}

.company-list {
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 0;
}

.company-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 56px;
  align-items: start;
  padding: 16px 0 18px;
  border-top: 1px solid var(--line);
}

.company-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  position: relative;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #2f3439;
}

.company-list dt::after {
  content: "/";
  position: absolute;
  right: -34px;
  top: 0;
  color: #c4c9ce;
  font-weight: 400;
}

.company-list dd {
  margin: 0;
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.9;
  color: #676e75;
}

.company-list dd > div {
  margin-top: 10px;
  font-weight: 500;
  color: #585f67;
}

.company-list dd > div:first-child {
  margin-top: 0;
}

.company-list dd ul {
  margin: 8px 0 16px;
  padding: 0 0 0 1.1em;
}

.company-list dd ul:last-child {
  margin-bottom: 0;
}

.company-list dd li {
  margin: 2px 0;
}

.site-footer {
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  background: #f8f8f7;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.footer-link {
  font-size: 15px;
  color: var(--text-sub);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.72;
}

.footer-recruit-btn {
  min-width: 218px;
  min-height: 50px;
  padding-inline: 26px;
  font-size: 16px;
}

.footer-copy {
  display: block;
  width: calc(100% + 2px);
  margin-inline: -1px;
  padding: 16px 0 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-sub);
}

@media (max-width: 1024px) {
  :root {
    --anchor-offset: 78px;
  }

  .container {
    width: min(var(--container), calc(100% - 72px));
  }

  .section {
    padding: 96px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    min-width: 144px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .fv {
    padding: 10px 0 40px;
  }

  .fv-content {
    width: min(860px, calc(100% - 8px));
  }

  .fv-brand,
  .fv-copy {
    transform: none;
  }

  .fv-title {
    font-size: clamp(40px, 5.2vw, 52px);
  }

  .fv-lead {
    font-size: clamp(22px, 3.2vw, 30px);
  }

  .news .container {
    gap: 28px;
  }

  .message-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 40px;
  }

  .message .section-head,
  .topics .section-head,
  .company .section-head {
    margin-bottom: 44px;
  }

  .message .eyebrow,
  .topics .eyebrow,
  .company .eyebrow {
    font-size: clamp(44px, 6vw, 64px);
  }

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

  .topic-card h3 {
    font-size: 24px;
  }

  .cta.section {
    padding: 44px 0 52px;
  }

  .cta-grid {
    max-width: min(100%, calc((var(--cta-link-btn-max) * 2) + 34px));
    gap: 34px;
  }

  .cta-copy {
    font-size: 15px;
  }

  .cta-link-btn {
    width: min(100%, var(--cta-link-btn-max));
    max-width: var(--cta-link-btn-max);
    min-height: 54px;
    font-size: 16px;
  }

  .company-list > div {
    grid-template-columns: 130px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --anchor-offset: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    min-width: 128px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .fv {
    padding: 74px 0 36px;
  }

  .fv-content {
    width: min(640px, 100%);
  }

  .fv-brand {
    justify-content: center;
  }

  .fv-brand img {
    max-width: 620px;
  }

  .fv-title {
    text-align: center;
    font-size: clamp(30px, 8.6vw, 44px);
    line-height: 1.24;
  }

  .fv-lead {
    margin-top: 20px;
    font-size: clamp(17px, 5.8vw, 27px);
    line-height: 1.45;
    text-align: left;
  }

  .fv-sp-break {
    display: inline;
  }

  .news {
    padding: 16px 0;
  }

  .news .container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news-item a {
    white-space: normal;
    font-size: 15px;
  }

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

  .message-image {
    order: 2;
    max-width: 420px;
    margin: 0 auto;
  }

  .message-content {
    order: 1;
  }

  .message-content p {
    font-size: 16px;
    line-height: 1.85;
  }

  .message-sign {
    margin-top: 22px;
  }

  .topics-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .topic-card h3 {
    margin: 16px 16px 8px;
    font-size: 22px;
  }

  .topic-card p {
    margin: 0 16px 14px;
    font-size: 15px;
    line-height: 1.75;
  }

  .topic-detail-btn {
    margin: auto 16px 16px;
    width: calc(100% - 32px);
    min-height: 44px;
  }

  .cta.section {
    padding: 40px 0 46px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 24px;
  }

  .cta-copy {
    font-size: 15px;
  }

  .cta-link-btn {
    width: min(100%, var(--cta-link-btn-max));
    max-width: var(--cta-link-btn-max);
    min-height: 56px;
    font-size: 18px;
  }

  .company .section-head {
    text-align: left;
  }

  .company-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0 16px;
  }

  .company-list dt::after {
    content: none;
  }

  .company-list dt {
    font-size: 14px;
  }

  .company-list dd {
    max-width: none;
    font-size: 14px;
    line-height: 1.8;
  }

  .site-footer {
    padding: 20px 0 0;
  }

  .footer-inner {
    gap: 16px;
  }

  .footer-nav {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-recruit-btn {
    min-width: 0;
    width: min(100%, 320px);
    min-height: 46px;
    font-size: 15px;
  }

  .footer-copy {
    padding: 14px 0 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --anchor-offset: 64px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-inner {
    min-height: 58px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    min-width: 112px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .fv {
    padding: 68px 0 30px;
  }

  .fv-brand img {
    max-width: 520px;
  }

  .fv-title {
    font-size: clamp(24px, 8.8vw, 34px);
  }

  .fv-lead {
    margin-top: 16px;
    font-size: clamp(14px, 8.2vw, 24px);
    line-height: 1.5;
  }

  .news .eyebrow {
    font-size: 20px;
  }

  .news-item a {
    font-size: 14px;
  }

  .message .eyebrow,
  .topics .eyebrow,
  .company .eyebrow {
    font-size: clamp(34px, 12.5vw, 46px);
  }

  .topic-card h3 {
    font-size: 19px;
  }

  .cta-copy {
    font-size: 14px;
  }

  .cta-link-btn {
    min-height: 52px;
    font-size: 16px;
  }

  .company .section-title {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  :root {
    --anchor-offset: 62px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 56px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .btn {
    min-width: 108px;
    min-height: 33px;
    padding: 0 9px;
    font-size: 10px;
  }

  .fv {
    padding: 66px 0 28px;
  }

  .fv-brand img {
    max-width: 500px;
  }

  .fv-title {
    font-size: clamp(23px, 8.6vw, 32px);
  }

  .fv-lead {
    font-size: clamp(13px, 7.2vw, 22px);
  }

  .topic-card h3 {
    font-size: 18px;
  }

  .cta-copy {
    font-size: 13px;
  }

  .cta-link-btn {
    min-height: 50px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  :root {
    --anchor-offset: 60px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 54px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    min-width: 104px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 10px;
  }

  .fv {
    padding: 64px 0 26px;
  }

  .fv-title {
    font-size: clamp(22px, 8.4vw, 30px);
    line-height: 1.3;
  }

  .fv-lead {
    font-size: clamp(13px, 6.8vw, 20px);
    line-height: 1.5;
  }

  .message-content p {
    font-size: 15px;
  }

  .topic-card h3 {
    font-size: 18px;
  }

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

  .cta-copy {
    font-size: 13px;
  }

  .cta-link-btn {
    min-height: 48px;
    font-size: 15px;
  }
}

@media (max-width: 340px) {
  :root {
    --anchor-offset: 58px;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .header-inner {
    min-height: 50px;
  }

  .header-actions {
    gap: 3px;
  }

  .header-actions .btn {
    min-width: 96px;
    min-height: 30px;
    padding: 0 7px;
    font-size: 9px;
    letter-spacing: 0;
  }

  .fv {
    padding: 58px 0 22px;
  }

  .fv-brand img {
    max-width: 460px;
  }

  .fv-title {
    font-size: clamp(20px, 8.2vw, 28px);
    line-height: 1.32;
  }

  .fv-lead {
    margin-top: 12px;
    font-size: clamp(12px, 6.4vw, 18px);
    line-height: 1.45;
  }

  .news .eyebrow {
    font-size: 18px;
  }

  .news-item a {
    font-size: 13px;
  }

  .message-content p {
    font-size: 14px;
  }

  .topic-card h3 {
    font-size: 17px;
  }

  .topic-card p {
    font-size: 13px;
  }

  .cta-copy {
    font-size: 12px;
  }

  .cta-link-btn {
    min-height: 46px;
    font-size: 14px;
  }

  .company-list dt,
  .company-list dd {
    font-size: 13px;
  }
}

@media (min-width: 481px) and (max-width: 536px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .header-inner {
    min-height: 62px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .btn {
    min-width: 120px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }

  .fv {
    padding: 70px 0 32px;
  }

  .fv-brand img {
    max-width: 500px;
  }

  .fv-title {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.28;
  }

  .fv-lead {
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.5;
  }
}

@media (min-width: 391px) and (max-width: 409px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    min-width: 108px;
    min-height: 33px;
    padding: 0 8px;
    font-size: 10px;
  }

  .fv {
    padding: 66px 0 28px;
  }

  .fv-title {
    font-size: clamp(25px, 8.4vw, 33px);
  }

  .fv-lead {
    font-size: clamp(15px, 6.4vw, 22px);
  }
}

@media (min-width: 391px) and (max-width: 394px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .fv-title {
    font-size: 32px;
  }
}

@media (min-width: 361px) and (max-width: 383px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    min-width: 104px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 10px;
  }

  .fv {
    padding: 64px 0 26px;
  }

  .fv-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .fv-lead {
    font-size: clamp(14px, 6.1vw, 21px);
  }
}

@media (min-width: 341px) and (max-width: 357px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .header-actions {
    gap: 3px;
  }

  .header-actions .btn {
    min-width: 100px;
    min-height: 31px;
    padding: 0 7px;
    font-size: 9px;
  }

  .fv {
    padding: 62px 0 24px;
  }

  .fv-title {
    font-size: clamp(23px, 8vw, 30px);
    line-height: 1.3;
  }

  .fv-lead {
    margin-top: 14px;
    font-size: clamp(13px, 5.9vw, 19px);
  }

  .topic-card h3 {
    font-size: 16px;
  }

  .cta-link-btn {
    min-height: 45px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }

  .fv {
    padding: 72px 0 34px;
  }

  .fv-brand img {
    width: min(92%, 340px);
    max-width: none;
    margin: 0 auto;
  }

  .fv-copy {
    margin-top: 24px;
  }

  .fv-title {
    text-align: center;
    font-size: clamp(26px, 8.4vw, 34px);
    line-height: 1.32;
  }

  .fv-lead {
    width: min(92%, 420px);
    margin: 20px auto 0;
    font-size: clamp(14px, 4.8vw, 20px);
    line-height: 1.38;
    text-align: left;
    font-weight: 430;
    letter-spacing: 0.005em;
  }

  .fv-lead-emphasis {
    font-weight: 500;
  }
}
