/* ==========================================================================
   OFFICIAL HIKARI — style.css
   FLOCSS記法 / モバイルファースト / ブレイクポイント768px
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-black: #333333;
  --color-black-light: #666666;
  --color-brown: #413934;
  --color-primary: #6ec3d1;
  --color-primary-dark: #448d99;
  --color-primary-light: #c8f1f7;
  --color-accent-yellow: #ffc567;
  --color-accent-orange: #f9ad33;
  --color-accent-orange-light: #fbf3e6;
  --color-accent-green: #00995e;
  --color-accent-purple: #552cb7;
  --color-accent-purple-light: #8180db;
  --color-accent-blue: #058cd7;
  --color-accent-pink: #fb7da8;
  --color-navy-dark: #25263b;
  --color-cream: #f9f6ee;
  --color-white: #ffffff;
  --color-accent-red: #FD5A46;
  --color-gray-light: #c6c4b3;
  --color-gray-worm: #bdbcb7;
  --color-gray-white: #f5f5f5;

  /* Typography */
  --font-en: "Outfit", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;

  /* Spacing */
  --section-pt: 3rem;
  --section-pb: 3rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);

  /* Transition */
  --transition: 0.3s ease;
}

@media (min-width: 768px) {
  :root {
    --section-pt: 6rem;
    --section-pb: 6rem;
  }
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
/* HEADER */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 25, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow var(--transition);
}
.l-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 5%;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 72px;
    padding: 0 3%;
  }
}

/* Header Title */
.l-header__title {
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.l-header__title a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 10px;
}
@media (min-width: 768px) {
  .l-header__title {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .l-header__title {
    font-size: 0.875rem;
  }
}

.l-header__logo {
  flex-shrink: 0;
  align-self: stretch;
  line-height: 1;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header__logo img {
  display: block;
  height: 80%;
  width: auto;
}

/* Nav */
.l-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: flex;
    margin-left: auto;
    margin-right: 1.5rem;
  }
  .l-header__nav-list {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
  }
  .l-header__nav-link {
    display: flex;
    align-items: center;
    align-self: stretch;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    overflow: hidden;
    color: transparent;
    text-shadow:
      0 0 0 var(--color-white),
      0 -1.5em 0 var(--color-white);
    transition: text-shadow 0.3s;
  }
  .l-header__nav-link:visited {
    color: var(--color-white);
  }
  .l-header__nav-link:hover {
    text-shadow:
      0 1.5em 0 var(--color-white),
      0 0 0 var(--color-accent-purple-light);
  }
}
@media (min-width: 1024px) {
  .l-header__nav-list {
    gap: 1.5rem;
  }
  .l-header__nav-link {
    font-size: 0.9rem;
  }
}

/* Hamburger */
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}

/* SP Nav Overlay */
.l-header__nav.is-open {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100svh - 64px);
  z-index: 200;
  background: rgba(30, 40, 55, 0.85);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-header__nav.is-open .l-header__nav-list {
  flex-direction: column;
  gap: 2.8rem;
  text-align: center;
}
.l-header__nav.is-open .l-header__nav-link {
  font-size: 1.2rem;
  color: #fff;
  padding: 0.6rem 2rem;
  display: block;
}

/* FOOTER */
.l-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.8);
}
.l-footer__top {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .l-footer__top {
    padding: 4rem 0;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
    gap: 4rem;
  }
}
.l-footer__brand {
  flex-shrink: 0;
}
.l-footer__logo {
  display: inline-block;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.l-footer__logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}
.l-footer__logo-en {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.l-footer__logo-hikari {
  font-size: 1.5rem;
  color: var(--color-accent-yellow);
  font-weight: 900;
}
.l-footer__catch {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}
.l-footer__address {
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.l-footer__tel {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent-yellow);
}

.l-footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  flex: 1;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .l-footer__nav {
    grid-template-columns: repeat(2, auto);
    gap: 1.5rem;
  }
}
.l-footer__nav-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.l-footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.l-footer__nav-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.l-footer__nav-col a:hover {
  color: var(--color-white);
}

.l-footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.l-footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Components — Buttons
   -------------------------------------------------------------------------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition),
    transform 0.15s ease,
    box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.c-btn:hover {
  transform: translateY(-2px);
}
.c-btn:active {
  transform: translateY(0);
}

.c-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 101, 159, 0.3);
}
.c-btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(0, 101, 159, 0.4);
}

.c-btn--outline {
  background: var(--color-white-pure);
  color: var(--color-accent-green);
  border: 2px solid var(--color-accent-green);
}
.c-btn--outline:hover {
  background: var(--color-accent-green);
  color: var(--color-white);
}

.c-btn--ghost {
  background: #fff;
  color: var(--color-accent-orange);
  border: 1.5px solid var(--color-black);
}
.c-btn--ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.c-btn--white {
  background: var(--color-white);
  color: var(--color-primary-dark);
}
.c-btn--white:hover {
  background: #f0f0f0;
}

.c-btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.c-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.c-btn--header {
  background: var(--color-accent-orange);
  color: var(--color-black);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.c-btn--header:hover {
  opacity: 0.7;
  transform: none;
}

.l-header__cta-btn {
  display: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .l-header__cta-btn {
    display: inline-flex;
  }
}

.c-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.c-btn--block {
  width: 100%;
}

/* Section Labels */
.c-section-label {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.c-section-title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid;
  padding-bottom: 3px;
}
@media (min-width: 768px) {
  .c-section-title {
    font-size: 2rem;
  }
}
.c-section-desc {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  background: transparent;
}

/* Page Top */
.c-page-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--color-accent-purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 50;
}
.c-page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.c-page-top:hover {
  background: var(--color-accent-purple-light);
}
@media (max-width: 767px) {
  .c-page-top {
    bottom: 4.5rem;
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  .u-pc-only {
    display: inline;
  }
}
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fade animations */
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.js-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js-fade-up.is-visible,
.js-fade-left.is-visible,
.js-fade-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   FV Section — リニューアル版   -------------------------------------------------------------------------- */
.p-fv {
  position: relative;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-cream);
}
.p-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("images/fv_bg.webp") left center / auto 50% repeat-x;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  animation: fv-bg-scroll 180s linear infinite;
}
@keyframes fv-bg-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .p-fv::before {
    background-size: auto 50%;
    background-position: left 90%;
  }
}
@media (min-width: 768px) {
  .p-fv {
    padding-top: 72px;
    padding-bottom: 72px;
    align-items: center;
  }
}

/* 背景装飾は削除、GSAP カーテン演出に統一 */

