@charset "UTF-8";
/* foundation/_index.scss */
/* ===== Color ===== */
/* Hover / Accent */
/* foundation/_index.scss */
/* minimal reset（強すぎない） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

/* 固定ヘッダー前提：全ページ共通で段差を作る */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background: #fff;
  line-height: 1.6;
}

p {
  color: #666666;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

/* 画像の基本（resetにもあるが保険） */
img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

.section {
  padding: 56px 0;
}

.section--sm {
  padding: 40px 0;
}

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

@media (min-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .section--sm {
    padding: 48px 0;
  }
  .section--lg {
    padding: 104px 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 88px 0;
  }
  .section--sm {
    padding: 56px 0;
  }
  .section--lg {
    padding: 120px 0;
  }
}
/* layout/_index.scss */
/* コンテナ：全ページ共通の幅 */
.container {
  width: 84%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 91%;
    max-width: 1240px;
  }
}
/* =========================
   Header
========================= */
:root {
  --header-h: 72px;
  --header-h-scrolled: 64px;
  --header-current-h: var(--header-h);
  --z-header: 3000;
  --z-breadcrumb: 2500;
  --z-mega: 4000;
}

@media (min-width: 1024px) {
  :root {
    --header-h: 84px;
    --header-h-scrolled: 72px;
    --header-current-h: var(--header-h);
  }
}
/* スクロール時は現在高を差し替え */
html.is-scrolled {
  --header-current-h: var(--header-h-scrolled);
}

/* body段差 */
body {
  padding-top: var(--header-h);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: height 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header.is-scrolled {
  height: var(--header-h-scrolled);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.header.is-scrolled .container {
  height: var(--header-h-scrolled);
}

/* ロゴ */
.site {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3100;
}

.site img {
  width: 132px;
  height: auto;
  display: block;
  transition: width 0.2s ease;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.08));
}

.header.is-scrolled .site img {
  width: 120px;
}

