@charset "UTF-8";
/* 変数定義---------------------------- */
/* カラー・配色 */
/* フォント */
/* デバイスサイズ */
/* ヘッダーの高さ */
/* flex */
/* コンテンツwidth */
/* ボタン */
/* fadeinのディレイ */
/* --------font-size-------- */
/* Design System: CSS Custom Properties
   ========================================== */
:root {
  --bg: #ffffff;
  --bg-alt: #f3f3f3;
  --bg-dark: #0a0a0a;
  --bg-dark2: #0f0f1a;
  --text: #000000;
  --text-2: #333333;
  --text-muted: #888888;
  --accent: #7c3aed;
  --accent-lt: #a78bfa;
  --accent-dk: #5b21b6;
  --grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #ec4899 100%);
  --grad-dark: linear-gradient(160deg, #0a0a0a 0%, #130a2a 100%);
  --f-disp: "Orbitron", sans-serif;
  --f-ui: "Michroma", sans-serif;
  --f-body: "Noto Sans JP", sans-serif;
  --ease: 0.3s ease;
  --ease-sm: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --wrap: 1200px;
  --px: clamp(1.5rem, 5vw, 4rem);
}

/* Reset
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.8;
  font-feature-settings: "palt";
}

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

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

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

/* Layout Utilities
   ========================================== */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
}

.sec {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

/* Typography Utilities
   ========================================== */
.label {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}

.h-en {
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

/* GSAP Scroll Reveal Initial States
   ========================================== */
.rv {
  opacity: 0;
  transform: translateY(28px);
}

.rv-l {
  opacity: 0;
  transform: translateX(-28px);
}

.rv-s {
  opacity: 0;
  transform: scale(0.95);
}

/* Gradient Text Utility
   ========================================== */
.ac {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page Transition Overlay
   ========================================== */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.pt-panel {
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Responsive Base
   ========================================== */
@media (max-width: 1040px) {
  * {
    -webkit-appearance: none;
  }
  html {
    font-size: 14px;
  }
  body {
    -webkit-text-size-adjust: 100%;
    min-width: 320px;
  }
}
/* Legacy Flex Utilities — referenced by _pages.scss
   ========================================== */
.flex-stay_row, .contents-frame .inner .contents-area .artcls .su-title_M, .contents-frame .inner .anker-link .al-inner .al-menu .menu-link, .bread .bread-list .bread-list_unit.link-text, .bread .bread-list {
  display: flex;
  flex-direction: row;
}

.flex-stay_clm, .contents-frame .inner .contents-area .artcls .su-title_L, .contents-frame .inner .contents-area .artcls .artcls-title, .mv-under .main-title, .mv-under {
  display: flex;
  flex-direction: column;
}

.no-link a {
  pointer-events: none;
}

/* Header
   ========================================== */
#hd {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1100;
  padding: 1.6rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--ease-sm), padding var(--ease-sm);
}
#hd.on {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  padding-block: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hd-logo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}
.hd-logo img {
  width: 100%;
}

.logo-w {
  display: block;
}

.logo-d {
  display: none;
}

#hd.on .logo-w {
  display: none;
}

#hd.on .logo-d {
  display: block;
}

/* Desktop Nav */
.hd-nav {
  display: flex;
  align-items: center;
}

.hd-nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.hd-nav-list li > a {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--ease);
  display: block;
}
.hd-nav-list li > a:hover {
  color: var(--accent-lt) !important;
}
.hd-nav-list li.hd-cta > a {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: all var(--ease);
}
.hd-nav-list li.hd-cta > a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}

#hd.on .hd-nav-list li > a {
  color: var(--text-2);
}

#hd.on .hd-nav-list li.hd-cta > a {
  background: var(--grad);
  border-color: transparent;
  color: #fff !important;
}

/* Hamburger Button */
.hd-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hd-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

#hd.on .hd-menu-btn span {
  background: var(--text-2);
}

.hd-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hd-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hd-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hd-menu-btn.open span {
  background: var(--accent) !important;
}

/* SP Full-Screen Menu */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 2rem) 48px);
  transition: clip-path 0.62s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-menu.open {
  pointer-events: auto;
  clip-path: circle(160% at calc(100% - 2rem) 48px);
}

.sp-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
}

.sp-menu-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.sp-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--px) 4rem;
}

