:root {
  --color-blue: #004da3;
  --color-blue-dark: #003f8a;
  --color-navy: #0b1b47;
  --color-green: #02c99a;
  --color-bg: #F5F5F5;
  --color-text: #17213f;
  --color-muted: #667085;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(9, 34, 74, .08);
  --font-base: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  margin: 0!important;
  font-family: "Zen Kaku Gothic New", sans-serif!important;
}

#wpadminbar {
  display: none;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-base);
  line-height: 1.9;
  letter-spacing: .04em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; }

.l-container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}
.section { padding: 110px 0; position: relative; }
.c-label {
  margin: 0 0 14px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.c-heading {
  margin: 0;
  color: var(--color-blue);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.45;
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 168px;
  min-height: 46px;
  padding: 12px 24px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 26px rgba(2, 201, 154, .22);
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
}
.c-btn i {
  font-style: normal;
  transition: transform .35s ease;
}
.c-btn:hover {
  transform: translateY(-3px);
  background: #00b78b;
  box-shadow: 0 18px 34px rgba(2, 201, 154, .3);
}
.c-btn:hover i { transform: translateX(5px); }
.c-btn--small { min-width: 154px; min-height: 38px; padding: 10px 18px; font-size: 13px; }
.c-image-hover { overflow: hidden; }
.c-image-hover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.19, 1, .22, 1), filter 1.1s ease; }
a:hover .c-image-hover img,
.service-card:hover .c-image-hover img,
.strength-item:hover .c-image-hover img { transform: scale(1.08); filter: saturate(1.08); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 24px;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: top .35s ease;
}
.site-header__inner {
  width: min(100% - 48px, 1180px);
  height: 62px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}
.site-header__logo {
  width: 194px;
  transition: transform .35s ease, opacity .35s ease;
}
.site-header__logo:hover { transform: translateY(-2px); opacity: .85; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 11px 12px 11px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 35px rgba(10, 39, 78, .08);
  backdrop-filter: blur(18px);
}
.site-header__nav ul { display: flex; align-items: center; gap: 28px; }
.site-header__nav a:not(.c-btn) {
  position: relative;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.site-header__nav a:not(.c-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.site-header__nav a:not(.c-btn):hover::after { transform: scaleX(1); transform-origin: left; }
.site-header.is-scrolled { top: 12px; }
.site-header__toggle { display: none; }

.fv {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--fv-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--fv-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: fvZoom 10s ease forwards;
}
.fv__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255,255,255,.72) 36%, rgba(255,255,255,.18) 72%), linear-gradient(180deg, rgba(0,77,163,.12), rgba(0,77,163,.04));
}
.fv__inner {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}
.fv__lead {
  margin: 0 0 18px;
  color: var(--color-green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
}
.fv__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1.72;

  color: var(--color-blue);
  background: linear-gradient(
    180deg,
    #0070c9 0%,
    #0056a8 42%,
    #003b77 72%,
    #001f3f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: none;
}
.fv__title span { display: block; }
.fv__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  transform: translateX(-50%);
}
.fv__scroll span { width: 1px; height: 52px; background: rgba(255,255,255,.8); position: relative; overflow: hidden; }
.fv__scroll span::before { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--color-green); animation: scrollLine 1.8s infinite; }
@keyframes fvZoom { to { transform: scale(1); } }
@keyframes scrollLine { to { top: 100%; } }

.purpose { overflow: hidden; }
.purpose__bg {
  position: absolute;
  z-index: 0;
  right: -18%;
  top: 5%;
  width: min(980px, 88vw);
  opacity: .7;
  pointer-events: none;
}
.purpose__inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.purpose__content p:not(.c-label),
.purpose__message p { font-size: 15px; font-weight: 600; }
.purpose__content .c-heading { margin-bottom: 28px; }
.purpose__content .c-btn { margin-top: 28px; }
.purpose__message { align-self: end; max-width: 520px; padding-bottom: 48px; text-align: center; }

.purpose__content {
  grid-column: 1 / -1;
}

.purpose__text,
.purpose__content .btn {
  max-width: 620px;
}

.purpose__title {
  max-width: none;
  width: 100%;
  white-space: nowrap;
}

.purpose__message {
  grid-column: 2 / 3;
  align-self: end;
  justify-self: end;
  margin-top: 80px;
  margin-left: auto;
  margin-right: 0;
  max-width: 680px;
  text-align: center;
}

@media (max-width: 768px) {
  .purpose__title {
    white-space: normal;
  }

  .purpose__message {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: 60px;
  max-width: none;
  text-align: left;
}
}

.strengths { padding-top: 20px; }
.strengths__card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 56px;
  padding: 72px 66px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.strength-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  padding: 0 0 34px;
  border-bottom: 1px solid #e5eaf0;
}
.strength-item + .strength-item { padding-top: 34px; }
.strength-item:last-child { padding-bottom: 0; border-bottom: 0; }
.strength-item__image { height: 150px; margin: 0; border-radius: 14px; }
.strength-item h3 { margin: 0 0 12px; color: var(--color-blue); font-size: 1.25rem;font-weight: bold; line-height: 1.65; }
.strength-item p { margin: 0 0 7px; font-size: 14px; font-weight: 600; }

