/* style.css */
.public-root,
.public-main {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .public-root,
  .public-main {
    overflow-x: hidden;
  }
}

body.is-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.public-root,
.public-main {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
}

:root {
  --accent: #0096e2;
  --accent-rgb: 0, 150, 226;
}

/* =========================
header
========================= */
#header-pc {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.8vw 2vw;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);

  transition: padding 260ms ease;
  will-change: padding;
}

#header-logo {
  width: 16vw;
  height: auto;

  transform-origin: left center;
  transition: transform 260ms ease;
  will-change: transform;
}

#header-pc.is-shrink {
  padding: 0.3vw 2vw;
}

#header-pc.is-shrink #header-logo {
  transform: scale(0.625);
}

#header-pc nav {
  display: flex;
  align-items: center;
  gap: 2vw;
  font-size: 1vw;
  font-weight: bold;

  transition: gap 260ms ease, font-size 260ms ease;
}

#header-pc nav a:hover {
  color: var(--accent);
}

#header-pc.is-shrink nav {
  gap: 1.4vw;
  font-size: 0.95vw;
}

#header-pc-contact-btn {
  display: inline-block;
  padding: 0.5vw 3vw;
  color: #fff;
  background-color: var(--accent);
  border-radius: 100vw;

  border: 0.12vw solid rgba(255, 255, 255, 0);
  box-shadow:
    0 0.55vw 1.1vw rgba(0, 0, 0, 0.14),
    0 0.35vw 0 rgba(var(--accent-rgb), 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
  will-change: transform, box-shadow, filter;
  position: relative;
  overflow: hidden;
}

/* うっすらハイライト（艶） */
#header-pc-contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.1) 35%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

/* お問い合わせボタン：既存 hover の影響を打ち消す（文字が消えない） */
#header-pc nav a#header-pc-contact-btn:hover {
  color: #fff;
}

/* お問い合わせボタン hover */
#header-pc-contact-btn:hover {
  color: #fff;
  transform: translateY(-0.18vw);
  filter: brightness(1.03);
  box-shadow:
    0 0.75vw 1.35vw rgba(0, 0, 0, 0.16),
    0 0.45vw 0 rgba(var(--accent-rgb), 0.26);
  border-color: rgba(255, 255, 255, 0.35);
}

#header-pc-contact-btn:hover::before {
  opacity: 1;
}

/* active（クリック時） */
#header-pc-contact-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow:
    0 0.45vw 0.95vw rgba(0, 0, 0, 0.14),
    0 0.28vw 0 rgba(var(--accent-rgb), 0.2);
}

/* キーボード操作のフォーカスも綺麗に */
#header-pc-contact-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0.75vw 1.35vw rgba(0, 0, 0, 0.16),
    0 0 0 0.25vw rgba(var(--accent-rgb), 0.25);
}

/* ナビリンク：下線用 */
#header-pc nav a {
  position: relative;
}

/* 現在ページ（アクティブ） */
#header-pc nav a.is-active {
  color: var(--accent);
}

/* 下線 */
#header-pc nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2vw;
  height: 0.1vw;
  background: var(--accent);
  border-radius: 100vw;
  opacity: 0.9;
}

/* お問い合わせボタンは下線を出さない */
#header-pc-contact-btn::after {
  content: none !important;
}
/* =========================
   Responsive switch
========================= */
#header-sp {
  display: none;
}

@media (max-width: 900px) {
  #header-pc {
    display: none;
  }
  #header-sp {
    display: flex;
  }
}

/* =========================
   SP header base
========================= */
#header-sp {
  position: sticky;
  top: 0;
  z-index: 120;

  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;
  width: 100%;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.header-sp__logo {
  width: min(46vw, 190px);
  height: auto;
}

/* =========================
   Hamburger
========================= */
.header-sp__hamburger {
  width: 50px;
  height: 25px;

  display: grid;
  place-items: center;
  gap: 6px;

  cursor: pointer;
  position: relative;

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-sp__hamburger:active {
  transform: scale(0.98);
}

.header-sp__hamburger span {
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 100px;
  background: rgba(var(--accent-rgb), 0.9);
  transition: transform 200ms ease, opacity 200ms ease;
}

.header-sp__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-sp__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header-sp__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   Overlay
========================= */
.sp-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0, 0, 0, 0.35);

  opacity: 0;
  transition: opacity 220ms ease;

  pointer-events: none;
}

.sp-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   Drawer
========================= */
.sp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 140;

  width: min(86vw, 360px);
  height: 100vh;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);

  border-left: 1px solid rgba(0, 0, 0, 0.06);

  transform: translateX(102%);
  transition: transform 260ms ease;

  display: flex;
  flex-direction: column;

  pointer-events: none;
  font-family: "Noto Serif JP", serif;
}

.sp-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.sp-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-drawer__title {
  font-size: 4vw;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0.85;
}

.sp-drawer__close {
  width: 50px;
  height: 50px;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);

  font-size: 30px;
  line-height: 1;
  color: var(--accent);

  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
}

.sp-drawer__close:active {
  transform: scale(0.98);
}

.sp-drawer__content {
  padding: 12px 14px 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 12px;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);

  font-size: 15px;
  font-weight: 700;

  color: rgba(20, 20, 20, 0.9);
  text-decoration: none;

  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.sp-drawer__link:hover {
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0, 0, 0, 0.07);
}