@media (min-width: 768px) {
  .site img {
    width: 150px;
  }
  .header.is-scrolled .site img {
    width: 136px;
  }
}
@media (min-width: 1024px) {
  .site img {
    width: 200px;
  }
  .header.is-scrolled .site img {
    width: 175px;
  }
}
/* =========================
   Home header overlay
========================= */
.home .header {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.home .header .site img {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

@media (min-width: 1024px) {
  .home .header .nav > ul,
  .home .header .nav-list {
    color: #fff;
  }
  .home .header .nav a,
  .home .header .nav-link {
    color: #fff;
  }
  .home .header .nav .btn {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
  }
  .home .header .nav a[aria-current=page]::after {
    background: #fff;
  }
}
.home .header .nav-button {
  color: #fff;
}

.home .header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.home .header.is-scrolled .nav-button {
  color: #2E5180;
}

@media (min-width: 1024px) {
  .home .header.is-scrolled .nav > ul,
  .home .header.is-scrolled .nav-list,
  .home .header.is-scrolled .nav a,
  .home .header.is-scrolled .nav-link {
    color: #333;
  }
  .home .header.is-scrolled .nav .btn {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(46, 81, 128, 0.35);
    color: #2E5180;
  }
  .home .header.is-scrolled .nav a[aria-current=page]::after {
    background: #2E5180;
  }
}
/* =========================
   Footer
========================= */
.footer {
  background: #2E5180;
  color: #fff;
  padding: 56px 0 40px;
}

@media (min-width: 768px) {
  .footer {
    padding: 72px 0 48px;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 88px 0 56px;
  }
}
.footer .container {
  display: grid;
  gap: 28px;
}

@media (min-width: 1024px) {
  .footer .container {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 56px;
  }
}
/* brand */
.footer .site {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer .site img {
  width: 56px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.footer .site .corp {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .footer .site img {
    width: 60px;
  }
  .footer .site .corp {
    font-size: 19px;
  }
}
@media (min-width: 1024px) {
  .footer .site img {
    width: 64px;
  }
  .footer .site .corp {
    font-size: 20px;
  }
}
/* info */
.footer .info {
  max-width: 560px;
}

.footer .add {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .footer .add {
    font-size: 14px;
  }
}
/* sns */
.footer .sns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.footer .sns li {
  margin: 0;
}

.footer .sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer .sns img {
  width: 20px;
  height: 20px;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .footer .sns a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
  }
}
/* bottom line / copyright がある場合用 */
.footer small,
.footer .copyright {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .footer .foot-right {
    text-align: right;
  }
  .footer .sns {
    justify-content: flex-end;
  }
}
/* UI Core */
.btn {
  display: block;
  width: 208px;
  margin: 0 auto;
  padding: 11px 11px 13px;
  box-sizing: border-box;
  border: solid 2px currentColor;
  border-radius: 24px;
  color: #2E5180;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.card__body {
  padding: 16px;
}

/* =========================
   CTA
========================= */
.cta {
  padding: 0;
}

.cta__inner {
  display: grid;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #355f98 0%, #2E5180 100%);
  border-radius: 20px;
  padding: 28px 22px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.cta__text h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}

.cta__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  font-size: 14px;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__actions .btn {
  min-width: 220px;
  justify-content: center;
}

.cta .btn {
  border-radius: 999px;
}

.cta .btn--primary {
  background: #fff;
  color: #2E5180;
  border: 1px solid #fff;
}

.cta .btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .cta__inner {
    padding: 40px 36px;
  }
  .cta__text h2 {
    font-size: 30px;
  }
  .cta__text p {
    font-size: 15px;
  }
  .cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .cta__inner {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    padding: 48px 56px;
  }
  .cta__text h2 {
    font-size: 34px;
  }
  .cta__actions {
    justify-content: flex-end;
    align-content: center;
  }
}
/* Navigation */
/* =========================
   Nav common
========================= */
.nav a {
  letter-spacing: 0.03em;
  font-weight: 600;
}

.nav .btn {
  border-radius: 999px;
  border: 1px solid rgba(46, 81, 128, 0.35);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.nav .btn:hover {
  background: #2E5180;
  color: #fff;
  border-color: #2E5180;
}

/* =========================
   Hamburger button
========================= */
.nav-button {
  box-sizing: content-box;
  padding: 0;
  border: 0;
  background: none;
  width: 20px;
  height: 14px;
  cursor: pointer;
  color: #2E5180;
  position: relative;
  z-index: 3100;
}

.nav-button::before,
.nav-button::after {
  content: "";
  display: block;
  height: 2px;
  background: currentColor;
  transition: 0.3s ease-in-out;
}

.nav-button::before {
  transform: translateY(-5px);
  box-shadow: 0 6px currentColor;
}

.nav-button::after {
  transform: translateY(5px);
}

.open .nav-button {
  color: #fff;
}

.open .nav-button::before {
  transform: translateY(1px) rotate(45deg);
  box-shadow: none;
}

.open .nav-button::after {
  transform: translateY(-1px) rotate(-45deg);
}

/* =========================
   Mobile / Tablet drawer
========================= */
@media (max-width: 1023px) {
  html.open,
  .open body {
    height: 100%;
    overflow: hidden;
  }
  body {
    overflow-x: clip;
  }
  @supports not (overflow: clip) {
    body {
      overflow-x: hidden;
    }
  }
  .nav {
    position: fixed;
    inset: 0;
    left: 100%;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(7, 16, 28, 0.88) 0%, rgba(7, 16, 28, 0.94) 100%);
    color: #fff;
    display: block;
    padding-top: calc(var(--header-h) + 28px);
    transition: left 0.32s ease;
    z-index: 3050;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .open .nav {
    left: 0;
  }
  .nav > ul,
  .nav-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 28px 32px;
    text-align: left;
  }
  .nav > ul > li,
  .nav-list > li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav > ul > li > a,
  .nav-list > li > a,
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 14px 0;
    white-space: nowrap;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
  }
  /* current */
  .nav a[aria-current=page] {
    color: #fff;
  }
  .nav a[aria-current=page]::after {
    left: auto;
    right: 0;
    bottom: 50%;
    transform: translateY(50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
  }
  /* CTA */
  .nav .btn {
    width: 100%;
    min-height: 52px;
    margin: 24px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2E5180;
    border: 1px solid #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }
  .nav .btn:hover {
    background: #fff;
    color: #2E5180;
    border-color: #fff;
  }
  /* dropdown */
  .has-dropdown {
    position: relative;
  }
  .dropdown-toggle {
    appearance: none;
    border: 0;
    background: none;
    width: 32px;
    height: 32px;
    margin-left: 8px;
    cursor: pointer;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    flex: 0 0 auto;
  }
  .dropdown-toggle::before {
    content: "▾";
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease;
    font-size: 14px;
  }
  .has-dropdown.is-open .dropdown-toggle::before {
    transform: rotate(180deg);
  }
  .nav-sub {
    display: none;
    position: static;
    margin: 0 0 14px;
    padding: 8px 0 2px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .has-dropdown.is-open > .nav-sub {
    display: block;
  }
  .nav-sub li {
    margin: 0;
    border: 0;
  }
  .nav-sub a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
  }
  .nav-sub a[aria-current=page] {
    color: #fff;
    padding-left: 14px;
  }
  .nav-sub a[aria-current=page]::before {
    width: 6px;
    height: 6px;
    background: #fff;
  }
}
/* =========================
   PC nav
========================= */
@media (min-width: 1024px) {
  .nav-button {
    display: none;
  }
  .nav {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: transparent;
    color: inherit;
    padding-top: 0;
    z-index: auto;
  }
  .nav > ul,
  .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    color: #333;
    gap: 0;
    padding: 0;
  }
  .nav > ul > li:not(:last-child),
  .nav-list > li:not(:last-child) {
    margin-right: 23px;
  }
  .nav > ul > li > a,
  .nav-list > li > a,
  .nav-link {
    padding: 10px 2px;
  }
  .nav .btn {
    width: 148px;
    border-color: #CDD6DD;
  }
  /* dropdown */
  .header .container {
    position: relative;
  }
  .has-dropdown {
    position: static;
  }
  .dropdown-toggle {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    margin-left: 4px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    border-radius: 8px;
    color: inherit;
  }
  .dropdown-toggle::before {
    content: "▾";
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease;
  }
  .has-dropdown.is-open .dropdown-toggle::before {
    transform: rotate(180deg);
  }
  .nav-sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 14px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    z-index: var(--z-mega);
  }
  .has-dropdown.is-open > .nav-sub {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 12px;
    align-items: start;
  }
  .nav-sub a {
    display: block;
    padding: 14px;
    border-radius: 12px;
    color: #333;
    background: rgba(0, 0, 0, 0.02);
  }
  .nav-sub a:hover,
  .nav-sub a:focus {
    background: rgba(0, 0, 0, 0.06);
    outline: none;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .has-dropdown:hover > .nav-sub {
    display: grid;
  }
}
/* =========================
   Current states
========================= */
.nav a[aria-current=page] {
  font-weight: 700;
  position: relative;
  color: #2E5180;
}

.nav a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2E5180;
}

.nav-sub a[aria-current=page] {
  text-decoration: none;
  position: relative;
  padding-left: 12px;
  font-weight: 700;
  color: #2E5180;
}

.nav-sub a[aria-current=page]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2E5180;
}

