:root {
  --white: #ffffff;
  --ink: #161719;
  --ink-soft: #34373d;
  --muted: #686d74;
  --line: #e6e8eb;
  --line-strong: #cfd3d8;
  --red: #e62c32;
  --red-dark: #b91d24;
  --blue: #2366d1;
  --blue-soft: #edf7ff;
  --blue-mid: #dceeff;
  --coral-soft: #fff0ec;
  --yellow-soft: #fff7cf;
  --shell: min(1160px, calc(100vw - 64px));
  --shell-hero: min(1200px, calc(100vw - 64px));
  --shell-wide: min(1380px, calc(100vw - 64px));
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Manrope", "Noto Sans JP", sans-serif;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 26px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--yellow-soft);
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell-wide {
  width: var(--shell-wide);
  margin-inline: auto;
}

.shell-hero {
  width: var(--shell-hero);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(230, 232, 235, 0.82);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 270px) 1fr auto;
  gap: 34px;
  align-items: center;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  width: 252px;
  max-width: 100%;
}

.brand img {
  width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  gap: clamp(18px, 2.1vw, 36px);
  align-items: center;
  justify-content: center;
}

.primary-nav a {
  position: relative;
  padding: 28px 0 26px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-button {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.search-button svg,
.hero-search svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.search-button:hover {
  color: var(--red);
}

.school-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.school-link:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  align-items: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 4px;
  background: transparent;
  border: 0;
}

.menu-button__label {
  margin-right: 9px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
}

.menu-button__lines {
  position: relative;
  width: 25px;
  height: 18px;
}

.menu-button__lines i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-button__lines i:first-child { top: 4px; }
.menu-button__lines i:last-child { top: 12px; }
.menu-button[aria-expanded="true"] .menu-button__lines i:first-child { top: 8px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button__lines i:last-child { top: 8px; transform: rotate(-45deg); }

.hero {
  position: relative;
  padding: clamp(58px, 6vw, 92px) 0 40px;
  overflow: hidden;
  background: var(--white);
}

.hero__wash {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.2px);
}

.hero__wash--blue {
  top: -220px;
  right: 5vw;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle at 48% 52%, rgba(220, 238, 255, 0.72), rgba(237, 247, 255, 0.15) 66%, transparent 70%);
}

.hero__wash--coral {
  top: 460px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 230, 222, 0.48), rgba(255, 240, 236, 0.08) 68%, transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(46px, 4.5vw, 64px);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 24px 0 68px;
}

.eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 29px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eyebrow i {
  width: 64px;
  height: 2px;
  background: var(--red);
  transform: rotate(-12deg);
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.45vw, 78px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  padding: 0 0.08em 0.03em;
  color: #fff;
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: -0.055em;
  isolation: isolate;
}

.hero h1 em::before {
  position: absolute;
  z-index: -1;
  inset: 0.05em -0.06em 0 -0.03em;
  background: var(--red);
  content: "";
  clip-path: polygon(5% 0, 100% 8%, 94% 100%, 0 92%);
}

.hero__lead {
  max-width: 600px;
  margin: 32px 0 29px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.05;
}

.hero__links {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 23px;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 11px 28px rgba(185, 29, 36, 0.15);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-button:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 34px rgba(185, 29, 36, 0.23);
  transform: translateY(-3px);
}

.primary-button span,
.under-link span {
  transition: transform 160ms ease;
}

.primary-button:hover span {
  transform: translateX(5px);
}

.under-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  min-height: 44px;
  padding: 3px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.under-link:hover span {
  color: var(--red);
  transform: translateY(3px);
}

.hero__visual {
  position: relative;
  min-width: 0;
  padding: 0 25px 56px 18px;
}

.hero__slash {
  position: absolute;
  z-index: -1;
  top: -40px;
  left: 22px;
  width: 42px;
  height: 280px;
  background: var(--red);
  border-radius: 40px;
  transform: rotate(14deg);
}

.hero__image-frame {
  position: relative;
  height: clamp(520px, 47vw, 670px);
  overflow: hidden;
  background: var(--blue-soft);
  clip-path: polygon(12% 0, 100% 0, 100% 86%, 88% 100%, 0 100%, 0 15%);
}

.hero__image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%);
  content: "";
  pointer-events: none;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.88) contrast(1.01);
}