.sp-drawer__link:active {
  transform: scale(0.99);
}

.sp-drawer__link.is-active {
  border-color: rgba(var(--accent-rgb, 0, 0, 0), 0.24);
  background: rgba(var(--accent-rgb, 0, 0, 0), 0.08);
  color: var(--accent);
}

.sp-drawer__cta {
  padding-top: 4px;
}

.sp-drawer__contact {
  display: block;
  text-align: center;

  padding: 12px 14px;
  border-radius: 999px;

  color: #fff;
  background: var(--accent, #111);

  border: 1px solid rgba(255, 255, 255, 0);

  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.14),
    0 10px 0 rgba(var(--accent-rgb, 0, 0, 0), 0.18);

  font-weight: 800;
  text-decoration: none;

  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.sp-drawer__contact:hover {
  filter: brightness(1.03);
}

.sp-drawer__contact:active {
  transform: translateY(1px);
  filter: brightness(0.98);
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.12),
    0 8px 0 rgba(var(--accent-rgb, 0, 0, 0), 0.14);
}

.sp-drawer__member {
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sp-drawer__welcome {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.85;
}

.sp-drawer__auth {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-drawer__logout {
  margin-top: 10px;
}

/* ------------------------------------------------
top-img-area
------------------------------------------------ */
.top-img-area {
  position: relative;
  width: 100%;
}

.top-img-area::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.0)
  );
}

#top-img {
  margin-left: 40vw;
  width: 50vw;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.top-img-text {
  position: absolute;
  top: 7vw;
  left: 10vw;
  z-index: 3;
}

.top-img-text h2 {
  margin-bottom: 2vw;
  font-style: italic;
  font-size: 5vw;
  font-weight: bold;
  color: #0096e2;
}

.top-img-text p {
  margin-bottom: 3vw;
  line-height: 2;
  font-size: 2vw;
  font-weight: bold;
  letter-spacing: 0.2vw;
}

.top-img-text h3 {
  font-size: 1.2vw;
  font-weight: bold;
  color: #545454;
}

/* ================================
SP (Hero)
================================ */
@media (max-width: 768px) {
  .top-img-area {
    padding-bottom: 10vw;
    overflow: hidden;
  }

  .top-img-area::after {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.90),
      rgba(255, 255, 255, 0.50),
      rgba(255, 255, 255, 0.10)
    );
  }

  #top-img {
    margin-top: 40vw;
    margin-bottom: 10vw;
    margin-left: 0;
    width: 100vw;
    height: auto;
  }

  .top-img-text {
    top: 15vw;
    left: 5vw;
    right: 5vw;
    width: auto;
  }

  .top-img-text h2 {
    margin-bottom: 5vw;
    font-size: 11vw;
    line-height: 1.25;
  }

  .top-img-text p {
    margin-bottom: 8vw;
    font-size: 4.2vw;
    letter-spacing: 0.08em;
    line-height: 2;
  }

  .top-img-text h3 {
    font-size: 3.8vw;
  }
}

/* ================================
Campaign Trigger
================================ */
.campaign-modal,
.campaign-modal * {
  font-family: "Noto Serif JP", serif;
}

.campaign-box-modal {
  position: absolute;
  bottom: 8vw;
  right: 5vw;
  z-index: 9;

  width: 27vw;
  padding: 1.6vw;
  border-radius: 1.4vw;

  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border: 0.15vw solid rgba(0, 150, 226, 0.35);
  backdrop-filter: blur(6px);

  box-shadow:
    0.45vw 0.45vw 0 rgba(0, 150, 226, 0.18),
    0 0.55vw 1.1vw rgba(0, 0, 0, 0.12);

  display: flex;
  flex-direction: column;
  gap: 1.2vw;

  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease,
    border-color 200ms ease, background 200ms ease;

  font-family: "Noto Serif JP", serif;
}

.campaign-box-modal:hover {
  transform: translateY(-0.3vw);
  border-color: rgba(0, 150, 226, 0.55);
  box-shadow:
    0.55vw 0.55vw 0 rgba(0, 150, 226, 0.22),
    0 0.65vw 1.25vw rgba(0, 0, 0, 0.14);
}

.campaign-chip {
  display: block;
  padding: 0.35vw 0;
  width: 10vw;
  font-size: 1vw;
  font-weight: 900;

  color: #111;
  background: #FFDE25;

  border-radius: 100vw;
}

.campaing-box-title-area {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.campaign-title {
  font-size: 1.5vw;
  font-weight: 900;
  color: #0b3d66;
  letter-spacing: 0.04em;
}

.campaign-sub {
  font-size: 1vw;
  font-weight: bold;
  color: rgba(0, 150, 226, 0.95);
}

/* ================================
Campaign Modal
================================ */
.campaign-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  padding: 4vw 0;
}