.has-dropdown.is-current-parent > .nav-link {
  font-weight: 700;
  position: relative;
}

.has-dropdown.is-current-parent > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2E5180;
  opacity: 0.55;
}

/* ===== Dropdown: 安定版（これ1本） ===== */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  border-radius: 8px;
  color: inherit;
}

.dropdown-toggle::before {
  content: "▾";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}

.has-dropdown.is-open .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* ベース：閉じる */
.nav-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 開く（JSで is-open が付いたら必ず開く） */
.has-dropdown.is-open > .nav-sub {
  display: block;
}

/* ===== PC: メガメニュー ===== */
@media (min-width: 1024px) {
  .header .container {
    position: relative;
  }
  .has-dropdown {
    position: static;
  }
  .nav-sub {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 14px);
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    z-index: 9999;
  }
  .has-dropdown.is-open > .nav-sub {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 12px;
    align-items: start;
  }
  .nav-sub a {
    display: block;
    padding: 14px;
    border-radius: 12px;
    color: #333;
    background: rgba(0, 0, 0, 0.02);
  }
  .nav-sub a:hover,
  .nav-sub a:focus {
    background: rgba(0, 0, 0, 0.06);
    outline: none;
  }
}
/* ===== SP: ドロワー内アコーディオン ===== */
@media (max-width: 767px) {
  .nav-sub {
    position: static;
    margin-top: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav-sub a {
    display: block;
    padding: 10px 0;
    color: #fff;
    white-space: nowrap;
  }
}
/* breadcrumb を固定ヘッダー直下に固定 */
.breadcrumb {
  position: sticky;
  top: var(--header-current-h);
  z-index: 2500;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb .container {
  height: 44px;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.breadcrumb__list {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

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

.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  margin: 0 8px;
  color: #999;
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb [aria-current=page] {
  font-weight: 700;
  color: #2E5180;
}

/* Hero */
/* =========================
   Hero 共通
========================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

/* =========================
   TOP Hero
========================= */
.hero--top {
  min-height: clamp(420px, 72vh, 760px);
  display: grid;
  align-items: center;
}

.hero--top .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero--top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.34) 38%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.hero--top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
}

.hero--top .container {
  position: relative;
}

.hero--top .hero__content {
  max-width: 760px;
  padding: 48px 0;
}

.hero--top .hero__logo {
  margin: 0 0 22px;
}

.hero--top .hero__logo img {
  display: block;
  width: clamp(150px, 22vw, 300px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.hero--top .hero__copy {
  max-width: 640px;
}

.hero--top .corp {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero--top .desc {
  margin: 12px 0 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

@media (min-width: 1024px) {
  .hero--top .hero__content {
    padding: 72px 0;
  }
  .hero--top .hero__logo {
    margin-bottom: 28px;
  }
  .hero--top .desc {
    max-width: 36ch;
  }
}
@media (max-width: 1023px) {
  .hero--top {
    min-height: 520px;
  }
  .hero--top::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.16) 100%);
  }
  .hero--top .hero__content {
    max-width: 620px;
    padding: 56px 0 44px;
  }
}
@media (max-width: 767px) {
  .hero--top {
    min-height: 420px;
    align-items: end;
  }
  .hero--top::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.22) 100%);
  }
  .hero--top::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.44) 100%);
  }
  .hero--top .hero__content {
    max-width: 100%;
    padding: 28px 0 24px;
  }
  .hero--top .hero__logo {
    margin-bottom: 14px;
  }
  .hero--top .hero__logo img {
    width: 132px;
  }
  .hero--top .corp {
    font-size: 20px;
    line-height: 1.35;
  }
  .hero--top .desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.65;
    max-width: 22ch;
  }
}
/* =========================
   Page Hero
========================= */
.hero--page {
  z-index: 0;
  padding-bottom: 40px;
}