.business { overflow: hidden; }
.business__container { width: min(100% - 48px, 1260px); }
.business__card {
  padding: 74px 0 54px 74px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.business__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-right: 74px;
  margin-bottom: 44px;
}
.business__head p:not(.c-label) { max-width: 680px; margin: 22px 0 0; font-size: 15px; font-weight: 600; }
.business__nav { display: flex; gap: 14px; align-items: flex-start; padding-top: 26px; }
.business__nav button {
  width: 42px;
  height: 42px;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  background: #fff;
  color: var(--color-blue);
  cursor: pointer;
  transition: transform .35s ease, background-color .35s ease, color .35s ease;
}
.business__nav button:hover { transform: translateY(-3px); background: var(--color-blue); color: #fff; }
.service-card a { display: block; }
.service-card__image { height: 280px; margin: 0 0 24px; border-radius: 8px; background: #d9e7f2; }
.service-card__body h3 { margin: 0 0 12px; color: var(--color-navy); font-size: 19px; font-weight: 900; }
.service-card__body p { margin: 0; font-size: 14px; font-weight: 600; }
.business__more { padding-right: 74px; margin-top: 42px; text-align: center; }
.owl-carousel .owl-stage-outer { overflow: visible; }

.news__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
}
.news__content { padding-top: 10px; }
.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid #dbe1e8;
  transition: color .35s ease, transform .35s ease;
}
.news-item:last-of-type { border-bottom: 1px solid #dbe1e8; }
.news-item:hover { color: var(--color-blue); transform: translateX(8px); }
.news-item time { color: #8a95a8; font-size: 13px; font-weight: 700; }
.news-item span { font-size: 15px; font-weight: 700; }
.news__more { margin-top: 34px; text-align: right; }

.lower-cta { padding-top: 20px; }
.lower-cta__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.lower-card {
  position: relative;
  min-height: 178px;
  padding: 52px 70px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .45s ease, box-shadow .45s ease;
}
.lower-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(9,34,74,.12); }
.lower-card span { display: block; margin-bottom: 12px; color: var(--color-blue); font-size: 13px; font-weight: 800; }
.lower-card strong { display: block; color: var(--color-navy); font-size: 25px; }
.lower-card i {
  position: absolute;
  top: 50%;
  right: 44px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  color: var(--color-blue);
  font-style: normal;
  transform: translateY(-50%);
  transition: transform .35s ease, background-color .35s ease, color .35s ease;
}
.lower-card:hover i { transform: translate(6px, -50%); background: var(--color-green); color: #fff; }

.site-footer {
  position: relative;
  margin-top: 40px;
  padding: 84px 0 52px;
  overflow: hidden;
  color: #fff;
  background: var(--color-blue);
  border-radius: 24px 24px 0 0;
}
.site-footer__bg {
  position: absolute;
  right: -36px;
  bottom: -150px;
  width: 560px;
  opacity: .12;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.site-footer__logo { width: 190px; margin-bottom: 34px; filter: brightness(0) invert(1); }
.site-footer__name { margin: 0 0 18px; font-size: 18px; font-weight: 900; }
.site-footer address { font-style: normal; font-size: 13px; font-weight: 600; opacity: .9; }
.site-footer__nav ul { display: grid; grid-template-columns: repeat(2, minmax(170px, 1fr)); gap: 24px 40px; }
.site-footer__nav span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 800; }
.site-footer__nav a { font-size: 15px; font-weight: 800; transition: opacity .35s ease, transform .35s ease; display: inline-block; }
.site-footer__nav a:hover { opacity: .72; transform: translateX(4px); }
.site-footer__copy { position: relative; z-index: 1; width: min(100% - 48px, 1180px); margin: 58px auto 0; font-size: 11px; text-align: right; opacity: .75; }

@media (max-width: 980px) {
  .page-hero__title {
  font-size: 3.2rem;
}

.purpose-greeting__head .c-heading {
  font-size: 2.1rem;
}

.purpose-message-band__copy {
  font-size: 2.2rem;
}

.purpose-origin__card .c-heading {
  font-size: 2rem;
}

  .page-hero__title {
  font-size: 3.2rem;
}

.purpose-origin__card .c-heading {
font-size: 2rem;
}

.purpose-message-band__copy {
  font-size: 2.2rem;
}

.purpose-greeting__head .c-heading {
  font-size: 2.1rem;
}
  .site-header { top: 14px; }
  .site-header__logo { width: 160px; }
  .site-header__toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 35px rgba(10,39,78,.10);
    cursor: pointer;
  }
  .site-header__toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; background: var(--color-blue); }
  .site-header__nav {
    position: fixed;
    top: 74px;
    left: 24px;
    right: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
    border-radius: 22px;
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-header__contact { width: 100%; }
  .fv { padding-top: 120px; }
  .fv__overlay { background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.58)), linear-gradient(180deg, rgba(0,77,163,.1), rgba(0,77,163,.02)); }
  .purpose__inner,
  .strengths__card,
  .news__inner,
  .site-footer__inner { grid-template-columns: 1fr; gap: 38px; }
  .purpose__inner { min-height: auto; }
  .purpose__message { max-width: none; padding-bottom: 0; text-align: left; }
  .strengths__card { padding: 48px 28px; }
  .business__card { padding: 48px 0 44px 28px; }
  .business__head { padding-right: 28px; }
  .lower-cta__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .l-container, .site-header__inner, .fv__inner { width: min(100% - 32px, 1180px); }
  .section { padding: 74px 0; }
  .fv__title { font-size: 2rem; line-height: 1.62; }
  .fv__lead { font-size: 12px; }
  .purpose__bg { right: -68%; top: 16%; width: 130vw; }
  .strength-item { grid-template-columns: 1fr; gap: 18px; }
  .strength-item__image { height: 190px; }
  .business__head { display: block; }
  .business__nav { justify-content: flex-end; padding-top: 22px; }
  .service-card__image { height: 220px; }
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .lower-card { min-height: 150px; padding: 40px 62px 40px 32px; }
  .lower-card strong { font-size: 22px; }
  .lower-card i { right: 24px; }
  .site-footer { padding: 64px 0 36px; }
  .site-footer__nav ul { grid-template-columns: 1fr; }
  .site-footer__copy { text-align: left; }
}


:root {
  --wp--preset--font-family--body: "Zen Kaku Gothic New", sans-serif;
  --wp--preset--font-family--heading: "Zen Kaku Gothic New", sans-serif;
  --wp--preset--font-family--cardo: "Zen Kaku Gothic New", sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

body,
.site-header,
.site-footer,
.fv,
.section-label,
.section-title,
.nav-menu,
.btn,
.news-item,
.business-card,
.strength-item {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
dt,
dd {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

/* =========================================================
   Lower page
========================================================= */

.page-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 460px;
  padding: 170px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 48%, rgba(255,255,255,.62) 100%),
    var(--color-bg);
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,77,163,.18), rgba(2,201,154,.18), transparent);
}

.page-hero__bg {
  position: absolute;
  z-index: 0;
  right: -14%;
  top: 50%;
  width: min(760px, 72vw);
  opacity: .32;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  max-width: 850px;
}

.page-hero__title {
  margin: 0;
  color: var(--color-blue);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
}

.page-hero__lead {
  max-width: 760px;
  margin: 32px 0 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 2.35;
}

.page-content {
  padding-top: 90px;
}