.campaign-modal {
  width: min(92vw, 62vw);
  border-radius: 1.8vw;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2vw 5vw rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.campaign-modal-head {
  position: relative;
  padding: 3vw 3vw 2.2vw;
  background: linear-gradient(
    180deg,
    rgba(0, 150, 226, 0.1),
    rgba(255, 255, 255, 0)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.campaign-modal-kicker {
  font-size: 1vw;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #0096e2;
}

.campaign-modal-title {
  margin-top: 1vw;
  font-size: 2.3vw;
  font-weight: 900;
  line-height: 1.25;
  color: #111;
}

.campaign-modal-lead {
  margin-top: 1.2vw;
  font-size: 1vw;
  font-weight: 700;
  line-height: 2;
  color: #545454;
}

.campaign-modal-close {
  position: absolute;
  top: 1.4vw;
  right: 1.4vw;
  width: 3vw;
  height: 3vw;
  border-radius: 100vw;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 1.2vw;
  font-weight: 900;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease,
    border-color 200ms ease;
}

.campaign-modal-close:hover {
  transform: translateY(-0.1vw);
  background: rgba(0, 150, 226, 0.06);
  border-color: rgba(0, 150, 226, 0.35);
}

.campaign-modal-body {
  padding: 2.4vw 3vw 3vw;
}

/* ===== Compact body ===== */
.campaign-modal-lead2 {
  font-size: 1vw;
  font-weight: 800;
  line-height: 1.9;
  color: #545454;
  margin-bottom: 1.4vw;
}

.campaign-points {
  margin: 0;
  padding-left: 1.2em;
  font-size: 1vw;
  font-weight: 800;
  line-height: 1.9;
  color: #111;
}

.campaign-mini-compare {
  margin-top: 1.6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2vw;
}

.campaign-mini-item {
  padding: 1.2vw 1.4vw;
  border-radius: 1.2vw;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.campaign-mini-item.is-feature {
  border-color: rgba(0, 150, 226, 0.35);
  background: rgba(0, 150, 226, 0.06);
}

.campaign-mini-label {
  display: inline-block;
  font-size: 0.9vw;
  font-weight: 900;
  color: #7a7a7a;
  letter-spacing: 0.08em;
}

.campaign-mini-text {
  margin-top: 0.6vw;
  font-size: 1vw;
  font-weight: 900;
  line-height: 1.7;
  color: #111;
}

.campaign-mini-item.is-feature .campaign-mini-text {
  color: #0096e2;
}

/* CTA（既存btnを利用） */
.campaign-actions {
  margin-top: 2.4vw;
  display: flex;
  gap: 1.2vw;
}

/* コンパクト：間隔を詰める */
.campaign-actions.is-compact {
  margin-top: 1.8vw;
}

/* フッタ注記 */
.campaign-modal-footnote {
  margin-top: 1.6vw;
  font-size: 0.9vw;
  font-weight: 700;
  color: #7a7a7a;
  line-height: 2;
}
@media (max-width: 768px) {
  /* ===== Modal overlay (SP) ===== */
  .campaign-modal-overlay {
    padding: 4vw;              /* 端にくっつかない */
    align-items: center;
  }

  /* ===== Modal container (SP) ===== */
  .campaign-modal {
    width: 100%;
    max-width: 92vw;

    /* 画面内に収めて、縦長は中でスクロール */
    height: 92dvh;             /* iOS含め“実表示”に近い */
    max-height: 92dvh;

    display: flex;
    flex-direction: column;

    border-radius: 4vw;        /* SPは少し丸め強め */
    box-shadow: 0 6vw 12vw rgba(0, 0, 0, 0.28);
  }

  /* ヘッダーは固定（スクロールさせない） */
  .campaign-modal-head {
    padding: 6vw 6vw 4.5vw;
    flex: 0 0 auto;
  }

  /* ボディだけスクロール */
  .campaign-modal-body {
    padding: 5vw 6vw 6vw;
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ===== Typography (SP) ===== */
  .campaign-modal-kicker {
    font-size: 3.2vw;
    letter-spacing: 0.18em;
  }

  .campaign-modal-title {
    margin-top: 3vw;
    font-size: 6vw;
    line-height: 1.25;
  }

  .campaign-modal-lead {
    margin-top: 3.2vw;
    font-size: 3.6vw;
    line-height: 1.9;
  }

  .campaign-modal-lead2 {
    font-size: 3.6vw;
    line-height: 1.9;
    margin-bottom: 4vw;
  }

  .campaign-points {
    font-size: 3.6vw;
    line-height: 1.9;
    padding-left: 1.2em;
  }

  /* 2カラムは縦並びにして読みやすく */
  .campaign-mini-compare {
    margin-top: 4.5vw;
    grid-template-columns: 1fr;
    gap: 3vw;
  }

  .campaign-mini-item {
    padding: 4vw 4.5vw;
    border-radius: 3.5vw;
  }

  .campaign-mini-label {
    font-size: 3.1vw;
  }

  .campaign-mini-text {
    margin-top: 2vw;
    font-size: 3.6vw;
    line-height: 1.7;
  }

  /* CTAは縦積みで押しやすく */
  .campaign-actions {
    margin-top: 5vw;
    flex-direction: column;
    gap: 3vw;
  }

  .campaign-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .campaign-modal-footnote {
    margin-top: 4vw;
    font-size: 3.1vw;
    line-height: 1.8;
  }

  /* Close button (SP) */
  .campaign-modal-close {
    top: 3.5vw;
    right: 3.5vw;
    width: 10vw;
    height: 10vw;
    font-size: 4.2vw;
  }
}

/* ================================
SP (Campaign)
================================ */
@media (max-width: 768px) {

  .campaign-box-modal {
    left: 5vw;
    bottom: 10vw;
    z-index: 99;
    margin: 0 auto;
    width: 90vw;
    padding: 5vw 3vw;
    border-radius: 1.4vw;
    display: flex;
    flex-direction: column;
    gap: 3vw;
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
      3px 3px 0 rgba(0, 150, 226, 0.16),
      0 10px 22px rgba(0, 0, 0, 0.12);
  }

  .campaing-box-title-area {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
  }

  .campaign-chip {
    display: block;
    padding: 1vw 0;
    width: 25vw;
    font-size: 3.2vw;
  }

  .campaign-title {
    font-size: 4.3vw;
    letter-spacing: 0em;
  }

  .campaign-sub {
    margin-left: auto;
    font-size: 4vw;
  }
}

/* ------------------------------------------------
top-news-area
------------------------------------------------ */
.top-news-area {
  margin-top: 5vw;
  width: 100%;
}

.top-title-area {
  position: relative;
  margin-left: 10vw;
  margin-bottom: 2vw;
  font-weight: bold;
}

.top-title-area h2 {
  font-size: 4vw;
  letter-spacing: 0.5vw;
}

.top-title-area p {
  font-size: 1.5vw;
  color: var(--accent);
}

/* back-text：通常（見えている状態の見た目） */
.back-text {
  position: absolute;
  top: 50%;
  right: 5vw;
  font-size: 10vw;
  font-weight: bold;
  color: #ccc;
  opacity: 0.3;
  transform: translateY(-50%);
}

/* back-text：アニメ初期状態（右に少しズラして透明） */
.back-text {
  opacity: 0;
  transform: translate3d(2.2vw, -50%, 0);
  filter: blur(2px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(.2,.9,.2,1),
    filter 900ms ease;
  will-change: opacity, transform, filter;
}

/* 表示状態 */
.back-text.is-inview {
  opacity: 0.3;
  transform: translate3d(0, -50%, 0);
  filter: blur(0);
}

/* ユーザーが「動きの軽減」をONの場合は無効化 */
@media (prefers-reduced-motion: reduce) {
  .back-text {
    transition: none;
    transform: translate3d(0, -50%, 0);
    filter: none;
    opacity: 0.3;
  }
}

/* ===== Top News (Unify with /news cards) ===== */
.top-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2vw;
  width: 80vw;
  margin: 3.6vw auto 0;
}

.top-news-card {
  border-radius: 1.2vw;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0.55vw 0.55vw 0 rgba(0, 150, 226, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease,
    border-color 220ms ease;
  max-width: none;
}

.top-news-card:hover {
  transform: translateY(-0.18vw);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow:
    0.75vw 0.75vw 0 rgba(0, 150, 226, 0.08),
    0 1.2vw 2.6vw rgba(0, 0, 0, 0.10);
}

.top-news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.top-news-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #f6f7fb;
  overflow: hidden;
}

.top-news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  margin: 0;
  border-radius: 0;
}

.top-news-body {
  padding: 1.2vw 1.2vw 1.4vw;
}

.top-news-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1vw;
  margin-bottom: 0.9vw;
}

.top-news-date {
  font-size: 0.95vw;
  font-weight: 900;
  color: #7a7a7a;
}

.top-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5vw;
  justify-content: flex-end;
}

.top-news-tag {
  display: inline-block;
  margin-left: 0;
  padding: 0.22vw 0.8vw;
  font-size: 0.85vw;
  font-weight: 900;
  border-radius: 100vw;
  background: rgba(var(--accent-rgb), 0.10);
  color: #0b3d66;
}

.top-news-title {
  margin-bottom: 0.9vw;
  font-size: 1.15vw;
  font-weight: 900;
  line-height: 1.55;
  color: #111;
}

.top-news-desc {
  font-size: 0.95vw;
  font-weight: 700;
  line-height: 1.9;
  color: #545454;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================
SP (Top title / News)
================================ */
@media (max-width: 768px) {
  /* 共通：セクション間余白 */
  .top-news-area {
    margin-top: 10vw;
  }

  .top-title-area {
    margin-left: 6vw;
    margin-bottom: 6vw;
  }

  .top-title-area h2 {
    font-size: 10vw;
    letter-spacing: 0.12em;
  }

  .top-title-area p {
    font-size: 4vw;
  }

  .back-text {
    right: 2vw;
    font-size: 18vw;
    transform: translate3d(4vw, -50%, 0);
  }

  .top-news-grid {
    width: 92vw;
    grid-template-columns: 1fr;
    gap: 5vw;
    margin-top: 7vw;
  }

  .top-news-card {
    border-radius: 4vw;
  }

  .top-news-body {
    padding: 5vw 5vw 6vw;
  }

  .top-news-date {
    font-size: 3.2vw;
  }

  .top-news-tag {
    font-size: 3.0vw;
    padding: 1vw 2.4vw;
  }

  .top-news-title {
    font-size: 4.4vw;
  }

  .top-news-desc {
    font-size: 3.6vw;
    -webkit-line-clamp: 4;
  }
}
/* モバイルでは4件目を非表示（=3件表示） */
@media (max-width: 767px) {
  .top-news-grid .top-news-card:nth-child(n + 4) {
    display: none;
  }
}

/* ------------------------------------------------
top-service-area
------------------------------------------------ */
.top-service-area {
  margin-top: 10vw;
}

.top-service-grid {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin: 5.5vw auto 0;
  width: 80vw;
}

.top-service-card {
  position: relative;
  max-width: 26vw;
}

.service-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6vw;
}

.service-card-upper {
  margin: 8.5vw 2vw 1vw;
}

.service-card-upper h3 {
  margin-bottom: 1vw;
  text-align: center;
  font-size: 1.5vw;
  font-weight: bold;
}

.service-border {
  display: block;
  margin: 0 auto;
  width: 5vw;
  height: 7px;
  border-radius: 50vw;
  background: linear-gradient(
    90deg,
    #0096e2 0%,
    #0096e2 50%,
    #7dd3fc 50%,
    #7dd3fc 100%
  );
}

.service-card-upper p {
  margin-top: 2vw;
  line-height: 2;
  font-size: 0.9vw;
  font-weight: bold;
}

.top-service-points {
  padding: 0 2vw;
  font-size: 1vw;
  font-weight: bold;
  color: #2563EB;
}

.top-service-points li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  padding: 1.25vw 1vw;
  border-bottom: solid 1px #ccc;
}

.top-service-points .check {
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  border-radius: 999px;
  margin-top: 0.15em;
  background: #2563EB;
  position: relative;
}

.top-service-points .check::after {
  content: "";
  position: absolute;
  left: 0.32em;
  top: 0.22em;
  width: 0.32em;
  height: 0.56em;
  border-right: 0.18em solid #fff;
  border-bottom: 0.18em solid #fff;
  transform: rotate(45deg);
}

/* ================================
SP (Service)
================================ */
@media (max-width: 768px) {
  .top-service-area {
    margin-top: 20vw;
  }

  .top-service-grid {
    width: 92vw;
    margin: 30vw auto 0;
    flex-direction: column;
    gap: 25vw;
  }

  .top-service-card {
    max-width: none;
    width: 100%;
    padding: 6vw 5vw 5vw;
    border-radius: 4vw;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 1.2vw 1.2vw 0 rgba(0, 150, 226, 0.06);
  }

  .service-icon {
    width: 30vw;
    top: -17.5vw;
  }

  .service-card-upper {
    margin: 11vw 0 3vw;
  }

  .service-card-upper h3 {
    font-size: 5.2vw;
    margin-bottom: 3vw;
  }

  .service-border {
    width: 18vw;
    height: 1.4vw;
  }

  .service-card-upper p {
    margin-top: 4vw;
    font-size: 3.6vw;
    line-height: 2;
  }

  .top-service-points {
    padding: 0;
    font-size: 3.8vw;
  }

  .top-service-points li {
    padding: 3.6vw 0;
  }
}

/* ------------------------------------------------
top-works-area
------------------------------------------------ */
.top-works-area {
  margin-top: 10vw;
}

.top-works-grid {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin: 3vw auto 0;
  width: 80vw;
}

.top-works-grid-bottom {
  margin-top: 0;
}

.top-works-card {
  max-width: 26vw;
  padding: 1vw 2vw;
}

.top-works-card img {
  width: auto;
}

.top-works-card p {
  margin-bottom: 2vw;
  font-size: 1.2vw;
  font-weight: bold;
}

.top-works-tag-area {
  margin-top: 0.5vw;
  margin-bottom: 1.5vw;
  display: flex;
}

.top-works-tag-area span {
  display: inline-block;
  padding: 0.25vw 2vw;
  font-size: 0.9vw;
  font-weight: bold;
  background-color: #0096e2;
  border-radius: 100vw;
}

.top-works-tag-area span:nth-child(2) {
  margin-left: 1vw;
  background-color: #7dd3fc;
}

/* ================================
SP (Works)
================================ */
@media (max-width: 768px) {
  .top-works-area {
    margin-top: 30vw;
  }

  .top-works-grid,
  .top-works-grid-bottom {
    width: 92vw;
    margin: 15vw auto 0;
    flex-direction: column;
    gap: 10vw;
  }

  .top-works-grid-bottom {
    display: none;
  }

  .top-works-card {
    max-width: none;
    width: 100%;
    padding: 5vw;
    border-radius: 4vw;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 1.2vw 1.2vw 0 rgba(0, 150, 226, 0.06);
  }

  .top-works-card img {
    width: 100%;
    height: auto;
    border-radius: 3vw;
    display: block;
  }

  .top-works-tag-area {
    margin-top: 4vw;
    margin-bottom: 4vw;
    gap: 2vw;
  }

  .top-works-tag-area span {
    padding: 1.2vw 4.2vw;
    font-size: 3.2vw;
  }

  .top-works-card p {
    margin-bottom: 0;
    font-size: 4vw;
    line-height: 1.6;
  }
}

/* ------------------------------------------------
top-flow-area
------------------------------------------------ */
.top-flow-area {
  margin-top: 10vw;
}

.top-flow-grid {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-top: 7vw;
  padding: 0 10vw;
  width: 100%;
}

.top-flow-card {
  position: relative;
  padding: 0 1vw;
  max-width: 22vw;
}

.top-flow-card img {
  margin: 0 auto;
  width: 8vw;
}

.top-flow-card h6 {
  margin: 1vw 0;
  text-align: center;
  font-size: 1.2vw;
  font-weight: bold;
}

.top-flow-card p {
  font-size: 1vw;
  font-weight: bold;
}

.flow-number {
  position: absolute;
  display: block;
  top: 4vw;
  right: 2vw;
  font-size: 6vw;
  font-weight: bold;
  color: #0096e2;
  opacity: 0.1;
}

.flow-allow-img {
  width: 3vw;
}

/* ================================
SP (Flow)
================================ */
@media (max-width: 768px) {
  .top-flow-area {
    margin-top: 30vw;
  }

  .top-flow-grid {
    width: 92vw;
    margin: 8vw auto 0;
    padding: 0;
    flex-direction: column;
    gap: 10vw;
  }

  .top-flow-card {
    max-width: none;
    width: 100%;
    padding: 6vw 5vw 5vw;
    border-radius: 4vw;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 1.2vw 1.2vw 0 rgba(0, 150, 226, 0.06);
  }

  .top-flow-card img {
    width: 22vw;
  }

  .top-flow-card h6 {
    font-size: 4.6vw;
    margin: 4vw 0 3vw;
  }

  .top-flow-card p {
    font-size: 3.6vw;
    line-height: 2;
  }

  .flow-number {
    top: 6vw;
    right: 5vw;
    font-size: 16vw;
  }

  .flow-allow-img {
    display: none;
  }
}

/* ------------------------------------------------
top-price-area
------------------------------------------------ */
.top-price-area {
  margin-top: 10vw;
}

.top-price-leadbox {
  margin: 0 auto;
  width: 80vw;
  padding: 3vw 4vw;
}

.top-price-leadbox h3 {
  font-size: 1.6vw;
  font-weight: bold;
  margin-bottom: 1.2vw;
}

.top-price-leadbox p {
  font-size: 1vw;
  font-weight: bold;
  line-height: 2;
  color: #545454;
}

.top-price-factors {
  margin-top: 1.5vw;
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
  font-size: 1vw;
  font-weight: bold;
}

.top-price-factors .dot {
  display: inline-block;
  width: 0.7vw;
  height: 0.7vw;
  border-radius: 50vw;
  background: #0096e2;
  margin-right: 0.6vw;
  transform: translateY(-0.05vw);
}

.top-price-grid {
  display: flex;
  gap: 2vw;
  margin: 6vw auto 0;
  width: 80vw;
}

.top-price-card {
  position: relative;
  flex: 1;
  padding: 3vw 2.5vw;
  border-radius: 1.5vw;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0.6vw 0.6vw 0 rgba(0, 150, 226, 0.08);
}

.top-price-card.is-feature {
  border: 1px solid rgba(0, 150, 226, 0.35);
  box-shadow: 0.8vw 0.8vw 0 rgba(0, 150, 226, 0.12);
}

.top-price-badge {
  position: absolute;
  top: -1vw;
  left: 2vw;
  padding: 0.4vw 1.2vw;
  border-radius: 100vw;
  font-size: 0.9vw;
  font-weight: bold;
  background: #0096e2;
  color: #fff;
}

.top-price-head h3 {
  font-size: 1.6vw;
  font-weight: bold;
  margin-bottom: 0.8vw;
}

.top-price-lead {
  font-size: 1vw;
  font-weight: bold;
  line-height: 1.9;
  margin-bottom: 1.2vw;
  color: #545454;
}

.price-level {
  display: inline-block;
  padding: 0.35vw 1vw;
  border-radius: 100vw;
  font-size: 0.95vw;
  font-weight: bold;
  border: 1px solid #ddd;
}

.price-level.is-low {
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.35);
}
.price-level.is-mid {
  background: rgba(59, 130, 246, 0.10);
  border-color: rgba(59, 130, 246, 0.35);
}
.price-level.is-high {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
}