.hero--page .hero__bg {
  position: relative;
  height: 240px;
  z-index: 0;
}

/* 下層ページは img ベースに戻す */
.hero--page .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero--page .hero__inner {
  margin-top: -110px;
}

.hero--page .hero__inner .container {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.hero__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2E5180;
}

.hero__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.hero__lead {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero--page .hero__bg {
    height: 360px;
  }
  .hero--page .hero__inner {
    margin-top: -140px;
  }
  .hero--page .hero__inner .container {
    padding: 38px 40px;
    border-radius: 22px;
  }
  .hero__title {
    font-size: 40px;
  }
}
/* Content Components */
/* =========================
   Service Card
========================= */
.service-cards__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .service-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .service-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card__thumb {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.55s ease;
  overflow: hidden;
}

.service-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card.office .service-card__thumb {
  background-image: url("../img/office.jpg");
}

.service-card.manage .service-card__thumb {
  background-image: url("../img/manage.jpg");
}

.service-card.research .service-card__thumb {
  background-image: url("../img/research.jpg");
}

.service-card__body {
  padding: 18px 18px 20px;
}

@media (min-width: 768px) {
  .service-card__body {
    padding: 22px 22px 24px;
  }
}
.service-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.4;
  color: #333;
}

.service-card__desc {
  margin: 0 0 14px;
  color: #666;
  line-height: 1.8;
  min-height: 5.4em;
}