.page-content__box {
  padding: 76px 78px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.entry-content {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: .06em;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2 {
  position: relative;
  margin: 70px 0 26px;
  padding-left: 22px;
  color: var(--color-blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.55;
}

.entry-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 5px;
  height: 1.15em;
  border-radius: 999px;
  background: var(--color-green);
}

.entry-content h3 {
  margin: 52px 0 20px;
  color: var(--color-navy);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.6;
}

.entry-content p {
  margin: 0 0 28px;
}

.entry-content a {
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .25em;
  transition: color .3s ease, opacity .3s ease;
}

.entry-content a:hover {
  color: var(--color-green);
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 32px;
  padding-left: 1.4em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin: 0 0 10px;
}

.entry-content img {
  border-radius: var(--radius-md);
}

.entry-content figure {
  margin: 48px 0;
}

.entry-content figcaption {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  text-align: center;
}

.entry-content table {
  width: 100%;
  margin: 42px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  font-size: 15px;
}

.entry-content th,
.entry-content td {
  padding: 18px 20px;
  border: 1px solid #dfe5ec;
  vertical-align: top;
}

.entry-content th {
  color: #fff;
  background: var(--color-blue);
  font-weight: 800;
}

.entry-content td {
  background: #fff;
}

.entry-content blockquote {
  position: relative;
  margin: 46px 0;
  padding: 34px 38px;
  color: var(--color-navy);
  background: #f3f8fc;
  border-left: 5px solid var(--color-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 700;
}

.page-links {
  margin-top: 44px;
}

@media (max-width: 980px) {
  .page-hero {
    min-height: 380px;
    padding: 140px 0 70px;
  }

  .page-content__box {
    padding: 52px 36px;
  }

  .entry-content h2 {
    font-size: 1.65rem;
  }

  .entry-content h3 {
    font-size: 1.28rem;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 320px;
    padding: 120px 0 58px;
  }

  .page-hero__bg {
    right: -58%;
    width: 120vw;
    opacity: .22;
  }

  .page-hero__title {
    font-size: 2.4rem;
    line-height: 1.32;
  }

  .page-hero__lead {
    margin-top: 24px;
    font-size: .9rem;
    line-height: 2.1;
  }

  .page-content {
    padding-top: 64px;
  }

  .page-content__box {
    padding: 38px 24px;
    border-radius: 18px;
  }

  .entry-content {
    font-size: 15px;
    line-height: 2.1;
  }

  .entry-content h2 {
    margin-top: 54px;
    font-size: 1.45rem;
  }

  .entry-content h3 {
    margin-top: 42px;
    font-size: 1.18rem;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* =========================================================
   Company page
========================================================= */

.company-page {
  overflow: hidden;
}

.company-info {
  position: relative;
  padding-top: 100px;
}

.company-info__head {
  margin-bottom: 42px;
  text-align: center;
}

.company-info__card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #e4e9ef;
  border-radius: 20px;
  background: #fff;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #e4e9ef;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
  vertical-align: middle;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.company-table th {
  width: 220px;
  padding: 28px 34px;
  color: var(--color-blue);
  background: #f5f9fc;
  border-right: 1px solid #e4e9ef;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.company-table td {
  padding: 28px 38px;
  color: var(--color-text);
  font-weight: 600;
}

.company-table a {
  color: var(--color-blue);
  font-weight: 800;
  transition: color .3s ease;
}

.company-table a:hover {
  color: var(--color-green);
}

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

.company-business-list li {
  position: relative;
  padding-left: 1.25em;
}

.company-business-list li + li {
  margin-top: 8px;
}

.company-business-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
}

@media (max-width: 768px) {
  .company-info {
    padding-top: 72px;
  }

  .company-info__head {
    margin-bottom: 30px;
    text-align: left;
  }

  .company-info__card {
    padding: 10px;
    border-radius: 20px;
  }

  .company-table {
    border-radius: 16px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table tr {
    border-bottom: 1px solid #e4e9ef;
  }

  .company-table tr:last-child {
    border-bottom: 0;
  }

  .company-table th {
    padding: 18px 22px 10px;
    border-right: 0;
    border-bottom: 0;
    background: #f5f9fc;
  }

  .company-table td {
    padding: 0 22px 22px;
    border-bottom: 0;
    background: #f5f9fc;
    font-size: 14px;
    line-height: 2;
  }

  .company-table tr:nth-child(even) th,
  .company-table tr:nth-child(even) td {
    background: #fff;
  }
}

/* =========================================================
   Purpose page
========================================================= */

.purpose-page {
  overflow: hidden;
}

.page-hero--purpose .page-hero__lead {
  font-size: 1.15rem;
  font-weight: 800;
}

.purpose-greeting {
  background: #fff;
}

.purpose-greeting__inner {
  max-width: 940px;
  margin: 0 auto;
}

.purpose-greeting__head {
  margin-bottom: 44px;
  text-align: center;
}

.purpose-greeting__head .c-heading {
  color: var(--color-navy);
  font-size: 2.6rem;
  line-height: 1.75;
}

.purpose-greeting__body {
  padding: 58px 64px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.purpose-greeting__body p,
.purpose-origin__text p {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 2.45;
}

.purpose-greeting__body p + p,
.purpose-origin__text p + p {
  margin-top: 34px;
}

.purpose-message-band {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.purpose-message-band__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 45, 95, .72), rgba(0, 45, 95, .18)),
    url("../images/fv.jpg") center 58% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.19, 1, .22, 1);
}

.purpose-message-band:hover .purpose-message-band__image {
  transform: scale(1.09);
}

.purpose-message-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)),
    rgba(0, 77, 163, .18);
}

.purpose-message-band__inner {
  position: relative;
  z-index: 1;
}

.purpose-message-band__content {
}

.purpose-message-band__copy {
  margin: 0 0 22px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.6;
}

.purpose-message-band__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.purpose-message-band__name span {
  display: inline-block;
  margin-right: 18px;
  font-size: .88rem;
  opacity: .84;
}

.purpose-origin {
  position: relative;
  overflow: hidden;
}

.purpose-origin__bg {
  position: absolute;
  z-index: 0;
  right: -16%;
  top: 8%;
  width: min(860px, 76vw);
  opacity: .22;
  pointer-events: none;
}

.purpose-origin .l-container {
  position: relative;
  z-index: 1;
}

.purpose-origin__card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 76px 78px;
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.purpose-origin__card .c-heading {
  margin-bottom: 42px;
  color: var(--color-blue);
  font-size: 2.4rem;
  line-height: 1.75;
}

.purpose-phrases {
  max-width: 1000px;
  margin: 48px auto 0;
  display: grid;
  gap: 20px;
}

.purpose-phrase {
  position: relative;
  padding: 34px 52px;
  overflow: hidden;
  color: var(--color-navy);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.7;
  text-align: center;
  transition: transform .45s ease, box-shadow .45s ease;
}

.purpose-phrase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: var(--color-green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s ease;
}

.purpose-phrase:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(9,34,74,.12);
}

.purpose-phrase:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

@media (max-width: 768px) {

  .purpose-greeting__head .c-heading {
  font-size: 1.7rem;
}

.purpose-origin__card .c-heading {
  font-size: 1.55rem;
}

  .purpose-greeting__head {
    text-align: left;
  }



.purpose-origin__card .c-heading {
  font-size: 1.55rem;
}

  .purpose-greeting__body,
  .purpose-origin__card {
    padding: 42px 26px;
    border-radius: 20px;
  }

  .purpose-greeting__body p,
  .purpose-origin__text p {
    font-size: 14px;
    line-height: 2.25;
  }

  .purpose-message-band {
    min-height: 320px;
  }

  .purpose-message-band__copy {
    font-size: 1.55rem;
  }

  .purpose-message-band__name span {
    display: block;
    margin: 0 0 6px;
  }

  .purpose-origin__bg {
    right: -58%;
    width: 120vw;
  }

  .purpose-phrase {
    padding: 28px 24px;
    text-align: left;
    font-size: 1rem;
  }
}