.sp-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.sp-nav-list li > a {
  display: block;
  font-family: var(--f-disp);
  font-size: clamp(1.5rem, 5.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  padding: 0.55em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.sp-nav-list li > a:hover, .sp-nav-list li > a:focus-visible {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 0.2em;
}
.sp-nav-list li.hd-cta > a {
  border-bottom: none;
  margin-top: 0.5em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-nav-list li.hd-cta > a:hover {
  opacity: 0.8;
}

.sp-menu-foot {
  position: absolute;
  bottom: 2rem;
  left: var(--px);
  right: var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-menu-copy {
  font-family: var(--f-ui);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 1040px) {
  .hd-nav {
    display: none;
  }
  .hd-menu-btn {
    display: flex;
  }
}
/* TOPページ
   ========================================== */
/* FV
   ------------------------------------------ */
#fv {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}

.fv-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
}

.fv-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.13) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridScroll 28s linear infinite;
}

@keyframes gridScroll {
  to {
    background-position: 80px 80px;
  }
}
.fv-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.fv-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
  top: -150px;
  right: -100px;
  animation: glowFloat1 9s ease-in-out infinite alternate;
}

.fv-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 65%);
  bottom: 60px;
  left: 5%;
  animation: glowFloat2 11s ease-in-out infinite alternate;
}

@keyframes glowFloat1 {
  to {
    transform: translate(30px, 20px);
  }
}
@keyframes glowFloat2 {
  to {
    transform: translate(-20px, -30px);
  }
}
.fv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.fv-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--px) clamp(4rem, 8vw, 7rem);
}

.fv-eyebrow {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.6rem;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fv-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-lt);
}

.fv-h1 {
  font-family: var(--f-disp);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 2.6rem;
}

.fv-h1 span:not(.fv-sub) {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}

.fv-sub {
  display: block;
  font-size: clamp(0.94rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  max-width: 460px;
  margin-top: 2rem;
  opacity: 0;
}

.fv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border: none;
  padding: 0.95rem 2rem;
  transition: box-shadow var(--ease-sm), opacity var(--ease-sm);
  opacity: 0;
  cursor: pointer;
  animation: fvBtnPulse 2.8s ease-in-out infinite;
}
.fv-btn:hover {
  animation: none;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.55), 0 2px 16px rgba(168, 85, 247, 0.25);
}

@keyframes fvBtnPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  }
  50% {
    box-shadow: 0 8px 36px rgba(124, 58, 237, 0.55), 0 2px 14px rgba(168, 85, 247, 0.2);
  }
}
.arr {
  width: 18px;
  height: 1px;
  background: #fff;
  position: relative;
  transition: width var(--ease);
}
.arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.fv-btn:hover .arr {
  width: 26px;
}

.fv-scroll {
  position: absolute;
  right: var(--px);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
.fv-scroll span {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
}

.fv-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.9), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}
/* Marquee
   ------------------------------------------ */
.marquee-wrap {
  background: var(--accent);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.mq-sep {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.35) !important;
  letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* LEAD
   ------------------------------------------ */
#lead {
  background: var(--bg);
  overflow: hidden;
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
.lead-inner::after {
  content: "XD";
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-disp);
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 900;
  color: rgba(124, 58, 237, 0.04);
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 0;
  line-height: 1;
}

.lead-line {
  width: 36px;
  height: 2px;
  background: var(--grad);
  margin-bottom: 2rem;
}

.lead-h2 {
  font-family: var(--f-body);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.lead-h2 em {
  font-style: normal;
  color: var(--accent);
}

.lead-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-2);
  position: relative;
  z-index: 1;
}
.lead-body p + p {
  margin-top: 1.1em;
}

/* SERVICE
   ------------------------------------------ */
#service {
  background: var(--bg-alt);
}

.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-hd .label {
  display: block;
  margin-bottom: 0.9rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.svc-card {
  background: #fff;
  padding: 2.6rem 2rem;
  position: relative;
}

.svc-num {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent-lt);
  margin-bottom: 1.4rem;
}

.svc-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.4rem;
}
.svc-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}

.svc-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
}

.svc-checks {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.svc-checks-hd {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.svc-checks li {
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.55;
}
.svc-checks li::before {
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* OUR STRENGTH
   ------------------------------------------ */
#reason {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#reason::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 100%), radial-gradient(ellipse 40% 60% at 80% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
  pointer-events: none;
}
#reason .sec-hd .label {
  color: var(--accent-lt);
}
#reason .h-en {
  color: #fff;
}

.str-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}

.str-item {
  padding: 3rem 3.2rem;
}