/* Inner layout */
.p-fv__logo-wrap {
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid #333333;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.p-fv__logo-top {
  height: 48px;
  width: auto;
  display: inline-block;
}
.p-fv__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.p-fv__right {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .p-fv__inner {
    flex: none;
    width: 100%;
    max-width: var(--inner-max-width);
    padding-right: var(--padding-pc);
    padding-left: var(--padding-pc);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    column-gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .p-fv__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .p-fv__inner {
    grid-template-columns: 1fr minmax(0, 320px);
    justify-content: center;
    align-items: stretch;
  }
}

/* コンテンツ（左） */
.p-fv__content {
  flex: 3;
  max-width: 600px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .p-fv__content {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ラベル */
.p-fv__label {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-footer-bg);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  /* opacity / transform / transition は GSAP が管理*/
}
.p-fv__label-dot {
  width: 48px;
  height: 48px;
  background: #feeea9;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: -20px;
}
. {
  transform: translateY(-10px);
}

/* タイトル */
.p-fv__title {
  margin-bottom: 0.25rem;
}
.p-fv__title-sub {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-text);
  margin-bottom: 0.5rem;
  /* opacity / transform / transition は GSAP が管理*/
}
.p-fv__title-main {
  display: block;
}
.p-fv__title-line {
  display: block;
  font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-accent-purple);
  /* opacity / transform / transition は GSAP が管理*/
}
@media (max-width: 767px) {
  .p-fv__title-line {
    font-size: 8vw;
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-fv__title-line {
    font-size: clamp(1.8rem, 4.6875vw, 2.4rem);
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .p-fv__title-line {
    font-size: 4.17vw;
    white-space: nowrap;
  }
}
@media (min-width: 1440px) {
  .p-fv__title-line {
    font-size: 3.75rem;
  }
}
.p-fv__title-accent {
  color: var(--color-text);
}

/* 本文テキスト */
.p-fv__text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  /* opacity / transform / transition は GSAP が管理*/
}
.p-fv__text strong {
  color: var(--color-footer-bg);
  font-weight: 700;
}

/* CTAボタン群 */
.p-fv__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  /* opacity / transform / transition は GSAP が管理*/
}
.p-fv__btns .c-btn {
  width: 100%;
  text-align: center;
}
.p-fv__btns .c-btn--outline {
  width: 100%;
}
@media (min-width: 768px) {
  .p-fv__btns {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-fv__btns .c-btn--outline {
    width: 70%;
  }
}

/* メインCTAボタン ラッパー（バッジのはみ出し用） */
.p-fv__cta-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .p-fv__cta-wrap {
    width: 100%;
    max-width: 300px;
  }
}

/* 指アイコン */
.p-fv__cta-click {
  position: absolute;
  bottom: -24px;
  right: 16px;
  width: 48px;
  height: 48px;
  pointer-events: none;
  transform: rotate(-20deg);
}

/* 「今すぐ」はみ出しバッジ */
.p-fv__cta-badge {
  position: absolute;
  top: -13px;
  left: 20px;
  z-index: 1;
  display: inline-block;
  padding: 2px 12px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  border-radius: 100px;
  border: 2px solid var(--color-black);
  box-shadow: 2px 2px 0 var(--color-black);
  white-space: nowrap;
  pointer-events: none;
}

/* メインCTAボタン */
.p-fv__cta-btn {
  background: var(--color-accent-orange);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 100px;
  padding: 1rem 2rem;
  border: 2.5px solid var(--color-black);
  box-shadow: 4px 4px 0 var(--color-black);
  width: 100%;
  text-align: center;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}
.p-fv__cta-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-black);
}
@media (min-width: 768px) {
  .p-fv__cta-badge {
    font-size: 0.8rem; /* 16px (root 20px) */
  }
  .p-fv__cta-btn {
    font-size: 0.9rem; /* 18px (root 20px) */
  }
}

/* テキストリンク（料金プランを見る） */
.p-fv__text-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0.3em;
  color: var(--color-black);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 20px 0 4px;
  border-bottom: 2px solid var(--color-accent-orange);
  transition: opacity 0.2s ease;
}
.p-fv__text-link::after {
  content: "→";
  font-size: 1em;
  display: inline-block;
  animation: arrow-bounce 1.2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
.p-fv__text-link:hover {
  opacity: 0.6;
}

/* チェックポイント */
.p-fv__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  /* opacity / transform / transition は GSAP が管理*/
}
.p-fv__point {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}
.p-fv__point svg circle {
  fill: var(--color-accent-pink);
}
.p-fv__point svg path {
  stroke: var(--color-white);
}

/* ビジュアル（右カラム） */
.p-fv__visual {
  display: none;
}
@media (min-width: 768px) {
  .p-fv__visual {
    display: block;
    position: relative;
    align-self: center;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .p-fv__visual {
    margin: 0 auto;
  }
}

/* イラストラッパー（右カラム円の相対配置） */
.p-fv__illust-wrap {
  position: relative;
  height: 420px;
  overflow: visible;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-fv__illust-wrap {
    height: auto;
    aspect-ratio: 480 / 420;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* 正円の線SVG */
.p-fv__illust-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
  color: var(--color-text-sub);
}

/* イラスト：右カラム基準の絶対配置・円形 */
.p-fv__illust {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
  padding: 22px;
  border: 2px solid #333333;
}
.p-fv__illust img {
  width: 100%;
  height: auto;
  display: block;
}

/* モバイル */
.p-fv__illust--1 {
  width: 95px;
  height: 95px;
  top: 63px;
  left: 14%;
  z-index: 3;
}
.p-fv__illust--2 {
  width: 95px;
  height: 95px;
  top: 35%;
  right: 26px;
  z-index: 2;
}
.p-fv__illust--3 {
  width: 95px;
  height: 95px;
  bottom: 66px;
  left: 16%;
  z-index: 1;
}

/* PC */
@media (min-width: 768px) {
  .p-fv__illust--1,
  .p-fv__illust--2,
  .p-fv__illust--3 {
    --illust-size: clamp(90px, 7.64vw, 110px);
    width: var(--illust-size);
    height: var(--illust-size);
    margin-left: calc(var(--illust-size) / -2);
    margin-top: calc(var(--illust-size) / -2);
  }
  .p-fv__illust--1 {
    top: 10.7%;
    left: 45%;
    right: auto;
    bottom: auto;
  }
  .p-fv__illust--2 {
    top: 67.9%;
    left: 73.9%;
    right: auto;
    bottom: auto;
  }
  .p-fv__illust--3 {
    top: 67.9%;
    left: 16.1%;
    right: auto;
    bottom: auto;
  }
}

/* プレースホルダー時：SVGを表示 */
.p-fv__illust.is-placeholder img {
  display: none;
}

/* is-visible 追加後：浮遊アニメーション開始！GSAP の transform いclearProps でクリアされた後に有効になる！*/
.p-fv__illust--1.is-visible {
  animation: fv-float1 4s ease-in-out 1s infinite;
}
.p-fv__illust--2.is-visible {
  animation: fv-float2 4.5s ease-in-out 1.3s infinite;
}
.p-fv__illust--3.is-visible {
  animation: fv-float3 5s ease-in-out 1.6s infinite;
}
@keyframes fv-float1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.3deg);
  }
}
@keyframes fv-float2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-0.2deg);
  }
}
@keyframes fv-float3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.2deg);
  }
}