.top-price-list {
  margin-top: 2vw;
  font-size: 1vw;
  font-weight: bold;
}

.top-price-list li {
  padding: 1.1vw 0;
  border-bottom: 1px solid #eee;
}

.top-price-example {
  margin-top: 1.8vw;
  font-size: 0.95vw;
  font-weight: bold;
  color: #2563EB;
}

.top-price-note {
  width: 80vw;
  margin: 3vw auto 0;
  font-size: 1vw;
  font-weight: bold;
  color: #545454;
  line-height: 2;
}

/* ================================
SP (Price)
================================ */
@media (max-width: 768px) {
  .top-price-area {
    margin-top: 30vw;
  }

  .top-price-leadbox {
    margin-top: 15vw;
    width: 92vw;
    padding: 6vw 6vw;
    border-radius: 4vw;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 1.2vw 1.2vw 0 rgba(0, 150, 226, 0.06);
  }

  .top-price-leadbox h3 {
    font-size: 5.2vw;
    margin-bottom: 3vw;
    line-height: 1.35;
  }

  .top-price-leadbox p {
    font-size: 3.6vw;
  }

  .top-price-factors {
    gap: 3vw;
    font-size: 3.6vw;
  }

  .top-price-factors .dot {
    width: 2.2vw;
    height: 2.2vw;
    margin-right: 2vw;
  }

  .top-price-grid {
    width: 92vw;
    margin: 15vw auto 0;
    flex-direction: column;
    gap: 10vw;
  }

  .top-price-card {
    padding: 6vw 6vw;
    border-radius: 4vw;
    box-shadow: 1.2vw 1.2vw 0 rgba(0, 150, 226, 0.06);
  }

  .top-price-card.is-feature {
    box-shadow: 1.6vw 1.6vw 0 rgba(0, 150, 226, 0.10);
  }

  .top-price-badge {
    top: -2.6vw;
    left: 5vw;
    padding: 1.1vw 3.2vw;
    font-size: 3.2vw;
  }

  .top-price-head h3 {
    font-size: 5vw;
  }

  .top-price-lead {
    font-size: 3.6vw;
  }

  .price-level {
    padding: 1.1vw 3vw;
    font-size: 3.2vw;
  }

  .top-price-list {
    margin-top: 5vw;
    font-size: 3.6vw;
  }

  .top-price-list li {
    padding: 3.6vw 0;
  }

  .top-price-example {
    margin-top: 4vw;
    font-size: 3.4vw;
  }

  .top-price-note {
    width: 92vw;
    margin: 6vw auto 0;
    font-size: 3.4vw;
  }
}