/* =========================================================
   Contact page
========================================================= */

.page-hero--contact .page-hero__content {
  max-width: 780px;
}

.page-hero--contact .page-hero__title {
  font-size: 4rem;
}

.page-hero--contact + .page-content {
  padding-top: 90px;
}

.page-hero--contact + .page-content .page-content__box {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 78px;
}

.wellness-contact-form {
  width: 100%;
}

.wellness-contact-form p {
  margin: 0;
}

.wellness-contact-form .form-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #e4e9ef;
}

.wellness-contact-form .form-row:first-child {
  padding-top: 0;
}

.wellness-contact-form .form-label {
  padding-top: 13px;
}

.wellness-contact-form label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.6;
}

.wellness-contact-form .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 22px;
  padding: 0 9px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
}

.wellness-contact-form .form-input {
  position: relative;
}

.wellness-contact-form .form-control,
.wellness-contact-form input[type="text"],
.wellness-contact-form input[type="email"],
.wellness-contact-form input[type="tel"],
.wellness-contact-form select,
.wellness-contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  color: var(--color-text);
  background: #f7fafc;
  border: 1px solid #dfe7ef;
  border-radius: 14px;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.7;
  outline: none;
  transition:
    border-color .3s ease,
    background-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.wellness-contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.wellness-contact-form select {
  padding-right: 48px;
  appearance: none;
  cursor: pointer;
}

.wellness-contact-form .arrow-icon::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.wellness-contact-form .form-control::placeholder,
.wellness-contact-form input::placeholder,
.wellness-contact-form textarea::placeholder {
  color: #9aa6b6;
  font-weight: 500;
}

.wellness-contact-form .form-control:focus,
.wellness-contact-form input[type="text"]:focus,
.wellness-contact-form input[type="email"]:focus,
.wellness-contact-form input[type="tel"]:focus,
.wellness-contact-form select:focus,
.wellness-contact-form textarea:focus {
  background: #fff;
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(2, 201, 154, .14);
}

.wellness-contact-form .form-submit-row {
  margin-top: 48px;
  text-align: center;
}

.wellness-contact-form .wellness-btn,
.wpcf7-submit.wellness-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 16px 36px;
  color: #fff;
  background: var(--color-green);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(2, 201, 154, .24);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .35s ease,
    background-color .35s ease,
    box-shadow .35s ease;
}

.wellness-contact-form .wellness-btn:hover,
.wpcf7-submit.wellness-btn:hover {
  background: #00b78b;
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(2, 201, 154, .32);
}

.wpcf7-spinner {
  margin-left: 14px;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #d93025;
  font-size: .86rem;
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
  margin: 32px 0 0;
  padding: 18px 22px;
  border: 0;
  border-radius: 14px;
  background: #f3f8fc;
  color: var(--color-navy);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.8;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: #fff5f5;
  color: #b42318;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #eefbf7;
  color: #007a5f;
}

/* Contact Form 7 default reset */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

/* WP block / entry style adjustment for contact page */
.page-hero--contact + .page-content .entry-content {
  font-size: 1rem;
}

.page-hero--contact + .page-content .entry-content > .wpcf7 {
  margin: 0;
}

@media (max-width: 980px) {
  .page-hero--contact .page-hero__title {
    font-size: 3.2rem;
  }

  .page-hero--contact + .page-content .page-content__box {
    padding: 56px 42px;
  }

  .wellness-contact-form .form-row {
    grid-template-columns: 190px 1fr;
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .page-hero--contact + .page-content {
    padding-top: 70px;
  }

  .page-hero--contact + .page-content .page-content__box {
    padding: 42px 24px;
  }

  .wellness-contact-form .form-row {
    display: block;
    padding: 24px 0;
  }

  .wellness-contact-form .form-label {
    padding-top: 0;
    margin-bottom: 12px;
  }

  .wellness-contact-form label {
    font-size: .92rem;
  }

  .wellness-contact-form .form-control,
  .wellness-contact-form input[type="text"],
  .wellness-contact-form input[type="email"],
  .wellness-contact-form input[type="tel"],
  .wellness-contact-form select,
  .wellness-contact-form textarea {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: .95rem;
  }

  .wellness-contact-form textarea {
    min-height: 160px;
  }

  .wellness-contact-form .arrow-icon::after {
    top: 27px;
  }

  .wellness-contact-form .form-submit-row {
    margin-top: 36px;
  }

  .wellness-contact-form .wellness-btn,
  .wpcf7-submit.wellness-btn {
    width: 100%;
    min-height: 54px;
  }
}

@media (max-width: 640px) {
  .page-hero--contact .page-hero__title {
    font-size: 2.4rem;
  }

  .page-hero--contact + .page-content .page-content__box {
    padding: 34px 20px;
  }
}

/* =========================================================
   Lineup detail common
========================================================= */

.lineup-detail {
  overflow: hidden;
}

.u-sp {
  display: none;
}

.lineup-hero {
  padding-bottom: 100px;
}

.lineup-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  align-items: center;
}

.lineup-hero__content {
  max-width: 760px;
}

.lineup-hero__image {
  height: 300px;
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-hero__image img {
  object-fit: contain;
  padding: 34px;
  background: #fff;
}

.lineup-intro {
  padding-top: 90px;
}

.lineup-intro__card {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 78px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-intro__card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--color-green);
}

.lineup-intro__card .c-heading {
  margin-bottom: 34px;
  font-size: 2.3rem;
  line-height: 1.65;
}

.lineup-intro__text {
  max-width: 840px;
}

.lineup-intro__text p,
.lineup-section-lead,
.lineup-family__content p,
.lineup-flow__item p,
.lineup-feature-card p,
.lineup-support__text,
.lineup-support__item p {
  margin: 0;
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 2.25;
}

.lineup-intro__text p + p {
  margin-top: 28px;
}

.lineup-section-head {
  margin-bottom: 44px;
  text-align: center;
}

.lineup-section-head .c-heading {
  font-size: 2.2rem;
  line-height: 1.6;
}

.lineup-section-lead {
  max-width: 720px;
  margin: 22px auto 0;
}

.lineup-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lineup-feature-card {
  position: relative;
  min-height: 360px;
  padding: 42px 34px 38px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .45s ease, box-shadow .45s ease;
}

.lineup-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(9,34,74,.12);
}

.lineup-feature-card__num {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--color-green);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.lineup-feature-card h3 {
  margin: 0 0 20px;
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .06em;
}