/* Ticker */
.p-fv__ticker {
  position: relative;
  z-index: 2;
  background: var(--color-cream);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-fv__ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: ticker 55s linear infinite;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.p-fv__ticker-item {
  display: inline-block;
  background: #fff;
  color: var(--color-text);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.3rem 1rem;
  line-height: 1;
}
.p-fv__ticker-item::before {
  content: "# ";
  font-weight: 700;
}
.p-fv__ticker-inner .p-fv__ticker-item:nth-child(3n + 1)::before {
  color: var(--color-accent-yellow);
}
.p-fv__ticker-inner .p-fv__ticker-item:nth-child(3n + 2)::before {
  color: var(--color-accent-orange);
}
.p-fv__ticker-inner .p-fv__ticker-item:nth-child(3n + 3)::before {
  color: var(--color-accent-pink);
}
.p-fv__ticker-inner--reverse {
  animation-name: ticker-reverse;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ticker-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.p-cta-band {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.p-cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .p-cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
.p-cta-band__text {
  font-size: 0.95rem;
  color: var(--color-text-sub);
}
.p-cta-band__text strong {
  color: var(--color-text);
}
.p-cta-band__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.p-cta-band__btns .c-btn--outline {
  background: #333333;
  color: #ffd740;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid #333333;
  box-shadow: none;
}
.p-cta-band__btns .c-btn--outline:hover {
  background: #ffd740;
  color: #333333;
  box-shadow: none;
  transform: none;
}
@media (min-width: 768px) {
  .p-cta-band__btns {
    flex-direction: row;
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.p-about {
  padding: var(--section-pt) 0 var(--section-pb);
  background: var(--color-white);
}

/* ヘッダー（左側） */
.p-about__head {
  text-align: left;
  position: relative;
  z-index: 1;
}

/* インターネット図解画像 */
.p-about__img {
  background: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.p-about__img-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #333333;
  border-radius: 0.5rem;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .p-about__img-photo {
    padding: 1.875rem;
  }
}

/* フロー図の波形背景画像 */
.p-about__flow {
  background: url("images/bg_wave.webp") center / 100% 100% no-repeat;
  margin-bottom: 2.5rem;
  padding: 3rem 1.25rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50% + 1.25rem);
  padding-right: calc(50vw - 50% + 1.25rem);
  /* SP: 縦積み */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (min-width: 768px) {
  .p-about__flow {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 4rem 2.5rem;
  }
}

/* ノード */
.p-about__flow-node {
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .p-about__flow-node {
    flex: 1;
    max-width: 220px;
  }
  .p-about__flow-node--main {
    flex: 1.6;
    max-width: 340px;
  }
}

/* ボックス */
.p-about__flow-box {
  height: 100%;
  background: var(--color-white, #fffef6);
  border: 3px solid var(--color-accent-yellow);
  border-radius: 10px;
  padding: 1.5rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.p-about__flow-box--main {
  border-color: var(--color-accent-yellow);
}

/* イラスト画像 */
.p-about__flow-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 768px) {
  .p-about__flow-img {
    width: 120px;
    height: 120px;
  }
}

/* ラベル（NTT / お客様） */
.p-about__flow-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0.25rem;
}

/* 全部まとめてタグ */
.p-about__flow-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fd5a46;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* オフィシャル光ブランド名 */
.p-about__flow-brand {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
}
.p-about__flow-brand-main {
  color: #413934;
}
.p-about__flow-brand-accent {
  color: #552cb7;
}

/* 説明テキスト */
.p-about__flow-desc {
  font-size: 0.7rem;
  color: var(--color-text-sub, #666);
  line-height: 1.7;
  margin-top: 0.25rem;
}

/* 矢印（SP: 下向き、PC: 右向き） */
.p-about__flow-arrow {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
/* SP: シャフト（縦線） */
.p-about__flow-arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 28px;
  background: var(--color-accent-yellow);
}
/* SP: 矢じり（下向き三角） */
.p-about__flow-arrow::after {
  content: "";
  display: block;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28px solid var(--color-accent-yellow);
}
@media (min-width: 768px) {
  .p-about__flow-arrow {
    flex-direction: row;
    align-self: center;
    padding: 0 4px;
  }
  /* PC: シャフト（横線） */
  .p-about__flow-arrow::before {
    width: 32px;
    height: 16px;
  }
  /* PC: 矢じり（右向き三角） */
  .p-about__flow-arrow::after {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 28px solid var(--color-accent-yellow);
    border-right: none;
  }
}

/* ---------- about アニメーション（PC のみ） ---------- */
@media (min-width: 768px) {
  #js-about-title {
    opacity: 0;
    transform: scale(0.6);
    transform-origin: center;
    transition:
      opacity 0.8s ease,
      transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.3s;
    display: inline-block;
  }
  #js-about-title.is-pop {
    opacity: 1;
    transform: scale(1);
  }
}

/* 3ポイント*/
.p-about__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p-about__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 1.25rem;
    row-gap: 0;
  }
}
.p-about__point {
  position: relative;
  border: 1px solid #333333;
  overflow: visible;
  background: var(--color-white);
  margin-top: 2rem;
}
.p-about__point-icon {
  position: absolute;
  top: -1.75rem;
  left: -0.75rem;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(2px 3px 4px rgba(0, 0, 0, 0.25));
}
@media (min-width: 768px) {
  .p-about__point {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
  .p-about__point-body {
    display: contents;
  }
}
.p-about__point-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  background: var(--color-accent-purple-light);
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-bottom: 1px solid #333333;
  color: var(--color-white);
}
.p-about__point-body p {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 1.7;
  padding: 0.75rem 1rem;
  background-color: #fff;
}

/* --------------------------------------------------------------------------
   Features（共感の解消）！   -------------------------------------------------------------------------- */
.p-features {
  padding: var(--section-pt) 0 0;
  background: var(--color-cream, #fbf3e6);
  position: relative;
  overflow: hidden;
}

/* 矢印ラッパー */
.p-features__arrows-wrap {
  position: relative;
  overflow: visible;
}

/* 背景流れテキスト */
.p-features__bg-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.p-features__bg-marquee-inner {
  display: inline-flex;
  gap: 2rem;
  animation: features-marquee 240s linear infinite;
}
.p-features__bg-word {
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Barlow Condensed", var(--font-en);
}
@media (min-width: 768px) {
  .p-features__bg-word {
    font-size: 18rem;
  }
}
.p-features__bg-word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(102, 102, 102, 0.2);
}
.p-features__bg-word--fill {
  color: rgba(102, 102, 102, 0.12);
}
@media (min-width: 768px) {
  .p-features__bg-word {
    font-size: 9rem;
  }
}
@keyframes features-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 2ブロック共通 */
.p-features__block {
  position: relative;
  z-index: 2;
}
.p-features__block:last-child {
}

.p-features__block-head {
  margin-bottom: 2rem;
}
.p-features__block-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.p-features__block-eyebrow--problem {
  background: none;
  color: var(--color-text);
  padding: 0;
  padding-left: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .p-features__block-eyebrow--problem {
    font-size: 1rem;
  }
}
/* 後ろの四角（黒・右上にずらす！） */
.p-features__block-eyebrow--problem::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(calc(-50% - 3px));
  width: 14px;
  height: 14px;
  background: var(--color-accent-red);
  border-radius: 2px;
  z-index: 2;
}
/* 前の四角（枠線を左下にずらす！ */
.p-features__block-eyebrow--problem::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% + 3px));
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-text);
  background: #fff;
  border-radius: 2px;
}
.p-features__block-eyebrow--solution {
  background: var(--color-primary-light);
  color: var(--color-text);
}