@media (max-width: 767px) {
  .service-card__desc {
    min-height: auto;
  }
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 700;
  color: #2E5180;
  letter-spacing: 0.02em;
}

.service-card__cta::after {
  content: "→";
  transform: translateX(0);
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-card__link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(46, 81, 128, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    border-color: rgba(46, 81, 128, 0.18);
  }
  .service-card:hover .service-card__thumb {
    transform: scale(1.06);
  }
  .service-card:hover .service-card__thumb::after {
    opacity: 1;
  }
  .service-card:hover .service-card__cta::after {
    transform: translateX(6px);
    opacity: 1;
  }
}
/* =========================
   News Card
========================= */
.news-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-card {
  list-style: none;
}

.news-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0;
  background: rgba(0, 0, 0, 0.03);
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.news-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.news-card__body {
  padding: 16px 18px 18px;
}

@media (min-width: 768px) {
  .news-card__body {
    padding: 18px 20px 20px;
  }
}
.news-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.news-card__meta time {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2E5180;
}

.news-card__cat {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #2E5180;
}

.news-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

.news-card__excerpt {
  margin: 0;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #2E5180;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-right: 8px;
  vertical-align: middle;
}

.news-card > a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(46, 81, 128, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .news-card > a:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    border-color: rgba(46, 81, 128, 0.18);
  }
  .news-card > a:hover .news-card__thumb img {
    transform: scale(1.06);
  }
  .news-card > a:hover .news-card__thumb::after {
    opacity: 1;
  }
}
.accordion-area {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.accordion-item .title {
  cursor: pointer;
  padding: 16px 18px;
  position: relative;
  font-size: 16px;
  margin: 0;
}

.accordion-item .title::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.18s ease;
  opacity: 0.8;
}

.accordion-item .title.close::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-item .box {
  padding: 0 18px 16px;
  color: #666;
  line-height: 1.8;
}

.contact__form.card {
  overflow: visible;
}

.wpcf7 form {
  display: grid;
  gap: 14px;
}

.wpcf7 label {
  font-weight: 700;
  display: block;
  margin: 0 0 6px;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #2E5180;
  box-shadow: 0 0 0 3px rgba(46, 81, 128, 0.15);
}

.wpcf7 input[type=submit] {
  display: inline-block;
  width: 220px;
  margin: 12px auto 0;
  padding: 12px 14px;
  border-radius: 999px;
  border: 2px solid #2E5180;
  background: #2E5180;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* CF7 error / message */
.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 6px;
}

.wpcf7-response-output {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
}

.form-row {
  margin-bottom: 18px;
}

.req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #2E5180;
}

.form-actions {
  margin-top: 20px;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

/* Contact Form 7 */
.wpcf7 {
  width: 100%;
}

.wpcf7 form {
  display: block;
}

.wpcf7 label {
  display: block;
  font-weight: 700;
  line-height: 1.7;
  color: #333;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #2E5180;
  box-shadow: 0 0 0 3px rgba(46, 81, 128, 0.15);
}

.wpcf7 .wpcf7-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 16px;
  background: #2E5180;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.9;
}

.wpcf7-spinner {
  margin: 10px 0 0;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
}

.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 12px;
  font-size: 14px;
}

/* Lists / Sections */
/* ===============================
   News Grid（Serviceと統一）
================================ */
#news .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding: 0;
}

#news .news-list > li {
  list-style: none;
}

/* Tablet */
@media (max-width: 1024px) {
  #news .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* SP */
@media (max-width: 767px) {
  #news .news-list {
    grid-template-columns: 1fr;
  }
}
.badge-new {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: #2E5180;
  color: #fff;
  margin-right: 8px;
}

/* pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 4px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.pagination .current {
  background: #2E5180;
  color: #fff;
}

/* project/_index.scss */
/* ===== Home ===== */
/* Message */
.message {
  padding: 67px 0;
  background-color: #2E5180;
  color: #ffffff;
}