.lineup-feature-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(2, 201, 154, .11);
}

.lineup-categories {
  background: #fff;
}

.lineup-categories__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.lineup-category-table-wrap {
  padding: 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-category-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #e4e9ef;
  border-radius: 20px;
  background: #fff;
}

.lineup-category-table th,
.lineup-category-table td {
  padding: 24px 28px;
  border-bottom: 1px solid #e4e9ef;
  font-size: .95rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .06em;
  vertical-align: middle;
}

.lineup-category-table thead th {
  color: #fff;
  background: var(--color-blue);
  font-weight: 900;
}

.lineup-category-table tbody th {
  width: 230px;
  color: var(--color-blue);
  background: #f5f9fc;
  border-right: 1px solid #e4e9ef;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.lineup-category-table tr:last-child th,
.lineup-category-table tr:last-child td {
  border-bottom: 0;
}

.lineup-family__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: start;
}

.lineup-family__content {
  position: sticky;
  top: 120px;
}

.lineup-family__content .c-heading {
  margin-bottom: 28px;
  font-size: 2.1rem;
  line-height: 1.65;
}

.lineup-flow {
  display: grid;
  gap: 22px;
}

.lineup-flow__item {
  position: relative;
  padding: 34px 38px 34px 104px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-flow__item span {
  position: absolute;
  left: 34px;
  top: 36px;
  color: var(--color-green);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.lineup-flow__item h3 {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.55;
}

.lineup-support {
  padding-top: 20px;
}

.lineup-support__card {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 70px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-support__card .c-label,
.lineup-support__card .c-heading,
.lineup-support__card p,
.lineup-support__card a {
  color: #fff;
}

.lineup-support__card .c-heading {
  margin-bottom: 24px;
  font-size: 2.1rem;
  line-height: 1.6;
}

.lineup-support__info {
  display: grid;
  gap: 18px;
}

.lineup-support__item {
  padding: 24px 28px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.lineup-support__item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.lineup-support__item a {
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
}

/* Benefit One individual */
.page-hero--benefit-one .page-hero__title {
  font-size: 4rem;
}

.lineup-benefit-one .page-hero__lead {
  font-weight: 800;
}

@media (max-width: 980px) {
  .lineup-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lineup-hero__image {
    max-width: 420px;
    height: 250px;
  }

  .page-hero--benefit-one .page-hero__title {
    font-size: 3.2rem;
  }

  .lineup-intro__card {
    padding: 56px 42px;
  }

  .lineup-intro__card .c-heading {
    font-size: 2rem;
  }

  .lineup-section-head .c-heading {
    font-size: 2rem;
  }

  .lineup-feature-grid {
    grid-template-columns: 1fr;
  }

  .lineup-feature-card {
    min-height: auto;
  }

  .lineup-family__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lineup-family__content {
    position: static;
  }

  .lineup-support__card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 54px 42px;
  }
}

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

  .lineup-hero {
    padding-bottom: 70px;
  }

  .lineup-hero__image {
    width: 100%;
    max-width: none;
    height: 220px;
  }

  .page-hero--benefit-one .page-hero__title {
    font-size: 2.4rem;
  }

  .lineup-intro {
    padding-top: 70px;
  }

  .lineup-intro__card {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .lineup-intro__card .c-heading {
    font-size: 1.55rem;
  }

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

  .lineup-section-head .c-heading {
    font-size: 1.55rem;
  }

  .lineup-intro__text p,
  .lineup-section-lead,
  .lineup-family__content p,
  .lineup-flow__item p,
  .lineup-feature-card p,
  .lineup-support__text,
  .lineup-support__item p {
    font-size: .9rem;
    line-height: 2.1;
  }

  .lineup-feature-card {
    padding: 36px 26px 32px;
    border-radius: 20px;
  }

  .lineup-feature-card__num {
    font-size: 2.3rem;
  }

  .lineup-feature-card h3 {
    font-size: 1.15rem;
  }

  .lineup-category-table-wrap {
    padding: 10px;
    border-radius: 20px;
  }

  .lineup-category-table,
  .lineup-category-table thead,
  .lineup-category-table tbody,
  .lineup-category-table tr,
  .lineup-category-table th,
  .lineup-category-table td {
    display: block;
    width: 100%;
  }

  .lineup-category-table thead {
    display: none;
  }

  .lineup-category-table tr {
    border-bottom: 1px solid #e4e9ef;
  }

  .lineup-category-table tr:last-child {
    border-bottom: 0;
  }

  .lineup-category-table tbody th {
    padding: 20px 22px 8px;
    border-right: 0;
    border-bottom: 0;
    background: #f5f9fc;
  }

  .lineup-category-table td {
    padding: 0 22px 22px;
    border-bottom: 0;
    background: #f5f9fc;
  }

  .lineup-category-table tr:nth-child(even) th,
  .lineup-category-table tr:nth-child(even) td {
    background: #fff;
  }

  .lineup-family__content .c-heading {
    font-size: 1.55rem;
  }

  .lineup-flow__item {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .lineup-flow__item span {
    position: static;
    display: block;
    margin-bottom: 10px;
  }

  .lineup-support__card {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .lineup-support__card .c-heading {
    font-size: 1.55rem;
  }

  .lineup-support__item {
    padding: 22px 20px;
  }

  .lineup-support__item a {
    font-size: 1.25rem;
  }
}

/* =========================================================
   Netflix page
========================================================= */

.page-hero--netflix .page-hero__title {
  font-size: 4rem;
}

.lineup-netflix .page-hero__lead {
  font-weight: 800;
}

.lineup-netflix .lineup-hero__image img {
  object-fit: cover;
  padding: 0;
}

.lineup-plan-table thead th,
.lineup-plan-table tbody th,
.lineup-plan-table td {
  font-size: .9rem;
}

.lineup-plan-table thead th:nth-child(1) {
  width: 210px;
}

.lineup-plan-table thead th:nth-child(3),
.lineup-plan-table thead th:nth-child(4) {
  width: 180px;
}

.lineup-note {
  max-width: 940px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: .86rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .06em;
}

.lineup-faq {
  background: var(--color-bg);
}

.lineup-faq__list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.lineup-faq__item {
  position: relative;
  padding: 34px 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .4s ease, box-shadow .4s ease;
}

.lineup-faq__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(9,34,74,.11);
}

.lineup-faq__item h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 44px;
  color: var(--color-blue);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .06em;
}

.lineup-faq__item h3::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -.1em;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-green);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
}

.lineup-faq__item p {
  position: relative;
  margin: 0;
  padding-left: 44px;
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: .07em;
}

.lineup-faq__item p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: .35em;
  color: var(--color-blue);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.lineup-netflix-start {
  background: #fff;
}

.lineup-netflix .lineup-support__card {
  background:
    linear-gradient(135deg, rgba(0,77,163,.95), rgba(11,27,71,.96)),
    url("../images/b2.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .page-hero--netflix .page-hero__title {
    font-size: 3.2rem;
  }

  .lineup-plan-table thead th:nth-child(1),
  .lineup-plan-table thead th:nth-child(3),
  .lineup-plan-table thead th:nth-child(4) {
    width: auto;
  }
}

@media (max-width: 768px) {
  .page-hero--netflix .page-hero__title {
    font-size: 2.4rem;
  }

  .lineup-faq__item {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .lineup-faq__item h3 {
    padding-left: 40px;
    font-size: 1.05rem;
  }

  .lineup-faq__item p {
    padding-left: 40px;
    font-size: .9rem;
    line-height: 2.05;
  }

  .lineup-note {
    font-size: .82rem;
  }
}

/* =========================================================
   Benepo page
========================================================= */

.page-hero--benepo .page-hero__title {
  font-size: 4rem;
}

.lineup-benepo .page-hero__lead {
  font-weight: 800;
}

.lineup-benepo .lineup-hero__image img {
  object-fit: cover;
  padding: 0;
}

.lineup-benepo-table tbody th {
  width: 250px;
}

.lineup-benepo-simulation {
  background: var(--color-bg);
}

.benepo-simulation-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

.benepo-simulation-list {
  display: grid;
  gap: 16px;
}

.benepo-simulation-item {
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

.benepo-simulation-item:hover {
  transform: translateX(6px);
  box-shadow: 0 24px 60px rgba(9,34,74,.1);
}

.benepo-simulation-item span {
  color: var(--color-blue);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.benepo-simulation-item p {
  margin: 0;
  color: var(--color-text);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .06em;
}

.benepo-simulation-item strong {
  color: var(--color-green);
  font-size: 1.3rem;
  font-weight: 900;
  text-align: right;
  letter-spacing: .04em;
}

.benepo-simulation-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 42px 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.benepo-simulation-total span {
  margin-bottom: 14px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.benepo-simulation-total strong {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.benepo-simulation-total p {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: .08em;
}

.lineup-benepo-exchange {
  background: #fff;
}

.benepo-exchange-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benepo-exchange-card {
  position: relative;
  padding: 30px 28px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

.benepo-exchange-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(2, 201, 154, .1);
}

.benepo-exchange-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(9,34,74,.12);
}

.benepo-exchange-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.benepo-exchange-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-text);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .04em;
}

.lineup-benepo-guide {
  background: var(--color-bg);
}

.lineup-benepo .lineup-support__card {
  background:
    linear-gradient(135deg, rgba(0,77,163,.96), rgba(0,63,138,.95)),
    url("../images/b3.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .page-hero--benepo .page-hero__title {
    font-size: 3.2rem;
  }

  .benepo-simulation-card {
    grid-template-columns: 1fr;
  }

  .benepo-simulation-total {
    min-height: 240px;
  }

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

@media (max-width: 768px) {
  .page-hero--benepo .page-hero__title {
    font-size: 2.4rem;
  }

  .benepo-simulation-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 22px;
  }

  .benepo-simulation-item strong {
    text-align: left;
    font-size: 1.2rem;
  }

  .benepo-simulation-total strong {
    font-size: 3rem;
  }

  .benepo-exchange-grid {
    grid-template-columns: 1fr;
  }

  .benepo-exchange-card {
    padding: 26px 24px;
  }
}

/* =========================================================
   Stay Resort page
========================================================= */

.page-hero--stay-resort .page-hero__title {
  font-size: 4rem;
}

.lineup-stay-resort .page-hero__lead {
  font-weight: 800;
}

.lineup-stay-resort .lineup-hero__image img {
  object-fit: cover;
  padding: 0;
}

.lineup-stay-pickup {
  background: var(--color-bg);
}

.lineup-stay-card-grid .lineup-feature-card {
  min-height: 330px;
}

.lineup-stay-point {
  background: #fff;
}

.lineup-stay-table tbody th {
  width: 250px;
}

.lineup-stay-simulation {
  background: var(--color-bg);
}

.stay-simulation-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 34px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

.stay-simulation-main {
  padding: 52px 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,77,163,.95), rgba(0,63,138,.92)),
    url("../images/b4.jpg") center / cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.stay-simulation-label {
  margin: 0 0 18px;
  color: rgba(255,255,255,.74);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.stay-simulation-main h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .06em;
}

.stay-simulation-main p {
  margin: 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  line-height: 2.15;
  letter-spacing: .06em;
}

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

.stay-simulation-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 30px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.stay-simulation-result span {
  margin-bottom: 16px;
  color: var(--color-blue);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.6;
}

.stay-simulation-result strong {
  color: var(--color-green);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.stay-simulation-result p {
  margin: 12px 0 0;
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.6;
}

.stay-simulation-result--total {
  color: #fff;
  background: linear-gradient(135deg, var(--color-green), #00a884);
}

.stay-simulation-result--total span,
.stay-simulation-result--total strong,
.stay-simulation-result--total p {
  color: #fff;
}

.stay-simulation-note {
  max-width: 1040px;
  margin-top: 24px;
}

.lineup-stay-guide {
  background: #fff;
}

.lineup-stay-resort .lineup-support__card {
  background:
    linear-gradient(135deg, rgba(0,77,163,.96), rgba(0,63,138,.92)),
    url("../images/b4.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .page-hero--stay-resort .page-hero__title {
    font-size: 3.2rem;
  }

  .stay-simulation-card {
    grid-template-columns: 1fr;
  }

  .stay-simulation-results {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero--stay-resort .page-hero__title {
    font-size: 2.4rem;
  }

  .lineup-stay-card-grid .lineup-feature-card {
    min-height: auto;
  }

  .stay-simulation-main {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .stay-simulation-main h3 {
    font-size: 1.55rem;
  }

  .stay-simulation-results {
    grid-template-columns: 1fr;
  }

  .stay-simulation-result {
    min-height: 170px;
  }

  .stay-simulation-result strong {
    font-size: 2.7rem;
  }
}


/* =========================================================
   ChocoZAP / Healthcare page
========================================================= */

.page-hero--chocozap .page-hero__title {
  font-size: 4rem;
}

.lineup-chocozap .page-hero__lead {
  font-weight: 800;
}

.lineup-chocozap .lineup-hero__image img {
  object-fit: cover;
  padding: 0;
}

.lineup-chocozap-pickup {
  background: var(--color-bg);
}

.lineup-chocozap-feature-grid .lineup-feature-card {
  min-height: 350px;
}

.lineup-fitness-clubs {
  background: #fff;
}

.lineup-fitness-table tbody th {
  width: 260px;
}

.lineup-health-support {
  background: var(--color-bg);
}

.health-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.health-support-card {
  position: relative;
  min-height: 250px;
  padding: 32px 28px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

.health-support-card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(2, 201, 154, .1);
}

.health-support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(9,34,74,.12);
}

.health-support-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--color-green);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.health-support-card h3 {
  margin: 0 0 14px;
  color: var(--color-blue);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .06em;
}

.health-support-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-text);
  font-size: .9rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .06em;
}

.fitness-highlight {
  background: #fff;
}

.fitness-highlight-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,77,163,.96), rgba(0,63,138,.92)),
    url("../images/b6.jpg") center / cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.fitness-highlight-card .c-label,