.hero-feature {
  position: absolute;
  z-index: 2;
  right: -4px;
  bottom: 78px;
  left: -58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 23px 22px 19px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(27, 41, 55, 0.16);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.hero-feature:hover {
  box-shadow: 0 29px 66px rgba(27, 41, 55, 0.23);
  transform: translateY(-5px);
}

.hero-feature__label {
  align-self: stretch;
  padding: 7px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 7px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.hero-feature p {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.hero-feature h2 {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
  letter-spacing: -0.03em;
}

.hero-feature__arrow {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 18px;
  transition: background 160ms ease, transform 160ms ease;
}

.hero-feature:hover .hero-feature__arrow {
  background: var(--red);
  transform: rotate(10deg);
}

.hero__vertical {
  position: absolute;
  top: 22px;
  right: -18px;
  margin: 0;
  color: #9ca2aa;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.hero-search {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.14fr);
  margin-top: 55px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero-search > button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 95px;
  padding: 0 30px 0 4px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-strong);
  text-align: left;
}

.hero-search > button svg {
  width: 27px;
}

.hero-search > button span {
  font-size: 14px;
  font-weight: 700;
}

.hero-search > button small {
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-search > button strong {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
}

.hero-search > button strong i {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 18px;
  font-style: normal;
  transition: transform 160ms ease;
}

.hero-search > button:hover strong i {
  transform: translateX(5px);
}

.hero-search__quick {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding: 20px 3px 20px 28px;
  flex-wrap: wrap;
}

.hero-search__quick span {
  margin-right: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-search__quick a {
  padding: 7px 12px;
  color: var(--ink-soft);
  background: #f6f7f8;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  transition: color 150ms ease, background 150ms ease;
}

.hero-search__quick a:hover {
  color: var(--red-dark);
  background: var(--coral-soft);
}

.asset-disclosure {
  margin-top: 14px;
  color: #8a8e94;
  font-size: 9px;
  line-height: 1.7;
}

.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.section-head--center {
  max-width: 770px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  text-align: center;
}

.section-head--center > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.section-head--row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: 9vw;
  align-items: end;
}

.section-head--row > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.topic-section {
  padding: 132px 0 120px;
  background: var(--white);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.topic-list > a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 25px 25px 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.topic-list > a:last-child {
  border-right: 0;
}

.topic-list > a:nth-child(2)::before,
.topic-list > a:nth-child(4)::before {
  position: absolute;
  right: -52px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  background: var(--blue-soft);
  border-radius: 50%;
  content: "";
  transition: transform 220ms ease;
}

.topic-list > a:nth-child(4)::before {
  background: var(--coral-soft);
}

.topic-list > a:hover {
  background: #fafbfc;
  transform: translateY(-5px);
}

.topic-list > a:hover::before {
  transform: scale(1.15);
}

.topic-list__number {
  color: #a7abb0;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

.topic-list > a > div {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.topic-list > a > div p {
  margin: 0 0 5px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.topic-list h3 {
  margin: 0 0 10px;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.topic-list > a > div span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.topic-list > a > i {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 16px;
  font-style: normal;
  transition: color 160ms ease, background 160ms ease, border 160ms ease, transform 160ms ease;
}

.topic-list > a:hover > i {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: rotate(9deg);
}

.first-guide {
  position: relative;
  padding: 122px 0 128px;
  overflow: hidden;
  background: linear-gradient(145deg, #f1f8ff 0%, #f8fbff 54%, #fff 100%);
}

.first-guide::after {
  position: absolute;
  right: -150px;
  bottom: -170px;
  width: 480px;
  height: 480px;
  background: rgba(255, 240, 236, 0.72);
  border-radius: 50%;
  content: "";
}

.first-guide .shell {
  position: relative;
  z-index: 1;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.guide-lead a {
  display: block;
}

.guide-lead__image {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #dce8f0;
  border-radius: 30px 30px 9px 30px;
}

.guide-lead__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease;
}

.guide-lead:hover .guide-lead__image img {
  transform: scale(1.025);
}

.guide-lead__image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
}

.guide-lead__body {
  position: relative;
  width: 87%;
  margin: -78px 0 0 auto;
  padding: 32px 38px 35px;
  background: #fff;
  border-radius: 22px 0 22px 22px;
  box-shadow: 0 22px 54px rgba(40, 66, 91, 0.13);
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: #83888f;
  font-size: 10px;
  font-weight: 700;
}

.article-meta span:first-child {
  color: var(--red-dark);
}

.guide-lead h3 {
  margin: 15px 0 14px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.55;
  letter-spacing: -0.045em;
}

.guide-lead__body > p:not(.article-meta) {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.article-link {
  display: inline-flex;
  gap: 19px;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
}

.article-link i {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 17px;
  font-style: normal;
  transition: transform 160ms ease;
}

a:hover .article-link i {
  transform: translateX(5px);
}

.guide-side {
  display: grid;
  gap: 34px;
}

.guide-side article {
  padding-bottom: 31px;
  border-bottom: 1px solid var(--line-strong);
}

.guide-side__image {
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
  background: #dce8f0;
  border-radius: 18px 18px 5px 18px;
}

.guide-side__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.guide-side article:hover .guide-side__image img {
  transform: scale(1.03);
}

.guide-side h3 {
  margin: 12px 0 16px;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.6;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.latest-section {
  padding: 132px 0 126px;
  background: #fff;
}

.section-head--latest {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
}

.filter-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-bar button {
  min-height: 39px;
  padding: 0 14px;
  color: #5f646b;
  background: #f5f6f7;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  transition: color 150ms ease, background 150ms ease, border 150ms ease;
}

.filter-bar button:hover {
  color: var(--red-dark);
  background: var(--coral-soft);
}

.filter-bar button.is-active {
  color: #fff;
  background: var(--red);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 55px 28px;
}

.article-card {
  grid-column: span 4;
  min-width: 0;
}

.article-card--feature,
.article-card--landscape {
  grid-column: span 8;
}

.article-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf0f2;
  border-radius: 20px 20px 6px 20px;
}

.article-card--feature .article-card__image,
.article-card--landscape .article-card__image {
  aspect-ratio: 2 / 1;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.article-card:hover .article-card__image img {
  transform: scale(1.028);
}

.article-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: #40444a;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(25, 30, 35, 0.09);
}

.article-status--published {
  color: #fff;
  background: var(--red);
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px 3px 0;
}

.article-card h3 {
  margin: 13px 0 17px;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.62;
  letter-spacing: -0.035em;
}

.article-card--feature h3,
.article-card--landscape h3 {
  max-width: 720px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.52;
}

.article-card__body > p:not(.article-meta) {
  max-width: 710px;
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.article-card .article-link {
  margin-top: auto;
}

.filter-empty {
  margin: 45px 0 0;
  padding: 20px;
  color: var(--muted);
  background: #f7f8f9;
  text-align: center;
}

.list-footer {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.list-footer a {
  display: inline-flex;
  gap: 52px;
  align-items: center;
  min-width: 220px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.list-footer a span {
  color: var(--red);
  font-size: 18px;
  transition: transform 160ms ease;
}

.list-footer a:hover span {
  transform: translateX(5px);
}

.field-section {
  position: relative;
  padding: 126px 0 136px;
  overflow: hidden;
  background: #fff;
}

.field-section__shape {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: -280px;
  width: 820px;
  height: 570px;
  background: var(--coral-soft);
  border-radius: 54% 0 0 48%;
  transform: rotate(-8deg);
}

.field-section .shell {
  position: relative;
  z-index: 1;
}

.field-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  gap: 30px;
}

.field-main {
  position: relative;
  padding-bottom: 70px;
}

.field-main__image {
  height: 560px;
  overflow: hidden;
  background: #e8edf0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 87% 100%, 0 100%);
}

.field-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 440ms ease;
}

.field-main:hover .field-main__image img {
  transform: scale(1.025);
}

.field-main__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(570px, 86%);
  padding: 29px 34px 31px;
  background: #fff;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 21px 55px rgba(38, 42, 47, 0.14);
}

.field-main__copy > p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.field-main__copy > p span:first-child {
  color: var(--red-dark);
}

.field-main__copy h3 {
  margin: 12px 0 17px;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1.5;
  letter-spacing: -0.045em;
}

.field-side {
  display: grid;
  gap: 24px;
}

.field-side article a {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 205px;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 38px rgba(38, 42, 47, 0.1);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.field-side article a:hover {
  box-shadow: 0 20px 44px rgba(38, 42, 47, 0.15);
  transform: translateY(-4px);
}

.field-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-side article a div {
  display: flex;
  flex-direction: column;
  padding: 23px 22px;
}

.field-side p {
  margin: 0;
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 800;
}

.field-side h3 {
  margin: 10px 0 14px;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.field-side article a div > span {
  margin-top: auto;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 18px;
}

.career-path {
  padding: 118px 0;
  background: var(--blue-soft);
}

.career-path__inner {
  display: grid;
  grid-template-columns: minmax(290px, 0.66fr) minmax(600px, 1.34fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.career-path__intro h2 {
  margin: 0;
  font-size: clamp(36px, 3.6vw, 51px);
  line-height: 1.42;
  letter-spacing: -0.05em;
}

.career-path__intro > p:last-child {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.career-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: #cddfeb;
  list-style: none;
}

.career-steps li {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 15px;
  min-height: 185px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.86);
}

.career-steps li > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
}

.career-steps p {
  margin: 0 0 5px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.career-steps h3 {
  margin: 0 0 26px;
  font-size: 21px;
  line-height: 1.5;
}

.career-steps a {
  font-size: 10px;
  font-weight: 800;
}

.career-steps a:hover {
  color: var(--red);
}

.school-section {
  padding: 130px 0;
  background: #fff;
}

.school-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 17%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(125deg, var(--blue-soft), #f7fbff 58%, var(--coral-soft));
  border-radius: 34px 34px 10px 34px;
}

.school-panel__copy {
  position: relative;
  z-index: 2;
  padding: 75px clamp(38px, 6vw, 78px);
}

.school-panel__copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 59px);
  line-height: 1.4;
  letter-spacing: -0.055em;
}

.school-panel__copy > p:not(.section-label) {
  max-width: 610px;
  margin: 26px 0 31px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.school-panel__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.school-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02);
}

.school-panel__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(237, 247, 255, 0.4), transparent 30%);
  content: "";
}

.school-panel__image > span {
  position: absolute;
  z-index: 2;
  right: 23px;
  bottom: 21px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-align: right;
}

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

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(520px, 1.1fr);
  gap: 9vw;
  padding-bottom: 64px;
}

.site-footer__brand img {
  width: min(330px, 100%);
}

.site-footer__brand p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

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

.site-footer__nav div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__nav p {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.site-footer__nav a {
  width: max-content;
  max-width: 100%;
  color: #545960;
  font-size: 11px;
  font-weight: 600;
}

.site-footer__nav a:hover {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  min-height: 64px;
  color: #8c9096;
  border-top: 1px solid var(--line);
  font-family: var(--font-en);
  font-size: 9px;
}

.site-footer__bottom a {
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 700;
}

.search-dialog {
  width: min(820px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 38px));
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(15, 20, 25, 0.28);
}

.search-dialog::backdrop {
  background: rgba(20, 24, 29, 0.55);
  backdrop-filter: blur(7px);
}

.search-dialog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 28px;
  background: var(--blue-soft);
  border-radius: 24px 24px 0 0;
}

.search-dialog__top p {
  margin: 0;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.search-dialog__top button {
  padding: 8px;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
}

.search-dialog h2 {
  margin: 0;
  padding: 39px 40px 20px;
  font-size: clamp(27px, 4vw, 43px);
  letter-spacing: -0.04em;
}

.search-dialog .search-form {
  padding: 0 40px 34px;
}

.search-dialog .search-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.search-dialog .search-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.search-dialog .search-form input {
  min-width: 0;
  height: 56px;
  padding: 0 16px;
  background: #f7f8f9;
  border: 1px solid var(--line-strong);
  border-radius: 9px 0 0 9px;
  font-size: 15px;
}

.search-dialog .search-form button {
  padding-inline: 22px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0 9px 9px 0;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(1040px, calc(100vw - 48px));
    --shell-hero: min(1120px, calc(100vw - 48px));
    --shell-wide: min(1120px, calc(100vw - 48px));
  }

  .site-header__inner {
    grid-template-columns: minmax(210px, 240px) 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 11px;
  }

  .search-button span {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(350px, 0.78fr) minmax(480px, 1.22fr);
    gap: 42px;
  }

  .hero-feature {
    left: -40px;
  }

  .field-collage {
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  }

  .field-side article a {
    grid-template-columns: 125px 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    grid-template-columns: minmax(210px, 250px) 1fr;
  }

  .site-header__actions {
    justify-self: end;
  }

  .menu-button {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    z-index: 80;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px 24px 27px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 5px solid var(--red);
    box-shadow: 0 18px 40px rgba(22, 23, 25, 0.12);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .primary-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

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

  .hero__copy {
    max-width: 740px;
    padding-bottom: 35px;
  }

  .hero h1 {
    font-size: clamp(56px, 8vw, 76px);
  }

  .hero__visual {
    width: min(820px, 100%);
    margin-left: auto;
    padding-left: 60px;
  }

  .hero__image-frame {
    height: 620px;
  }

  .hero-feature {
    left: 0;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-search > button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-search__quick {
    justify-content: flex-start;
    padding-left: 0;
  }

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

  .topic-list > a:nth-child(2) {
    border-right: 0;
  }

  .topic-list > a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .guide-layout,
  .field-collage,
  .career-path__inner,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

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

  .article-card,
  .article-card--feature,
  .article-card--landscape {
    grid-column: span 6;
  }

  .article-card--feature .article-card__image,
  .article-card--landscape .article-card__image {
    aspect-ratio: 16 / 10;
  }

  .article-card--feature h3,
  .article-card--landscape h3 {
    font-size: 24px;
  }

  .field-main__image {
    height: 590px;
  }

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

  .career-path__inner {
    gap: 55px;
  }

  .career-path__intro {
    max-width: 650px;
  }

  .school-panel {
    grid-template-columns: 1fr;
  }

  .school-panel__image {
    min-height: 430px;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 32px);
    --shell-hero: calc(100vw - 32px);
    --shell-wide: calc(100vw - 32px);
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    width: min(220px, 68vw);
  }

  .brand img {
    max-height: 48px;
  }

  .school-link,
  .search-button span {
    display: none;
  }

  .search-button {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }

  .menu-button {
    padding-left: 3px;
  }

  .hero {
    padding: 42px 0 32px;
  }

  .hero__copy {
    padding: 0 0 23px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .eyebrow i {
    width: 42px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 61px);
    line-height: 1.2;
  }

  .hero__lead {
    margin: 25px 0 23px;
    font-size: 13px;
    line-height: 1.95;
  }

  .hero__visual {
    width: 100%;
    margin-right: 0;
    padding: 0 0 103px;
  }

  .hero__image-frame {
    height: min(112vw, 560px);
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 85% 100%, 0 100%, 0 13%);
  }

  .hero__slash {
    top: -24px;
    left: 18px;
    width: 31px;
    height: 200px;
  }

  .hero-feature {
    right: 0;
    bottom: 8px;
    left: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 17px;
    border-radius: 13px;
  }

  .hero-feature__arrow {
    display: none;
  }

  .hero-feature h2 {
    font-size: 15px;
  }

  .hero__vertical {
    display: none;
  }

  .hero-search {
    margin-top: 39px;
  }

  .hero-search > button {
    grid-template-columns: 29px 1fr;
    min-height: 79px;
    padding-right: 4px;
  }

  .hero-search > button strong {
    display: none;
  }

  .hero-search__quick {
    gap: 8px;
    padding: 15px 0;
  }

  .hero-search__quick span {
    width: 100%;
    margin: 0;
  }

  .asset-disclosure {
    margin-top: 10px;
    font-size: 8px;
  }

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

  .section-head h2 {
    font-size: 35px;
  }

  .section-head--row,
  .section-head--latest {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-head--row > p,
  .section-head--center > p:last-child {
    font-size: 12px;
  }

  .topic-section,
  .first-guide,
  .latest-section,
  .field-section,
  .career-path,
  .school-section {
    padding: 84px 0;
  }

  .topic-list {
    grid-template-columns: 1fr;
  }

  .topic-list > a,
  .topic-list > a:nth-child(2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topic-list > a:last-child {
    border-bottom: 0;
  }

  .guide-lead__image {
    height: min(76vw, 430px);
    border-radius: 20px 20px 6px 20px;
  }

  .guide-lead__body {
    width: calc(100% - 20px);
    margin-top: -45px;
    padding: 24px 22px 27px;
    border-radius: 17px 0 17px 17px;
  }

  .guide-lead h3 {
    font-size: 23px;
  }

  .guide-side {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .article-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
    column-gap: 0;
  }

  .article-card,
  .article-card--feature,
  .article-card--landscape {
    grid-column: auto;
  }

  .article-card h3,
  .article-card--feature h3,
  .article-card--landscape h3 {
    font-size: 21px;
  }

  .field-section__shape {
    top: 120px;
    right: -370px;
  }

  .field-main {
    padding-bottom: 100px;
  }

  .field-main__image {
    height: min(110vw, 560px);
  }

  .field-main__copy {
    width: calc(100% - 16px);
    padding: 24px 22px 26px;
  }

  .field-main__copy h3 {
    font-size: 24px;
  }

  .field-side {
    grid-template-columns: 1fr;
  }

  .field-side article a {
    grid-template-columns: 128px 1fr;
  }

  .career-steps {
    grid-template-columns: 1fr;
  }

  .career-steps li {
    min-height: 155px;
    padding: 23px;
  }

  .school-panel {
    width: 100%;
    border-radius: 24px 24px 7px 24px;
  }

  .school-panel__copy {
    padding: 54px 24px 42px;
  }

  .school-panel__copy h2 {
    font-size: 35px;
  }

  .school-panel__copy > p:not(.section-label) {
    font-size: 12px;
  }

  .school-panel__image {
    min-height: 340px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .site-footer__main {
    gap: 48px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    padding: 18px 0;
  }

  .site-footer__bottom span {
    display: none;
  }

  .search-dialog {
    border-radius: 18px;
  }

  .search-dialog__top {
    border-radius: 18px 18px 0 0;
  }

  .search-dialog h2,
  .search-dialog .search-form {
    padding-right: 20px;
    padding-left: 20px;
  }

  .search-dialog .search-form > div {
    grid-template-columns: 1fr;
  }

  .search-dialog .search-form input {
    border-radius: 9px 9px 0 0;
  }

  .search-dialog .search-form button {
    min-height: 48px;
    border-radius: 0 0 9px 9px;
  }
}

@media (max-width: 430px) {
  .menu-button__label {
    display: none;
  }

  .brand {
    width: min(205px, 66vw);
  }

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

  .hero__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .primary-button {
    width: 100%;
  }

  .hero__image-frame {
    height: 460px;
  }

  .hero-feature p {
    font-size: 9px;
  }

  .hero-feature h2 {
    font-size: 14px;
  }

  .filter-bar button {
    min-height: 42px;
  }

  .field-side article a {
    grid-template-columns: 110px 1fr;
  }

  .field-side article a div {
    padding: 18px 16px;
  }

  .field-side h3 {
    font-size: 16px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ========================================================================== 
   WordPress integration layer
   Loaded after common.css and style.css. The approved white editorial system
   is applied to both the new media markup and the legacy theme templates.
   ========================================================================== */

html body {
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-jp);
}

body *,
body *::before,
body *::after {
  word-break: normal;
}

body {
  overflow-wrap: anywhere;
}

body.fde-nav-open,
body.fde-dialog-open {
  overflow: hidden;
}

body.fde-media-site #main-content {
  /* The sticky header already participates in normal document flow. */
  padding-top: 0;
}

body.home .fde-breadcrumb {
  display: none;
}

.guide-layout--single {
  grid-template-columns: minmax(0, 860px);
  max-width: 860px;
  margin-inline: auto;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.cont {
  width: var(--shell);
  max-width: 1160px;
  margin-inline: auto;
}

.header + main {
  padding-top: var(--header-height);
}

.primary-nav.active,
.primary-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

/* Legacy header, kept compatible with common.js. */
.header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  width: 100%;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(230, 232, 235, 0.92);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.header__inner {
  width: var(--shell-wide);
  max-width: 1380px;
  height: 100%;
  margin-inline: auto;
  padding-left: clamp(260px, 21vw, 330px);
  justify-content: flex-end;
}

.header_logo {
  position: fixed;
  z-index: 96;
  top: 15px;
  left: max(32px, calc((100vw - 1380px) / 2));
  width: clamp(220px, 19vw, 286px);
}

.header_logo .fde-logo-img,
.header_logo img {
  width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.header-nav_wrap {
  margin: 0;
  padding: 0 64px 0 0;
  background: transparent;
  border-radius: 0;
}

.gnav ul {
  gap: clamp(15px, 1.4vw, 27px);
}

.gnav ul li,
.gnav ul .h_business,
.gnav ul .h_company,
.gnav ul .h_document {
  margin: 0;
  padding: 0;
  border: 0;
}

.gnav ul .h_business {
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
}

.gnav ul li a {
  position: relative;
  display: flex;
  min-height: 45px;
  align-items: center;
  padding: 0;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 1;
}

.gnav ul li:not(.h_document) a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.gnav ul li:not(.h_document) a:hover {
  color: var(--ink);
}

.gnav ul li:not(.h_document) a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gnav ul .h_document a {
  min-height: 46px;
  gap: 10px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 9px;
}

.gnav ul .h_document a::before {
  display: none;
}

.gnav ul .h_document a:hover {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.hamburger {
  top: 23px;
  right: max(28px, calc((100vw - 1380px) / 2));
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  height: 2px;
  background: var(--ink);
}

.header-wrap {
  z-index: 95;
  width: min(680px, 100%);
  max-width: 100%;
  padding: 118px 46px 44px;
  color: var(--ink);
  background: #fff;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: -24px 0 70px rgba(23, 28, 34, 0.08);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-wrap.active,
.header-wrap.is-open {
  transform: translateX(0);
  transition-duration: 300ms;
}

.header-wrap .ham_logo {
  top: 24px;
  left: 38px;
  width: 245px;
}

.header-wrap .header-wrap_inner {
  gap: 34px;
}

.header-wrap .gnav_ham {
  width: min(290px, 100%);
  padding-right: 28px;
  border-color: var(--line);
}

.header-wrap .gnav_ham ul:nth-child(1) li {
  border-color: var(--line);
}

.header-wrap .gnav_ham ul:nth-child(1) a,
.header-wrap .gnav_ham ul:nth-child(1) p,
.header-wrap .gnav_ham ul:nth-child(1) .gnav_ham_accordion__trigger p {
  font-size: 1.7rem;
  line-height: 1.6;
}

.header-wrap .gnav_ham ul:nth-child(1) a:hover {
  color: var(--red);
}

.header-wrap .media_category_wrap {
  min-width: 0;
}

.header-wrap .media_category_wrap .heading span,
.header-wrap .media_category_wrap .heading p {
  color: var(--red);
}

.header-wrap .media_category_wrap .main_category ul a,
.header-wrap .media_category_wrap .job_category a {
  background: var(--blue-soft);
  border-color: transparent;
  border-radius: 12px;
}

.header-wrap .media_category_wrap .ham_contact_wrap .ham_document a {
  background: var(--red);
  border-color: var(--red);
}

.header-overlay {
  z-index: 94;
  background: rgba(22, 23, 25, 0.42);
  backdrop-filter: blur(3px);
}

.header-overlay.active,
.header-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Page headings and breadcrumbs. */
.page_top,
.page_top2,
.page_top3,
.page_top_media,
.post_page_top,
.page_top_company {
  position: relative;
  min-height: 0;
  padding: clamp(72px, 8vw, 116px) 0 clamp(46px, 6vw, 80px);
  color: var(--ink);
  background:
    radial-gradient(circle at 87% 18%, rgba(220, 238, 255, 0.86), transparent 27%),
    radial-gradient(circle at 73% 78%, rgba(255, 240, 236, 0.76), transparent 23%),
    #fff;
  border-radius: 0;
  overflow: hidden;
}

.page_top::before,
.page_top2::before,
.page_top3::before,
.page_top_media::before,
.post_page_top::before,
.page_top_company::before {
  position: absolute;
  top: 22%;
  right: 8%;
  width: 34px;
  height: 190px;
  aspect-ratio: auto;
  background: var(--red);
  background-image: none;
  content: "";
  opacity: 0.94;
  transform: rotate(27deg);
}

.page_top .cont,
.page_top2 .cont,
.page_top3 .cont,
.page_top_media .cont,
.post_page_top .cont,
.page_top_company .cont {
  position: relative;
  z-index: 1;
}

.page_top .sub_title,
.page_top2 .sub_title,
.page_top3 .sub_title,
.page_top_media .sub_title,
.post_page_top .sub_title,
.page_top_company .sub_title {
  margin: 0 0 15px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.page_top .page_title,
.page_top2 .page_title,
.page_top3 .page_title,
.page_top_media .page_title,
.post_page_top .page_title,
.page_top_company .page_title {
  max-width: 870px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.5rem, 5.2vw, 7rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.055em;
}

.page_top2 .page_description,
.page_top_media .page_description {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.9;
}

.pankuzu {
  padding: 15px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pankuzu .cont {
  width: var(--shell);
  max-width: 1160px;
  gap: 8px 12px;
}

.pankuzu .cont a,
.pankuzu .cont span {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

.pankuzu .cont a:hover {
  color: var(--red);
  opacity: 1;
}

/* Front page legacy hero. */
.main_visual {
  min-height: clamp(680px, 78vh, 860px);
  padding: clamp(64px, 7vw, 105px) 0 88px;
  background:
    radial-gradient(circle at 82% 22%, rgba(220, 238, 255, 0.92), transparent 29%),
    radial-gradient(circle at 66% 78%, rgba(255, 240, 236, 0.82), transparent 24%),
    #fff;
  border-radius: 0;
  overflow: hidden;
}

.main_visual::before {
  top: 7%;
  right: 7%;
  width: 34px;
  height: 250px;
  aspect-ratio: auto;
  background: var(--red);
  background-image: none;
  opacity: 0.96;
  transform: rotate(27deg);
}

.main_visual .cont,
.main_visual .main_visual_swiper {
  width: var(--shell-wide);
  max-width: 1380px;
  height: auto;
  margin-inline: auto;
  overflow: visible;
}

.main_visual .swiper-slide > a {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  width: 100%;
  padding: 0;
  color: var(--ink);
}

.main_visual .detail {
  position: relative;
  z-index: 2;
  width: auto;
  padding: 0;
}

.main_visual .blog_card .categories,
.main_visual .blog_card .post_category,
.main_visual .blog_card .job_category {
  justify-content: flex-start;
}

.main_visual .blog_card .post_category p,
.main_visual .blog_card .job_category p {
  padding: 6px 10px;
  color: var(--red-dark);
  background: var(--coral-soft);
  border: 0;
  border-radius: 999px;
  font-size: 1.05rem;
}

.main_visual .blog_card h3 {
  margin: 22px 0;
  color: var(--ink);
  font-size: clamp(3.8rem, 4.7vw, 6.8rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.main_visual .blog_card .case_excerpt {
  max-width: 560px;
  margin: 0 0 27px;
  color: var(--ink-soft);
  font-size: 1.45rem;
  line-height: 1.9;
}

.main_visual .blog_card .post_meta,
.main_visual .blog_card .post_meta time,
.main_visual .blog_card .post_meta .author-name {
  color: var(--muted);
}

.main_visual .img {
  position: relative;
  width: 100%;
  height: clamp(520px, 53vw, 710px);
  border-radius: 0;
  clip-path: polygon(14% 0, 100% 0, 100% 88%, 84% 100%, 0 100%, 0 14%);
  overflow: hidden;
}

.main_visual .img::before {
  display: none;
}

.main_visual .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.main_visual a:hover {
  color: inherit;
  opacity: 1;
}

.main_visual a:hover .img img {
  transform: scale(1.025);
}

.main_visual .swiper-pagination {
  right: auto;
  bottom: -36px;
  left: 0;
  width: auto;
  justify-content: flex-start;
}

.main_visual .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  background: var(--line-strong);
  border-radius: 999px;
}

.main_visual .swiper-pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: var(--red);
}

/* Archive and media cards. */
.archive_wrapper,
.page_media_wrapper,
.archive_news_wrapper,
.single_wrapper,
.single_news_wrapper,
.page_content2 {
  color: var(--ink);
  background: #fff;
}

.archive_wrapper,
.archive_news_wrapper,
.single_wrapper,
.single_news_wrapper {
  padding-top: clamp(52px, 6vw, 84px);
}

.two_column_content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
  max-width: 1160px;
  margin-bottom: clamp(80px, 10vw, 150px);
}

.two_column_content .left {
  min-width: 0;
}

.post_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 24px;
}

.post_list > li,
.two_column_content .post_list li,
.page_media-category_item .post_list li,
.related .post_list li {
  width: auto;
  min-width: 0;
  margin: 0;
}

.blog_card {
  color: var(--ink);
}

.blog_card > a {
  display: block;
  height: 100%;
  color: inherit;
  opacity: 1;
}

.blog_card .img {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  background: var(--blue-soft);
  overflow: hidden;
}

.blog_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog_card .categories {
  gap: 6px;
  margin: 17px 0 10px;
}

.blog_card .post_category,
.blog_card .job_category {
  gap: 6px;
}

.blog_card .post_category p,
.blog_card .job_category p,
.article-status,
.sample-label,
.fde-sample-label,
.demo-label,
.is-sample-label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 9px;
  color: var(--red-dark);
  background: var(--coral-soft);
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.blog_card .job_category p {
  color: #18589f;
  background: var(--blue-soft);
}

.blog_card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.blog_card .post_meta {
  gap: 13px;
  margin-top: 16px;
}

.blog_card .post_meta time,
.blog_card .post_meta .author-name {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
}

.blog_card .post_meta img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.blog_card a:hover {
  color: inherit;
  opacity: 1;
}

.blog_card a:hover .img img {
  transform: scale(1.03);
}

.blog_card a:hover h3 {
  color: var(--red-dark);
}

.page_media_wrapper .page_media-category_list_wrapper {
  padding: clamp(66px, 8vw, 110px) 0;
  background: #fff;
}

.page_media-category_item {
  padding: 0 0 clamp(64px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.page_media-category_item + .page_media-category_item {
  padding-top: clamp(64px, 7vw, 96px);
}

.page_media-category_item .heading_wrap h2,
.page_media-category_item .heading_wrap h3 {
  color: var(--ink);
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.page_media-category_item .more_btn a,
.more_btn2 a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  font-size: 1.2rem;
  font-weight: 800;
  opacity: 1;
}

.page_media-category_item .more_btn a:hover,
.more_btn2 a:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

/* Search surfaces. */
.search_box {
  margin-bottom: 48px;
}

.search_box .accordion,
.search_box--static .search_box_panel {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(22, 23, 25, 0.045);
  overflow: hidden;
}

.search_box .accordion__title button,
.search_box--static .search_box_static_title {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--blue-soft);
  border: 0;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: left;
}

.search_box .accordion__title button > span:first-child,
.search_box--static .search_box_static_title {
  color: var(--red-dark);
}

.search_box .accordion__content,
.search_box--static .search_box_panel {
  padding: 24px;
}

.search_box input[type="text"],
.search_box input[type="search"],
.searchandfilter input[type="text"],
.searchandfilter input[type="search"],
.sidebar-search .search-field {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--ink);
  background: #f7f8f9;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  font-size: 1.4rem;
}

.searchandfilter input[type="submit"],
.search_box input[type="submit"],
.sidebar-search .search-submit {
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 9px;
  font-size: 1.2rem;
  font-weight: 800;
}

.searchandfilter input[type="submit"]:hover,
.search_box input[type="submit"]:hover,
.sidebar-search .search-submit:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.search_conditions {
  margin-bottom: 35px;
  padding: 22px;
  background: var(--blue-soft);
  border-radius: 16px;
}

.search_conditions_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.search_conditions_list li {
  color: var(--ink-soft);
  font-size: 1.25rem;
}

.search_conditions_list .label {
  color: var(--red-dark);
  font-weight: 800;
}

/* Sidebar and TOC. */
.sidebar {
  min-width: 0;
}

.two_column_content > .sidebar,
.single_wrapper .two_column_content > .sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar .sidebar_menu,
.sidebar .sidebar-search,
.sidebar .popular-posts,
.sidebar .sidebar_tags,
.sidebar_ez_toc {
  margin-bottom: 22px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(22, 23, 25, 0.04);
}

.sidebar .sidebar_menu h2,
.sidebar .popular-posts h2,
.sidebar .sidebar_tags h2 {
  margin-bottom: 16px;
  padding: 0;
  color: var(--ink);
  border: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.sidebar .sidebar_menu h2 span,
.sidebar .popular-posts h2 span,
.sidebar .sidebar_tags h2 span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.sidebar .category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sidebar .category_list a,
.sidebar .sidebar_tags .tags_list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 10px;
  color: var(--ink-soft);
  background: var(--blue-soft);
  border: 0;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
}

.sidebar .category_list a:hover,
.sidebar .sidebar_tags .tags_list a:hover {
  color: #fff;
  background: var(--red);
}

.sidebar-search label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.sidebar-search .search-field {
  border-radius: 9px 0 0 9px;
}

.sidebar-search .search-submit {
  border-radius: 0 9px 9px 0;
}

.sidebar_ez_toc #ez-toc-container-sidebar,
.sidebar_ez_toc #ez-toc-container-sidebar-2 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Single article. */
.single_wrapper .two_column_content {
  grid-template-columns: minmax(0, 790px) 290px;
  justify-content: space-between;
}

.single_wrapper .left .single_top_meta {
  margin-bottom: 22px;
}

.single_wrapper .left .post_title {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(3rem, 4.7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.045em;
  text-wrap: balance;
  word-break: normal;
  word-break: auto-phrase;
  overflow-wrap: normal;
  line-break: strict;
}

.single_wrapper .left .main_img {
  margin-bottom: 46px;
  border-radius: 24px;
  overflow: hidden;
}

.single_wrapper .left .main_img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single_wrapper .left .content {
  color: var(--ink-soft);
  font-size: 1.6rem;
  line-height: 2;
}

.single_wrapper .left .content > * {
  max-width: 100%;
}

.single_wrapper .left .content > p,
.single_wrapper .left .content li {
  color: var(--ink-soft);
  font-size: 1.6rem;
  line-height: 2;
}

.single_wrapper .left .content > p + p {
  margin-top: 1.4em;
}

.single_wrapper .left .content h2 {
  position: relative;
  margin: 72px 0 28px;
  padding: 18px 0 18px 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(2.5rem, 3.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.single_wrapper .left .content h2::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 5px;
  height: auto;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

.single_wrapper .left .content h3 {
  position: relative;
  margin: 52px 0 22px;
  padding: 0 0 13px;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  font-size: clamp(2.1rem, 2.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.55;
}

.single_wrapper .left .content h3::before {
  top: auto;
  bottom: -2px;
  left: 0;
  width: 84px;
  height: 2px;
  background: var(--red);
  border-radius: 0;
}

.single_wrapper .left .content h4 {
  margin: 38px 0 18px;
  padding: 0 0 0 16px;
  color: var(--ink);
  border-left: 3px solid var(--blue);
  font-size: 1.9rem;
  font-weight: 800;
}

.single_wrapper .left .content h4::before {
  display: none;
}

.single_wrapper .left .content a {
  color: #125eb6;
  text-decoration: underline;
  text-decoration-color: rgba(18, 94, 182, 0.35);
  text-underline-offset: 0.18em;
}

.single_wrapper .left .content a:hover {
  color: var(--red-dark);
  opacity: 1;
}

.single_wrapper .left .content blockquote {
  margin: 34px 0;
  padding: 22px 24px;
  color: var(--ink-soft);
  background: var(--blue-soft);
  border: 0;
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
}

.single_wrapper .left .content ul.wp-block-list,
.single_wrapper .left .content ol.wp-block-list {
  margin: 28px 0;
  padding: 24px 28px 24px 48px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.single_wrapper .left .content ul.wp-block-list li + li,
.single_wrapper .left .content ol.wp-block-list li + li {
  margin-top: 9px;
}

.single_wrapper .left .content .wp-block-table,
.single_wrapper .left .content .wp-block-table.fde-table-figure {
  display: block;
  width: 100%;
  margin: 42px 0;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(22, 23, 25, 0.045);
  -webkit-overflow-scrolling: touch;
}

.single_wrapper .left .content .wp-block-table table,
.single_wrapper .left .content .fde-data-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.single_wrapper .left .content .wp-block-table th,
.single_wrapper .left .content .wp-block-table td,
.single_wrapper .left .content .fde-data-table th,
.single_wrapper .left .content .fde-data-table td {
  padding: 15px 17px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1.35rem;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.single_wrapper .left .content .wp-block-table th,
.single_wrapper .left .content .fde-data-table th {
  color: var(--ink);
  background: var(--blue-soft);
  font-weight: 800;
}

.single_wrapper .left .content .wp-block-table th:first-child,
.single_wrapper .left .content .fde-data-table th:first-child {
  border-left: 4px solid var(--red);
}

.single_wrapper .left .content .wp-block-table tr:last-child td,
.single_wrapper .left .content .fde-data-table tr:last-child td {
  border-bottom: 0;
}

.single_wrapper .left .content .wp-block-table th:last-child,
.single_wrapper .left .content .wp-block-table td:last-child,
.single_wrapper .left .content .fde-data-table th:last-child,
.single_wrapper .left .content .fde-data-table td:last-child {
  border-right: 0;
}

.single_wrapper .left .content #ez-toc-container,
.single_wrapper .left .content .fde-native-toc {
  width: 100%;
  margin: 40px 0 52px;
  padding: 27px 28px;
  color: var(--ink);
  background: var(--blue-soft);
  border: 1px solid var(--blue-mid);
  border-radius: 16px;
  box-shadow: none;
}

.single_wrapper .left .content #ez-toc-container .ez-toc-title,
.single_wrapper .left .content .fde-native-toc .ez-toc-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
}

.single_wrapper .left .content #ez-toc-container .ez-toc-title::before {
  background: var(--red);
}

.single_wrapper .left .content #ez-toc-container a,
.single_wrapper .left .content .fde-native-toc a,
.sidebar_ez_toc a {
  color: var(--ink-soft);
  text-decoration: none;
}

.single_wrapper .left .content #ez-toc-container a:hover,
.single_wrapper .left .content .fde-native-toc a:hover,
.sidebar_ez_toc a:hover {
  color: var(--red-dark);
}

.single_wrapper .left .content .fde-editor-note {
  border-left-color: var(--red);
  background: var(--coral-soft);
}

.single_wrapper .left .content .fde-article-figure {
  background: #f8fafc;
  border-color: var(--line);
  border-top-color: var(--red);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(22, 23, 25, 0.045);
}

.fde-lifecycle__list li {
  border-bottom-color: var(--red);
  border-radius: 12px;
}

.fde-lifecycle__number {
  color: #fff;
  background: var(--red);
}

.fde-difference__type {
  color: #155ba8;
  background: var(--blue-soft);
}

.fde-difference__separator span {
  color: var(--red);
}

.fde-salary-overview__item--accent {
  background: var(--red);
}

.fde-salary-overview__item--accent strong,
.fde-salary-overview__item--accent span,
.fde-salary-overview__item--accent p {
  color: #fff !important;
}

.fde-range-chart__bar {
  background: linear-gradient(90deg, var(--red), #ff7579);
}

.fde-median__group li.is-median {
  background: var(--red);
  border-color: var(--red);
}

.single_wrapper .left .content .fde-article-cta a {
  color: #fff;
  background: var(--red);
  border-left-color: var(--red-dark);
  border-radius: 12px;
}

.single_wrapper .left .content .fde-article-cta a span {
  color: #fff;
}

.single_wrapper .left .content .post_faq {
  border-color: var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.single_wrapper .left .content .post_faq .post_faq_question {
  background: var(--coral-soft);
}

.single_wrapper .left .content .post_faq .post_faq_answer {
  background: #fff;
}

.single_wrapper .left .content .writer_box {
  padding: 26px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.single_wrapper .left .post_share {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.single_wrapper .left .post_share h2 {
  color: var(--ink);
  font-size: 1.7rem;
}

.single_wrapper .left .post_share h2::before {
  background: var(--red);
}

.single_wrapper .left .post_share .flex a {
  border-radius: 12px;
}

.related {
  margin-top: 0;
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--blue-soft);
  border-radius: 0;
}

.related .sub_title {
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.related h2 {
  margin-bottom: 42px;
  color: var(--ink);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.related .post_list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
}

/* News archive. */
.archive_news_wrapper {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.archive_news_wrapper .cat_news_list {
  margin-bottom: 42px;
}

.archive_news_wrapper .cat_news_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive_news_wrapper .cat_news_list_wrap a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
}

.archive_news_wrapper .cat_news_list_wrap a.active,
.archive_news_wrapper .cat_news_list_wrap a:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.archive_news_wrapper .news_list {
  border-top: 1px solid var(--line);
}

.archive_news_wrapper .news_list li {
  border-bottom: 1px solid var(--line);
}

.archive_news_wrapper .news_list a {
  display: grid;
  grid-template-columns: 110px minmax(120px, auto) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 18px 6px;
  color: var(--ink);
}

.archive_news_wrapper .news_list a time {
  color: var(--muted);
  font-size: 1.15rem;
}

.archive_news_wrapper .news_list a .news_list_category_wrap p {
  padding: 5px 9px;
  color: var(--red-dark);
  background: var(--coral-soft);
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
}

.archive_news_wrapper .news_list a h2 {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.65;
}

.archive_news_wrapper .news_list a:hover {
  color: var(--red-dark);
  background: #fffafa;
  opacity: 1;
}

/* Pagination. */
.pagination {
  gap: 9px;
  margin-top: 72px;
  align-items: center;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1.3rem;
}

.pagination .current,
.pagination a:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.pagination .pagination_count,
.pagination .dots,
.pagination .prev,
.pagination .next {
  background: transparent;
  border-color: transparent;
}

.pagination .pagination_count {
  width: auto;
  margin-right: 16px;
  color: var(--muted);
}

/* School bridge and footer stay light to preserve the white-base rule. */
.bottom_contact {
  padding: clamp(72px, 8vw, 108px) 0;
  color: var(--ink);
  background: var(--blue-soft);
  border-radius: 0;
}

.bottom_contact::before,
.bottom_contact .character {
  display: none;
}

.bottom_contact .sub_title {
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.bottom_contact h2 {
  color: var(--ink);
  font-size: clamp(3rem, 4.6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.bottom_contact .contact_item,
.bottom_contact .contact_item.contact_item--single {
  max-width: 760px;
  padding: 38px 42px 32px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--blue-mid);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(35, 102, 209, 0.09);
}

.bottom_contact .contact_item h3 {
  color: var(--ink);
  font-size: clamp(2.1rem, 3vw, 3.1rem);
}

.bottom_contact .contact_item .description {
  color: var(--ink-soft);
}

.bottom_contact .contact_item .more_btn3 span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border-radius: 9px;
}

.bottom_contact .contact_item:hover {
  border-color: var(--red);
  opacity: 1;
  transform: translateY(-3px);
}

.bottom_contact .contact_item:hover .more_btn3 span {
  color: #fff;
  background: var(--red-dark);
}

.footer {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer .footer_main {
  padding: 64px 0 46px;
}

.footer .footer_main .detail .f_logo img {
  width: min(320px, 100%);
}

.footer .footer_main .detail .f_logo p,
.footer .footer_main .fnav li a {
  color: var(--ink-soft);
}

.footer .footer_main .fnav li p {
  color: var(--red);
}

.footer .footer_main .fnav li p::before {
  background: var(--red);
}

.footer .footer_main .fnav li a:hover {
  color: var(--red-dark);
}

.footer .footer_bottom {
  padding: 19px 0;
  background: #f7f8f9;
  border-top: 1px solid var(--line);
}

.footer .footer_bottom small,
.footer .footer_bottom a {
  color: var(--muted);
}

#scroll-top a {
  background: var(--red);
  border-radius: 50%;
}

/* Empty states and utility labels. */
.no_posts,
.not-found,
.filter-empty,
.search-no-results {
  padding: 38px 24px;
  color: var(--muted);
  background: var(--blue-soft);
  border-radius: 16px;
  text-align: center;
}

.not_found_page {
  padding: clamp(100px, 12vw, 170px) 0;
  background: #fff;
}

.not_found_page img {
  max-width: min(520px, 80vw);
  margin: 0 auto 30px;
}

@media (max-width: 1180px) {
  .header__inner {
    padding-left: 270px;
  }

  .header-nav_wrap {
    display: none;
  }

  .hamburger {
    display: block;
    top: 22px;
    right: 24px;
    width: 42px;
    height: 42px;
    zoom: 1;
  }

  .hamburger__line {
    top: 12px;
    left: 10px;
    width: 20px;
  }

  .hamburger__line::before {
    top: 8px;
    width: 20px;
  }

  .hamburger__line::after {
    top: 16px;
    width: 20px;
  }

  .hamburger.active span,
  .hamburger.is-open span {
    top: 19px;
    left: 9px;
    width: 22px;
  }

  .hamburger.active span::before,
  .hamburger.is-open span::before {
    width: 22px;
  }
}

@media (max-width: 1024px) {
  .two_column_content,
  .single_wrapper .two_column_content {
    display: block;
  }

  .two_column_content > .sidebar,
  .single_wrapper .two_column_content > .sidebar {
    position: static;
    width: 100%;
    margin-top: 60px;
  }

  .related .post_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.9px) {
  :root {
    --header-height: 70px;
  }

  .cont {
    width: calc(100vw - 32px);
  }

  .header + main {
    padding-top: var(--header-height);
  }

  .header,
  .site-header {
    height: var(--header-height);
  }

  .header_logo {
    top: 12px;
    left: 16px;
    width: min(216px, calc(100vw - 90px));
  }

  .header_logo .fde-logo-img,
  .header_logo img {
    max-height: 46px;
  }

  .hamburger {
    top: 14px;
    right: 14px;
  }

  .header-wrap {
    width: 100%;
    padding: 92px 18px 24px;
    border-left: 0;
  }

  .header-wrap .ham_logo {
    top: 17px;
    left: 18px;
    width: min(214px, calc(100vw - 90px));
    margin: 0;
  }

  .header-wrap .header-wrap_inner {
    display: block;
    padding: 0 0 50px;
  }

  .header-wrap .gnav_ham {
    width: 100%;
    padding: 0;
    border: 0;
  }

  .header-wrap .media_category_wrap {
    margin-top: 28px;
  }

  .header-wrap .media_category_wrap .main_category ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page_top,
  .page_top2,
  .page_top3,
  .page_top_media,
  .post_page_top,
  .page_top_company {
    padding: 52px 0 42px;
  }

  .page_top::before,
  .page_top2::before,
  .page_top3::before,
  .page_top_media::before,
  .post_page_top::before,
  .page_top_company::before {
    right: 8%;
    width: 20px;
    height: 110px;
  }

  .page_top .page_title,
  .page_top2 .page_title,
  .page_top3 .page_title,
  .page_top_media .page_title,
  .post_page_top .page_title,
  .page_top_company .page_title {
    max-width: calc(100% - 42px);
    font-size: clamp(3rem, 10vw, 4.3rem);
  }

  .pankuzu {
    padding: 11px 0;
  }

  .pankuzu .cont {
    width: calc(100vw - 32px);
  }

  .main_visual {
    min-height: 0;
    padding: 46px 0 58px;
  }

  .main_visual .cont,
  .main_visual .main_visual_swiper {
    width: calc(100vw - 32px);
  }

  .main_visual .swiper-slide > a {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .main_visual .blog_card h3 {
    margin: 17px 0;
    font-size: clamp(3rem, 10vw, 4.5rem);
  }

  .main_visual .blog_card .case_excerpt {
    font-size: 1.35rem;
  }

  .main_visual .img {
    height: min(112vw, 520px);
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 85% 100%, 0 100%, 0 13%);
  }

  .main_visual::before {
    right: 8%;
    width: 22px;
    height: 170px;
  }

  .post_list,
  .related .post_list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog_card .img {
    border-radius: 16px;
  }

  .page_media-category_item .heading_wrap h2,
  .page_media-category_item .heading_wrap h3 {
    font-size: 3rem;
  }

  .search_box .accordion__content,
  .search_box--static .search_box_panel {
    padding: 18px 15px;
  }

  .search_box--static .search_box_panel form > div > ul,
  .searchandfilter > ul {
    display: block;
  }

  .sidebar .sidebar_menu,
  .sidebar .sidebar-search,
  .sidebar .popular-posts,
  .sidebar .sidebar_tags,
  .sidebar_ez_toc {
    padding: 18px;
  }

  .single_wrapper .left .post_title {
    font-size: clamp(2.7rem, 8.8vw, 4rem);
  }

  .single_wrapper .left .main_img {
    margin-bottom: 34px;
    border-radius: 17px;
  }

  .single_wrapper .left .content,
  .single_wrapper .left .content > p,
  .single_wrapper .left .content li {
    font-size: 1.5rem;
    line-height: 1.95;
  }

  .single_wrapper .left .content h2 {
    margin-top: 55px;
    padding: 15px 0 15px 18px;
    font-size: 2.5rem;
  }

  .single_wrapper .left .content h2::before {
    top: 14px;
    bottom: 14px;
    width: 4px;
  }

  .single_wrapper .left .content h3 {
    margin-top: 42px;
    font-size: 2.1rem;
  }

  .single_wrapper .left .content ul.wp-block-list,
  .single_wrapper .left .content ol.wp-block-list {
    padding: 20px 18px 20px 38px;
  }

  .single_wrapper .left .content .wp-block-table,
  .single_wrapper .left .content .wp-block-table.fde-table-figure {
    margin: 32px 0;
    border-radius: 11px;
  }

  .single_wrapper .left .content .wp-block-table table,
  .single_wrapper .left .content .fde-data-table {
    min-width: 640px;
  }

  .single_wrapper .left .content #ez-toc-container,
  .single_wrapper .left .content .fde-native-toc {
    margin: 30px 0 40px;
    padding: 21px 18px;
  }

  .single_wrapper .left .content .fde-article-figure {
    padding: 20px 15px;
  }

  .archive_news_wrapper .news_list a {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 7px 13px;
  }

  .archive_news_wrapper .news_list a h2 {
    grid-column: 1 / -1;
    font-size: 1.45rem;
  }

  .archive_news_wrapper .news_list a .news_list_category_wrap {
    min-width: 0;
  }

  .pagination {
    flex-wrap: wrap;
    margin-top: 48px;
  }

  .pagination .pagination_count {
    flex-basis: 100%;
    margin: 0 0 8px;
  }

  .bottom_contact .contact_item,
  .bottom_contact .contact_item.contact_item--single {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .footer .footer_main {
    padding: 46px 0 34px;
  }

  .footer .footer_main .cont,
  .footer .footer_main .fnav {
    display: block;
  }

  .footer .footer_main .detail .f_logo img {
    width: min(260px, 100%);
    margin: 0;
  }

  .footer .footer_main .detail .f_logo p {
    text-align: left;
  }

  .footer .footer_main .detail .footer_sns {
    justify-content: flex-start;
  }

  .footer .footer_main .fnav {
    margin-top: 34px;
    padding: 0;
  }

  .footer .footer_main .fnav ul {
    margin: 0 0 24px !important;
  }
}

/* =========================================================
 * FDE contact
 * ======================================================= */
.fde-contact-page {
  overflow: hidden;
  color: #171719;
  background: #fff;
}

.fde-contact-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.fde-contact-hero {
  padding: clamp(64px, 7vw, 108px) 0 48px;
  background:
    linear-gradient(90deg, #fff 0 48%, rgba(237, 247, 255, 0.68) 48% 100%);
}

.fde-contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 7vw, 102px);
  align-items: center;
}

.fde-contact-hero__copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.055em;
  text-wrap: balance;
  word-break: keep-all;
}

.fde-contact-hero__lead {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.fde-contact-response-note {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 600px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #cfd6dc;
}

.fde-contact-response-note > span {
  color: var(--red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.fde-contact-response-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.fde-contact-response-note strong {
  font-size: 16px;
}

.fde-contact-hero__visual {
  position: relative;
  min-height: 540px;
  margin: 0;
}

.fde-contact-hero__visual::before {
  position: absolute;
  z-index: 1;
  top: -28px;
  left: -24px;
  width: 18px;
  height: 132px;
  background: var(--red);
  content: "";
  transform: skew(-13deg);
}

.fde-contact-hero__visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
}

.fde-contact-hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 360px;
  padding: 18px 24px;
  color: #fff;
  background: #171719;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.fde-contact-hero .asset-disclosure {
  margin-top: 14px;
  color: #77808a;
  font-size: 11px;
}

.fde-contact-body {
  padding: clamp(80px, 8vw, 132px) 0;
  background: #f4f8fb;
}

.fde-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.fde-contact-guide {
  position: sticky;
  top: 120px;
}

.fde-contact-guide h2 {
  margin: 0;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.fde-contact-guide__list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bfc9d1;
}

.fde-contact-guide__list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #bfc9d1;
}

.fde-contact-guide__list li > span {
  padding-top: 3px;
  color: var(--red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.fde-contact-guide__list strong {
  display: block;
  font-size: 17px;
  line-height: 1.55;
}

.fde-contact-guide__list p {
  margin: 7px 0 0;
  color: #626a72;
  font-size: 13px;
  line-height: 1.75;
}

.fde-contact-guide__notice {
  margin-top: 32px;
  padding: 24px;
  color: #fff;
  background: #171719;
}

.fde-contact-guide__notice strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

.fde-contact-guide__notice p {
  margin: 0;
  color: #d5d8dc;
  font-size: 12px;
  line-height: 1.8;
}

.fde-contact-form-card {
  padding: clamp(32px, 4.3vw, 64px);
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 4px 4px 36px 4px;
  box-shadow: 0 24px 70px rgba(16, 34, 50, 0.09);
}

.fde-contact-form-card__head {
  margin-bottom: 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dce3e8;
}

.fde-contact-form-card__head h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.fde-contact-form-card__head > p:last-child {
  margin: 16px 0 0;
  color: #5d656d;
  font-size: 13px;
}

.fde-contact-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  margin-right: 6px;
  padding: 4px 7px;
  color: #fff;
  background: var(--red);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.fde-contact-form-fields {
  display: grid;
  gap: 30px;
}

.fde-contact-field,
.fde-contact-kind {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.fde-contact-field > label,
.fde-contact-kind > legend {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 11px;
  color: #171719;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.fde-contact-field input[type="text"],
.fde-contact-field input[type="email"],
.fde-contact-field textarea {
  width: 100%;
  margin: 0;
  padding: 15px 16px;
  color: #171719;
  background: #f4f6f8;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fde-contact-field textarea {
  min-height: 190px;
  resize: vertical;
}

.fde-contact-field input:focus,
.fde-contact-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(235, 43, 49, 0.12);
}

.fde-contact-field__help {
  margin: 9px 0 0;
  color: #717982;
  font-size: 12px;
  line-height: 1.7;
}

.fde-contact-kind .wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fde-contact-kind .wpcf7-list-item {
  margin: 0;
}

.fde-contact-kind .wpcf7-list-item > label {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d4dce2;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fde-contact-kind .wpcf7-list-item > label:has(input:checked) {
  background: #fff4f3;
  border-color: var(--red);
}

.fde-contact-kind input[type="radio"],
.fde-contact-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--red);
}

.fde-contact-kind .wpcf7-list-item-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.fde-contact-privacy {
  padding: 20px;
  background: #f4f8fb;
  border-left: 3px solid var(--red);
}

.fde-contact-privacy .wpcf7-list-item {
  margin: 0;
}

.fde-contact-privacy label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.fde-contact-privacy a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fde-contact-form-warning {
  margin: 0;
  color: #606972;
  font-size: 12px;
  line-height: 1.8;
}

.fde-contact-submit {
  position: relative;
  margin-top: 4px;
}

.fde-contact-submit .wpcf7-submit {
  width: 100%;
  min-height: 64px;
  margin: 0;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fde-contact-submit .wpcf7-submit:hover {
  background: #171719;
  transform: translateY(-2px);
}

.fde-contact-submit .wpcf7-submit:disabled {
  cursor: wait;
  opacity: 0.6;
  transform: none;
}

.fde-contact-form-card .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #c40e20;
  font-size: 12px;
  font-weight: 700;
}

.fde-contact-form-card .wpcf7-response-output {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-width: 1px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.7;
}

.fde-contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.fde-contact-success {
  padding: 36px 0 18px;
  text-align: center;
}

.fde-contact-success[hidden] {
  display: none;
}

.fde-contact-success > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.fde-contact-success h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.fde-contact-success > p:not(.fde-contact-kicker) {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 1.9;
}

.fde-contact-success__note {
  padding: 14px 18px;
  color: #5f6870;
  background: #f4f8fb;
  font-size: 12px !important;
}

.fde-contact-success .primary-button {
  display: inline-flex;
  margin-top: 28px;
}

.fde-contact-form-card.is-complete .fde-contact-form-card__head,
.fde-contact-form-card.is-complete .fde-contact-form-mount {
  display: none;
}

.fde-contact-safety {
  padding: clamp(72px, 7vw, 112px) 0;
  background: #171719;
}

.fde-contact-safety__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1fr);
  gap: 24px 80px;
  align-items: end;
  color: #fff;
}

.fde-contact-safety__inner .fde-contact-kicker {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.fde-contact-safety h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.fde-contact-safety__inner > p:not(.fde-contact-kicker) {
  margin: 0;
  color: #d4d8dc;
  font-size: 15px;
  line-height: 1.9;
}

.fde-contact-safety a {
  grid-column: 2;
  justify-self: start;
  margin-top: 10px;
  padding-bottom: 8px;
  color: #fff;
  border-bottom: 1px solid var(--red);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .fde-contact-hero {
    background: #fff;
  }

  .fde-contact-hero__inner,
  .fde-contact-layout {
    grid-template-columns: 1fr;
  }

  .fde-contact-hero__visual {
    min-height: 460px;
  }

  .fde-contact-hero__visual img {
    height: 460px;
  }

  .fde-contact-layout {
    gap: 56px;
  }

  .fde-contact-guide {
    position: static;
  }

  .fde-contact-guide__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fde-contact-guide__list li:nth-child(odd) {
    padding-right: 24px;
  }

  .fde-contact-guide__list li:nth-child(even) {
    padding-left: 24px;
    border-left: 1px solid #bfc9d1;
  }
}

@media (max-width: 720px) {
  .fde-contact-hero {
    padding: 50px 0 34px;
  }

  .fde-contact-hero__inner {
    gap: 42px;
  }

  .fde-contact-hero__copy h1 {
    font-size: clamp(39px, 11.4vw, 52px);
    line-height: 1.16;
  }

  .fde-contact-hero__lead {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.9;
  }

  .fde-contact-hero__visual,
  .fde-contact-hero__visual img {
    min-height: 0;
    height: 390px;
  }

  .fde-contact-hero__visual::before {
    top: -18px;
    left: 12px;
    height: 88px;
  }

  .fde-contact-hero__visual figcaption {
    max-width: calc(100% - 28px);
    padding: 14px 17px;
    font-size: 12px;
  }

  .fde-contact-body {
    padding: 72px 0;
  }

  .fde-contact-guide h2 {
    font-size: 35px;
  }

  .fde-contact-guide__list {
    display: block;
  }

  .fde-contact-guide__list li:nth-child(odd),
  .fde-contact-guide__list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .fde-contact-form-card {
    padding: 28px 18px 32px;
    border-radius: 3px 3px 24px 3px;
  }

  .fde-contact-form-card__head {
    margin-bottom: 32px;
  }

  .fde-contact-kind .wpcf7-radio {
    grid-template-columns: 1fr;
  }

  .fde-contact-kind .wpcf7-list-item > label {
    min-height: 56px;
  }

  .fde-contact-safety__inner {
    grid-template-columns: 1fr;
  }

  .fde-contact-safety__inner .fde-contact-kicker,
  .fde-contact-safety a {
    grid-column: 1;
  }
}

/* =========================================================
 * TOP: site-level page guide
 * ======================================================= */
.site-guide-section {
  position: relative;
  padding: 126px 0 134px;
  overflow: hidden;
  background: #fff;
}

.site-guide-section__wash {
  position: absolute;
  top: -150px;
  right: -180px;
  width: 610px;
  height: 610px;
  background: radial-gradient(circle, rgba(220, 238, 255, 0.82), rgba(237, 247, 255, 0) 69%);
  pointer-events: none;
}

.site-guide-section .shell {
  position: relative;
  z-index: 1;
}

.site-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(350px, 0.77fr);
  gap: 20px;
}

.site-guide-side {
  display: grid;
  gap: 14px;
}

.site-guide-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-guide-card:hover {
  border-color: rgba(230, 44, 50, 0.36);
  box-shadow: 0 18px 48px rgba(22, 23, 25, 0.09);
  transform: translateY(-4px);
}

.site-guide-card__number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  color: #9ca1a8;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
}

.site-guide-card__arrow {
  position: absolute;
  z-index: 3;
  top: 19px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 16px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-guide-card:hover .site-guide-card__arrow {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: rotate(8deg);
}

.site-guide-card__copy {
  position: relative;
  z-index: 2;
}

.site-guide-card__copy > p {
  margin: 0 0 7px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-guide-card__copy h3 {
  margin: 0;
  letter-spacing: -0.045em;
}

.site-guide-card__copy > span {
  display: block;
  color: var(--muted);
  line-height: 1.8;
}

.site-guide-card--primary {
  min-height: 650px;
  padding: 48px 48px 45px;
  align-items: flex-end;
  background:
    radial-gradient(circle at 89% 12%, rgba(255, 240, 236, 0.96), transparent 27%),
    linear-gradient(145deg, #edf7ff 0%, #f8fbff 52%, #fff 100%);
  border: 0;
}

.site-guide-card--primary::before {
  position: absolute;
  top: -56px;
  right: 116px;
  width: 38px;
  height: 280px;
  background: var(--red);
  border-radius: 4px 30px 4px 30px;
  content: "";
  transform: rotate(37deg);
}

.site-guide-card--primary::after {
  position: absolute;
  right: -72px;
  bottom: -82px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(35, 102, 209, 0.19);
  border-radius: 50%;
  content: "";
}

.site-guide-card--primary .site-guide-card__number {
  top: 32px;
  left: 36px;
}

.site-guide-card--primary .site-guide-card__copy {
  width: min(480px, 88%);
}

.site-guide-card--primary .site-guide-card__copy > p {
  font-size: 11px;
}

.site-guide-card--primary .site-guide-card__copy h3 {
  margin-bottom: 15px;
  font-size: clamp(45px, 5vw, 67px);
  line-height: 1.2;
}

.site-guide-card--primary .site-guide-card__copy > span {
  max-width: 430px;
  font-size: 13px;
}

.site-guide-card__mark {
  position: absolute;
  z-index: 1;
  top: 126px;
  left: 11%;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-en);
}

.site-guide-card__mark strong {
  display: grid;
  width: 134px;
  height: 134px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 34px;
  font-weight: 800;
}

.site-guide-card__mark span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 211, 216, 0.8);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-guide-card__mark i {
  width: 30px;
  height: 1px;
  background: var(--red);
}

.site-guide-side .site-guide-card {
  min-height: 207px;
  padding: 30px 76px 27px 28px;
  align-items: flex-end;
}

.site-guide-side .site-guide-card__copy h3 {
  margin-bottom: 6px;
  font-size: clamp(24px, 2.3vw, 31px);
  line-height: 1.35;
}

.site-guide-side .site-guide-card__copy > span {
  font-size: 10px;
}

.site-guide-card--media {
  background: #fff;
}

.site-guide-card--school {
  background: var(--coral-soft);
  border-color: #f4deda;
}

.site-guide-card--company {
  background: var(--blue-soft);
  border-color: #d9eaf6;
}

/* =========================================================
 * Fixed page: FDE overview
 * ======================================================= */
body.page-id-80 .fde-breadcrumb,
.fde-about + .fde-breadcrumb {
  display: none;
}

.fde-about {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.fde-about-hero {
  position: relative;
  padding: 76px 0 64px;
  overflow: hidden;
  background: linear-gradient(115deg, #fff 0%, #fff 48%, #f5faff 100%);
}

.fde-about {
  font-size: 16px;
}

.fde-about .section-label {
  font-size: 13px;
}

.fde-about .primary-button {
  font-size: 15px;
}

.fde-about .under-link {
  font-size: 14px;
}

.fde-about-hero__wash {
  position: absolute;
  pointer-events: none;
}

.fde-about-hero__wash--blue {
  top: -260px;
  right: -160px;
  width: 730px;
  height: 730px;
  background: radial-gradient(circle, rgba(220, 238, 255, 0.9), rgba(237, 247, 255, 0) 70%);
}

.fde-about-hero__wash--coral {
  bottom: -270px;
  left: -250px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(255, 240, 236, 0.86), rgba(255, 240, 236, 0) 70%);
}

.fde-about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(55px, 7vw, 96px);
  align-items: center;
}

.fde-about-breadcrumb {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 58px;
  color: #888d94;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fde-about-breadcrumb a:hover {
  color: var(--red);
}

.fde-about-hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.fde-about-hero h1 > .fde-about-hero__title-mark {
  display: block;
  margin-bottom: 0.08em;
  color: var(--red);
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.fde-about-hero__title-line,
.fde-about-shift__title-line,
.fde-about-card-title-line {
  display: block;
  white-space: nowrap;
}

.fde-about-nowrap {
  white-space: nowrap;
}

.fde-about-hero__lead {
  max-width: 680px;
  margin: 35px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.95;
}

.fde-about-hero__lead strong {
  color: var(--ink);
}

.fde-about-hero__note {
  max-width: 660px;
  margin: 19px 0 0;
  padding-left: 18px;
  color: var(--muted);
  border-left: 2px solid var(--red);
  font-size: 14px;
  line-height: 1.9;
}

.fde-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  align-items: center;
  margin-top: 34px;
}

.fde-about-hero-visual {
  position: relative;
  margin: 0;
}

.fde-about-hero-visual__frame {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--blue-soft);
  border-radius: 44px 44px 8px 44px;
  box-shadow: 0 28px 80px rgba(35, 70, 105, 0.14);
}

.fde-about-hero-visual__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 17, 23, 0.22));
  content: "";
  pointer-events: none;
}

.fde-about-hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.fde-about-hero-visual__slash {
  position: absolute;
  z-index: 2;
  top: -58px;
  left: 55px;
  width: 29px;
  height: 240px;
  background: var(--red);
  border-radius: 999px;
  transform: rotate(34deg);
}

.fde-about-hero-visual__label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(340px, 78%);
  padding: 25px 28px 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 18px 0 0;
}

.fde-about-hero-visual__label small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.fde-about-hero-visual__label strong {
  font-size: 24px;
  line-height: 1.55;
}

.fde-about-hero-visual figcaption {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 13px;
  color: var(--ink-soft);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.fde-about-hero-visual figcaption i {
  width: 22px;
  height: 1px;
  background: var(--red);
}

.fde-about-hero-visual figcaption em {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--font-jp);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.fde-about-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 620px;
  padding: 54px 48px 43px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    linear-gradient(90deg, rgba(35, 102, 209, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(35, 102, 209, 0.09) 1px, transparent 1px),
    #fff;
  background-size: auto, 32px 32px, 32px 32px, auto;
  border: 1px solid #dce5ed;
  border-radius: 44px 44px 8px 44px;
  box-shadow: 0 28px 80px rgba(35, 70, 105, 0.12);
}

.fde-about-map::before {
  position: absolute;
  top: -63px;
  right: 58px;
  width: 28px;
  height: 240px;
  background: var(--red);
  border-radius: 999px;
  content: "";
  transform: rotate(34deg);
}

.fde-about-map__caption {
  position: relative;
  z-index: 1;
  margin: 0 0 5px;
  color: #8a9097;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.fde-about-map__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 13px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.fde-about-map__stage > span {
  grid-row: span 2;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
}

.fde-about-map__stage p {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-map__stage strong {
  font-size: 15px;
  line-height: 1.5;
}

.fde-about-map__stage--impact {
  border-color: #f0d8d5;
}

.fde-about-map__core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 184px;
  height: 184px;
  margin: 0 auto;
  place-content: center;
  color: #fff;
  background: var(--ink);
  border: 12px solid #eaf5fd;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(22, 23, 25, 0.18);
}

.fde-about-map__core small,
.fde-about-map__core span {
  font-family: var(--font-en);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.fde-about-map__core strong {
  margin: 3px 0;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 48px;
  font-style: italic;
  line-height: 1;
}

.fde-about-map__connector {
  position: absolute;
  z-index: 0;
  left: 50%;
  display: flex;
  width: 100px;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.fde-about-map__connector:nth-of-type(2) {
  top: 149px;
}

.fde-about-map__connector:nth-of-type(4) {
  top: 387px;
}

.fde-about-map__connector i {
  width: 1px;
  height: 55px;
  background: var(--red);
}

.fde-about-map__connector span {
  padding: 3px 7px;
  color: var(--red-dark);
  background: #fff;
  font-family: var(--font-en);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-map__feedback {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.fde-about-map__feedback span {
  margin-right: 6px;
  color: var(--red);
  font-size: 17px;
}

.fde-about-definition-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.fde-about-definition-strip > div {
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 86px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.fde-about-definition-strip > div:last-child {
  border-right: 0;
}

.fde-about-definition-strip span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fde-about-definition-strip strong {
  font-size: 16px;
}

.fde-about-jump {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.fde-about-jump .shell {
  display: flex;
  gap: 30px;
  align-items: center;
  min-height: 66px;
}

.fde-about-jump span {
  margin-right: auto;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.fde-about-jump a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.fde-about-jump a:hover {
  color: var(--red);
}

.fde-about-section {
  padding: 124px 0;
}

.fde-about-section-head {
  margin-bottom: 60px;
}

.fde-about-section-head > p:first-child,
.fde-about-section-head > div:first-child > p:first-child {
  margin: 0 0 17px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fde-about-section-head > p:first-child span,
.fde-about-section-head > div:first-child > p:first-child span {
  margin-right: 12px;
  color: #a7abb0;
}

.fde-about-section-head h2 {
  margin: 0;
  font-size: clamp(43px, 4.2vw, 62px);
  font-weight: 850;
  line-height: 1.42;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.fde-about-section-head > p:last-child,
.fde-about-section-head > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.fde-about-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: end;
}

.fde-about-section-head--split > div:last-child p {
  margin: 0 0 16px;
}

.fde-about-section-head--split > div:last-child p:last-child {
  margin-bottom: 4px;
}

.fde-about-section-head--center {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.fde-about-section-head--center > p:last-child {
  max-width: 700px;
  margin: 24px auto 0;
}

.fde-about-statement {
  position: relative;
  margin-bottom: 26px;
  padding: 62px clamp(35px, 7vw, 94px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 28px 28px 6px 28px;
}

.fde-about-statement::after {
  position: absolute;
  top: -85px;
  right: 9%;
  width: 33px;
  height: 310px;
  background: var(--red);
  border-radius: 999px;
  content: "";
  transform: rotate(35deg);
}

.fde-about-statement p,
.fde-about-statement strong {
  position: relative;
  z-index: 1;
}

.fde-about-statement p {
  margin: 0 0 5px;
  color: #b8bdc4;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 700;
  line-height: 1.75;
}

.fde-about-statement strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(25px, 3vw, 41px);
  line-height: 1.55;
  letter-spacing: -0.045em;
}

.fde-about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: transparent;
  border: 0;
}

.fde-about-pillars article {
  min-width: 0;
  min-height: 610px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px 22px 5px 22px;
  overflow: hidden;
}

.fde-about-pillars article:nth-child(2) {
  background: #fff;
  border-radius: 22px 5px 22px 22px;
}

.fde-about-pillars article:nth-child(3) {
  background: #fff;
  border-radius: 5px 22px 22px 22px;
}

.fde-about-pillars figure {
  height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-soft);
}

.fde-about-pillars figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.fde-about-pillars article:nth-child(1) figure img {
  object-position: 52% center;
}

.fde-about-pillars article:nth-child(2) figure img {
  object-position: 56% center;
}

.fde-about-pillars article:nth-child(3) figure img {
  object-position: 50% center;
}

.fde-about-pillars article:hover figure img {
  transform: scale(1.025);
}

.fde-about-pillars article > div {
  padding: 29px 31px 34px;
}

.fde-about-pillars span,
.fde-about-output-grid article > span,
.fde-about-skill-grid article > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fde-about-pillars h3 {
  margin: 24px 0 15px;
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.fde-about-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.fde-about-photo-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.fde-about-photo-note + .fde-about-statement {
  margin-top: 30px;
}

.fde-about-editor-note {
  margin: 28px 0 0;
  padding: 22px 25px;
  color: var(--muted);
  background: #f7f8f9;
  border-left: 3px solid var(--red);
  font-size: 15px;
  line-height: 1.9;
}

.fde-about-editor-note span {
  margin-right: 11px;
  color: var(--red-dark);
  font-weight: 800;
}

.fde-about-section--market {
  background:
    radial-gradient(circle at 6% 18%, rgba(255, 240, 236, 0.86), transparent 21%),
    linear-gradient(145deg, #eff8ff 0%, #f8fbff 55%, #fff 100%);
}

.fde-about-market-head {
  align-items: end;
}

.fde-about-market-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.83fr) minmax(600px, 1.17fr);
  gap: 22px;
  align-items: stretch;
}

.fde-about-market-visual {
  position: relative;
  min-height: 800px;
  margin: 0;
  overflow: hidden;
  background: #dfeefa;
  border-radius: 30px 30px 6px 30px;
}

.fde-about-market-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 20, 26, 0.52));
  content: "";
}

.fde-about-market-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.fde-about-market-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 35px 31px;
  color: #fff;
}

.fde-about-market-visual figcaption span,
.fde-about-market-copy__eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.fde-about-market-visual figcaption strong {
  display: block;
  font-size: clamp(30px, 2.5vw, 39px);
  line-height: 1.55;
  letter-spacing: -0.045em;
}

.fde-about-market-visual figcaption small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.fde-about-market-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.fde-about-market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #cadbe7;
  border: 1px solid #cadbe7;
  border-radius: 18px 18px 4px 18px;
}

.fde-about-market-stats article {
  min-height: 260px;
  padding: 30px 23px 25px;
  background: rgba(255, 255, 255, 0.95);
}

.fde-about-market-stats article:nth-child(2) {
  background: var(--blue-soft);
}

.fde-about-market-stats strong {
  display: block;
  min-height: 90px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(31px, 3.2vw, 47px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.fde-about-market-stats strong small {
  margin-left: 2px;
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0;
}

.fde-about-market-stats p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.fde-about-market-copy {
  flex: 1;
  padding: 42px 45px 38px;
  color: #fff;
  background: var(--ink);
  border-radius: 18px 4px 18px 18px;
}

.fde-about-market-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(35px, 3.25vw, 48px);
  line-height: 1.45;
  letter-spacing: -0.055em;
}

.fde-about-market-copy > p:not(.fde-about-market-copy__eyebrow) {
  margin: 0;
  color: #c6cbd1;
  font-size: 17px;
  line-height: 1.95;
}

.fde-about-market-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.fde-about-market-copy li {
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.fde-about-market-copy li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--red);
  content: "";
}

.fde-about-market-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #383b40;
}

.fde-about-market-links a {
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 1px solid #737980;
  font-size: 14px;
  font-weight: 800;
}

.fde-about-market-links a span {
  margin-left: 12px;
  color: var(--red);
}

.fde-about-market-links a:hover {
  color: var(--red);
  border-color: var(--red);
}

.fde-about-market-note {
  margin: 20px 0 0;
  padding-left: 16px;
  color: var(--muted);
  border-left: 2px solid var(--red);
  font-size: 13px;
  line-height: 1.85;
}

.fde-about-section--workflow {
  background: linear-gradient(145deg, #f0f8ff 0%, #f8fbff 52%, #fff 100%);
}

.fde-about-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fde-about-workflow::before {
  position: absolute;
  z-index: 0;
  top: 35px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(230, 44, 50, 0.35);
  content: "";
}

.fde-about-workflow li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  min-height: 390px;
  padding: 29px 27px 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe9f0;
  border-radius: 15px;
}

.fde-about-workflow li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.fde-about-workflow li > div > p:first-child {
  margin: 4px 0 44px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-workflow h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.fde-about-workflow li > div > p:not(:first-child) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.fde-about-workflow small {
  display: block;
  margin-top: 20px;
  padding-top: 15px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.fde-about-outputs-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(600px, 1.32fr);
  gap: clamp(65px, 9vw, 125px);
  align-items: start;
}

.fde-about-outputs-layout .fde-about-section-head {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  margin: 0;
}

.fde-about-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fde-about-output-grid article {
  min-height: 300px;
  padding: 31px;
  background: #fff;
}

.fde-about-output-grid article:nth-child(1),
.fde-about-output-grid article:nth-child(4) {
  background: var(--blue-soft);
}

.fde-about-output-grid h3 {
  margin: 76px 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.fde-about-output-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.fde-about-section--why {
  color: #fff;
  background: var(--ink);
}

.fde-about-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.8fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.fde-about-section--why h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 61px);
  line-height: 1.45;
  letter-spacing: -0.06em;
}

.fde-about-why-copy > p {
  margin: 0 0 24px;
  color: #bec3ca;
  font-size: 14px;
  line-height: 2.1;
}

.fde-about-gap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #383b40;
}

.fde-about-gap > span,
.fde-about-gap > strong {
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-gap > strong {
  color: var(--red);
}

.fde-about-gap ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fde-about-gap li {
  padding: 7px 3px;
  color: #d7dadd;
  background: #2c2e32;
  font-family: var(--font-en);
  font-size: 6px;
  font-weight: 800;
  text-align: center;
}

.fde-about-section--difference {
  background: #fff;
}

.fde-about-table-hint {
  display: none;
  margin: -26px 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.fde-about-table-wrap {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.fde-about-table-wrap table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.fde-about-table-wrap caption {
  padding: 18px 22px;
  color: var(--ink);
  background: #f7f8f9;
  border-bottom: 1px solid var(--line-strong);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}

.fde-about-table-wrap th,
.fde-about-table-wrap td {
  padding: 21px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.fde-about-table-wrap th:last-child,
.fde-about-table-wrap td:last-child {
  border-right: 0;
}

.fde-about-table-wrap tbody tr:last-child th,
.fde-about-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.fde-about-table-wrap thead th {
  color: #fff;
  background: var(--ink);
  font-size: 13px;
}

.fde-about-table-wrap tbody th {
  color: var(--ink);
  background: var(--blue-soft);
  font-size: 15px;
}

.fde-about-table-wrap td {
  color: var(--muted);
}

.fde-about-table-wrap td strong {
  color: var(--red-dark);
}

.fde-about-detail-link {
  display: flex;
  justify-content: flex-end;
  margin: 23px 0 0;
}

.fde-about-detail-link a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.fde-about-detail-link a span {
  margin-left: 23px;
  color: var(--red);
}

.fde-about-detail-link a:hover {
  color: var(--red);
}

.fde-about-section--skills {
  background: #f7f8f9;
}

.fde-about-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.fde-about-skill-grid article {
  min-height: 500px;
  padding: 29px 27px 32px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.fde-about-skill-grid article:last-child {
  border-right: 0;
}

.fde-about-skill-grid article:nth-child(2) {
  background: var(--blue-soft);
}

.fde-about-skill-grid article:nth-child(4) {
  background: var(--coral-soft);
}

.fde-about-skill-grid article > p {
  margin: 85px 0 5px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-skill-grid h3 {
  margin: 0 0 24px;
  font-size: 25px;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.fde-about-skill-grid ul,
.fde-about-fit-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fde-about-skill-grid li,
.fde-about-fit-grid li {
  position: relative;
  margin-top: 9px;
  padding-left: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.fde-about-skill-grid li::before,
.fde-about-fit-grid li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.fde-about-section--shift {
  background: #fff;
}

.fde-about-shift {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(590px, 1.28fr);
  gap: 18px;
}

.fde-about-shift__lead {
  position: relative;
  min-height: 610px;
  padding: 47px 43px 42px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 26px 26px 5px 26px;
}

.fde-about-shift__lead::after {
  position: absolute;
  right: 54px;
  bottom: -76px;
  width: 27px;
  height: 245px;
  background: var(--red);
  border-radius: 999px;
  content: "";
  transform: rotate(34deg);
}

.fde-about-shift__lead > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.fde-about-shift__lead strong {
  display: block;
  margin: 85px 0 24px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.52;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.fde-about-shift__lead p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #bec3ca;
  font-size: 16px;
  line-height: 1.95;
}

.fde-about-shift ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line-strong);
  border-radius: 26px 5px 26px 26px;
  list-style: none;
  overflow: hidden;
}

.fde-about-shift li {
  display: grid;
  grid-template-columns: 32px minmax(130px, 0.85fr) 34px minmax(190px, 1.15fr);
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 25px 28px;
  background: #fff;
}

.fde-about-shift li:nth-child(even) {
  background: var(--blue-soft);
}

.fde-about-shift li > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.fde-about-shift li small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-shift li p,
.fde-about-shift li strong {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.fde-about-shift li p {
  color: var(--muted);
}

.fde-about-shift li strong {
  font-size: 19px;
}

.fde-about-shift li i {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 18px;
  font-style: normal;
  text-align: center;
}

.fde-about-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fde-about-fit-grid article {
  min-height: 420px;
  padding: 45px clamp(34px, 5vw, 64px);
  background: var(--blue-soft);
  border-radius: 22px 22px 5px 22px;
}

.fde-about-fit-grid article:last-child {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 22px 5px 22px 22px;
}

.fde-about-fit-grid article > p {
  margin: 0 0 15px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fde-about-fit-grid h3 {
  margin: 0 0 34px;
  font-size: 28px;
  line-height: 1.5;
}

.fde-about-fit-grid li {
  margin-top: 15px;
  padding-left: 19px;
  color: var(--ink-soft);
  font-size: 13px;
}

.fde-about-section--career {
  background: linear-gradient(145deg, #edf7ff 0%, #f8fbff 55%, #fff 100%);
}

.fde-about-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #cedce7;
  border: 1px solid #cedce7;
}

.fde-about-related-grid > a {
  position: relative;
  min-height: 340px;
  padding: 35px 80px 34px 36px;
  background: rgba(255, 255, 255, 0.94);
  transition: background 180ms ease, transform 180ms ease;
}

.fde-about-related-grid > a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.fde-about-related-grid > a > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-related-grid h3 {
  margin: 76px 0 12px;
  font-size: 29px;
  line-height: 1.48;
  letter-spacing: -0.04em;
}

.fde-about-related-grid p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.fde-about-related-grid i {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 15px;
  font-style: normal;
}

.fde-about-related-grid > a:hover i {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.fde-about-hiring-link {
  display: grid;
  grid-template-columns: 120px 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 30px 34px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
}

.fde-about-hiring-link > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.fde-about-hiring-link strong {
  font-size: 20px;
}

.fde-about-hiring-link p {
  margin: 0;
  color: #aeb3ba;
  font-size: 14px;
  line-height: 1.7;
}

.fde-about-hiring-link i {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 19px;
  font-style: normal;
  transition: transform 160ms ease;
}

.fde-about-hiring-link:hover i {
  transform: translateX(5px);
}

.fde-about-section--faq {
  background: #fff;
}

.fde-about-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(600px, 1.36fr);
  gap: clamp(65px, 9vw, 130px);
}

.fde-about-faq-layout .fde-about-section-head {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  margin: 0;
}

.fde-about-faq-layout .fde-about-section-head h2 {
  font-size: clamp(39px, 3.5vw, 50px);
}

.fde-about-faq-list {
  border-top: 1px solid var(--line-strong);
}

.fde-about-faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.fde-about-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 26px;
  gap: 15px;
  align-items: center;
  min-height: 96px;
  padding: 20px 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.65;
  list-style: none;
}

.fde-about-faq-list summary::-webkit-details-marker {
  display: none;
}

.fde-about-faq-list summary > span,
.fde-about-faq-list details > div > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
}

.fde-about-faq-list summary i,
.fde-about-faq-list summary i::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.fde-about-faq-list summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.fde-about-faq-list details[open] summary i::after {
  transform: rotate(0);
}

.fde-about-faq-list details > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 0 8px 30px;
}

.fde-about-faq-list details > div p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.fde-about-section--sources {
  background: #f7f8f9;
}

.fde-about-checked {
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 800;
}

.fde-about-source-list {
  margin: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.fde-about-source-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 140px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line-strong);
}

.fde-about-source-list li > span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.fde-about-source-list strong {
  font-size: 17px;
}

.fde-about-source-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.fde-about-source-list a {
  min-width: 84px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.fde-about-source-list a:hover {
  color: var(--red);
  border-color: var(--red);
}

@media (max-width: 1180px) {
  .site-guide-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  }

  .site-guide-card--primary {
    min-height: 630px;
  }

  .fde-about-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 48px;
  }

  .fde-about-map {
    padding-inline: 36px;
  }

  .fde-about-hero-visual__frame {
    height: 580px;
  }

  .fde-about-market-layout {
    grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
  }

  .fde-about-market-copy {
    padding-inline: 35px;
  }

  .fde-about-workflow li {
    grid-template-columns: 42px 1fr;
    padding-inline: 21px;
  }

  .fde-about-skill-grid article {
    padding-inline: 21px;
  }
}

@media (max-width: 980px) {
  .site-guide-grid {
    grid-template-columns: 1fr;
  }

  .site-guide-card--primary {
    min-height: 510px;
  }

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

  .site-guide-side .site-guide-card {
    min-height: 230px;
  }

  .fde-about-hero {
    padding-top: 58px;
  }

  .fde-about-hero__inner {
    grid-template-columns: 1fr;
  }

  .fde-about-hero__copy {
    max-width: 760px;
  }

  .fde-about-breadcrumb {
    margin-bottom: 42px;
  }

  .fde-about-map {
    width: min(680px, 100%);
    min-height: 590px;
    margin: 20px auto 0;
  }

  .fde-about-hero-visual {
    width: min(760px, 100%);
    margin: 20px auto 0;
  }

  .fde-about-hero-visual__frame {
    height: 560px;
  }

  .fde-about-jump .shell {
    overflow-x: auto;
  }

  .fde-about-jump span,
  .fde-about-jump a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .fde-about-section-head--split,
  .fde-about-outputs-layout,
  .fde-about-why-layout,
  .fde-about-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fde-about-section-head--split > div:last-child {
    max-width: 720px;
  }

  .fde-about-market-layout,
  .fde-about-shift {
    grid-template-columns: 1fr;
  }

  .fde-about-market-visual {
    min-height: 620px;
  }

  .fde-about-shift__lead {
    min-height: 430px;
  }

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

  .fde-about-outputs-layout .fde-about-section-head,
  .fde-about-faq-layout .fde-about-section-head {
    position: static;
  }

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

  .fde-about-output-grid article {
    min-height: 280px;
    padding-inline: 22px;
  }

  .fde-about-output-grid h3 {
    margin-top: 64px;
    font-size: 23px;
  }

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

  .fde-about-skill-grid article:nth-child(2) {
    border-right: 0;
  }

  .fde-about-skill-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-guide-section {
    padding: 84px 0;
  }

  .site-guide-card--primary {
    min-height: 490px;
    padding: 34px 26px 32px;
  }

  .site-guide-card--primary .site-guide-card__copy {
    width: 100%;
  }

  .site-guide-card--primary .site-guide-card__copy h3 {
    font-size: 44px;
  }

  .site-guide-card--primary .site-guide-card__copy > span {
    font-size: 12px;
  }

  .site-guide-card__mark {
    top: 105px;
    left: 7%;
    gap: 7px;
  }

  .site-guide-card__mark strong {
    width: 108px;
    height: 108px;
    font-size: 28px;
  }

  .site-guide-card__mark span {
    padding-inline: 8px;
    font-size: 6px;
  }

  .site-guide-card__mark i {
    width: 17px;
  }

  .site-guide-side {
    grid-template-columns: 1fr;
  }

  .site-guide-side .site-guide-card {
    min-height: 195px;
    padding: 30px 70px 26px 25px;
  }

  .site-guide-side .site-guide-card__copy > span {
    font-size: 11px;
  }

  .fde-about-hero {
    padding: 36px 0 45px;
  }

  .fde-about-breadcrumb {
    margin-bottom: 34px;
  }

  .fde-about-hero h1 {
    font-size: clamp(42px, 11vw, 52px);
    line-height: 1.32;
  }

  .fde-about-hero__lead {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.95;
  }

  .fde-about-hero__note {
    font-size: 13px;
  }

  .fde-about-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .fde-about-map {
    min-height: 545px;
    padding: 41px 20px 32px;
    border-radius: 28px 28px 6px 28px;
  }

  .fde-about-hero-visual__frame {
    height: min(122vw, 520px);
    border-radius: 28px 28px 6px 28px;
  }

  .fde-about-hero-visual__frame img {
    object-position: 56% center;
  }

  .fde-about-hero-visual__slash {
    top: -55px;
    left: 38px;
    width: 23px;
    height: 190px;
  }

  .fde-about-hero-visual__label {
    width: min(310px, 88%);
    padding: 20px 22px;
  }

  .fde-about-hero-visual__label strong {
    font-size: 21px;
  }

  .fde-about-hero-visual figcaption {
    flex-wrap: wrap;
  }

  .fde-about-hero-visual figcaption em {
    width: 100%;
    margin-left: 0;
  }

  .fde-about-map::before {
    right: 35px;
  }

  .fde-about-map__stage {
    padding: 16px 15px;
  }

  .fde-about-map__core {
    width: 154px;
    height: 154px;
  }

  .fde-about-map__core strong {
    font-size: 40px;
  }

  .fde-about-map__connector:nth-of-type(2) {
    top: 132px;
  }

  .fde-about-map__connector:nth-of-type(4) {
    top: 337px;
  }

  .fde-about-definition-strip {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .fde-about-definition-strip > div {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fde-about-definition-strip > div:last-child {
    border-bottom: 0;
  }

  .fde-about-jump .shell {
    gap: 22px;
    min-height: 58px;
  }

  .fde-about-section {
    padding: 84px 0;
  }

  .fde-about-section-head {
    margin-bottom: 38px;
  }

  .fde-about-section-head h2,
  .fde-about-section--why h2 {
    font-size: clamp(36px, 10vw, 40px);
  }

  .fde-about-section-head > p:last-child,
  .fde-about-section-head > div > p,
  .fde-about-why-copy > p {
    font-size: 16px;
  }

  .fde-about-statement {
    padding: 42px 25px;
    border-radius: 20px 20px 5px 20px;
  }

  .fde-about-statement::after {
    top: -80px;
    right: -28px;
    width: 24px;
    height: 240px;
  }

  .fde-about-statement p {
    font-size: 19px;
  }

  .fde-about-statement strong {
    font-size: 27px;
  }

  .fde-about-pillars,
  .fde-about-workflow,
  .fde-about-output-grid,
  .fde-about-skill-grid,
  .fde-about-fit-grid,
  .fde-about-related-grid {
    grid-template-columns: 1fr;
  }

  .fde-about-pillars article {
    min-height: 0;
  }

  .fde-about-pillars h3 {
    margin-top: 22px;
  }

  .fde-about-pillars figure {
    height: min(67vw, 330px);
  }

  .fde-about-pillars article > div {
    padding: 27px 25px 31px;
  }

  .fde-about-market-visual {
    min-height: min(135vw, 600px);
    border-radius: 22px 22px 5px 22px;
  }

  .fde-about-market-visual figcaption {
    padding: 29px 25px 25px;
  }

  .fde-about-market-stats {
    grid-template-columns: 1fr;
  }

  .fde-about-market-stats article {
    min-height: 0;
    padding: 25px;
  }

  .fde-about-market-stats strong {
    min-height: 0;
    font-size: 42px;
  }

  .fde-about-market-copy {
    padding: 34px 26px 31px;
  }

  .fde-about-market-copy h3 {
    font-size: 35px;
  }

  .fde-about-market-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .fde-about-workflow::before {
    top: 5%;
    bottom: 5%;
    left: 51px;
    width: 1px;
    height: auto;
  }

  .fde-about-workflow li {
    min-height: 360px;
  }

  .fde-about-workflow li > div > p:first-child {
    margin-bottom: 32px;
  }

  .fde-about-output-grid article {
    min-height: 260px;
    padding: 28px;
  }

  .fde-about-output-grid h3 {
    margin-top: 49px;
    font-size: 23px;
  }

  .fde-about-gap {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .fde-about-gap ol {
    grid-template-columns: repeat(4, 1fr);
  }

  .fde-about-table-hint {
    display: block;
  }

  .fde-about-table-wrap {
    width: calc(100vw - 16px);
    border-radius: 8px 0 0 8px;
  }

  .fde-about-table-wrap th,
  .fde-about-table-wrap td {
    padding: 17px 15px;
  }

  .fde-about-detail-link {
    justify-content: flex-start;
  }

  .fde-about-detail-link a {
    line-height: 1.75;
  }

  .fde-about-skill-grid article {
    min-height: 370px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fde-about-skill-grid article:last-child {
    border-bottom: 0;
  }

  .fde-about-skill-grid article > p {
    margin-top: 55px;
  }

  .fde-about-fit-grid article {
    min-height: 0;
    padding: 35px 27px;
  }

  .fde-about-fit-grid h3 {
    font-size: 24px;
  }

  .fde-about-fit-grid li {
    font-size: 12px;
  }

  .fde-about-shift__lead {
    min-height: 0;
    padding: 38px 27px 54px;
    border-radius: 20px 20px 5px 20px;
  }

  .fde-about-shift__lead strong {
    margin-top: 54px;
    font-size: 32px;
  }

  .fde-about-shift li {
    grid-template-columns: 22px minmax(0, 0.9fr) 18px minmax(0, 1.1fr);
    gap: 8px;
    min-height: 142px;
    padding: 20px 13px;
  }

  .fde-about-shift li p {
    font-size: 15px;
  }

  .fde-about-shift li strong {
    font-size: 17px;
  }

  .fde-about-related-grid > a {
    min-height: 260px;
    padding: 31px 66px 29px 26px;
  }

  .fde-about-related-grid h3 {
    margin-top: 54px;
    font-size: 25px;
  }

  .fde-about-hiring-link {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    padding: 27px 25px;
  }

  .fde-about-hiring-link > span,
  .fde-about-hiring-link p {
    grid-column: 1 / -1;
  }

  .fde-about-hiring-link strong {
    font-size: 18px;
  }

  .fde-about-faq-list summary {
    grid-template-columns: 26px 1fr 22px;
    gap: 11px;
    min-height: 80px;
    font-size: 16px;
  }

  .fde-about-faq-list details > div {
    grid-template-columns: 26px 1fr;
    gap: 11px;
  }

  .fde-about-faq-list details > div p {
    font-size: 15px;
  }

  .fde-about-source-list li {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .fde-about-source-list li > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .header-wrap .media_category_wrap .main_category ul {
    grid-template-columns: 1fr;
  }

  .main_visual .blog_card h3 {
    font-size: 3.2rem;
  }

  .blog_card h3 {
    font-size: 1.8rem;
  }

  .single_wrapper .left .content h2 {
    font-size: 2.25rem;
  }

  .single_wrapper .left .content h3 {
    font-size: 2rem;
  }

  .archive_news_wrapper .news_list a {
    grid-template-columns: 1fr;
  }

  .archive_news_wrapper .news_list a h2 {
    grid-column: auto;
  }
}

/* Final WordPress collision guards and live-template details. */
.site-header.header {
  position: sticky;
  inset: auto;
  top: 0;
  width: 100%;
  height: var(--header-height);
}

.fde-media-archive__description {
  max-width: 660px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.85;
}

.single_wrapper .left .single_top_meta {
  flex-wrap: wrap;
  align-items: center;
}

.single_wrapper .left .single_top_meta .categories,
.single_wrapper .left .single_top_meta .post_category,
.single_wrapper .left .single_top_meta .job_category,
.single_wrapper .left .single_top_meta .post_meta,
.single_wrapper .left .single_top_meta .post-author {
  flex-wrap: wrap;
  align-items: center;
}

.single_wrapper .left .single_top_meta .post_category p,
.single_wrapper .left .single_top_meta .job_category p {
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.single_wrapper .left .single_top_meta .post_category p {
  color: var(--red-dark);
  background: var(--coral-soft);
}

.single_wrapper .left .single_top_meta .job_category p {
  color: #18589f;
  background: var(--blue-soft);
}

.single_wrapper .left .single_top_meta .post_meta time,
.single_wrapper .left .single_top_meta .post_meta .author-name {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}

.single_wrapper .left .single_top_meta .post_meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.single_wrapper .left .content .wp-block-image,
.single_wrapper .left .content figure:not(.wp-block-table):not(.writer_avatar) {
  margin: 38px 0;
}

.single_wrapper .left .content .wp-block-image img,
.single_wrapper .left .content figure:not(.wp-block-table):not(.writer_avatar) > img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.single_wrapper .left .content figcaption,
.single_wrapper .left .content .wp-element-caption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: center;
}

.single_wrapper .left .content .writer_box *,
.single_wrapper .left .content .writer_box .description,
.single_wrapper .left .content .writer_box .description p {
  color: var(--ink-soft);
}

.single_wrapper .left .content .writer_box .writer_heading,
.single_wrapper .left .content .writer_box .writer_name {
  color: var(--ink);
}

.single_wrapper .left .content .writer_box .writer_heading mark {
  color: var(--red-dark);
  background: transparent;
}

.single_wrapper .left .content .writer_box .writer_name2,
.single_wrapper .left .content .writer_box .writer_code {
  color: var(--muted);
}

.single_wrapper .left .content .writer_box .writer_code {
  border-top-color: var(--line);
}

.single_wrapper .left .content .writer_box .writer_avatar img {
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}

.fde-media-pagination {
  display: block;
}

.fde-media-pagination > ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: center;
}

.fde-media-pagination > ul.page-numbers > li {
  margin: 0;
}

.fde-media-pagination .prev,
.fde-media-pagination .next {
  width: auto;
  min-width: 54px;
  padding: 0 11px;
  background: #fff;
  border-color: var(--line);
}

.fde-media-pagination .prev::after,
.fde-media-pagination .next::after {
  display: none;
}

.fde-media-pagination .prev:hover,
.fde-media-pagination .next:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 767.9px) {
  .fde-media-archive__description {
    font-size: 1.25rem;
  }

  .single_wrapper .left .single_top_meta {
    align-items: flex-start;
  }

  .single_wrapper .left .single_top_meta .categories,
  .single_wrapper .left .single_top_meta .post_meta {
    width: 100%;
    margin: 0;
  }

  .single_wrapper .left .single_top_meta .post_meta {
    justify-content: flex-start;
  }

  .single_wrapper .left .content .wp-block-image,
  .single_wrapper .left .content figure:not(.wp-block-table):not(.writer_avatar) {
    margin: 28px 0;
  }

  .single_wrapper .left .content .writer_box {
    padding: 24px 20px;
  }

  .fde-media-pagination > ul.page-numbers {
    gap: 6px;
  }

  .fde-media-pagination .prev,
  .fde-media-pagination .next {
    min-width: 48px;
    padding-inline: 8px;
  }
}