.str-item:nth-child(n+3) {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.str-item:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.str-item:nth-child(even) {
  padding-right: 0;
}

.str-num {
  font-family: var(--f-disp);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  margin-bottom: 1.1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.str-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}

.str-body {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.95;
}

.str-note {
  margin-top: 2.4rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

/* WORKS
   ------------------------------------------ */
#works {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.works-scroll-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--f-disp);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.028);
  letter-spacing: 0.15em;
  pointer-events: none;
  user-select: none;
  animation: bgTextScroll 38s linear infinite;
  z-index: 0;
}

@keyframes bgTextScroll {
  from {
    transform: translateX(5%) translateY(-50%);
  }
  to {
    transform: translateX(-35%) translateY(-50%);
  }
}
.works-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.works-label {
  display: block;
  margin-bottom: 0.7rem;
}

.works-note {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.works-track {
  display: flex;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.works-item {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.works-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.works-item:hover img {
  transform: scale(1.07);
  opacity: 0.6;
}

.wi-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.works-item:hover .wi-meta {
  opacity: 0.85;
}

.wi-num {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  align-self: flex-start;
}

.wi-name {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
}

/* PRICE
   ------------------------------------------ */
#price {
  background: var(--bg-alt);
}

.price-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 3.5rem;
}

.price-card {
  background: #fff;
  padding: 2.4rem 2rem;
  border-top: 3px solid rgba(124, 58, 237, 0.2);
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
}

.price-badge {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: block;
}

.price-badge-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.price-badge-row .price-badge {
  margin-bottom: 0;
}

.price-rec {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #fff;
  padding: 0.22em 0.75em;
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.price-amount {
  font-family: var(--f-disp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.price-amount sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: baseline;
  margin-left: 0.2em;
}

.price-tax {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  margin-top: 0.2rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.price-list li {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.price-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.5em;
}

.price-table-wrap {
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.price-table-label {
  font-family: var(--f-ui);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.price-table th {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  text-align: left;
  padding: 1rem 1.4rem 1rem 0;
  white-space: nowrap;
  vertical-align: middle;
}

.pt-price {
  font-family: var(--f-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  padding: 1rem 0;
  vertical-align: middle;
  text-align: right;
}

.price-table-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: right;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.85rem 1.8rem;
  margin-top: 2rem;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
  animation: outlinePulse 2.8s ease-in-out infinite;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  animation: none;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
}

@keyframes outlinePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.1);
  }
}
/* FLOW
   ------------------------------------------ */
#flow {
  background: var(--bg);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0.8rem;
  margin-top: 3.5rem;
}
.flow-steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.35), transparent);
}

.flow-step {
  text-align: center;
}

.flow-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  position: relative;
  z-index: 1;
  font-family: var(--f-disp);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  transition: all var(--ease-sm);
}

.flow-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.flow-text {
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* INFORMATION
   ------------------------------------------ */
#info {
  background: var(--bg-alt);
}

.info-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.info-viewall {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity var(--ease);
  display: block;
}
.info-viewall:hover {
  opacity: 0.65;
}

.info-list li {
  display: grid;
  grid-template-columns: 7rem 5rem 1fr;
  align-items: center;
  gap: 1.8rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.info-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.info-list li:hover .info-title {
  color: var(--accent);
}

.info-date {
  font-family: var(--f-ui);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.info-cat {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124, 58, 237, 0.07);
  padding: 0.22em 0.8em;
  white-space: nowrap;
}

.info-title {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-2);
  transition: color var(--ease);
}

/* CTA
   ------------------------------------------ */
#cta {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 1;
  }
}
.cta-inner {
  position: relative;
  z-index: 1;
}

#cta .label {
  color: var(--accent-lt);
  display: block;
  margin-bottom: 1.4rem;
}

.cta-h2 {
  font-family: var(--f-body);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.cta-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.4rem;
}

.cta-free {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 2.8rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  padding: 1.15rem 2.8rem;
  transition: transform var(--ease-sm), box-shadow var(--ease-sm);
  animation: ctaBtnGlow 2.8s ease-in-out infinite;
}
.cta-btn:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(124, 58, 237, 0.65), 0 4px 16px rgba(168, 85, 247, 0.3);
}

@keyframes ctaBtnGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
  }
  50% {
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.55), 0 2px 16px rgba(168, 85, 247, 0.2);
  }
}
.cta-socials {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2.2rem;
}
.cta-socials a {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--ease);
  display: block;
}
.cta-socials a:hover {
  color: var(--accent-lt);
}

/* Responsive — Tablet (≤1040px)
   ------------------------------------------ */
@media (max-width: 1040px) {
  .lead-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lead-inner::after {
    display: none;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-layout {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .flow-steps::before {
    display: none;
  }
  .info-list li {
    grid-template-columns: 6rem 4.5rem 1fr;
    gap: 1.2rem;
  }
}
/* Responsive — SP (≤770px)
   ------------------------------------------ */
@media (max-width: 770px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .str-grid {
    grid-template-columns: 1fr;
  }
  .str-item:nth-child(odd) {
    border-right: none;
  }
  .str-item:nth-child(even) {
    padding-left: 0;
  }
  .works-track {
    flex-direction: column;
  }
  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }
  .info-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1.1rem 0;
  }
  .info-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .cta-socials {
    gap: 1.4rem;
    flex-wrap: wrap;
  }
  .price-table th {
    font-size: 0.8rem;
  }
  .price-table-note {
    text-align: left;
  }
}
/* Responsive — Small SP (≤580px)
   ------------------------------------------ */