/* 共感カード！列グリッド */
/* 共感カード：吹き出しスタイル */
.p-features__pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-features__pain-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .p-features__pain-grid {
    max-width: 1280px;
    gap: 2.5rem;
  }
}

.p-features__pain-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  border: 2px solid var(--color-text);
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 1rem;
}

/* 奇数カード：左下に尻尾のRotated square方式！ */
.p-features__pain-card--odd::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 20%;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  transform: translateX(-50%) rotate(45deg);
}

/* 偶数カード：右下に尻尾 Rotated square方式！ */
.p-features__pain-card--even::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 20%;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-left: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  transform: translateX(50%) rotate(-45deg);
}

/* 768px以上：尻尾なし・正円形 */
@media (min-width: 768px) {
  .p-features__pain-card--odd::before,
  .p-features__pain-card--odd::after,
  .p-features__pain-card--even::before,
  .p-features__pain-card--even::after {
    display: none;
  }
  .p-features__pain-card {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .p-features__pain-card {
    padding: 2.5rem;
    gap: 1.25rem;
  }
}

.p-features__pain-illust {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  color: var(--color-accent-purple);
}
@media (min-width: 768px) {
  .p-features__pain-illust {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .p-features__pain-illust {
    width: 96px;
    height: 96px;
  }
}

.p-features__pain-card strong {
  text-decoration: underline;
  text-decoration-color: var(--color-accent-red);
  text-underline-offset: 3px;
}
.p-features__pain-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-features__pain-card p {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}
@media (min-width: 1200px) {
  .p-features__pain-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.p-features__pain-card strong {
  color: #1b2044;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-accent-yellow);
  text-underline-offset: 3px;
  text-decoration-thickness: 3px;
}

/* 共感→解消 三角矢印 */
.p-features__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 1.5rem 0 0.5rem;
  position: relative;
  z-index: 1;
}
.p-features__arrows svg polygon {
  fill: var(--color-accent-orange);
}

/* スケールアップ登場アニメーション */
.js-scale-up {
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-scale-up.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* 解消バッジ（ブロック外の中央） */
.p-features__solution-badge {
  width: 100%;
  margin: 30px auto 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 5vw;
  font-weight: 900;
  color: var(--color-accent-red);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-features__solution-badge {
    font-size: 3vw;
  }
}
@media (min-width: 1200px) {
  .p-features__solution-badge {
    font-size: 2.5rem;
  }
}
.p-features__block--solution {
  position: relative;
  padding: 0;
  border: none;
  overflow: hidden;
  /* 画面幅いっぱい */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* バックグラウンド画像 — filterで明るく！ */
.p-features__block--solution::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/features_bg.webp") center/cover no-repeat;
  filter: brightness(1.6) contrast(0.9) saturate(0.8);
  z-index: 0;
}
/* ダークオーバーレイ */
.p-features__block--solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, #3a3c5a 100%);
  opacity: 0.9;
  z-index: 1;
}
.p-features__solution-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-features__solution-inner {
    padding: 4rem 5%;
  }
}
.p-features__solution-title {
  color: var(--color-white) !important;
}
.p-features__solution-title em {
  font-style: normal;
  color: var(--color-accent-yellow);
}
.p-features__block--solution .p-features__block-eyebrow--solution {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-accent-yellow);
  border: 1px solid rgba(255, 238, 84, 0.4);
}
.p-features__block--solution .p-features__block-eyebrow--problem {
  color: #fff;
}
.p-features__block--solution .p-features__block-head {
  margin-bottom: 2.5rem;
}