.fitness-highlight-card .c-heading {
  color: #fff;
}

.fitness-highlight-card .c-heading {
  margin-bottom: 26px;
  font-size: 2.1rem;
  line-height: 1.6;
}

.fitness-highlight-card__content p {
  margin: 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: .07em;
}

.fitness-highlight-card__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  margin-left: auto;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  text-align: center;
}

.fitness-highlight-card__circle span {
  margin-bottom: 10px;
  color: rgba(255,255,255,.75);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.fitness-highlight-card__circle strong {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.fitness-highlight-card__circle p {
  margin: 12px 0 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.lineup-fitness-guide {
  background: var(--color-bg);
}

.lineup-chocozap .lineup-support__card {
  background:
    linear-gradient(135deg, rgba(0,77,163,.96), rgba(0,63,138,.92)),
    url("../images/b6.jpg") center / cover no-repeat;
}

@media (max-width: 980px) {
  .page-hero--chocozap .page-hero__title {
    font-size: 3.2rem;
  }

  .lineup-chocozap-feature-grid .lineup-feature-card {
    min-height: auto;
  }

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

  .fitness-highlight-card {
    grid-template-columns: 1fr;
    padding: 54px 42px;
  }

  .fitness-highlight-card__circle {
    width: 210px;
    height: 210px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-hero--chocozap .page-hero__title {
    font-size: 2.4rem;
  }

  .health-support-grid {
    grid-template-columns: 1fr;
  }

  .health-support-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .fitness-highlight-card {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .fitness-highlight-card .c-heading {
    font-size: 1.55rem;
  }

  .fitness-highlight-card__circle {
    width: 180px;
    height: 180px;
  }

  .fitness-highlight-card__circle strong {
    font-size: 2.7rem;
  }
}

/* =========================================================
   Lineup page
========================================================= */

.page-hero--lineup .page-hero__title {
  font-size: 4rem;
}

.page-hero--lineup .page-hero__lead {
  font-weight: 800;
}

.lineup-lead {
  padding-top: 90px;
}

.lineup-lead__card {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 78px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-lead__card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--color-green);
}

.lineup-lead__card .c-heading {
  margin-bottom: 34px;
  font-size: 2.3rem;
  line-height: 1.65;
}

.lineup-lead__text {
  max-width: 860px;
}

.lineup-lead__text p {
  margin: 0;
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 2.25;
}

.lineup-lead__text p + p {
  margin-top: 28px;
}

.lineup-list {
  background: #fff;
}

.lineup-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lineup-list-card {
  height: 100%;
}

.lineup-list-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .45s ease, box-shadow .45s ease;
}

.lineup-list-card a:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(9,34,74,.12);
}

.lineup-list-card__image {
  height: 230px;
  margin: 0;
  background: #f5f9fc;
}

.lineup-list-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-list-card__body {
  position: relative;
  flex: 1;
  padding: 30px 30px 74px;
}

.lineup-list-card__body p {
  margin: 0 0 10px;
  color: var(--color-green);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .1em;
}

.lineup-list-card__body h3 {
  margin: 0 0 16px;
  color: var(--color-blue);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .06em;
}

.lineup-list-card__body span {
  display: block;
  color: var(--color-text);
  font-size: .92rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .05em;
}

.lineup-list-card__body i {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--color-blue);
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  font-style: normal;
  transition: transform .35s ease, background-color .35s ease, color .35s ease;
}

.lineup-list-card a:hover .lineup-list-card__body i {
  transform: translateX(5px);
  color: #fff;
  background: var(--color-green);
}

.lineup-concept {
  background: var(--color-bg);
}

.lineup-concept__card {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,77,163,.96), rgba(0,63,138,.92)),
    url("../images/fv.jpg") center / cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lineup-concept__card .c-label,
