@charset "utf-8";
@layer reset, tokens, base, components, utilities, pages;

@layer tokens {
  :root {
    /* =========================
    Colors
    ========================= */
    --color-blue: #003366;
    --color-blue-strong: #004098;
    --color-blue-gradient: linear-gradient(0deg,
        rgba(1, 27, 68, 0.72),
        rgba(1, 27, 68, 0.72));

    --color-orange: #ed9631;
    --color-yellow: #f5c800;

    --color-white: #ffffff;
    --color-snow: #f4f6fa;
    --color-gray: #333333;
    --color-gray-muted: #666666;
    --color-border: #e5e7eb;
    --color-divider: #e8e8ec;


    /* =========================
    Typography
    ========================= */
    --text-xs: 0.64rem;
    --text-sm: 0.8rem;
    --text-base: 1rem;
    --text-lg: clamp(1rem, 0.8964rem + 0.442vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1205rem + 0.5525vw, 1.5625rem);
    --text-2xl: clamp(1.5625rem, 1.4006rem + 0.6906vw, 1.9531rem);
    --text-3xl: clamp(1.9531rem, 1.7508rem + 0.8633vw, 2.4414rem);
    --text-4xl: clamp(2.4414rem, 2.1885rem + 1.0791vw, 3.0518rem);
    --text-5xl: clamp(3.0518rem, 2.7356rem + 1.3488vw, 3.8147rem);
    --text-6xl: clamp(3.8147rem, 3.4195rem + 1.6861vw, 4.7684rem);
    --text-7xl: clamp(4.7684rem, 4.2744rem + 2.1076vw, 5.9605rem);

    /* =========================
    Typography (line-height tokens)
    ========================= */
    --leading-tight: 1.2;
    --leading-snug: 1.3;
    --leading-base: 1.6;
    --leading-relaxed: 1.8;

    /* =========================
    Radius
    ========================= */
    --rounded-sm: 8px;
    --rounded-base: 12px;
    --rounded-lg: 16px;
    --rounded-full: calc(infinity * 1px);

    /* =========================
    Layout
    ========================= */
    --container-max: 80rem;
    --container-px: 1.5rem;

    /* =========================
    Motion
    ========================= */
    --duration-xs: 0.3s;
    --duration: 0.6s;
    --ease-standard: cubic-bezier(0.8, 0, 0.2, 1);
  }
}

@layer base {
  html {
    scroll-behavior: smooth;
    --base-vw: 375;
  }

  body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-gray);
    background: var(--color-snow);
    font-size: var(--text-base);
    line-height: var(--leading-base);
    font-feature-settings: "palt";
    letter-spacing: .1em;
  }

  a {
    color: inherit;
  }

  @media not (width >=375px) {
    html {
      font-size: calc(100 / var(--base-vw) * 1 * 16vw);
    }
  }
}