.p-features__solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .p-features__solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .p-features__solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-features__solution-card {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.p-features__solution-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition);
}
.p-features__solution-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.p-features__solution-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent-yellow);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.p-features__solution-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  line-height: 1.4;
}
.p-features__solution-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.p-pricing {
  padding: 2rem 0.9375rem;
  background: var(--color-white);
  margin-block: 1.5rem;
}
.p-pricing__head {
  text-align: center;
}
@media (min-width: 768px) {
  .p-pricing__head {
    text-align: left;
  }
  .p-pricing__inner {
    max-width: 1200px;
    margin-inline: auto;
  }
}
.p-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .p-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .p-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-pricing__card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  background: var(--color-white);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.p-pricing__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.p-pricing__card--popular {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 101, 159, 0.12);
}
.p-pricing__card-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.p-pricing__card-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 0.75rem;
}
.p-pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.p-pricing__card-currency {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}
.p-pricing__card-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}
.p-pricing__card-per {
  font-size: 0.8rem;
  color: var(--color-text-sub);
}
.p-pricing__card-speed {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.p-pricing__card-speed strong {
  color: var(--color-text);
}
.p-pricing__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.p-pricing__card-list li {
  font-size: 0.875rem;
  padding-left: 1.5em;
  position: relative;
}
.p-pricing__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.p-pricing__card-list li.is-included::before {
  background: var(--color-accent-green);
  box-shadow:
    inset 0 0 0 2px white,
    0 0 0 1px var(--color-accent-green);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3 6L7 2' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-accent-green);
}
.p-pricing__card-list li.is-not {
  color: var(--color-text-sub);
  text-decoration: line-through;
}
.p-pricing__card-list li.is-not::before {
  background: #ddd;
}

.p-pricing__note {
  font-size: 0.78rem;
  color: var(--color-text-sub);
}
.p-pricing__note a {
  text-decoration: underline;
}
.p-pricing__more {
  text-align: center;
  margin-top: 1.5rem;
}
.p-pricing__more .c-btn {
  width: 100%;
  box-sizing: border-box;
  background: var(--color-accent-purple);
  color: var(--color-white);
  border: 1.5px solid var(--color-accent-purple);
}
.p-pricing__more .c-btn:hover {
  background: var(--color-white);
  color: var(--color-accent-purple);
  border-color: var(--color-accent-purple);
}
.p-pricing__arrow {
  display: inline-block;
  animation: arrow-lr 1.2s ease-in-out infinite;
}
@keyframes arrow-lr {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
@media (min-width: 768px) {
  .p-pricing__more .c-btn {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* バナー画像 */
.p-pricing__banner {
  margin-bottom: 1.5rem;
  border: 1px solid #333333;
  border-radius: 12px;
  background: var(--color-white-pure);
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-pricing__banner {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-pricing__banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Voice
   -------------------------------------------------------------------------- */
.p-voice {
  padding: var(--section-pt) 0 var(--section-pb);
  background: var(--color-cream);
}
.p-voice__head {
  text-align: center;
  position: relative;
  z-index: 2;
}
.p-voice__slider-wrap {
  background: url("images/bg_wave.webp") center / 100% 100% no-repeat;
  padding: 1.5rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.p-voice__slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .p-voice__slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .p-voice__slider {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-voice__card {
  background: #fff;
  border-radius: 0;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.p-voice__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.p-voice__card-stars {
  color: var(--color-accent-yellow);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.5px #cca800;
}
.p-voice__card-text {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
}
.p-voice__card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}
.p-voice__card-area {
  font-size: 0.78rem;
  color: var(--color-text-sub);
}
.p-voice__card-type {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
}
.p-voice__more {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
.p-voice__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent-orange);
  border: 1.5px solid var(--color-black);
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.p-voice__more-btn:hover {
  background: var(--color-accent-purple, #552cb7);
  border-color: var(--color-accent-purple, #552cb7);
  color: #fff;
}
@media (min-width: 768px) {
  .p-voice__more-btn {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   CTA Bottom
   -------------------------------------------------------------------------- */
.p-cta-bottom {
  position: relative;
  overflow: visible;
  background-color: var(--color-white);
  padding: var(--section-pt) 0 var(--section-pb);
  color: var(--color-text);
  text-align: center;
}

/* 星デコレーション */
.p-cta-bottom__star {
  display: none;
}
@media (min-width: 768px) {
  .p-cta-bottom__star {
    display: block;
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transform: translate(-36px, 36px);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .p-cta-bottom__star.is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }
  .p-cta-bottom__star--1 {
    top: 8%;
    right: 6%;
    width: 120px;
    height: 120px;
    transition-delay: 0s;
  }
  .p-cta-bottom__star--2 {
    top: 42%;
    left: 4%;
    width: 88px;
    height: 88px;
    transition-delay: 0.15s;
  }
  .p-cta-bottom__star--3 {
    bottom: 10%;
    right: 10%;
    width: 96px;
    height: 96px;
    transition-delay: 0.3s;
  }
}
.p-cta-bottom__bg {
  display: none;
}

.p-cta-bottom__inner {
  position: relative;
  z-index: 1;
}
.p-cta-bottom__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-red);
  margin-bottom: 0.75rem;
  font-family: var(--font-en);
}
.p-cta-bottom__label::before,
.p-cta-bottom__label::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.p-cta-bottom__label::before {
  transform: rotate(45deg);
}
.p-cta-bottom__label::after {
  transform: rotate(-45deg);
}
.p-cta-bottom__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-accent-purple, #552cb7);
}
.p-cta-bottom__text {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.p-cta-bottom__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}
.p-cta-bottom__btns .c-btn {
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  color: var(--color-text);
}
.p-cta-bottom__contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.p-cta-bottom__text-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent-green, #7bc58c);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-cta-bottom__text-link:hover {
  opacity: 0.7;
}
.p-cta-bottom__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.p-cta-bottom__tel svg {
  flex-shrink: 0;
}
.p-cta-bottom__tel-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent-red);
  letter-spacing: 0.05em;
}
.p-cta-bottom__tel-hours {
  font-size: 0.8rem;
  color: var(--color-text);
  opacity: 1;
}
@media (min-width: 768px) {
  .p-cta-bottom__label {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   FV カーテン演出オーバーレイ（GSAP）   -------------------------------------------------------------------------- */

/* ラッパー（FVセクションを覆う絶対配置レイヤー） */
.p-curtain {
  position: absolute;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

/*
  カーテンパネル
  clip-path で対角線（左下から右上）に沿って三角形に切り出す、2枚合わせると隙間なく画面全体を覆う、*/
.p-curtain__panel {
  position: absolute;
  inset: 0;
  background: var(--color-navy-dark);
  will-change: transform; /* GPU合成を強制、clip-path の境界線をシャープに保つ */
}
.p-curtain__panel--left {
  clip-path: polygon(0% 0%, 100% 0%, 100% 3px, 3px 100%, 0% 100%);
} /* 左上三角：対角線を3px右下へオフセットして隙間を消す */
.p-curtain__panel--right {
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
} /* 右下三角*/

/*
  対角ライン
  left:0 / bottom:0 で左下コーナーを起点にする、transform-origin: left center が鍵、scaleX: 0→1 で左端を固定したまま右上方向へ伸びていく、*/
.p-curtain__line {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 300vmax; /* 対角線を超える長さ！overflow:hidden でクリップ */
  height: 8px;
  transform-origin: left center;
  background: linear-gradient(
    to right,
    rgba(240, 212, 91, 0.2) 0%,
    rgba(240, 212, 91, 0.6) 40%,
    #f0d45b 70%,
    #fdb6df 88%,
    #fffef6 96%,
    transparent 100%
  );
  /* box-shadowのぼかしを削除 */
}

/* ==========================================================================
   Privacy Policy — プライバシーポリシーページ
   ========================================================================== */

.p-policy {
  padding: 1rem 0 var(--section-pb);
  background: var(--color-cream, #fbf3e6);
}

.p-policy__body {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 0;
}

@media (min-width: 768px) {
  .p-policy__body {
    max-width: 1200px;
  }
}

/* セクション区切り線 */
.p-policy__section {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.p-policy__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 見出し */
.p-policy__h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-text);
  padding: 0.6rem 1rem;
  background: var(--color-border);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .p-policy__h2 {
    font-size: 1.375rem;
  }
}

.p-policy__h3-major {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 0.5rem;
  margin: 2rem 0 1rem;
  padding-inline: 0.9375rem;
}

@media (min-width: 768px) {
  .p-policy__h3-major {
    font-size: 1.125rem;
  }
}

.p-policy__h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.p-policy__h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.p-policy__h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 0.5rem;
}

/* テキスト */
.p-policy__lead {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 500;
  padding-inline: 0.9375rem;
}

.p-policy__text {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-inline: 0.9375rem;
}

@media (min-width: 768px) {
  .p-policy__lead,
  .p-policy__text {
    padding-inline: 1rem;
  }
}

.p-policy__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* リスト*/
.p-policy__list {
  margin: 0.5rem 0 1rem;
  padding-inline: 1.5rem;
}

.p-policy__list li {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  list-style: none;
  padding-left: 0;
}

.p-policy__list--ordered {
  counter-reset: policy-ol;
}

.p-policy__list--ordered > li {
  counter-increment: policy-ol;
  position: relative;
  padding-left: 1.75rem;
}

.p-policy__list--ordered > li::before {
  content: counter(policy-ol) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-text);
}

.p-policy__list--decimal {
  counter-reset: policy-decimal;
  padding-right: 0;
}

.p-policy__list--decimal > li {
  counter-increment: policy-decimal;
  position: relative;
  padding-left: 1.5rem;
  padding-right: 0;
}

.p-policy__list--decimal > li::before {
  content: counter(policy-decimal) ".";
  position: absolute;
  left: 0;
  color: var(--color-text-sub);
}

/* サブセクション — 字下げ */
.p-policy__sub-section {
  margin: 1.25rem 0 1.25rem;
  padding-inline: 0.9375rem;
}

@media (min-width: 768px) {
  .p-policy__sub-section {
    margin-left: 1.5rem;
    padding-left: 1.25rem;
  }
}

/* 日付・署名 */
.p-policy__meta {
  margin-top: 1.5rem;
  padding-block: 1rem;
  padding-inline: 0.9375rem;
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 2;
}

/* お問合せ窓口ボックス */
.p-policy__contact-box {
  background: var(--color-bg-gray);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text);
}

.p-policy__contact-box a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-policy__contact-box-ttl {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

/* 安全管理配置ブロック */
.p-policy__measure {
  margin-bottom: 1.25rem;
}

.p-policy__measure-ttl {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   下層ページ共通   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Hero
   -------------------------------------------------------------------------- */
.p-page-hero {
  position: relative;
  padding-top: calc(60px + 2.5rem);
  padding-bottom: 1.5rem;
  overflow: hidden;
  background-color: var(--color-cream);
}

@media (min-width: 768px) {
  .p-page-hero {
    padding-top: calc(72px + 3.5rem);
    padding-bottom: 1rem;
  }
}

.p-page-hero .l-inner {
  position: relative;
  z-index: 1;
}

.p-page-hero__en {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-top: 0.4rem;
}

@media (min-width: 768px) {
  .p-page-hero__en {
    font-size: 1rem;
  }
}

.p-page-hero__title {
  font-size: 6.4vw;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 768px) {
  .p-page-hero__title {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Section Head — 下層ページ共通見出し！   -------------------------------------------------------------------------- */
.p-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .p-section-head {
    margin-bottom: 3rem;
  }
}

.p-section-head__en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.p-section-head__ja {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .p-section-head__ja {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Current nav — 下層ページ共通！   -------------------------------------------------------------------------- */
.l-header__nav-link.is-current {
  font-weight: 700;
}
.l-header__nav-link.is-current:visited {
  color: var(--color-white);
}

/* ==========================================================================
   company.html — 会社概要ページ
   ========================================================================== */
.p-company-msg {
  padding: 1rem 0 var(--section-pb);
  background: var(--color-cream, #fbf3e6);
}

.p-company-msg__inner {
  max-width: 840px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .p-company-msg__inner {
    max-width: 1200px;
  }
}

.p-company-msg__label {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  background: var(--color-bg-gray);
  padding: 1.25rem 1.5rem;
}

.p-company-msg__label-en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.p-company-msg__label-ja {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .p-company-msg__label-ja {
    font-size: 1.5rem;
  }
}

.p-company-msg__body {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 1.5rem;
  margin: 0;
}

@media (min-width: 768px) {
  .p-company-msg__body {
    padding: 2.25rem 2.5rem;
  }
}

.p-company-msg__body p {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text);
}

.p-company-msg__sig {
  margin-top: 1.25rem;
  text-align: right;
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  font-style: normal;
}

.p-company-msg__sig cite {
  font-style: normal;
  font-weight: 700;
  color: var(--color-text);
  margin-left: 0.5rem;
}

.p-company-info {
  padding: var(--section-pt) 0 var(--section-pb);
  background: var(--color-cream, #fbf3e6);
}

.p-company-info__table-wrap {
  max-width: 840px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.p-company-info__table-wrap::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .p-company-info__table-wrap {
    max-width: 100%;
  }
}

.p-company-info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.p-company-info__table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.p-company-info__table tbody tr:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .p-company-info__table th,
  .p-company-info__table td {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .p-company-info__table th {
    white-space: normal;
    background: var(--color-gray-white);
    padding-top: 0.75rem;
    font-size: 0.8125rem;
  }
  .p-company-info__table td {
    padding-bottom: 0.75rem;
  }
}
.p-company-info__table th,
.p-company-info__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .p-company-info__table th,
  .p-company-info__table td {
    padding: 1.125rem 1.75rem;
  }
}

.p-company-info__table th {
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-gray-white);
  white-space: nowrap;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .p-company-info__table th {
    width: 12em;
    font-size: 0.9375rem;
  }
}

.p-company-info__table td {
  color: var(--color-text);
}

.p-company-info__table td a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-company-info__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  margin-top: 0.4rem;
}

.p-company-map {
  padding-bottom: 4rem;
  background: var(--color-cream, #fbf3e6);
}

.p-company-map__frame {
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 7;
}

@media (min-width: 768px) {
  .p-company-map__frame {
    max-width: 1200px;
  }
}

.p-company-map__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.p-provider__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .p-provider__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.p-provider__content {
  flex: 1;
  min-width: 0;
}

/* Provider Cards */
.p-provider-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-provider-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-provider-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.p-provider-card__head {
  background: var(--color-primary);
  padding: 1rem 1.25rem;
}
.p-provider-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}
.p-provider-card__line {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}
.p-provider-card__list {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-provider-card__item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-provider-card__label {
  font-size: 0.85rem;
  color: var(--color-black-light);
  min-width: 5rem;
}
.p-provider-card__price {
  font-size: 1rem;
  color: var(--color-black);
}
.p-provider-card__price strong {
  font-size: 1.5rem;
  font-family: var(--font-en);
  font-weight: 700;
}
.p-provider-card__note {
  font-size: 0.75rem;
  color: var(--color-accent-red);
  width: 100%;
}
.p-provider-card__tag {
  font-size: 0.75rem;
  color: var(--color-black-light);
  padding: 0 1.25rem 1rem;
}

.p-service {
  background: var(--color-cream, #fbf3e6);
}

/* ----------------------------------------
   Plan Table（回線プラン）
---------------------------------------- */
.p-plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.75rem, 3.75vw, 0.875rem);
  white-space: nowrap;
  margin-block: 2rem;
}
.p-plan-table th,
.p-plan-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  vertical-align: middle;
}
.p-plan-table thead th {
  background: var(--color-navy-dark);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
}
.p-plan-table tbody td {
  background: var(--color-white);
  color: var(--color-text);
  font-weight: bold;
  text-align: center;
}
.p-plan-table tbody tr:nth-child(even) td {
  background: var(--color-bg-gray);
}
.p-plan-table__speed {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.1em;
  color: var(--color-accent-purple);
}
.p-plan-table strong {
  font-family: var(--font-en);
  font-size: 1.3em;
  color: var(--color-accent-purple);
}
.p-plan-table tr.is-highlight td {
  border-top: 2px solid var(--color-accent-orange);
  border-bottom: 2px solid var(--color-accent-orange);
}
.p-plan-table tr.is-highlight td:first-child {
  border-left: 2px solid var(--color-accent-orange);
}
.p-plan-table tr.is-highlight td:last-child {
  border-right: 2px solid var(--color-accent-orange);
}
.p-plan-table--cross tbody th {
  background: var(--color-gray-white);
  color: var(--color-text);
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.p-plan-table thead th.is-col-highlight {
  border-top: 2px solid var(--color-accent-orange);
  border-left: 2px solid var(--color-accent-orange);
  border-right: 2px solid var(--color-accent-orange);
}
.p-plan-table tbody td.is-col-highlight {
  border-left: 2px solid var(--color-accent-orange);
  border-right: 2px solid var(--color-accent-orange);
}
.p-plan-table tbody tr:last-child td.is-col-highlight {
  border-bottom: 2px solid var(--color-accent-orange);
}
.is-accent-red,
td.is-accent-red {
  color: var(--color-accent-red) !important;
}
.u-br-sp {
  display: inline;
}
@media (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

/* ----------------------------------------
   Plan Cards（回線プラン）
---------------------------------------- */
.p-plan-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-plan-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-plan-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.p-plan-card__head {
  background: var(--color-primary);
  padding: 1.25rem 1.5rem;
}
.p-plan-card__speed {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--color-white);
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}
.p-plan-card__name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.3rem;
}
.p-plan-card__body {
  padding: 1.5rem;
}
.p-plan-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-plan-card__item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-plan-card__type {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  min-width: 8rem;
}
.p-plan-card__price {
  font-size: 1rem;
  color: var(--color-text);
}
.p-plan-card__price strong {
  font-size: 1.75rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-primary-dark);
}
.p-plan-card__price small {
  font-size: 0.8rem;
  color: var(--color-text-sub);
}
.p-plan-card__note {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
  margin-top: 1rem;
}

/* ----------------------------------------
   Tel Groups（光電話グループカード）
---------------------------------------- */
.p-tel-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-tel-groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.p-tel-group {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.p-tel-group__head {
  background: var(--color-primary-dark);
  padding: 0.875rem 1.25rem;
}
.p-tel-group__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}
.p-tel-group__list {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
}
.p-tel-group__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.p-tel-group__item:last-child {
  border-bottom: none;
}
.p-tel-group__name {
  font-size: 0.875rem;
  color: var(--color-text);
}
.p-tel-group__price {
  font-size: 0.875rem;
  white-space: nowrap;
}
.p-tel-group__price strong {
  font-size: 1.5rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-primary-dark);
}
.p-tel-group__price small {
  font-size: 0.75rem;
  color: var(--color-text-sub);
}
.p-tel-tv {
  font-size: 0.8rem;
  color: var(--color-text-sub);
  background: var(--color-bg-gray);
  border-radius: var(--radius-sm, 0.5rem);
  padding: 0.625rem 1rem;
  margin-bottom: 0.5rem;
}
.p-tel-tv strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ----------------------------------------
   Accordion（オプションサービス）
---------------------------------------- */
.p-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--color-border);
}
.p-accordion__item {
  border-bottom: 1px solid var(--color-border);
}
.p-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--color-gray-white);
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.p-accordion__trigger:hover {
  background: var(--color-bg-gray);
}
.p-accordion__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
}
.p-accordion__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-accent-orange);
  position: relative;
  transition: background 0.2s;
}
.p-accordion__icon::before,
.p-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 2px;
  background: var(--color-white);
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.p-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-accordion__trigger[aria-expanded="true"],
.p-accordion__trigger:focus {
  background: var(--color-gray-white);
}
.p-accordion__trigger[aria-expanded="true"] .p-accordion__icon {
  background: var(--color-accent-orange);
  opacity: 0.8;
}
.p-accordion__trigger[aria-expanded="true"] .p-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* grid-rows trick for smooth height transition */
.p-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.p-accordion__body.is-open {
  grid-template-rows: 1fr;
}
.p-accordion__inner {
  overflow: hidden;
}
.p-accordion__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 1.25rem 1.25rem;
  width: calc(100% - 2.5rem);
  font-size: 0.875rem;
}
.p-accordion__table td {
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: middle;
}
.p-accordion__table tr:last-child td {
  border-bottom: none;
}
.p-accordion__table td:last-child {
  text-align: right;
  white-space: nowrap;
  color: var(--color-text-sub);
  font-size: 0.8125rem;
}