@media (max-width: 580px) {
  .svc-card {
    padding: 2rem 1.4rem;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .str-item {
    padding: 2.2rem 0;
  }
}
/* Responsive — PC (≥1041px) 本文サイズ最低保証
   ------------------------------------------ */
@media (min-width: 1041px) {
  .lead-body,
  .svc-text,
  .str-body,
  .flow-text,
  .info-title,
  .price-list li,
  .price-table th,
  .svc-checks li,
  .cta-sub {
    font-size: 0.95rem;
  }
  .str-note {
    text-align: center;
  }
  .str-grid {
    border: none;
  }
  .str-item:nth-child(n+3) {
    border-top: none;
  }
  .str-item:nth-child(odd) {
    border-right: none;
  }
}
/* SP Menu → _header.scss に統合済み */
/* 下層ページ---------------------------- */
.mv-under {
  height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  justify-content: center;
}
.mv-under:before {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}
.mv-under .main-title {
  position: relative;
  z-index: 5;
  width: 90%;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.6;
}
.mv-under .main-title .seo-wards {
  font-size: 0.625rem;
}
.mv-under .main-title .m-text {
  font-size: 3rem;
  font-weight: bold;
}
.mv-under .main-title .s-text {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}
@media only screen and (max-width: 580px) {
  .mv-under .main-title .m-text {
    font-size: 2rem;
    font-weight: bold;
  }
  .mv-under .main-title .s-text {
    font-size: 0.875rem;
  }
}
.mv-under.mv-service {
  background-image: url(/image/pages/service/service-mv.jpg);
}
.mv-under.mv-solutuin {
  background-image: url(/image/pages/solutions/solutions-mv.jpg);
}
.mv-under.mv-logistics {
  background-image: url(/image/pages/logistics/logistics-mv.jpg);
}
.mv-under.mv-klos-base {
  background-image: url(/image/pages/klos-base/klos-mv.jpg);
}

.bread {
  width: 100%;
  padding: 48px 0;
  font-size: 0.875rem;
}
.bread .bread-list .bread-list_unit {
  color: #4e4e4e;
}
.bread .bread-list .bread-list_unit.link-text::after {
  content: "/";
  display: block;
  margin: 0 8px;
}
.bread .bread-list .bread-list_unit .bread-link {
  text-decoration: underline;
  color: #4e4e4e;
}
.contents-frame {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
.contents-frame .inner {
  padding-top: 104px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 104px;
  justify-content: space-between;
  position: relative;
}
.contents-frame .inner .symbol-img {
  position: absolute;
  z-index: -10;
  max-width: 680px;
  width: 50%;
  top: -1%;
  left: -10%;
}
@media only screen and (max-width: 770px) {
  .contents-frame .inner .symbol-img {
    width: 80%;
    top: -1%;
    left: -25%;
  }
}
@media only screen and (max-width: 580px) {
  .contents-frame .inner .symbol-img {
    width: 100%;
    top: -0.5%;
    left: -25%;
  }
}
.contents-frame .inner .anker-link {
  width: 20%;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  padding-right: 2%;
}
.contents-frame .inner .anker-link .al-inner {
  text-align: justify;
}
.contents-frame .inner .anker-link .al-inner .al-menu {
  margin-bottom: 8px;
}
.contents-frame .inner .anker-link .al-inner .al-menu:last-child {
  margin-bottom: 0;
}
.contents-frame .inner .anker-link .al-inner .al-menu .menu-link {
  align-items: baseline;
  font-weight: 700;
  display: inline-flex;
}
.contents-frame .inner .anker-link .al-inner .al-menu .menu-link::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(/image/common/right-chev.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  left: 0;
  transition: 0.3s all;
}
.contents-frame .inner .anker-link .al-inner .al-menu .menu-link .label {
  margin-left: 8px;
  line-height: 1.6;
  width: calc(100% - 22px);
}
.contents-frame .inner .anker-link .al-inner .al-menu .menu-link:hover::before {
  left: 4px;
}
.contents-frame .inner .contents-area {
  width: 76%;
}
.contents-frame .inner .contents-area .artcls {
  padding-top: 120px;
}
.contents-frame .inner .contents-area .artcls:first-child {
  padding-top: 0;
}
.contents-frame .inner .contents-area .artcls .artcls-title {
  align-items: flex-start;
  margin-bottom: 32px;
}
.contents-frame .inner .contents-area .artcls .artcls-title .eng-icon {
  display: inline-block;
  border: 1px solid currentColor;
  color: #000000;
  padding: 0 4px;
  font-size: 0.75rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}
.contents-frame .inner .contents-area .artcls .artcls-title .m-text {
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.6;
}
.contents-frame .inner .contents-area .artcls .su-title_L {
  line-height: 1.6;
  margin-bottom: 32px;
}
.contents-frame .inner .contents-area .artcls .su-title_L .m-text {
  font-size: 1.35rem;
  font-weight: bold;
  border-left: 5px solid #000000;
  line-height: 1;
  padding-left: 12px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.contents-frame .inner .contents-area .artcls .su-title_L .a-text {
  font-size: 0.8rem;
}
.contents-frame .inner .contents-area .artcls .su-title_M {
  margin-bottom: 24px;
}
.contents-frame .inner .contents-area .artcls .su-title_M .m-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}
.contents-frame .inner .contents-area .artcls .su-title_M .s-text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
}
.contents-frame .inner .contents-area .artcls [class^=c-photo] {
  margin-bottom: 24px;
}
.contents-frame .inner .contents-area .artcls .cf-cap {
  text-align: justify;
}
.contents-frame .inner .contents-area .artcls .dl-unit .title {
  font-weight: bold;
  margin-bottom: 8px;
}
.contents-frame .inner .contents-area .artcls .dl-unit .cap {
  text-align: justify;
}
.contents-frame .inner .contents-area .artcls .c-video,
.contents-frame .inner .contents-area .artcls .c-map {
  width: 100%;
}
@media only screen and (max-width: 1040px) {
  .contents-frame .inner .contents-area {
    width: 100%;
  }
}
@media only screen and (max-width: 1040px) {
  .contents-frame .inner {
    padding-top: 80px;
  }
  .contents-frame .inner.no-mb {
    margin-bottom: 104px;
  }
}
.contents-frame .sec-unit {
  padding-top: 80px;
}
.contents-frame .sec-unit:first-child {
  border-top: none;
}
.contents-frame .sec-unit .inner-sec {
  margin-top: 72px;
}
.contents-frame .sec-unit .cf-cap {
  text-align: justify;
}
.contents-frame .sec-unit .cf-cap .annotation {
  color: #1f1f1f;
  display: block;
  margin-top: 24px;
  font-size: 0.7rem;
}
.contents-frame .sec-unit .cf-cap .link-text {
  display: inline;
  text-decoration: underline;
}
.contents-frame .sec-unit .cf-pic {
  margin-bottom: 24px;
}
.contents-frame sup {
  font-size: 0.65rem;
}
.contents-frame .slide-show_u {
  background-color: #eaeaea;
}
.contents-frame .slide-show_u .slide-img .sld-photo {
  width: 90%;
  margin: 32px auto;
}
.contents-frame .slide-show_u .slide-img .sld-list_wrap {
  width: 90%;
  margin: 0 auto;
  margin: 0 auto 32px;
}
.contents-frame .slide-show_u .slide-img .sld-list_wrap .dl-list:last-child {
  margin-bottom: 0;
}
.contents-frame .slide-show_u .slick-dots {
  bottom: 0;
  background-color: #ffffff;
  padding-top: 8px;
  position: relative;
}
.contents-frame .slide-show_u .slick-dots li button:before {
  font-size: 1rem;
}
.contents-frame .slide-show_u .slick-arrow {
  width: 12px;
  bottom: 0;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.contents-frame .slide-show_u .slick-arrow.prev {
  left: 0;
}
.contents-frame .slide-show_u .slick-arrow.next {
  right: 0;
}

.c-list-style_01 {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 24px;
}
.c-list-style_01 .c-list {
  background-color: #ffffff;
  border: 1px solid #4e4e4e;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 8px;
}
.c-list-style_01 .c-list .text {
  line-height: 1.6;
  text-align: center;
}
.c-list-style_01.colmun_4 .c-list {
  width: 23.8%;
  margin-right: 1.5%;
}
.c-list-style_01.colmun_4 .c-list:nth-of-type(4n) {
  margin-right: 0;
}
.c-list-style_01.colmun_4 .c-list:nth-of-type(n + 5) {
  margin-top: 1.5%;
}
@media only screen and (max-width: 1040px) {
  .c-list-style_01.colmun_4 .c-list {
    width: 32.3%;
    font-size: 0.85rem;
  }
  .c-list-style_01.colmun_4 .c-list:nth-of-type(4n) {
    margin-right: 1.5%;
  }
  .c-list-style_01.colmun_4 .c-list:nth-of-type(3n) {
    margin-right: 0;
  }
  .c-list-style_01.colmun_4 .c-list:nth-of-type(n + 4) {
    margin-top: 1.5%;
  }
}
@media only screen and (max-width: 580px) {
  .c-list-style_01.colmun_4 .c-list {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 580px) {
  .c-list-style_01.colmun_4.sp-colmun_2 .c-list {
    width: 49.2%;
  }
  .c-list-style_01.colmun_4.sp-colmun_2 .c-list:nth-of-type(2n) {
    margin-right: 0;
  }
  .c-list-style_01.colmun_4.sp-colmun_2 .c-list:nth-of-type(odd) {
    margin-right: 1.5%;
  }
  .c-list-style_01.colmun_4.sp-colmun_2 .c-list:nth-of-type(n + 3) {
    margin-top: 1.5%;
  }
}
.c-list-style_01.colmun_2 .c-list {
  width: 49.2%;
  margin-right: 1.5%;
  height: 120px;
}
.c-list-style_01.colmun_2 .c-list:nth-of-type(2n) {
  margin-right: 0;
}
.c-list-style_01.colmun_2 .c-list:nth-of-type(n + 3) {
  margin-top: 1.5%;
}
.c-list-style_01.colmun_2 .c-list .title {
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 580px) {
  .c-list-style_01.colmun_2 .c-list {
    width: 100%;
    margin-right: 0;
  }
  .c-list-style_01.colmun_2 .c-list .text {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .c-list-style_01.colmun_2 .c-list:nth-of-type(n + 2) {
    margin-top: 1.5%;
  }
}
.c-list-style_01.ft-banner {
  margin-bottom: 0;
}
.c-list-style_01.ft-banner .c-list {
  height: auto;
}

.c-list-style_02 {
  margin-bottom: 24px;
  padding-left: 16px;
}
.c-list-style_02 .c-list {
  list-style: square;
}
.dl-list {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 24px;
}
.dl-list .d-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  height: 28px;
  padding: 4px;
  width: 116px;
  margin-right: 16px;
}
.dl-list .d-cap {
  text-align: justify;
  width: calc(100% - 132px);
  line-height: 1.7;
}
@media only screen and (max-width: 770px) {
  .dl-list .d-title {
    margin-bottom: 8px;
  }
  .dl-list .d-cap {
    width: 100%;
  }
}

.scta-wrap .stca-list {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 24px 8px;
  border-top: 1px solid #4e4e4e;
  justify-content: space-between;
  text-align: justify;
}
.scta-wrap .stca-list:nth-last-child(1) {
  border-bottom: 1px solid #4e4e4e;
}
.scta-wrap .stca-list .title {
  width: 20%;
  font-weight: bold;
}
.scta-wrap .stca-list .c-area {
  width: 76%;
}
.scta-wrap .stca-list .c-area > a {
  display: inline;
  text-decoration: underline;
}
@media only screen and (max-width: 580px) {
  .scta-wrap .stca-list .title {
    width: 100%;
    margin-bottom: 8px;
  }
  .scta-wrap .stca-list .c-area {
    width: 100%;
  }
}

/* =============================================
   ページヒーロー（下層ページ共通）
============================================= */
#page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: 72px;
}

.ph-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
}

.ph-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
}