/* =================================================
Refined Button System
================================================= */
.top-cta-row {
  display: flex;
  justify-content: right;
  gap: 2vw;
  margin-top: 5vw;
  margin-right: 10vw;
}

a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;

  padding: 1.05vw 2.6vw;
  min-width: 16vw;

  font-size: 1vw;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;

  border-radius: 0.9vw;
  border: 1px solid transparent;

  transition: transform 220ms ease, box-shadow 220ms ease,
    background 220ms ease, border-color 220ms ease, color 220ms ease;
  will-change: transform;
  overflow: hidden;
}

/* 左のスライドバー（上品な演出） */
a.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.35vw;
  height: 100%;
  background: currentColor;
  opacity: 0.35;
  transform: translateX(-120%);
  transition: transform 220ms ease, opacity 220ms ease;
}

/* 矢印（ホバーでスッと現れる） */
a.btn::after {
  content: "→";
  position: relative;
  transform: translateX(-0.25em);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* hover：ほんの少し浮く＋演出が出る */
a.btn:hover {
  transform: translateY(-0.12vw);
  box-shadow: 0 0.9vw 2vw rgba(0, 0, 0, 0.10);
}

a.btn:hover::before {
  transform: translateX(0);
  opacity: 0.55;
}

a.btn:hover::after {
  transform: translateX(0);
  opacity: 1;
}

a.btn:active {
  transform: translateY(0);
  box-shadow: 0 0.5vw 1.2vw rgba(0, 0, 0, 0.10);
}

a.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25vw rgba(0, 150, 226, 0.22), 0 0.9vw 2vw rgba(0, 0, 0, 0.10);
}