/* ----------------------------------------
   Expenses（各種費用ページ）
---------------------------------------- */
.p-expenses {
  background: var(--color-cream, #fbf3e6);
}
.p-expenses-toc-wrap {
  padding: 1rem 0;
  background: var(--color-cream, #fbf3e6);
}
.p-expenses-toc {
  /* margin: 0 auto; */
  padding-bottom: 1rem;
}
.p-expenses-toc__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .p-expenses-toc__list {
    grid-template-columns: repeat(3, 1fr);
    width: 80%;
    margin: 0 auto;
  }
}
.p-expenses-toc__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.5rem;
  background: var(--color-accent-purple);
  color: var(--color-white);
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.p-expenses-toc__link::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M456.931,33.694L256,120.171L55.07,33.694C30.058,22.928,0.483,40.026,0.006,67.253c-0.125,6.953,1.578,14.117,5.473,20.859l215.482,373.229c7.789,13.484,21.414,20.226,35.039,20.226c13.625,0,27.25-6.742,35.039-20.226L506.521,88.112c3.894-6.742,5.598-13.906,5.473-20.859C511.517,40.026,481.946,22.928,456.931,33.694z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-expenses-toc__link:hover,
.p-expenses-toc__link:active,
.p-expenses-toc__link:focus {
  background: var(--color-white);
  color: var(--color-accent-purple);
  border-color: var(--color-accent-purple);
  outline: none;
}
.p-expenses-toc__link:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23552cb7' d='M456.931,33.694L256,120.171L55.07,33.694C30.058,22.928,0.483,40.026,0.006,67.253c-0.125,6.953,1.578,14.117,5.473,20.859l215.482,373.229c7.789,13.484,21.414,20.226,35.039,20.226c13.625,0,27.25-6.742,35.039-20.226L506.521,88.112c3.894-6.742,5.598-13.906,5.473-20.859C511.517,40.026,481.946,22.928,456.931,33.694z'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .p-expenses-toc__link {
    font-size: 0.8rem;
  }
}
.p-expenses-note {
  font-size: 0.8rem;
  color: var(--color-text-sub);
  margin-bottom: 0.75rem;
  text-align: right;
}
.p-expenses-section {
  padding: 2rem 0;
  background: var(--color-white);
  padding-inline: 0.925rem;
  margin-block: 1.5rem;
}
.p-expenses-section--alt {
  background: var(--color-white);
}
@media (min-width: 768px) {
  .p-expenses > .l-inner {
    width: 100%;
    max-width: 1200px;
  }
  .p-expenses-section {
    margin-inline: 0;
  }
}
.p-expenses-section-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-text);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent-orange);
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .p-expenses-section-title {
    font-size: 1.375rem;
  }
}