.ph-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 65%);
  top: -200px;
  right: -80px;
  pointer-events: none;
}

.ph-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) var(--px) clamp(3rem, 6vw, 5rem);
}

.ph-eyebrow {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ph-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent-lt);
}

.ph-h1 {
  font-family: var(--f-disp);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.ph-h1 .ac {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph-desc {
  font-size: clamp(0.83rem, 1.2vw, 0.9rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
}

/* =============================================
   パンくずリスト（下層ページ共通）
============================================= */
.breadcrumb {
  background: var(--bg-alt);
  padding: 0.85rem var(--px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.breadcrumb-inner a,
.breadcrumb-inner span {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb-inner a:hover {
  color: var(--accent);
}

.bc-sep {
  color: rgba(0, 0, 0, 0.2);
}

.breadcrumb .current {
  color: var(--accent);
}

/* =============================================
   ページコンテンツ（page.php）
============================================= */
#page-content {
  background: var(--bg);
}

.entry-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-2);
}
.entry-body h2 {
  font-family: var(--f-ui);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.entry-body h2:first-child {
  margin-top: 0;
}
.entry-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}
.entry-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-2);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}
.entry-body p {
  margin-bottom: 1.4rem;
}
.entry-body p:last-child {
  margin-bottom: 0;
}
.entry-body ul,
.entry-body ol {
  margin-bottom: 1.4rem;
  padding-left: 1.4rem;
}
.entry-body ul li,
.entry-body ol li {
  margin-bottom: 0.4rem;
  line-height: 1.9;
}
.entry-body ul li {
  list-style: disc;
}
.entry-body ol li {
  list-style: decimal;
}
.entry-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-body strong {
  font-weight: 700;
  color: var(--text);
}
.entry-body em {
  font-style: italic;
}
.entry-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-bottom: 1.8rem;
}
.entry-body table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--text);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}
.entry-body table td {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}
.entry-body blockquote {
  border-left: 2px solid var(--accent);
  padding: 0.8rem 1.4rem;
  margin: 1.6rem 0;
  background: rgba(124, 58, 237, 0.03);
  font-style: italic;
  color: var(--text-2);
}
.entry-body hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 2.4rem 0;
}