.message h2 {
  margin-bottom: 38px;
  font-size: 24px;
  line-height: 1.67;
  text-align: center;
}

.message p {
  max-width: 640px;
  margin: auto;
  font-size: 14px;
  line-height: 1.86;
  color: #ffffff;
}

@media (min-width: 768px) {
  .message {
    padding: 81px 0;
  }
  .message h2 {
    font-size: 36px;
    line-height: 1.33;
  }
}
@media (max-width: 575px) {
  .message h2 {
    font-size: 20px;
  }
}
/* Service cards on home */
#service {
  display: block;
  text-align: center;
  padding: 67px 0;
}

#service .service-title {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 9px;
  color: #2E5180;
}

#service .service-title h2 {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 24px;
  border-bottom: dotted 3px currentColor;
}

#service .service-title p {
  margin-bottom: 50px;
  color: #2E5180;
  font-size: 20px;
}

@media (min-width: 768px) {
  #service {
    padding: 100px 0 60px 0;
  }
  #service .service-title h2 {
    font-size: 36px;
  }
  #service .service-title p {
    margin-bottom: 100px;
    font-size: 24px;
  }
}
.details {
  margin-top: 53px;
  color: #333333;
}

.detail:not(:last-child) {
  margin-bottom: 67px;
}

.detail h3 {
  margin-bottom: 17px;
  font-size: 20px;
  line-height: 1.75;
}

.detail figure {
  height: 246px;
  margin-bottom: 22px;
  background-position: center;
  background-size: cover;
}

.detail.office figure {
  background-image: url("../img/office.jpg");
}

.detail.manage figure {
  background-image: url("../img/manage.jpg");
}

.detail.research figure {
  background-image: url("../img/research.jpg");
}

@media (min-width: 768px) {
  .details {
    display: flex;
    margin-top: 75px;
  }
  .detail {
    flex: 1;
    margin-right: 3.22%;
  }
  .detail:first-child {
    margin-left: 3.22%;
  }
  .detail:not(:last-child) {
    margin-bottom: 0;
  }
  .detail h3 {
    margin-bottom: 26px;
    font-size: 30px;
    line-height: 1.4;
  }
  .detail figure {
    height: 360px;
    margin-bottom: 33px;
  }
}
/* =========================
   Home Trust
========================= */
.home-trust {
  position: relative;
  margin-top: -44px;
  z-index: 5;
}

.home-trust__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-trust__item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-trust__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2E5180;
}

.home-trust__value {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
}

@media (max-width: 767px) {
  .home-trust {
    margin-top: -24px;
  }
  .home-trust__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-trust__item {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .home-trust__value {
    font-size: 16px;
  }
}
/* =========================
   Home CTA
========================= */
.home-cta {
  padding: 72px 0 100px;
}

.home-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 40px 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2E5180 0%, #3D669D 100%);
  box-shadow: 0 18px 42px rgba(46, 81, 128, 0.18);
}

.home-cta__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
}

.home-cta__text h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.35;
  color: #fff;
}

.home-cta__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}

.home-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-cta .btn {
  width: 100%;
  max-width: 280px;
}

.home-cta .btn {
  background: #fff;
  color: #2E5180;
  border-color: #fff;
}

.home-cta .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 767px) {
  .home-cta {
    padding: 56px 0 80px;
  }
  .home-cta__inner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 18px;
  }
  .home-cta__text h2 {
    font-size: 24px;
  }
  .home-cta__actions {
    margin-top: 4px;
  }
}
.p-service .service-cards {
  padding: 0;
}

.p-service .page-cta {
  padding: 0;
  background: transparent;
}

/* =========================
   Service LIST page (.p-service)
========================= */
.p-service .hero {
  padding: 56px 0 24px;
}

.p-service .hero__title {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.p-service .hero__lead {
  color: #666;
  max-width: 760px;
}

.p-service .service-cards {
  padding: 28px 0 56px;
}

.p-service .service-cards__grid {
  display: grid;
  gap: 16px;
}

.p-service .service-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  background: #fff;
  overflow: hidden;
}

.p-service .service-card__link {
  display: block;
  padding: 18px;
}