.p-expenses-band {
  background: var(--color-navy-dark);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  margin-bottom: 0;
}
.p-expenses-band + .p-company-info__table-wrap,
.p-expenses-band + .p-expenses-sub {
  margin-top: 0;
}
.p-expenses-band ~ .p-expenses-band {
  margin-top: 2.5rem;
}

.p-expenses-sub {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 1.25rem 0 0.5rem;
}
.p-expenses-sub + .p-company-info__table-wrap {
  margin-top: 0;
}

/* Expenses table */
.p-expenses-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
}
.p-expenses-table th {
  padding: 0.75rem 1rem;
  color: var(--color-accent-purple);
  font-weight: 700;
  text-align: center;
  background: var(--color-gray-white);
  border: 1px solid var(--color-border);
}
.p-expenses-table td {
  padding: 0.875rem 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  vertical-align: middle;
}
.p-expenses-table td:last-child {
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-expenses-table {
    font-size: clamp(12px, 3.75vw, 14px);
  }
  .p-expenses-table th,
  .p-expenses-table td {
    white-space: nowrap;
  }
}

/* ----------------------------------------
   FV Price
---------------------------------------- */
.p-fv__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.15em;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0.5rem;
}
.p-fv__price-num {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--color-accent-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-fv__price-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.p-fv__price-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 3rem;
}
.p-fv__price-label--em {
  letter-spacing: 0.1em;
}
.p-fv__price-label--em rt {
  font-size: 0.8em;
  color: var(--color-accent-purple);
  letter-spacing: 0.35em;
}
.p-fv__price-note {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  margin-top: 0.25rem;
}