@media (min-width: 1041px) {
  .entry-body {
    font-size: 0.95rem;
  }
}
/* =============================================
   プライバシーポリシー（page-privacy-policy.php）
============================================= */
#privacy-body {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

/* Sticky TOC */
.privacy-toc {
  position: sticky;
  top: calc(72px + 2rem);
}

.toc-label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.toc-list a {
  display: block;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: all var(--ease);
}
.toc-list a:hover {
  color: var(--accent);
  border-left-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.03);
}
.toc-list a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 500;
}

/* Article */
.privacy-article {
  min-width: 0;
}

.pa-intro {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-2);
  margin-bottom: 3rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pa-date {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 1.2rem;
  display: block;
}

.pa-section {
  margin-bottom: 3.2rem;
  padding-top: 0.5rem;
  scroll-margin-top: calc(72px + 2rem);
}

.pa-h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pa-h2::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 1em;
  background: var(--grad);
}

.pa-text {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-2);
}
.pa-text + .pa-text {
  margin-top: 1em;
}

.pa-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
  margin-top: 1rem;
}
.pa-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.pa-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.65em;
}

.pa-note {
  margin-top: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: rgba(124, 58, 237, 0.03);
  border-left: 2px solid rgba(124, 58, 237, 0.3);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
}

.pa-contact-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.6rem 1.4rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: 1.6rem 2rem;
  background: var(--bg-alt);
}
.pa-contact-block dt {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pa-contact-block dd {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-2);
}
.pa-contact-block dd a {
  color: var(--accent);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 0.7rem 1.4rem;
  transition: all var(--ease);
}
.back-to-top:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 1040px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-toc {
    display: none;
  }
}
@media (max-width: 770px) {
  .pa-h2 {
    font-size: 0.95rem;
  }
  .pa-section {
    margin-bottom: 2.4rem;
  }
  .pa-contact-block {
    grid-template-columns: 90px 1fr;
  }
}
@media (max-width: 580px) {
  .pa-contact-block {
    grid-template-columns: 1fr;
    row-gap: 0.2rem;
  }
  .pa-contact-block dt {
    margin-top: 0.7rem;
  }
  .pa-contact-block dt:first-child {
    margin-top: 0;
  }
}
@media (min-width: 1041px) {
  .pa-intro,
  .pa-text,
  .pa-list,
  .pa-note,
  .pa-contact-block dd {
    font-size: 0.95rem;
  }
}
/* =============================================
   Contact Page
============================================= */
#contact-body {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* ---- Info Panel ---- */
.contact-info {
  position: sticky;
  top: calc(72px + 2rem);
}