.lineup-concept__card .c-heading {
  color: #fff;
}

.lineup-concept__card .c-heading {
  margin-bottom: 26px;
  font-size: 2.1rem;
  line-height: 1.6;
}

.lineup-concept__content p {
  margin: 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: .07em;
}

.lineup-concept__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  margin-left: auto;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  text-align: center;
}

.lineup-concept__mark span {
  margin-bottom: 10px;
  color: rgba(255,255,255,.75);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.lineup-concept__mark strong {
  color: #fff;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.lineup-concept__mark p {
  margin: 12px 0 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .1em;
}

@media (max-width: 980px) {
  .page-hero--lineup .page-hero__title {
    font-size: 3.2rem;
  }

  .lineup-lead__card {
    padding: 56px 42px;
  }

  .lineup-lead__card .c-heading {
    font-size: 2rem;
  }

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

  .lineup-concept__card {
    grid-template-columns: 1fr;
    padding: 54px 42px;
  }

  .lineup-concept__mark {
    width: 210px;
    height: 210px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-hero--lineup .page-hero__title {
    font-size: 2.4rem;
  }

  .lineup-lead {
    padding-top: 70px;
  }

  .lineup-lead__card {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .lineup-lead__card .c-heading {
    font-size: 1.55rem;
  }

  .lineup-lead__text p {
    font-size: .9rem;
    line-height: 2.1;
  }

  .lineup-list__grid {
    grid-template-columns: 1fr;
  }

  .lineup-list-card__image {
    height: 220px;
  }

  .lineup-list-card__body {
    padding: 26px 24px 70px;
  }

  .lineup-list-card__body h3 {
    font-size: 1.25rem;
  }

  .lineup-list-card__body i {
    right: 24px;
    bottom: 24px;
  }

  .lineup-concept__card {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .lineup-concept__card .c-heading {
    font-size: 1.55rem;
  }

  .lineup-concept__mark {
    width: 180px;
    height: 180px;
  }

  .lineup-concept__mark strong {
    font-size: 3rem;
  }
}

/* =========================================================
   News archive
========================================================= */

.page-hero--news .page-hero__title,
.page-hero--single-news .page-hero__title {
  font-size: 4rem;
}

.page-hero--news .page-hero__lead {
  font-weight: 800;
}

.news-archive {
  padding-top: 90px;
}

.news-archive__head {
  margin-bottom: 42px;
  text-align: center;
}

.news-archive__list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.news-archive-item a {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr 48px;
  gap: 30px;
  align-items: center;
  min-height: 136px;
  padding: 30px 34px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

.news-archive-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(9,34,74,.12);
}

.news-archive-item__meta {
  display: grid;
  gap: 10px;
  align-content: center;
}

.news-archive-item__meta time {
  color: var(--color-blue);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

.news-archive-item__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 92px;
  min-height: 26px;
  padding: 0 12px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.news-archive-item__title {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: .06em;
  transition: color .3s ease;
}

.news-archive-item a:hover .news-archive-item__title {
  color: var(--color-blue);
}

.news-archive-item__excerpt {
  grid-column: 2 / 3;
  margin: -8px 0 0;
  color: var(--color-muted);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .05em;
}

.news-archive-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--color-blue);
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  font-style: normal;
  transition: transform .35s ease, background-color .35s ease, color .35s ease;
}

.news-archive-item a:hover i {
  transform: translateX(5px);
  color: #fff;
  background: var(--color-green);
}

.news-archive__empty {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.news-archive__empty p {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
}

.news-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.news-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-grid;
  place-items: center;
  color: var(--color-blue);
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  transition: background-color .3s ease, color .3s ease, transform .3s ease;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  color: #fff;
  background: var(--color-green);
  transform: translateY(-3px);
}

/* =========================================================
   Single news
========================================================= */

.single-hero__content {
  max-width: 980px;
}

.single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.single-hero__meta time {
  color: var(--color-blue);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.single-hero__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 26px;
  padding: 0 12px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.single-hero__title {
  margin: 0;
  color: var(--color-blue);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .08em;
}

.single-news {
  padding-top: 90px;
}

.single-news__article {
  max-width: 980px;
  margin: 0 auto;
  padding: 76px 78px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.single-news__thumbnail {
  margin: 0 0 48px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.single-news__thumbnail img {
  width: 100%;
  height: auto;
}

.single-news__body {
  max-width: 780px;
  margin: 0 auto;
}

.single-news__nav {
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 18px;
  align-items: stretch;
}

.single-news__nav-item a,
.single-news__back {
  height: 100%;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease, color .35s ease;
}

.single-news__nav-item a:hover,
.single-news__back:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(9,34,74,.12);
}

.single-news__nav-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.single-news__nav-item strong {
  display: block;
  color: var(--color-navy);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.6;
}

.single-news__back {
  align-items: center;
  color: #fff;
  background: var(--color-blue);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

.single-news__back:hover {
  color: #fff;
  background: var(--color-green);
}

@media (max-width: 980px) {
  .page-hero--news .page-hero__title,
  .page-hero--single-news .page-hero__title {
    font-size: 3.2rem;
  }

  .single-hero__title {
    font-size: 2.4rem;
  }

  .single-news__article {
    padding: 56px 42px;
  }

  .news-archive-item a {
    grid-template-columns: 180px 1fr 46px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .page-hero--news .page-hero__title,
  .page-hero--single-news .page-hero__title {
    font-size: 2.4rem;
  }

  .news-archive {
    padding-top: 70px;
  }

  .news-archive__head {
    text-align: left;
  }

  .news-archive-item a {
    display: block;
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .news-archive-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }

  .news-archive-item__title {
    font-size: 1.05rem;
  }

  .news-archive-item__excerpt {
    margin: 12px 0 0;
    font-size: .88rem;
  }

  .news-archive-item i {
    margin-top: 22px;
    margin-left: auto;
  }

  .single-hero__title {
    font-size: 1.8rem;
  }

  .single-news {
    padding-top: 70px;
  }

  .single-news__article {
    padding: 42px 24px;
    border-radius: 20px;
  }

  .single-news__thumbnail {
    margin-bottom: 34px;
  }

  .single-news__nav {
    grid-template-columns: 1fr;
  }

  .single-news__back {
    order: -1;
    min-height: 64px;
  }
}

/* =========================================================
   404 page
========================================================= */

.error404-page {
  overflow: hidden;
}

.error404-hero {
  position: relative;
  min-height: 720px;
  padding: 170px 0 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 48%, rgba(255,255,255,.66) 100%),
    var(--color-bg);
}

.error404-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,77,163,.18), rgba(2,201,154,.18), transparent);
}

.error404-hero__bg {
  position: absolute;
  z-index: 0;
  right: -14%;
  top: 50%;
  width: min(820px, 76vw);
  opacity: .32;
  transform: translateY(-50%);
  pointer-events: none;
}

.error404-hero__inner {
  position: relative;
  z-index: 1;
}

.error404-hero__content {
  max-width: 880px;
}

.error404-hero__number {
  margin: 0 0 18px;
  color: var(--color-blue);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.error404-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .08em;
}

.error404-hero__lead {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 2.25;
}

.error404-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
}

.error404-hero__textlink {
  position: relative;
  color: var(--color-blue);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em;
  transition: color .3s ease;
}

.error404-hero__textlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.error404-hero__textlink:hover {
  color: var(--color-green);
}

.error404-hero__textlink:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.error404-links {
  padding-top: 90px;
}

.error404-links__head {
  margin-bottom: 42px;
  text-align: center;
}

.error404-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.error404-link-card {
  position: relative;
  min-height: 180px;
  padding: 34px 30px 78px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .4s ease, box-shadow .4s ease;
}

.error404-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(9,34,74,.12);
}

.error404-link-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.4;
}