/* ==========================================================================
   SP固定CTAボタン
   ========================================================================== */
.c-sp-cta-fixed {
  display: none;
}
@media (max-width: 767px) {
  .c-sp-cta-fixed {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-accent-orange);
    color: var(--color-white);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1rem;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-decoration: none;
  }
  .c-sp-cta-fixed.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ==========================================================================
   p-thanks — 送信完了ページ
   ========================================================================== */

.p-thanks {
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  padding: var(--section-pt) 0 var(--section-pb);
}
.p-thanks__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.p-thanks__icon {
  margin-bottom: 1.75rem;
}
.p-thanks__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent-purple);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-thanks__title {
    font-size: 1.875rem;
  }
}
.p-thanks__text {
  font-size: 0.95rem;
  color: var(--color-navy-dark);
  line-height: 2;
  margin-bottom: 2.5rem;
}
.p-thanks__btn {
  min-width: 200px;
}

/* ==========================================================================
   p-apply — 申し込みページ
   ========================================================================== */

.p-apply {
  padding: var(--section-pt) 0 var(--section-pb);
}

/* ステップインジケーター */
.p-apply__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.p-apply__step {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gray-worm);
  padding: 0.3rem 1.1rem;
  border-radius: 2rem;
  border: 2px solid var(--color-gray-worm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.p-apply__step.is-active {
  color: var(--color-white);
  background: var(--color-accent-purple);
  border-color: var(--color-accent-purple);
}
.p-apply__step-arrow {
  color: var(--color-gray-worm);
  font-size: 1.2rem;
  line-height: 1;
}

/* 説明文 */
.p-apply__intro {
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-apply__intro p {
  font-size: 0.9rem;
  color: var(--color-black-light);
  line-height: 1.8;
}

/* フォーム外枠 */
.p-apply__form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  border: 2px solid var(--color-navy-dark);
  box-shadow: 6px 6px 0 var(--color-navy-dark);
}
@media (min-width: 768px) {
  .p-apply__form-wrap {
    padding: 2.5rem 3rem;
    max-width: 780px;
    margin-inline: auto;
  }
}

/* フォームテーブル */
.p-apply__form-table {
  width: 100%;
  border-collapse: collapse;
}
.p-apply__form-table th,
.p-apply__form-table td {
  display: block;
  width: 100%;
  padding: 0;
}
.p-apply__form-table th {
  padding-top: 1.5rem;
  padding-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-apply__form-table td {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
}
.p-apply__form-table tbody tr:first-child th {
  padding-top: 0;
}
.p-apply__form-table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}

/* バッジ */
.c-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.1em 0.55em;
  border-radius: 3px;
  line-height: 1.7;
  white-space: nowrap;
  flex-shrink: 0;
}
.c-badge--required {
  background: var(--color-accent-red);
  color: var(--color-white);
}
.c-badge--optional {
  background: #aaa;
  color: var(--color-white);
}

/* 入力欄 共通 */
.p-apply__input,
.p-apply__select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-ja);
  border: 2px solid var(--color-gray-worm);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy-dark);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.p-apply__input:focus,
.p-apply__select:focus {
  outline: none;
  border-color: var(--color-accent-purple);
}
.p-apply__input.is-error,
.p-apply__select.is-error {
  border-color: var(--color-accent-red);
}
.p-apply__input--zip {
  max-width: 180px;
}

/* 担当者名（横並び） */
.p-apply__name-wrap {
  display: flex;
  gap: 0.75rem;
}
.p-apply__name-wrap .p-apply__input {
  flex: 1;
  min-width: 0;
}

/* 電話番号（横並び） */
.p-apply__tel-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.p-apply__tel-wrap .p-apply__input {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.p-apply__tel-sep {
  font-weight: 700;
  color: var(--color-navy-dark);
  flex-shrink: 0;
}

/* セレクト */
.p-apply__select-wrap {
  position: relative;
}
.p-apply__select-wrap::after {
  content: "▾";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-navy-dark);
  font-size: 1rem;
}
.p-apply__select {
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ラジオボタン */
.p-apply__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}
.p-apply__radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}
.p-apply__radio-label input[type="radio"] {
  accent-color: var(--color-accent-purple);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* チェックボックス */
.p-apply__check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.7;
  cursor: pointer;
}
.p-apply__check-label input[type="checkbox"] {
  accent-color: var(--color-accent-purple);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.p-apply__check-label a {
  color: var(--color-accent-purple);
  text-decoration: underline;
}

/* ヒントテキスト */
.p-apply__input-hint {
  font-size: 0.75rem;
  color: var(--color-black-light);
  margin-top: 0.3rem;
}

/* エラーメッセージ */
.p-apply__error {
  display: none;
  font-size: 0.8rem;
  color: var(--color-accent-red);
  margin-top: 0.4rem;
}
.p-apply__error.is-visible {
  display: block;
}

/* ボタンエリア */
.p-apply__btn-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p-apply__btn-wrap {
    flex-direction: row;
    justify-content: center;
  }
}

/* ニューモーフィズムボタン — プライマリ */
.c-btn--apply-primary {
  background: var(--color-accent-purple);
  color: var(--color-white);
  border: 2px solid var(--color-navy-dark);
  box-shadow: 4px 4px 0 var(--color-navy-dark);
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  gap: 0.5rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.c-btn--apply-primary:hover {
  box-shadow: 2px 2px 0 var(--color-navy-dark);
  transform: translate(2px, 2px);
}
.c-btn--apply-primary:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

/* ニューモーフィズムボタン — セカンダリ */
.c-btn--apply-secondary {
  background: var(--color-white);
  color: var(--color-navy-dark);
  border: 2px solid var(--color-navy-dark);
  box-shadow: 4px 4px 0 var(--color-navy-dark);
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  gap: 0.5rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.c-btn--apply-secondary:hover {
  box-shadow: 2px 2px 0 var(--color-navy-dark);
  transform: translate(2px, 2px);
}
.c-btn--apply-secondary:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

/* 確認リスト */
.p-apply__confirm-list {
  margin-bottom: 0.5rem;
}
.p-apply__confirm-list dt {
  padding: 0.75rem 0 0.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-black-light);
}
.p-apply__confirm-list dd {
  padding: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--color-navy-dark);
  border-bottom: 1px solid #eee;
  word-break: break-all;
}
@media (min-width: 768px) {
  .p-apply__confirm-list {
    display: grid;
    grid-template-columns: 12rem 1fr;
    column-gap: 1.5rem;
  }
  .p-apply__confirm-list dt {
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
  }
  .p-apply__confirm-list dd {
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
  }
}