.ci-tag {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.ci-tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.ci-lead {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}

.ci-body {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-2);
  margin-bottom: 2.4rem;
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 2rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.ci-val {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-2);
}

.ci-note {
  margin-top: 2.4rem;
  padding: 1.4rem;
  background: rgba(124, 58, 237, 0.04);
  border-left: 2px solid var(--accent);
}
.ci-note p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
}
.ci-note strong {
  font-weight: 500;
  color: var(--text);
}

/* ---- Form ---- */
.form-section-label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-grid + .form-section-label {
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.form-field {
  margin-bottom: 3rem;
}
.form-field.full {
  grid-column: 1/-1;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-2);
  margin-bottom: 0.7rem;
}

.req {
  font-family: var(--f-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--accent);
  padding: 0.18em 0.6em;
}

.opt {
  font-family: var(--f-ui);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.18em 0.6em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.8rem 0;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--accent);
  border-bottom-width: 2px;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.9;
}

.form-hint {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* Radio */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.radio-item {
  position: relative;
}
.radio-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-item input:checked + .radio-label {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 58, 237, 0.04);
}
.radio-item input:checked + .radio-label::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
}
.radio-label::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all var(--ease);
}
.radio-label:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--text);
}

/* Checkbox */
.check-item {
  position: relative;
}
.check-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-item input:checked ~ .check-label .check-box {
  background: var(--accent);
  border-color: var(--accent);
}
.check-item input:checked ~ .check-label .check-box svg {
  opacity: 1;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-2);
  cursor: pointer;
  transition: color var(--ease);
  user-select: none;
  line-height: 1.7;
}
.check-label a {
  color: var(--accent);
  text-decoration: underline;
}