@layer components {
  .c-section {
    padding-block-start: clamp(5rem, 3.9641rem + 4.4199vw, 7.5rem);
  }

  .c-section--btm {
    padding-block-end: clamp(5rem, 3.9641rem + 4.4199vw, 7.5rem);
  }

  .c-inner {
    inline-size: 100%;
    max-inline-size: calc(calc(var(--container-px)*2) + var(--container-max));
    margin-inline: auto;
    padding-inline: var(--container-px);
  }

  .c-content {
    margin-block-start: 3rem;
  }

  .c-heading {
    text-align: center;
  }

  .c-heading__kicker {
    display: inline-block;
    margin-inline: auto;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--color-blue);
    border-radius: var(--rounded-sm) var(--rounded-lg) 0 var(--rounded-sm);
    background: var(--color-white);
    color: var(--color-blue);
    font-weight: 700;
    font-size: var(--text-lg);
    line-height: var(--leading-tight);
  }

  .c-heading__title {
    display: block;
    margin-block-start: 0.75rem;
    color: var(--color-blue);
    font-weight: 700;
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
  }

  .c-heading__title--white {
    display: block;
    margin-block-start: 0.75rem;
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
  }

  /* CTA */
  .c-cta_area {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    flex-direction: column;
  }

  .c-cta_area:has(p) {
    gap: 2rem 1rem;
  }

  .c-cta_area>* {
    max-width: 23.75rem;
    width: 100%;
  }

  .c-cta-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 23.75rem;
    padding: 0.5rem 0.75rem 0.625rem;
    border-radius: calc(infinity * 1px);
    transition: background-color 0.3s cubic-bezier(0.8, 0, 0.2, 1);
  }

  .c-cta-btn--fit {
    max-width: fit-content;
    margin-inline: auto;
  }

  .c-cta-btn--large {
    padding: 0.5rem 1rem 0.625rem;
  }

  .c-cta-btn--large .c-cta-btn__label {
    font-size: clamp(1.125rem, 0.9178rem + 0.884vw, 1.625rem);
  }

  p+ :is(.c-cta-btn) {
    margin-top: 0.75rem;
  }

  .c-cta-btn::before {
    content: "";
  }

  .c-cta-btn__label {
    padding-inline-start: 1rem;
    font-size: clamp(1.125rem, 1.0732rem + 0.221vw, 1.25rem);
    font-weight: 600;
    text-align: center;
    place-content: center;
    transition: color 0.3s cubic-bezier(0.8, 0, 0.2, 1);
  }

  @media (min-width: 680px) {
    .c-cta_area {
      flex-direction: row;
    }
  }

  /* ===== 矢印 ===== */
  .c-cta-btn__arrow {
    display: inline-flex;
    align-items: center;
    width: 32px;
    margin-top: 2px;
  }

  .c-cta-btn__arrow svg {
    width: 32px;
    height: 16px;
    overflow: visible;
  }

  .arrow-line {
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke 0.3s cubic-bezier(0.8, 0, 0.2, 1);
  }

  .arrow-head {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s cubic-bezier(0.8, 0, 0.2, 1);
  }

  .c-cta-btn:hover .arrow-line {
    animation: arrow-out-in 0.3s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  }

  .c-cta-btn:hover .arrow-head {
    animation: arrow-out-in 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes arrow-out-in {
    0% {
      transform: translateX(0);
      opacity: 1;
    }

    40% {
      transform: translateX(14px);
      opacity: 0;
    }

    41% {
      transform: translateX(-14px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* ===== 資料ダウンロード（オレンジ） ===== */
  .c-cta-btn--dl {
    background-color: var(--color-orange);
    border: 2px solid var(--color-orange);
  }

  .c-cta-btn--dl .c-cta-btn__label {
    color: #fff;
  }


  @media (hover: hover) {
    .c-cta-btn--dl:hover {
      background-color: #fff;
    }

    .c-cta-btn--dl:hover .c-cta-btn__label {
      color: var(--color-orange);
    }

    .c-cta-btn--dl:hover .arrow-line,
    .c-cta-btn--dl:hover .arrow-head {
      stroke: var(--color-orange);
    }
  }

  /* ===== ご相談・お問い合わせ ===== */
  .c-cta-btn--contact {
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue);
  }

  .c-cta-btn--contact .c-cta-btn__label {
    color: var(--color-white);
  }

  .c-cta-btn--contact-white {
    border: 2px solid var(--color-white);
  }

  .c-cta-btn--contact-white .c-cta-btn__label {
    color: var(--color-white);
  }

  @media (hover: hover) {
    .c-cta-btn--contact:hover {
      background-color: var(--color-white);
    }

    .c-cta-btn--contact:hover .c-cta-btn__label {
      color: var(--color-blue);
    }

    .c-cta-btn--contact:hover .arrow-line,
    .c-cta-btn--contact:hover .arrow-head {
      stroke: var(--color-blue);
    }
  }
}

@layer utilities {

  /* =====================================
  Type utilities
  ===================================== */
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--leading-base);
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--leading-base);
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--leading-base);
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--leading-snug);
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--leading-snug);
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
  }

  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--leading-tight);
  }

  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--leading-tight);
  }

  .text-6xl {
    font-size: var(--text-6xl);
    line-height: var(--leading-tight);
  }

  .text-7xl {
    font-size: var(--text-7xl);
    line-height: var(--leading-tight);
  }

  /* line-height only */
  .leading-tight {
    line-height: var(--leading-tight);
  }

  .leading-snug {
    line-height: var(--leading-snug);
  }

  .leading-base {
    line-height: var(--leading-base);
  }

  .leading-relaxed {
    line-height: var(--leading-relaxed);
  }

  /* Font Weight */
  .font-normal {
    font-weight: 400;
  }

  .font-medium {
    font-weight: 500;
  }

  .font-semibold {
    font-weight: 600;
  }

  .font-bold {
    font-weight: 700;
  }

  /* color */
  .color-blue {
    color: var(--color-blue);
  }

  .color-white {
    color: var(--color-white);
  }

  .color-gray-muted {
    color: var(--color-gray-muted);
  }

  /* word-break */
  .wbr {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /* position */
  .center {
    text-align: center;
  }

  .mx-auto {
    margin-inline: auto;
  }

  .fit-mx {
    max-width: fit-content;
    margin-inline: auto;
  }

  .block {
    display: block;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  @media not (min-width:768px) {
    .sp-hidden {
      display: none;
    }
  }

  @media (min-width:768px) {
    .pc-hidden {
      display: none;
    }
  }
}

@layer pages {

  /* =========================
    Layer
  ========================= */
  .lp-container {
    display: flex;
    flex-direction: column;
    min-block-size: 100dvh;
    overflow: clip;
  }

  .lp-main {
    flex: 1;
  }

  /* =========================
    Header
  ========================= */
  .lp-header {
    background-color: var(--color-white);
  }

  .lp-header__row {
    padding-block: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .lp-header__logo-link {
    display: block;
    inline-size: 5rem;
  }

  .lp-header__content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .lp-header__text {
    font-size: var(--text-xs);
    color: var(--color-gray);
    letter-spacing: normal;
  }

  .lp-header__link {
    font-size: var(--text-xs);
    color: var(--color-blue-strong);
    letter-spacing: normal;
    transition: opacity var(--duration-xs);
  }

  @media (hover: hover) {
    .lp-header__link:hover {
      opacity: 0.7;
    }
  }

  /* =========================
    Footer
  ========================= */
  .lp-footer {
    margin-block-start: 5rem;
    padding-block: 3.5rem;
    background: var(--color-blue);
  }

  .lp-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
    gap: 5rem 2.5rem;
    max-inline-size: 65.25rem;
  }

  .lp-contact-card {
    inline-size: min(22.5rem, 100%);
    margin-inline: auto;
  }

  .lp-contact-card__title {
    padding-block-end: 0.5rem;
    font-size: var(--text-xl);
    line-height: var(--leading-snug);
    font-weight: 500;
    text-align: center;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
  }

  .lp-contact-card__text {
    margin-block-start: 1.25rem;
    font-size: var(--text-lg);
    line-height: var(--leading-base);
    text-align: center;
    color: var(--color-white);
  }

  .lp-contact-card__actions {
    margin-block-start: 1.5rem;
    display: flex;
    justify-content: center;
  }

  .lp-contact-card__btn {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(22.5rem, 100%);
    padding: 1rem 0.75rem;
    border-radius: var(--rounded-full);
    border: 0.125rem solid var(--color-white);
    background: var(--color-white);
    color: var(--color-blue);
    font-size: var(--text-lg);
    line-height: var(--leading-tight);
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: color var(--duration) var(--ease-standard),
      transform var(--duration) var(--ease-standard);
  }

  .lp-contact-card__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-blue);
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform var(--duration) var(--ease-standard);
    z-index: -1;
  }

  @media (hover: hover) {
    .lp-contact-card__btn:hover {
      color: var(--color-white);
    }

    .lp-contact-card__btn:hover::before {
      transform: scaleX(1);
      transform-origin: left top;
    }
  }

  @media (min-width: 768px) {
    .lp-footer {
      padding-block: 4rem;
    }
  }

  /* =========================
    Mainvisual
  ========================= */
  .lp-mv {
    overflow: hidden;
  }

  /* ---- 共通: 写真 ---- */
  .lp-mv__photo {
    overflow: hidden;
  }

  .lp-mv__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ---- 上段: 4枚均等 ---- */
  .lp-mv__row-top {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  /* ---- 下段: テキスト固定 + 写真2枚縮小 ---- */
  .lp-mv__row-bottom {
    min-height: 0;
    margin-block-start: -0.0625rem;
    display: grid;
    grid-template-columns: max-content 1fr 1fr;
  }

  /* ---- テキストエリア ---- */
  .lp-mv__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    /* background: var(--color-white); */
  }

  .lp-mv__heading {
    font-size: clamp(1.25rem, 0.8356rem + 1.768vw, 2.25rem);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }

  .lp-mv__heading .-top,
  .lp-mv__heading .-btm {
    display: block;
  }

  .lp-mv__heading .-btm {
    margin-block-start: 0.5rem;
  }

  .lp-mv__heading em {
    font-style: normal;
    color: var(--color-blue);
  }

  .lp-mv__heading .highlight img {
    position: relative;
    top: -0.25rem;
    max-block-size: clamp(1.875rem, 1.616rem + 1.105vw, 2.5rem);
  }

  .lp-mv__heading .highlight::before {
    content: '『';
    color: var(--color-blue);
  }

  .lp-mv__heading .highlight::after {
    content: '』';
    color: var(--color-blue);
  }

  .lp-mv__heading .highlight--bold {
    font-weight: 900;
    color: var(--color-blue);
    font-size: 1.1em;
  }

  .lp-mv__subheading {
    margin-block-start: 1rem;
    font-size: clamp(1.125rem, 1.0214rem + 0.442vw, 1.375rem);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .lp-mv-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
  }

  .lp-mv-cta>* {
    max-width: 23.75rem;
    width: 100%;
  }


  @media not (min-width: 640px) {
    .lp-mv__row-top {
      grid-template-columns: repeat(2, 1fr);
    }

    .lp-mv__row-bottom {
      grid-template-columns: 1fr 1fr;
    }

    .lp-mv__content {
      grid-column: 1 / -1;
      padding: 1.5rem 1rem;
    }

    .lp-mv__photo--3,
    .lp-mv__photo--4 {
      display: none;
    }
  }

  @media (min-width: 640px) {
    .lp-mv {
      display: grid;
      grid-template-rows: 1fr 1fr;
    }

  }

  @media (min-width: 1024px) {
    .lp-mv {
      max-block-size: 40rem;
    }

    .lp-mv-cta {
      flex-direction: row;
    }

    .lp-mv-cta .c-cta-btn__label {
      white-space: nowrap;
    }
  }


  /* =========================
    こんな『壁』を感じていませんか？
  ========================= */
  .lp-bad {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(min(17.5rem, 100%), 1fr));
    gap: 1.5rem 2.5rem;
  }

  .lp-bad__lists li {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 0.25rem;
  }

  .lp-bad__lists li:not(:first-child) {
    margin-top: 0.5rem;
  }


  .lp-bad__lists img {
    aspect-ratio: 1/1;
    width: 2rem;
  }

  .lp-bad__visual {
    height: 100%;
  }

  .lp-bad__visual img {
    object-fit: cover;
    height: 100%;
  }

  .lp-worry__arrow {
    margin-block-start: clamp(2rem, 1.5856rem + 1.768vw, 3rem);
    inline-size: clamp(8.75rem, 7.1961rem + 6.6298vw, 12.5rem);
    display: block;
    margin-inline: auto;
  }

  .lp-comparison {
    margin-block-start: clamp(2rem, 1.5856rem + 1.768vw, 3rem);
  }

  .lp-comparison-box {
    padding: clamp(1.5rem, 1.0856rem + 1.768vw, 2.5rem) clamp(0.75rem, 0.232rem + 2.2099vw, 2rem);
    background-color: var(--color-white);
    border-radius: var(--rounded-lg);
  }

  .lp-table {
    margin-top: 3rem;
  }

  .lp-table__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
  }

  /* ---- thead ---- */
  .lp-table__th-empty {
    width: 18%;
    background: transparent;
  }

  .lp-table__th {
    padding: 1.25rem 1rem;
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: var(--leading-snug);
    text-align: center;
    color: var(--color-white);
  }

  .lp-table__th--general {
    background: var(--color-gray-muted);
    border-radius: var(--rounded-sm) 0 0 0;
  }

  .lp-table__th--incentive {
    background: var(--color-blue);
    border-radius: 0 var(--rounded-sm) 0 0;
  }

  /* ---- tbody ---- */
  .lp-table__label {
    padding: 1.5rem 1rem;
    background: var(--color-snow);
    font-size: var(--text-lg);
    font-weight: 600;
    text-align: center;
    color: var(--color-gray);
  }

  tr:last-child .lp-table__label {
    border-radius: 0 0 0 var(--rounded-sm);
  }

  .lp-table__cell {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: var(--text-base);
    line-height: var(--leading-snug);
    vertical-align: middle;
  }

  .lp-table__cell--general {
    background-color: var(--color-white);
    color: var(--color-gray-muted);
    border-right: 1px solid var(--color-border);
  }

  .lp-table__cell--incentive {
    color: var(--color-blue);
    font-weight: 500;
    border-right: 1px solid var(--color-border);
  }

  tr:last-child .lp-table__cell--incentive {
    border-radius: 0 0 var(--rounded-sm) 0;
  }

  /* セル間ボーダー */
  .lp-table__table tbody tr+tr .lp-table__label,
  .lp-table__table tbody tr+tr .lp-table__cell {
    border-top: 1px solid var(--color-border);
  }

  /* ---- icon & highlight ---- */
  .lp-table__icon {
    display: block;
    margin: 0 auto 0.5rem;
  }

  .lp-table__highlight {
    background-color: var(--color-yellow);
    color: var(--color-blue);
    font-weight: 700;
  }

  @media (max-width: 767px) {
    .lp-table__th-empty {
      width: 25%;
    }

    .lp-table__th,
    .lp-table__label,
    .lp-table__cell {
      padding: 1rem 0.5rem;
      font-size: var(--text-sm);
    }

    .lp-table__icon {
      width: 1.75rem;
      height: 1.75rem;
    }
  }

  .lp-worry-end {
    margin-top: -4rem;
    position: relative;
    z-index: -1;
    display: grid;
    grid-template-areas: "stack";
    overflow: hidden;
  }

  .lp-worry-end>* {
    grid-area: stack;
  }

  .lp-worry-end__img {
    position: relative;
    height: 0;
    min-height: 100%;
  }

  .lp-worry-end__img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue-gradient);
  }

  .lp-worry-end__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lp-worry-end__text {
    position: relative;
    height: 100%;
    padding-block: clamp(6.25rem, 4.6961rem + 6.6298vw, 10rem) clamp(3.125rem, 2.3481rem + 3.3149vw, 5rem);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    place-content: center;
    color: var(--color-white);
  }

  /* =========================
    インセンティブ旅行がもたらす効果
  ========================= */
  .lp-point {}

  .lp-point-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
    gap: 1rem 2.5rem;
  }

  .lp-point-lists__item {
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--rounded-base);
    border: 1px solid var(--color-border);
  }

  .lp-point-lists__item img {
    display: block;
    margin-inline: auto;
    padding: 0.75rem;
    background-color: var(--color-snow);
    border-radius: var(--rounded-full);
  }

  .lp-point-lists__body {
    margin-top: 1rem;
  }

  .lp-point-lists__body>*:not(:first-child) {
    margin-top: 0.75rem;
  }

  /* =========================
    CTA
  ========================= */
  .lp-cta {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
    overflow: hidden;
  }

  .lp-cta>* {
    grid-area: stack;
  }

  .lp-cta__img {
    position: relative;
    height: 0;
    min-height: 100%;
  }

  .lp-cta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lp-cta-box {
    position: relative;
    height: 100%;
    padding: 3rem 1rem;
    display: grid;
    align-items: center;
    gap: 2.5rem 3rem;
  }

  @media (min-width: 1024px) {
    .lp-cta-box {
      grid-template-columns: auto 1fr;
    }
  }

  /* =========================
    実施企業の成功事例
  ========================= */
  .lp-case {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
    overflow: hidden;
  }

  .lp-case>* {
    grid-area: stack;
  }

  .lp-case__bg {
    height: 0;
    min-height: 100%;
  }

  .lp-case__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lp-case>.c-inner {
    padding-block: clamp(5rem, 3.9641rem + 4.4199vw, 7.5rem);
  }

  .lp-case__lists {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
    gap: 1rem 2.5rem;
  }

  .lp-case__item {
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
    grid-row: span 4;
    padding-block-end: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
  }

  .lp-case__item>*:not(img) {
    padding-inline: 1.5rem;
  }

  .lp-case__item>div {
    margin-block-start: 1.5rem;
  }

  .lp-case__item>p {
    margin-block-start: 1rem;
  }

  .lp-case__item>div>*:not(.lp-case__label) {
    margin-block-start: 1rem;
  }


  .lp-case__item img {
    width: 100%;
    object-fit: cover;
  }

  .lp-case__label span {
    max-width: fit-content;
    padding: 0.125rem 0.75rem 0.25rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-blue);
    border-radius: var(--rounded-full);
  }

  .lp-case-box {
    margin-block-start: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
    gap: 1rem;
  }

  .lp-case-box__item {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0.75rem;
    text-align: center;
    background-color: var(--color-snow);
    border-radius: var(--rounded-sm);
  }

  .lp-case-box__item> :not(:first-child) {
    flex: 1;
    place-content: center;
  }

  .lp-case-cta {
    margin-top: 5rem;
  }

  .lp-case-cta__text {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    justify-content: center;
    font-size: var(--text-xl);
    text-align: center;
    color: var(--color-blue);
  }

  .lp-case-cta__text svg {
    flex-shrink: 0;
    width: 0.4em;
    align-self: stretch;
  }

  .lp-case-cta__text svg line {
    stroke: var(--color-blue);
    stroke-width: 2;
    stroke-linecap: round;
  }

  /* .lp-case-cta__text::before {
    content: "";
    width: 1.5rem;
    height: 0.125rem;
    transform: rotate(60deg);
    background-color: var(--color-blue);
  }

  .lp-case-cta__text::after {
    content: "";
    width: 1.5rem;
    height: 0.125rem;
    transform: rotate(-60deg);
    background-color: var(--color-blue);
  } */

  .lp-case-cta .c-cta-btn {
    margin-top: 1.25rem;
  }

  /* =========================
    非公開事例あり
  ========================= */
  .lp-priv {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
    overflow: hidden;
  }

  .lp-priv>* {
    grid-area: stack;
  }

  .lp-priv__bg {
    z-index: -1;
    position: relative;
    height: 0;
    min-height: 100%;
  }

  .lp-priv__bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue-gradient);
  }

  .lp-priv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lp-priv__inner {
    position: relative;
    height: 100%;
    padding-block: clamp(2.5rem, 1.982rem + 2.2099vw, 3.75rem) clamp(6.25rem, 5.732rem + 2.2099vw, 7.5rem);
    text-align: center;
    place-content: center;
  }

  .lp-priv__inner>*:not(:first-child) {
    margin-top: 1rem;
  }

  /* =========================
    申し込み
  ========================= */
  .lp-contact {
    margin-block-start: -4rem;
  }

  .lp-contact-box {
    padding: 2.5rem 2rem;
    background-color: var(--color-white);
    border-radius: var(--rounded-lg);
  }

  .lp-contact-about {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(min(17.5rem, 100%), 1fr));
    gap: 1.5rem 2.5rem;
  }

  .lp-contact-about__material {
    display: block;
    margin-inline: auto;
    filter: drop-shadow(0px 0px 16px rgba(23, 87, 168, 0.12));
  }

  .lp-contact-about h3 {
    padding-block-end: 0.25rem;
    border-bottom: 2px solid var(--color-blue);
  }

  .lp-contact-about__lists {
    margin-block-start: 1.5rem;
  }

  .lp-contact-about__lists li {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 0.25rem;
  }

  .lp-contact-about__lists li:not(:first-child) {
    margin-block-start: 0.5rem;
  }

  .lp-contact-hsforms {
    max-inline-size: 64rem;
    margin-inline: auto;
    margin-block-start: 4rem;
  }
}