.error404-link-card strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .06em;
}

.error404-link-card i {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--color-blue);
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  font-style: normal;
  transition: transform .35s ease, background-color .35s ease, color .35s ease;
}

.error404-link-card:hover i {
  transform: translateX(5px);
  color: #fff;
  background: var(--color-green);
}

@media (max-width: 980px) {
  .error404-hero {
    min-height: 620px;
    padding: 150px 0 90px;
  }

  .error404-hero__number {
    font-size: 6.5rem;
  }

  .error404-hero__title {
    font-size: 2.2rem;
  }

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

@media (max-width: 768px) {
  .error404-hero {
    min-height: 560px;
    padding: 130px 0 76px;
  }

  .error404-hero__bg {
    right: -58%;
    width: 120vw;
    opacity: .22;
  }

  .error404-hero__number {
    font-size: 5rem;
  }

  .error404-hero__title {
    font-size: 1.65rem;
  }

  .error404-hero__lead {
    font-size: .9rem;
    line-height: 2.1;
  }

  .error404-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .error404-links {
    padding-top: 70px;
  }

  .error404-links__head {
    text-align: left;
  }

  .error404-links__grid {
    grid-template-columns: 1fr;
  }

  .error404-link-card {
    min-height: 150px;
    padding: 30px 26px 72px;
    border-radius: 20px;
  }
}