.p-service .service-card__title {
  font-size: 20px;
  margin-bottom: 8px;
}

.p-service .service-card__desc {
  color: #666;
  margin-bottom: 12px;
}

.p-service .service-card__cta {
  display: inline-block;
  font-weight: 700;
  color: #2E5180;
}

.p-service .page-cta {
  padding: 56px 0 72px;
  background: #EEF4F8;
}

.p-service .page-cta__title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px;
}

.p-service .page-cta__text {
  text-align: center;
  color: #666;
  max-width: 760px;
  margin: 0 auto 18px;
}

.p-service .page-cta__btn {
  text-align: center;
}

@media (min-width: 768px) {
  .p-service .hero {
    padding: 72px 0 32px;
  }
  .p-service .hero__title {
    font-size: 36px;
  }
  .p-service .service-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .p-service .service-card__link {
    padding: 22px;
  }
  .p-service .page-cta__title {
    font-size: 26px;
  }
}
/* =========================
   Service DETAIL page (.p-service-detail)
========================= */
.p-service-detail .hero--page {
  padding: 56px 0 40px;
  background: #EEF4F8;
}

.p-service-detail .hero__eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2E5180;
  margin-bottom: 8px;
}

.p-service-detail .hero__title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #333;
}

.p-service-detail .hero__lead {
  color: #555;
  max-width: 60ch;
}

.p-service-detail .hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.p-service-detail .section {
  padding: 80px 0;
}

.p-service-detail .section--alt {
  background: #fff;
}

.p-service-detail .section-title {
  font-size: 22px;
  margin-bottom: 32px;
  color: #2E5180;
}

.p-service-detail .section--alt {
  background: #f7f9fc;
}

@media (min-width: 768px) {
  .p-service-detail .hero {
    padding: 72px 0 56px;
  }
  .p-service-detail .hero__title {
    font-size: 36px;
  }
  .p-service-detail .section {
    padding: 56px 0;
  }
  .p-service-detail .section-title {
    font-size: 28px;
  }
}
.p-service-detail .checklist {
  display: grid;
  gap: 10px;
  max-width: 70ch;
}

.p-service-detail .checklist li {
  position: relative;
  padding-left: 26px;
  color: #333;
}

.p-service-detail .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2E5180;
  font-weight: 900;
}

.p-service-detail .grid-3 {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .p-service-detail .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.p-service-detail .service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.p-service-detail .service-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #333;
}

.p-service-detail .service-card p {
  color: #555;
}

.p-service-detail .flow {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  counter-reset: step;
}

.p-service-detail .flow li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px 20px 20px 56px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  position: relative;
}

.p-service-detail .flow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2E5180;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.p-service-detail .flow__title {
  font-weight: 800;
  margin-bottom: 6px;
  color: #333;
}

.p-service-detail .flow__desc {
  color: #555;
}

.p-service-detail .cta {
  padding: 96px 0;
}

.p-service-detail .cta__inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.p-service-detail .cta__text h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #2E5180;
}

.p-service-detail .cta__text p {
  color: #2E5180;
  opacity: 0.9;
}

.p-service-detail .cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p-service-detail .btn--ghost {
  background: transparent;
  color: #2E5180;
  border-color: currentColor;
}

@media (min-width: 768px) {
  .p-service-detail .cta__inner {
    grid-template-columns: 1.4fr 0.6fr;
  }
  .p-service-detail .cta__text h2 {
    font-size: 28px;
  }
}
/* =========================
   News page / single
========================= */
#news {
  padding: 60px 0 90px;
}

/* =========================
   News single
========================= */
.news-single .section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .news-single .section {
    padding: 72px 0;
  }
}
.news-single__head {
  max-width: 860px;
  margin: 0 auto 24px;
}

.news-single__meta {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #666;
  font-size: 13px;
}

.news-single__meta time {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2E5180;
}

.news-single__meta__cat {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #2E5180;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.news-single__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
  color: #333;
}

@media (min-width: 768px) {
  .news-single__title {
    font-size: 36px;
  }
}
/* 本文 */
.news-single__content {
  max-width: 860px;
  margin: 0 auto;
  color: #333;
}