/* =================================================
Variants
================================================= */
a.btn-primary {
  background: var(--accent);
  color: #fff;
}

a.btn-primary::before {
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.35;
}

a.btn-primary:hover {
  filter: brightness(0.92);
}

a.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: none;
}

a.btn-outline:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.65);
  box-shadow: none;
}

a.btn-soft {
  background: rgba(var(--accent-rgb), 0.08);
  color: color-mix(in srgb, var(--accent) 85%, #000);
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: none;
}

a.btn-soft:hover {
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: none;
}

/* ================================
SP (Buttons / CTA row)
================================ */
@media (max-width: 768px) {
  .top-cta-row {
    margin-top: 9vw;
    margin-right: 0;
    padding: 0 6vw;
    justify-content: flex-start;
    flex-direction: column;
    gap: 3.2vw;
  }

  a.btn {
    min-width: auto;
    padding: 4.2vw 6vw;
    font-size: 3.8vw;
    border-radius: 3vw;
  }

  a.btn::before {
    width: 1.2vw;
    opacity: 0.28;
  }

  a.btn::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ------------------------------------------------
SiteFooter
------------------------------------------------ */
.site-footer {
  margin-top: 10vw;
  border-top: 1px solid #e5e5e5;
  background: #fff;
}

.site-footer__container {
  width: 80vw;
  margin: 0 auto;
  padding: 0 1.2vw;
}

.site-footer__cta {
  background: color-mix(in srgb, var(--accent) 8%, white);
  border-bottom: 1px solid #e9eef7;
}

.site-footer__cta-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3vw;
  align-items: center;
  padding: 5vw 0;
}

.site-footer__cta-kicker {
  font-size: 1vw;
  font-weight: 800;
  color: #545454;
  letter-spacing: 0.06em;
}

.site-footer__cta-title {
  margin-top: 1vw;
  font-size: 2.2vw;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #111;
}

.site-footer__cta-desc {
  margin-top: 1.4vw;
  font-size: 1vw;
  font-weight: 700;
  line-height: 2;
  color: #545454;
}

.site-footer__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  align-items: flex-end;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;

  padding: 1.1vw 2.4vw;
  min-width: 18vw;

  font-size: 1vw;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;

  border-radius: 1vw;
  border: 1px solid transparent;

  transition: transform 220ms ease, background 220ms ease,
    border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-footer__cta-btn::after {
  content: "→";
  transform: translateX(-0.2em);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-footer__cta-btn:hover {
  transform: translateY(-0.12vw);
  box-shadow: 0 0.9vw 2vw rgba(0, 0, 0, 0.10);
}

.site-footer__cta-btn:hover::after {
  transform: translateX(0);
  opacity: 1;
}

.site-footer__cta-btn.is-primary {
  background: var(--accent);
  color: #fff;
}

.site-footer__cta-btn.is-primary:hover {
  filter: brightness(0.92);
}

.site-footer__cta-btn.is-ghost {
  background: #fff;
  color: #545454;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

.site-footer__cta-btn.is-ghost:hover {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: none;
}

.site-footer__main {
  padding: 6vw 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 5vw;
}

.site-footer__brand-link {
  display: inline-block;
}

#footer-logo {
  width: 18vw;
  height: auto;
}

.site-footer__company {
  margin-top: 1.4vw;
  font-size: 1.2vw;
  font-weight: 900;
  color: #111;
}

.site-footer__dl {
  margin-top: 1.2vw;
  font-size: 0.95vw;
  font-weight: 700;
  color: #545454;
}

.site-footer__row {
  display: flex;
  gap: 1vw;
  margin-top: 0.9vw;
  font-size: 1vw;
}

.site-footer__row dt {
  width: 5vw;
  flex: 0 0 auto;
  font-weight: 900;
  color: #111;
}

.site-footer__row dd {
  line-height: 1.5;
}

.site-footer__mail {
  font-weight: 900;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  transition: color 200ms ease;
}

.site-footer__mail:hover {
  color: var(--accent);
}

.site-footer__note {
  margin-top: 1.6vw;
  font-size: 0.85vw;
  font-weight: 700;
  line-height: 2;
  color: #7a7a7a;
}

.site-footer__heading {
  font-size: 1vw;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
}

.site-footer__list {
  margin-top: 1.4vw;
  list-style: none;
  padding: 0;
}

.site-footer__list li {
  margin-top: 0.9vw;
}

.site-footer__list a {
  font-size: 1vw;
  font-weight: 900;
  color: #545454;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-block;
}

.site-footer__list a:hover {
  color: var(--accent);
  transform: translateX(0.15vw);
}

.site-footer__cookie {
  margin-top: 1.2vw;
}

.site-footer__bottom {
  border-top: 1px solid #e5e5e5;
  padding: 0.5vw 0;
  text-align: center;
}

.site-footer__copy {
  font-size: 0.6vw;
  font-weight: 700;
  color: #7a7a7a;
}

/* ================================
SP (Footer)
================================ */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 30vw;
  }

  .site-footer__container {
    width: 92vw;
    padding: 0;
  }

  .site-footer__cta-grid {
    grid-template-columns: 1fr;
    gap: 10vw;
    padding: 15vw 0;
  }

  .site-footer__cta-kicker {
    margin-bottom: 3vw;
    font-size: 3.4vw;
  }

  .site-footer__cta-title {
    font-size: 6.2vw;
    line-height: 1.5;
  }

  .site-footer__cta-desc {
    margin-top: 5vw;
    font-size: 3.6vw;
  }

  .site-footer__cta-actions {
    align-items: stretch;
    gap: 5vw;
  }

  .site-footer__cta-btn {
    width: 100%;
    min-width: auto;
    padding: 4.2vw 6vw;
    font-size: 3.8vw;
    border-radius: 3vw;
  }

  .site-footer__main {
    padding: 15vw 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 10vw;
  }

  /* brand block */
  .site-footer__brand {
    max-width: 92vw;
  }

  #footer-logo {
    width: 60vw;
    height: auto;
  }

  .site-footer__company {
    margin-top: 10vw;
    margin-bottom: 5vw;
    font-size: 5vw;
  }

  .site-footer__dl {
    margin-top: 4vw;
    font-size: 3.8vw;
    font-weight: 700;
    color: #545454;
  }

  .site-footer__row {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    margin-top: 5vw;
  }

  .site-footer__row dt {
    width: auto;
    font-size: 3.4vw;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #111;
    font-weight: 900;
  }

  .site-footer__row dd {
    margin-left: 5vw;
    font-size: 3.8vw;
    line-height: 1.7;
    color: #545454;
    word-break: break-word;
  }

  .site-footer__mail {
    font-weight: 900;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    text-decoration-thickness: 0.12em;
    transition: color 200ms ease;
  }

  .site-footer__mail:hover {
    color: var(--accent);
  }

  .site-footer__note {
    margin-top: 6vw;
    font-size: 3.4vw;
    font-weight: 700;
    line-height: 1.7;
    color: #7a7a7a;
  }

  .site-footer__heading {
    font-size: 4vw;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #111;
  }

  .site-footer__list {
    margin-top: 4vw;
    list-style: none;
    padding: 0;
  }

  .site-footer__list li {
    margin-top: 3vw;
  }

  .site-footer__list a {
    font-size: 3.8vw;
    font-weight: 900;
    color: #545454;
    text-decoration: none;
    transition: color 200ms ease, transform 200ms ease;
    display: inline-block;
  }

  .site-footer__list a:hover {
    color: var(--accent);
    transform: translateX(0.4vw);
  }

  .site-footer__cookie {
    margin-top: 4vw;
  }

  .site-footer__bottom {
    border-top: 1px solid #e5e5e5;
    padding: 2vw 0;
    text-align: center;
  }

  .site-footer__copy {
    font-size: 3.2vw;
    font-weight: 700;
    color: #7a7a7a;
  }
}
/* ================================
SP (Extra small: iPhone SE級)
================================ */
@media (max-width: 420px) {
  .top-img-text h2 {
    font-size: 12vw;
  }

  .top-img-text p {
    font-size: 4.5vw;
  }

  a.btn {
    font-size: 4vw;
  }
}