.check-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.check-box svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity var(--ease);
}

/* CF7 Radio — CF7 生成マークアップをモックアップのカード型ラジオに合わせる */
.cf-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.cf-radio .wpcf7-list-item {
  margin: 0;
}
.cf-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cf-radio label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
}
.cf-radio label::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all var(--ease);
}
.cf-radio label:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--text);
}
.cf-radio label:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 58, 237, 0.04);
}
.cf-radio label:has(input:checked)::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

/* CF7 Acceptance — CF7 生成マークアップをモックアップのカスタムチェックに合わせる */
.cf-accept .wpcf7-list-item {
  margin: 0;
}
.cf-accept input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cf-accept label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.7;
  user-select: none;
}
.cf-accept label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 0.15em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  transition: all var(--ease);
}
.cf-accept label:has(input:checked)::before {
  background-color: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2,6 5,9 10,3'/%3E%3C/svg%3E");
}
.cf-accept .wpcf7-list-item-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* 入力欄とラジオ群の間に区切りの余白を作る */
.form-field.sep-top {
  padding-top: 2rem;
}

/* Submit */
.form-submit-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  padding: 1.1rem 2.8rem;
  border: none;
  cursor: pointer;
  transition: transform var(--ease-sm), box-shadow var(--ease-sm);
  animation: submitGlow 2.8s ease-in-out infinite;
}
.btn-submit:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(124, 58, 237, 0.55);
}

@keyframes submitGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
  }
  50% {
    box-shadow: 0 8px 36px rgba(124, 58, 237, 0.45);
  }
}
.btn-arr {
  width: 18px;
  height: 1px;
  background: #fff;
  position: relative;
  transition: width var(--ease);
}
.btn-arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.btn-submit:hover .btn-arr {
  width: 26px;
}

.form-privacy-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.form-privacy-note a {
  color: var(--accent);
}

/* ---- Responsive ---- */
@media (max-width: 1040px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    position: static;
    margin-bottom: 3rem;
  }
}
@media (max-width: 770px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: auto;
  }
  .form-submit-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 580px) {
  .radio-group {
    grid-template-columns: 1fr;
  }
  .ci-items {
    gap: 1rem;
  }
}
@media (min-width: 1041px) {
  .ci-body,
  .ci-val,
  .ci-note p,
  .form-input,
  .form-textarea,
  .radio-label,
  .check-label {
    font-size: 0.95rem;
  }
}
/* =============================================
   CF7 出力スタイル
============================================= */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
  line-height: 1.4;
}
.wpcf7-radio .wpcf7-list-item label::before {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all var(--ease);
}
.wpcf7-radio .wpcf7-list-item label:hover {
  border-color: rgba(124, 58, 237, 0.3);
}
.wpcf7-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.wpcf7-radio .wpcf7-list-item:has(input:checked) label {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 58, 237, 0.04);
}
.wpcf7-radio .wpcf7-list-item:has(input:checked) label::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.7;
  user-select: none;
}
.wpcf7-acceptance label a {
  color: var(--accent);
  text-decoration: underline;
}
.wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  cursor: pointer;
  margin-top: 0.2em;
  flex-shrink: 0;
  position: relative;
  transition: all var(--ease);
}
.wpcf7-acceptance input[type=checkbox]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 0.72rem;
  color: #dc2626;
  margin-top: 0.35rem;
}

.form-input.wpcf7-not-valid,
.form-textarea.wpcf7-not-valid {
  border-bottom-color: #dc2626;
  border-bottom-width: 2px;
}

.wpcf7-response-output {
  margin: 1.2rem 0 0 !important;
  padding: 0 !important;
  border: none !important;
  font-size: 0.82rem;
  line-height: 1.8;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #16a34a;
}
.wpcf7-response-output.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7-response-output.wpcf7-spam-blocked, .wpcf7-response-output.wpcf7-acceptance-missing {
  color: #dc2626;
}

input.btn-submit {
  cursor: pointer;
}

@media (max-width: 770px) {
  .wpcf7-radio {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1041px) {
  .wpcf7-radio .wpcf7-list-item label,
  .wpcf7-acceptance label {
    font-size: 0.95rem;
  }
}
/* Footer
   ========================================== */
#ft {
  background: #050505;
  padding: 2.5rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft-copy {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.18);
}

.ft-links {
  display: flex;
  gap: 1.8rem;
}
.ft-links a {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  transition: color var(--ease);
  display: block;
}
.ft-links a:hover {
  color: var(--accent-lt);
}

@media (max-width: 1040px) {
  #ft {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}