.news-single__content > *:first-child {
  margin-top: 0;
}

.news-single__content p {
  margin: 0 0 1.1em;
  line-height: 1.95;
  color: #555;
}

.news-single__content h2,
.news-single__content h3,
.news-single__content h4 {
  margin: 1.8em 0 0.7em;
  line-height: 1.4;
  color: #333;
}

.news-single__content h2 {
  font-size: 26px;
}

.news-single__content h3 {
  font-size: 22px;
}

.news-single__content h4 {
  font-size: 18px;
}

.news-single__content ul,
.news-single__content ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}

.news-single__content li {
  margin-bottom: 0.45em;
  line-height: 1.85;
  color: #555;
}

.news-single__content a {
  color: #2E5180;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.news-single__content blockquote {
  margin: 1.4em 0;
  padding: 1em 1.2em;
  border-left: 4px solid rgba(46, 81, 128, 0.28);
  background: #f7f9fc;
  color: #555;
}

.news-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 1.2em auto;
}

.news-single__thumb {
  max-width: 860px;
  margin: 0 auto 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.news-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* nav */
.news-single__nav {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.news-single__prev {
  justify-self: start;
}

.news-single__next {
  justify-self: end;
}

.news-single__nav a {
  display: inline-block;
  color: #2E5180;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 767px) {
  .news-single__nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .news-single__prev,
  .news-single__next {
    justify-self: center;
  }
}
/* CTA */
.news-single .cta {
  padding-top: 0;
}

.news-single .cta__inner {
  display: grid;
  gap: 18px;
  align-items: center;
  background: #EEF4F8;
  border-radius: 18px;
  padding: 32px 24px;
}

.news-single .cta__text h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #2E5180;
}

.news-single .cta__text p {
  margin: 0;
  color: #2E5180;
  opacity: 0.9;
}

.news-single .cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-single .btn--ghost {
  background: transparent;
  color: #2E5180;
  border-color: currentColor;
}

@media (min-width: 768px) {
  .news-single .cta__inner {
    grid-template-columns: 1.4fr 0.6fr;
    padding: 56px 48px;
  }
  .news-single .cta__text h2 {
    font-size: 28px;
  }
}
/* category color maps */
.cat-news {
  background: #2E5180;
}

.cat-release {
  background: #16a34a;
}

.cat-update {
  background: #f59e0b;
}

.cat-event {
  background: #7c3aed;
}

#faq {
  padding: 0;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .faq-tabs {
    margin-bottom: 32px;
  }
}
.faq-tab {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
}

.faq-tab:hover {
  background: rgba(46, 81, 128, 0.06);
}

.faq-tab.is-active {
  background: #2E5180;
  border-color: #2E5180;
  color: #fff;
}

/* =========================
   Contact
========================= */
.contact {
  padding: 0;
}

.contact__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.contact__head h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact__head .text {
  line-height: 1.9;
  color: #555;
}

.contact__form {
  max-width: 760px;
  margin: 0 auto;
}

.contact__thanks-card {
  max-width: 760px;
  margin: 0 auto;
}

.contact__thanks-text {
  text-align: center;
  line-height: 1.9;
}

.contact__thanks-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact {
    padding: 90px 0 120px;
  }
  .contact__head {
    margin-bottom: 36px;
  }
  .contact__head h2 {
    font-size: 32px;
  }
}
/* =========================
   About
========================= */
/* 見出し */
.about-title {
  text-align: center;
  margin-bottom: 50px;
}

.about-title h2 {
  font-size: 28px;
  letter-spacing: 0.08em;
}

/* 情報リスト */
.about-list {
  max-width: 760px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.about-list li {
  list-style: none;
}

/* カード化 */
.about-list dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

/* 左（項目名） */
.about-list dt {
  font-weight: 600;
  color: #2E5180;
  letter-spacing: 0.05em;
}

/* 右（内容） */
.about-list dd {
  margin: 0;
  line-height: 1.7;
}

/* SP */
@media (max-width: 767px) {
  .about-list dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .about-list dt {
    font-size: 13px;
  }
}
