

.koho-in-lp {
  --ki-orange: #FF6B45;
  --ki-orange-hover: #e85a35;
  --ki-orange-soft: #FFA17E;
  --ki-orange-light: rgba(255, 107, 69, 0.08);
  --ki-orange-glow: rgba(255, 107, 69, 0.25);
  --ki-cream: #F5EFE7;
  --ki-dark: #242422;
  --ki-black: #222222;
  --ki-gray-bg: #f7f7f7;
  --ki-gray-soft: #f0ece5;
  --ki-gray-text: #65635c;
  --ki-white: #ffffff;
  --ki-border: #e5e5e5;
  --ki-radius: 14px;
  --ki-radius-lg: 20px;
  --ki-shadow: 0 8px 28px rgba(34, 34, 34, 0.06);
  --ki-shadow-lg: 0 16px 48px rgba(34, 34, 34, 0.10);
  --ki-shadow-card: 0 4px 24px rgba(34, 34, 34, 0.08);
  --ki-max-width: 1200px;
  --ki-transition: 0.3s ease;

  --ki-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ki-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ki-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {

}
body.page-template-page-koho-in {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  body.page-template-page-koho-in {
    scroll-behavior: auto;
  }
}

body.page-template-page-koho-in header .nav__pc,
body.page-template-page-koho-in header .header-actions,
body.page-template-page-koho-in .nav-sp,
body.page-template-page-koho-in .openbtn {
  display: none !important;
}

body.page-template-page-koho-in header {
  background: var(--ki-dark, #242422);
  padding: 16px 40px;
}

body.page-template-page-koho-in header.scrolled {
  background: var(--ki-dark, #242422);
}

body.page-template-page-koho-in header .logo img {
  filter: brightness(0) invert(1);
}

.koho-in-lp {
  color: var(--ki-black);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;

  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

.koho-in-lp *,
.koho-in-lp *::before,
.koho-in-lp *::after {
  box-sizing: border-box;
}

.koho-in-lp img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.koho-in-lp strong {
  font-weight: 700;
}

.koho-in-lp ::selection {
  background: var(--ki-orange);
  color: var(--ki-white);
}

.koho-in-lp ::-moz-selection {
  background: var(--ki-orange);
  color: var(--ki-white);
}

.koho-in-lp a:focus-visible,
.koho-in-lp button:focus-visible,
.koho-in-lp [tabindex]:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.ki-container {
  width: 100%;
  max-width: var(--ki-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ki-pc-only { display: inline; }

@media screen and (max-width: 768px) {
  .ki-pc-only { display: none; }
}

.ki-watermark {
  overflow: hidden;
  padding: 12px 0;
  background: var(--ki-gray-bg);
  user-select: none;
  pointer-events: none;
}

.ki-watermark span {
  display: block;
  font-family: "Manrope", sans-serif;

  font-weight: 700;
  font-size: clamp(52px, 8.2vw, 108px);
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--ki-border);
  text-stroke: 1px var(--ki-border);
  line-height: 1.1;
  animation: ki-marquee 25s linear infinite;
  width: max-content;

  will-change: transform;
}

.ki-watermark--accent {
  background: var(--ki-orange);
}

.ki-watermark--accent span {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  text-stroke-color: rgba(255, 255, 255, 0.3);
}

@keyframes ki-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ki-marquee-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.koho-in-lp .ki-watermark:nth-of-type(odd) span { animation-duration: 28s; }
.koho-in-lp .ki-watermark:nth-of-type(even) span {
  animation-name: ki-marquee-reverse;
  animation-duration: 32s;
}

@media (prefers-reduced-motion: reduce) {
  .koho-in-lp .ki-watermark span {
    animation: none !important;
  }
}

@media screen and (max-width: 768px) {
  .ki-watermark { padding: 8px 0; }
}

.ki-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;

  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  padding: 18px 40px;
  cursor: pointer;

  transition:
    transform 0.35s var(--ki-ease-spring),
    box-shadow 0.35s var(--ki-ease-out),
    background-color 0.25s var(--ki-ease-in-out),
    border-color 0.25s var(--ki-ease-in-out);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.4;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.ki-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.ki-btn__icon {
  font-size: 20px;
  transition: transform 0.35s var(--ki-ease-spring);
}

.ki-btn:hover .ki-btn__icon {
  transform: translateX(2px);
}

.ki-btn--primary {
  background: var(--ki-orange);
  color: var(--ki-white);
  border-color: var(--ki-orange);
}

.ki-btn--primary:hover {
  background: var(--ki-orange-hover);
  border-color: var(--ki-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--ki-orange-glow);
}

.ki-btn--white {
  background: var(--ki-white);
  color: var(--ki-orange);
  border-color: var(--ki-white);
  font-weight: 700;
}

.ki-btn--white:hover {
  background: var(--ki-gray-bg);
  border-color: var(--ki-gray-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.ki-btn--lg {
  font-size: 17px;
  padding: 20px 48px;
}

.ki-btn:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: 3px;
}

.ki-btn--white:focus-visible {
  outline-color: var(--ki-white);
}

@media (prefers-reduced-motion: reduce) {
  .ki-btn { transition: none; }

  .ki-watermark span { animation: none; will-change: auto; }
  .ki-solution__arrow .material-symbols-outlined { animation: none; }
}

@media screen and (max-width: 480px) {
  .ki-btn { width: 100%; }
  .ki-btn--lg { padding: 18px 32px; font-size: 16px; }
}

.ki-section {

  padding: 100px 0;
  position: relative;
}

.ki-section--white {
  background: var(--ki-white);
}

.ki-section--gray {
  background: var(--ki-gray-bg);
}

.ki-section--dark {
  background: var(--ki-dark);
  color: var(--ki-white);

  padding: 120px 0;
}

.ki-section--accent {
  background: var(--ki-orange);
  color: var(--ki-white);

  padding: 96px 0;
}

.ki-section--cta {
  background: var(--ki-gray-bg);

  padding: 80px 0;
}

.ki-section__label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;

  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ki-orange);
  text-align: center;
  margin-bottom: 14px;
}

.ki-section__label::before,
.ki-section__label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.6;
}

.ki-section__label--light {
  color: var(--ki-orange);
  opacity: 0.85;
}

.ki-section__label--on-accent {
  color: var(--ki-white);
  opacity: 0.7;
}

.ki-section__title {
  font-family: "Noto Sans JP", sans-serif;

  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 52px;
  line-height: 1.3;
  letter-spacing: 0em;
  position: relative;
  padding-bottom: 22px;
}

.ki-section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--ki-orange);
  border-radius: 2px;
  box-shadow:
    -60px 1.5px 0 -1px var(--ki-orange-soft),
    60px 1.5px 0 -1px var(--ki-orange-soft);
}

.ki-section__title--light::after {
  background: var(--ki-orange);
}

.ki-section__title--on-accent::after {
  background: var(--ki-white);
  box-shadow:
    -60px 1.5px 0 -1px rgba(255, 255, 255, 0.5),
    60px 1.5px 0 -1px rgba(255, 255, 255, 0.5);
}

.ki-section__title--light {
  color: var(--ki-white);
}

.ki-section__title--on-accent {
  color: var(--ki-white);
}

.ki-section__title strong {
  font-weight: 800;
  color: inherit;
}
.ki-section__title--on-accent strong {
  color: var(--ki-white);
}

.ki-section__lead {
  text-align: center;
  color: var(--ki-gray-text);
  font-size: 17px;
  margin-bottom: 48px;
}

.ki-section-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
}

.ki-hero {
  background: var(--ki-dark);
  color: var(--ki-white);

  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.ki-hero::before {

  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.ki-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ki-orange-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.ki-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ki-hero__brand {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ki-orange);
  margin-bottom: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ki-hero__brand::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.ki-hero__title {

  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.ki-hero__lead {
  font-size: 16px;
  line-height: 1.85;

  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 520px;
}

.ki-hero__content {
  position: relative;
  z-index: 1;
}

.ki-hero__visual {
  position: relative;
}

.ki-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
  .ki-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ki-hero__brand {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
  .ki-hero__cta { justify-content: center; }
  .ki-hero__lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .ki-hero__lead br { display: none; }
}

@media screen and (max-width: 480px) {
  .ki-hero { padding: 64px 0 48px; }
  .ki-hero::after {
    right: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
  }
  .ki-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.ki-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--ki-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
}

.ki-placeholder__label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.6;
}

.ki-placeholder--hero {
  min-height: 380px;
  aspect-ratio: 16 / 9;
  border-radius: var(--ki-radius-lg);
}

.ki-placeholder--case {
  min-height: 280px;
  background: #f0f0f0;
  border-color: var(--ki-border);
  border-radius: var(--ki-radius);
}

.ki-placeholder--case .ki-placeholder__label {
  color: #bbb;
}

.ki-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ki-pain-grid .ki-pain-card:nth-child(4) {
  grid-column: 1 / 2;
}

.ki-pain-grid .ki-pain-card:nth-child(5) {
  grid-column: 2 / 3;
}

.ki-pain-card {
  background: var(--ki-white);
  border-radius: var(--ki-radius);
  padding: 36px 24px 32px;
  text-align: center;
  box-shadow: var(--ki-shadow-card);
  border: 1px solid var(--ki-border);
  transition: transform var(--ki-transition), box-shadow var(--ki-transition), border-color var(--ki-transition);
  position: relative;
  overflow: hidden;
}

.ki-pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.3);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--ki-orange) 50%, transparent 100%);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.ki-pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ki-shadow-lg);
  border-color: rgba(255, 107, 69, 0.3);
}

.ki-pain-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.ki-pain-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 107, 69, 0.14) 0%, rgba(255, 107, 69, 0.04) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
}

.ki-pain-card__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 107, 69, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
  transform: rotate(0deg);
}

.ki-pain-card:hover .ki-pain-card__icon::after {
  opacity: 1;
  transform: rotate(90deg);
}

.ki-pain-card__icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--ki-orange);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.ki-pain-card:hover .ki-pain-card__icon .material-symbols-outlined {
  transform: scale(1.08);
}

.ki-pain-card__text {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;

  color: #3a3a3a;
}

@media screen and (max-width: 960px) {
  .ki-pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ki-pain-grid .ki-pain-card:nth-child(4),
  .ki-pain-grid .ki-pain-card:nth-child(5) {
    grid-column: auto;
  }

  .ki-pain-grid .ki-pain-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .ki-pain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ki-pain-grid .ki-pain-card:nth-child(5) {
    max-width: none;
  }
  .ki-pain-card { padding: 24px 20px; }
}

.ki-solution {
  text-align: center;
  padding: 20px 0;
}

.ki-solution__problem {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.ki-solution__arrow {
  margin-bottom: 24px;
}

.ki-solution__arrow .material-symbols-outlined {
  font-size: 40px;
  color: var(--ki-white);
  opacity: 0.6;
  animation: ki-bounce 2s ease-in-out infinite;
}

@keyframes ki-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

.ki-solution__answer {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 36px;
  color: var(--ki-white);
}

.ki-strategy__body {
  max-width: 800px;
  margin: 0 auto;
}

.ki-strategy__body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.9;
}

.ki-strategy__body p:last-child {
  margin-bottom: 0;
}

.ki-funnel {
  position: relative;
  margin: 60px auto 48px;
  max-width: 1080px;
  background: var(--ki-gray-bg);
  border-radius: var(--ki-radius-lg);
  padding: 48px 36px 56px;
  overflow: hidden;
}

.ki-funnel::before {

  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 20px,
    rgba(255, 107, 69, 0.03) 20px,
    rgba(255, 107, 69, 0.03) 22px
  );
  pointer-events: none;
}

.ki-funnel__stages {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.ki-funnel__stage {
  background: var(--ki-white);
  border-radius: var(--ki-radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--ki-border);
  position: relative;
  transition: transform var(--ki-transition), box-shadow var(--ki-transition);
}

.ki-funnel__stage:hover {
  transform: translateY(-3px);
  box-shadow: var(--ki-shadow-card);
}

.ki-funnel__stage--conversion {
  border-color: var(--ki-orange);
  background: linear-gradient(180deg, var(--ki-white), var(--ki-orange-light));
}

.ki-funnel__label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ki-orange);
  margin-bottom: 8px;
}

.ki-funnel__heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ki-black);
}

.ki-funnel__channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ki-funnel__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--ki-white);
  border: 1px solid var(--ki-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ki-black);
  line-height: 1.2;
}

.ki-funnel__chip .material-symbols-outlined {
  font-size: 16px;
  color: var(--ki-orange);
}

.ki-funnel__stage--conversion .ki-funnel__chip {
  border-color: rgba(255, 107, 69, 0.3);
}

.ki-funnel__connector {
  align-self: center;
  position: relative;
  width: 36px;
  height: 2px;

  background: linear-gradient(90deg, transparent 0%, var(--ki-orange) 40%, var(--ki-orange) 100%);
  opacity: 0.7;
  overflow: hidden;
}

.ki-funnel__connector::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--ki-orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ki-orange-glow);
  animation: ki-pulse-right 2.2s var(--ki-ease-in-out) infinite;
}

@keyframes ki-pulse-right {
  0%   { transform: translate(-8px, -50%); opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: translate(44px, -50%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ki-funnel__connector::before { animation: none; opacity: 0; }
}

.ki-funnel__connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--ki-orange);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.ki-funnel__hub {
  position: relative;
  margin: 32px auto 0;
  padding: 20px 32px;
  background: var(--ki-dark);
  color: var(--ki-white);
  border-radius: 999px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
}

.ki-funnel__hub::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: var(--ki-orange);
}

.ki-funnel__hub-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
}

.ki-funnel__hub-brand {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ki-orange);
}

@media screen and (max-width: 960px) {
  .ki-funnel { padding: 36px 20px 44px; }
  .ki-funnel__stages {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ki-funnel__connector {
    width: 2px;
    height: 24px;
    justify-self: center;
  }
  .ki-funnel__connector::after {
    right: auto;
    top: auto;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--ki-orange);
    border-bottom: none;
  }
  .ki-funnel__channels {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .ki-funnel { padding: 28px 16px 36px; }
  .ki-funnel__hub {
    padding: 14px 20px;
    gap: 10px;
    flex-direction: column;
  }
  .ki-funnel__hub-label { font-size: 11px; }
  .ki-funnel__hub-brand { font-size: 14px; }
}

.ki-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ki-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ki-radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--ki-transition), background var(--ki-transition);
}

.ki-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.ki-stat__number {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;

  font-size: clamp(44px, 5vw, 56px);
  color: var(--ki-orange);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ki-stat__number small {
  font-size: 0.4em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 2px;

  vertical-align: baseline;
  letter-spacing: 0.04em;
}

.ki-stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.ki-stats-note {
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .ki-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ki-stat { padding: 24px 16px; }
  .ki-stat__number { font-size: 40px; }
  .ki-stats-note { text-align: left; margin-top: 20px; }
}

@media screen and (max-width: 480px) {
  .ki-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ki-stat { padding: 20px 10px; }
  .ki-stat__number { font-size: 30px; letter-spacing: -0.03em; }
  .ki-stat__number small { font-size: 0.38em; margin-left: 1px; }
  .ki-stat__label { font-size: 12px; line-height: 1.5; }
}

@media screen and (max-width: 360px) {
  .ki-stat__number { font-size: 26px; }
}

.ki-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.ki-case--reverse {
  direction: rtl;
}

.ki-case--reverse > * {
  direction: ltr;
}

.ki-case__visual {
  border-radius: var(--ki-radius);
  overflow: hidden;
}

.ki-case__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--ki-radius);
  background: #f0f0f0;
}

.ki-case__figure img,
.ki-case__figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ki-case__figure--reel {
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin: 0 auto;
  background: #111;
}

.ki-case__figure--ad {
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  background: #111;
}
.ki-case__figure--ad img { object-fit: cover; }

.ki-case__figure--branding {
  aspect-ratio: 16 / 9;
  background: #111;
}

.ki-case__figure--illust {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
  background: var(--ki-cream);
  padding: 12%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ki-case__figure--illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ki-case__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ki-black);
  background: #fff;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

.ki-case__number {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--ki-orange);
  margin-bottom: 12px;
}

.ki-case__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.45;

  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.ki-case__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ki-gray-text);
}

@media screen and (max-width: 768px) {
  .ki-case,
  .ki-case--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
  .ki-case { margin-bottom: 40px; }

  .ki-case__figure--reel {
    max-width: 240px;
  }

  .ki-case__figure--branding {
    aspect-ratio: 3 / 2;
  }

  .ki-case__figure--illust {
    max-width: 320px;
  }
}

.ki-visual-strip {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0c0c0c;
}

.ki-visual-strip--wide {
  height: clamp(240px, 42vh, 420px);
}
.ki-visual-strip__frame {
  width: 100%;
  height: 100%;
}
.ki-visual-strip__frame .ki-visual-strip__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ki-visual-strip--reels {
  padding: 0;
  height: clamp(360px, 52vh, 560px);
  overflow: hidden;
}
.ki-visual-strip--reels .ki-visual-strip__grid {
  display: flex;
  height: 100%;
  gap: 2px;
  justify-content: center;
  align-items: stretch;
}
.ki-visual-strip__tile {
  aspect-ratio: 9 / 16;
  height: 100%;
  flex: 0 0 auto;
  background: #0c0c0c;
  overflow: hidden;
  min-width: 0;
}
.ki-visual-strip__tile .ki-visual-strip__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {

  .ki-visual-strip--wide {
    height: clamp(140px, 26vh, 200px);
  }

  .ki-visual-strip--reels {
    display: none;
  }
}

.ki-strength-card {
  background: var(--ki-white);
  border-radius: var(--ki-radius-lg);
  padding: 44px 48px;
  margin-bottom: 22px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  color: var(--ki-black);

  box-shadow: 0 12px 40px rgba(130, 40, 10, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform var(--ki-transition), box-shadow var(--ki-transition);
}

.ki-strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ki-orange) 0%, var(--ki-orange-soft) 100%);
}

.ki-strength-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(130, 40, 10, 0.2);
}

.ki-strength-card:last-child {
  margin-bottom: 0;
}

.ki-strength-card__num {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--ki-orange);
  flex-shrink: 0;
  min-width: 60px;
  opacity: 0.3;
}

.ki-strength-card__body {
  flex: 1;
  min-width: 0;
}

.ki-strength-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--ki-black);
}

.ki-strength-card__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ki-gray-text);
  margin-bottom: 16px;
}

.ki-strength-card__body > p:last-child {
  margin-bottom: 0;
}

.ki-strength-card__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.ki-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ki-point__icon {
  font-size: 22px;
  color: var(--ki-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.ki-point div {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ki-gray-text);
}

.ki-point div strong {
  color: var(--ki-black);
}

.ki-strength-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ki-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--ki-orange-light);
  color: var(--ki-orange);
  letter-spacing: 0.02em;
}

.ki-strength-card__types {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.ki-strength-type {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--ki-gray-bg);
  border-left: 3px solid var(--ki-orange);
  border-radius: 6px;
}

.ki-strength-type__tag {
  flex-shrink: 0;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--ki-orange);
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.6;
}

.ki-strength-type__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ki-gray-text);
  margin: 0;
  flex: 1;
}

@media screen and (max-width: 520px) {
  .ki-strength-type {
    flex-direction: column;
    gap: 8px;
  }
  .ki-strength-type__tag {
    align-self: flex-start;
  }
}

.ki-team-hub {
  position: relative;
  max-width: 600px;
  margin: 24px auto 0;
  aspect-ratio: 600 / 360;
  color: var(--ki-orange);
}

.ki-strength-card__body > .ki-team-hub {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: -46px;
}
@media screen and (max-width: 768px) {
  .ki-strength-card__body > .ki-team-hub {
    left: 0;
  }
}

.ki-team-hub__svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ki-team-hub__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--ki-orange);
  color: var(--ki-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 107, 69, 0.3);
  z-index: 2;
}

.ki-team-hub__center-label {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.ki-team-hub__center-sub {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-top: 4px;
}

.ki-team-hub__role {
  position: absolute;
  background: var(--ki-white);
  border: 1px solid var(--ki-border);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ki-black);
  box-shadow: var(--ki-shadow-card);
  white-space: nowrap;
  z-index: 1;

  transform: translate(-50%, -50%);
  transition: transform var(--ki-transition);
}

.ki-team-hub__role:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.ki-team-hub__role:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: 4px;
}

.ki-team-hub__role .material-symbols-outlined {
  font-size: 20px;
  color: var(--ki-orange);
}

.ki-team-hub__role--top {
  top: 16.67%;
  left: 50%;
}

.ki-team-hub__role--tl {
  top: 30.56%;
  left: 19.17%;
}

.ki-team-hub__role--tr {
  top: 30.56%;
  left: 80.83%;
}

.ki-team-hub__role--bl {
  top: 80.56%;
  left: 19.17%;
}

.ki-team-hub__role--br {
  top: 80.56%;
  left: 80.83%;
}

@media screen and (max-width: 768px) {
  .ki-team-hub {
    aspect-ratio: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
  }
  .ki-team-hub__svg { display: none; }
  .ki-team-hub__center {
    position: static;
    transform: none;
    width: 96px;
    height: 96px;
  }
  .ki-team-hub__center-label { font-size: 13px; }
  .ki-team-hub__role,
  .ki-team-hub__role--top,
  .ki-team-hub__role--tl,
  .ki-team-hub__role--tr,
  .ki-team-hub__role--bl,
  .ki-team-hub__role--br {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .ki-team-hub__role:hover,
  .ki-team-hub__role--top:hover {
    transform: scale(1.03);
  }
}

.ki-channel-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.ki-channel-step {
  flex: 1;
  min-width: 180px;

  background: var(--ki-white);
  border: 1px solid var(--ki-border);
  border-radius: var(--ki-radius);
  padding: 24px 16px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ki-channel-step__num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ki-orange);
  color: var(--ki-white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
}

.ki-channel-step__label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--ki-black);
  margin-top: 6px;
}

.ki-channel-step__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0;
}

.ki-channel-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ki-white);
  border: 1px solid var(--ki-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ki-orange);
}

.ki-channel-step__detail {
  display: block;
  font-size: 12px;
  color: var(--ki-gray-text);
  line-height: 1.5;
}

.ki-channel-arrow {
  font-size: 28px;
  color: var(--ki-orange);
  flex-shrink: 0;
  opacity: 0.7;
  align-self: center;

  animation: ki-nudge-right 1.8s var(--ki-ease-in-out) infinite;
}

@keyframes ki-nudge-right {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .ki-channel-arrow { animation: none; }
}

.ki-nurture-flow {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--ki-orange-light);
  border: 1px dashed rgba(255, 107, 69, 0.5);
  border-radius: var(--ki-radius);
}

.ki-nurture-flow__caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--ki-orange);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.ki-nurture-flow__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.ki-nurture-flow__step {
  flex: 1 1 0;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  background: var(--ki-white);
  border: 1px solid var(--ki-border);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ki-black);
  text-align: center;
  line-height: 1.4;
}

.ki-nurture-flow__step .material-symbols-outlined {
  font-size: 22px;
  color: var(--ki-orange);
}

.ki-nurture-flow__step--goal {
  background: var(--ki-orange);
  border-color: var(--ki-orange);
  color: var(--ki-white);
}

.ki-nurture-flow__step--goal .material-symbols-outlined {
  color: var(--ki-white);
}

.ki-nurture-flow__arrow {
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--ki-orange);
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .ki-strength-card {
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px;
  }
  .ki-strength-card__num { font-size: 36px; }

  .ki-channel-flow { flex-direction: column; gap: 12px; }
  .ki-channel-step { min-width: auto; width: 100%; }
  .ki-channel-arrow {
    transform: rotate(90deg);
    opacity: 0.5;

    animation: ki-nudge-down 1.8s var(--ki-ease-in-out) infinite;
  }
  @keyframes ki-nudge-down {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50%      { transform: rotate(90deg) translateX(4px); }
  }

  .ki-nurture-flow { padding: 16px; }
  .ki-nurture-flow__steps { flex-direction: column; gap: 8px; }
  .ki-nurture-flow__step { width: 100%; min-width: auto; flex-direction: row; justify-content: flex-start; gap: 10px; text-align: left; }
  .ki-nurture-flow__arrow { transform: rotate(90deg); }
}

.ki-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}

.ki-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}

.ki-table th,
.ki-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--ki-border);
  vertical-align: middle;
}

.ki-table thead th {
  background: var(--ki-dark);
  color: var(--ki-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.ki-table thead th:first-child {
  border-radius: var(--ki-radius) 0 0 0;
}

.ki-table thead th:last-child {
  border-radius: 0 var(--ki-radius) 0 0;
}

.ki-table tbody tr:last-child td {
  border-bottom: none;
}

.ki-table tbody tr:nth-child(even) {
  background: var(--ki-gray-bg);
}

.ki-table--highlight {

  background: rgba(255, 107, 69, 0.14) !important;
  font-weight: 700;
  box-shadow: inset 2px 0 0 var(--ki-orange), inset -2px 0 0 var(--ki-orange);
  position: relative;
  transition: background 0.3s var(--ki-ease-out);
}

.ki-table tbody tr:hover .ki-table--highlight {
  background: rgba(255, 107, 69, 0.20) !important;
}

/* 最終行のKOHO-IN列：下罫線を補完してオレンジ框を閉じる（v3.5 下切れ修正・PC専用） */
@media (min-width: 768px) {
  .ki-table tbody tr:last-child td.ki-table--highlight {
    box-shadow:
      inset 2px 0 0 var(--ki-orange),
      inset -2px 0 0 var(--ki-orange),
      inset 0 -2px 0 var(--ki-orange);
  }
}

.ki-table thead .ki-table--highlight {
  background: var(--ki-orange) !important;
  color: var(--ki-white);
}

.ki-table__sub {
  display: block;
  font-size: 12px;
  color: var(--ki-gray-text);
  font-weight: 400;
  margin-top: 4px;
}

.ki-table--highlight .ki-table__sub {
  color: var(--ki-black);
}

@media (max-width: 767px) {
  .ki-table-wrap {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }

  .ki-table {
    display: block;
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .ki-table thead {

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

  .ki-table tbody {
    display: block;
  }

  .ki-table tbody tr {
    display: flex;
    flex-direction: column;
    background: var(--ki-white);
    border: 1px solid var(--ki-border);
    border-radius: var(--ki-radius);
    padding: 12px 0;
    margin-bottom: 16px;
    box-shadow: var(--ki-shadow);
  }

  .ki-table tbody tr:nth-child(even) {

    background: var(--ki-white);
  }

  .ki-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .ki-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: right;
    padding: 10px 16px;
    border-bottom: 1px solid var(--ki-border);
  }

  .ki-table td:last-child {
    border-bottom: none;
  }

  .ki-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--ki-gray-text);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-align: left;
    flex: 0 0 110px;
  }

  /* 記号があるセルは 3カラム grid に切替（ラベル / 記号 / 補足）で記号位置を縦に揃える */
  .ki-table td:has(.ki-table__symbol) {
    display: grid;
    grid-template-columns: 110px 36px 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .ki-table__symbol {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }

  .ki-table td:has(.ki-table__symbol) .ki-table__sub {
    text-align: right;
    margin-top: 0;
  }


  .ki-table td[data-col="item"] {
    order: 1;
    background: var(--ki-dark);
    color: var(--ki-white);
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    margin: -12px 0 8px;
    border-bottom: none;
    border-radius: var(--ki-radius) var(--ki-radius) 0 0;
  }

  .ki-table td[data-col="item"]::before {

    display: none;
  }

  .ki-table td[data-col="ki"] {
    order: 2;
    background: rgba(255, 107, 69, 0.14);
    font-weight: 700;

    box-shadow: inset 3px 0 0 var(--ki-orange);
  }

  .ki-table td[data-col="ki"]::before {
    content: attr(data-label);
    color: var(--ki-orange);
    font-weight: 700;
  }

  .ki-table td[data-col="agency"] { order: 3; }
  .ki-table td[data-col="sns"] { order: 4; }


  .ki-table thead th:first-child,
  .ki-table thead th:last-child {
    border-radius: 0;
  }


  .ki-table td.ki-table--highlight {
    box-shadow: inset 3px 0 0 var(--ki-orange);
  }

  .ki-table__sub {
    font-size: 11px;
    margin-top: 2px;
  }
}

.ki-plan {
  background: var(--ki-white);
  border-radius: var(--ki-radius-lg);
  overflow: visible;
  margin-bottom: 24px;
  box-shadow: var(--ki-shadow);
  border: 1px solid var(--ki-border);
  position: relative;
}

.ki-plan__header,
.ki-plan__body,
.ki-plan__price {
  overflow: hidden;
}

.ki-plan:last-child {
  margin-bottom: 0;
}

.ki-plan--featured {
  border: 2px solid var(--ki-orange);
  box-shadow: var(--ki-shadow-lg);
}

.ki-plan--starter {
  border-style: dashed;
}

.ki-plan__ribbon {
  position: absolute;
  top: 14px;
  right: -44px;

  background: linear-gradient(135deg, var(--ki-orange) 0%, #ff8460 100%);
  color: var(--ki-white);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 48px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(255, 107, 69, 0.35);
  z-index: 1;

}

.ki-plan__ribbon::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.ki-plan__header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--ki-border);
}

.ki-plan__badge {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--ki-dark);
  color: var(--ki-white);
  margin-bottom: 12px;
  margin-right: 8px;
}

.ki-plan__badge--accent {
  background: var(--ki-orange);
}

.ki-plan__name {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ki-plan__tagline {
  font-size: 15px;
  color: var(--ki-gray-text);
  margin: 0;
}

.ki-plan__body {
  padding: 28px 36px;
}

.ki-plan__body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ki-plan__body p:last-child {
  margin-bottom: 0;
}

.ki-plan__who {
  background: var(--ki-orange-light);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.ki-plan__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.ki-plan__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ki-black);
  background: var(--ki-gray-bg);
  padding: 12px 16px;
  border-radius: 6px;
  flex: 1 1 100%;
  line-height: 1.7;
}

.ki-plan__feature .material-symbols-outlined {
  font-size: 20px;
  color: var(--ki-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.ki-plan__feature > div {
  flex: 1;
  color: var(--ki-gray-text);
  font-weight: 400;
}

.ki-plan__feature > div strong {
  color: var(--ki-black);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 2px;
}

.ki-plan__price {
  padding: 24px 36px 32px;
  background: var(--ki-gray-bg);
  border-top: 1px solid var(--ki-border);

  border-radius: 0 0 var(--ki-radius-lg) var(--ki-radius-lg);
}

.ki-plan__amount {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ki-black);
}

.ki-plan__amount small {
  font-size: 14px;
  font-weight: 500;
}

.ki-plan__unit {
  font-size: 14px;
  color: var(--ki-gray-text);
  margin-left: 8px;
}

.ki-plan__detail {
  font-size: 14px;
  color: var(--ki-gray-text);
}

.ki-plan__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ki-border);
  flex-wrap: wrap;
}

.ki-plan__price-row:last-of-type {
  border-bottom: none;
}

.ki-plan__note {
  font-size: 13px;
  color: var(--ki-gray-text);
  margin-top: 12px;
  margin-bottom: 0;
}

.ki-plan__price-tier {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ki-border);
}

.ki-plan__price-tier:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.ki-plan__tier-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ki-black);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.ki-plan__price-tier .ki-plan__price-row {
  padding: 8px 0;
}

.ki-plan__price-tier .ki-plan__price-row:last-of-type {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .ki-plan__header,
  .ki-plan__body,
  .ki-plan__price {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ki-plan__price-row {
    flex-direction: column;
    gap: 4px;
  }
  .ki-plan__ribbon {
    right: -40px;
    top: 12px;
    font-size: 11px;
    padding: 5px 44px;
  }
  .ki-plan__features {
    flex-direction: column;
  }
}

.ki-faq-group {
  margin-bottom: 24px;
}

.ki-faq-group:last-child {
  margin-bottom: 0;
}

.ki-faq-category {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ki-dark);
}

.ki-faq-group:first-child .ki-faq-category {
  margin-top: 0;
}

.koho-in-lp .faq-item {
  border: 1px solid var(--ki-border);
  border-radius: var(--ki-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--ki-white);
}

.koho-in-lp .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--ki-black);
  gap: 16px;
  transition: background-color var(--ki-transition);
}

.koho-in-lp .faq-question:hover {
  background: var(--ki-gray-bg);
}

.koho-in-lp .faq-question:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: -2px;
}

.koho-in-lp .faq-question__text {
  flex: 1;
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.koho-in-lp .faq-question__text::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--ki-orange);
  color: var(--ki-white);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: 0;

  align-self: center;
}

.koho-in-lp .faq-question__icon {
  font-size: 24px;
  color: var(--ki-gray-text);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.koho-in-lp .faq-question.is-open .faq-question__icon {
  transform: rotate(180deg);
}

.koho-in-lp .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;

}

.koho-in-lp .faq-answer p {
  padding: 8px 24px 24px 60px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ki-gray-text);
  margin: 0;
  position: relative;
}

.koho-in-lp .faq-answer p::before {
  content: "A";
  position: absolute;
  left: 24px;
  top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--ki-white);
  color: var(--ki-orange);
  border: 1.5px solid var(--ki-orange);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

.ki-final-cta {
  text-align: center;
  padding: 40px 0;
}

.ki-final-cta__brand {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ki-orange);
  margin-bottom: 16px;
}

.ki-final-cta__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.ki-final-cta__text {
  font-size: 16px;
  color: var(--ki-gray-text);
  margin-bottom: 36px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .ki-section { padding: 64px 0; }
  .ki-section--dark { padding: 80px 0; }
  .ki-section--accent { padding: 64px 0; }
  .ki-section--cta { padding: 56px 0; }
  .ki-section__title { margin-bottom: 32px; }
}

@media screen and (max-width: 480px) {
  .ki-section { padding: 52px 0; }
  .ki-section--dark { padding: 64px 0; }
  .ki-section--cta { padding: 44px 0; }
  .ki-container { padding: 0 16px; }
}

.ki-hero__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--ki-radius-lg);
  background: var(--ki-black);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

@media (max-width: 767px) {
  .ki-hero__video {

    pointer-events: none;
    aspect-ratio: 21 / 9;
    min-height: 0;
    max-height: 220px;
  }
}
@media (max-width: 480px) {
  .ki-hero__video {
    max-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ki-hero__video {

  }
}

.ki-hero__scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.25s var(--ki-ease-out);
  z-index: 3;
}
.ki-hero__scroll-hint:hover,
.ki-hero__scroll-hint:focus-visible {
  color: var(--ki-white);
}
.ki-hero__scroll-hint:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: 4px;
}
.ki-hero__scroll-hint-arrow {
  font-size: 20px;
  animation: ki-bounce 1.8s var(--ki-ease-out) infinite;
}
@keyframes ki-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ki-hero__scroll-hint-arrow { animation: none; }
}

@media (min-width: 960px) {
  .ki-hero__scroll-hint {
    bottom: 24px;
    opacity: 0.75;
  }
}

.ki-section--works {
  background: var(--ki-cream);
  padding: 100px 0;
  position: relative;
}

.ki-section--works::before {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 107, 69, 0.25) 30%,
    rgba(255, 107, 69, 0.25) 70%,
    transparent 100%
  );
}

.ki-works-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.ki-works-intro__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
  text-align: right;
}

.ki-works-intro__count {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ki-black);
}

.ki-works-intro__count-unit {
  font-size: 0.4em;
  letter-spacing: 0.04em;
  color: var(--ki-gray-text);
  margin-left: 4px;
  font-weight: 600;
}

.ki-works-intro__note {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ki-gray-text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ki-works-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .ki-works-intro__meta {
    justify-self: start;
    text-align: left;
  }
}

.ki-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 960px) {
  .ki-works-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 520px) {
  .ki-works-grid { grid-template-columns: 1fr; gap: 24px; }
}

.ki-work-card {
  position: relative;
  border-radius: var(--ki-radius);
  overflow: hidden;
  background: var(--ki-black);
  box-shadow: var(--ki-shadow-card);
  transition:
    transform 0.4s var(--ki-ease-spring),
    box-shadow 0.4s var(--ki-ease-out);
  cursor: pointer;
}
.ki-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 34, 34, 0.16);
}
.ki-work-card:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: 3px;
}

.ki-work-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ki-dark);
  overflow: hidden;
}

.ki-work-card__video,
.ki-work-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ki-ease-out);
}

.ki-work-card:hover .ki-work-card__video,
.ki-work-card:hover .ki-work-card__image {
  transform: scale(1.04);
}

.ki-work-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ki-black);
  font-size: 20px;
  transition: transform 0.3s var(--ki-ease-spring), opacity 0.3s var(--ki-ease-out);
  pointer-events: none;
}
.ki-work-card.is-playing .ki-work-card__play {
  opacity: 0;
  transform: scale(0.6);
}

.ki-work-card__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.ki-work-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ki-black);
  background: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}
.ki-work-card__tag[data-type="branding"] {
  background: var(--ki-orange);
  color: #fff;
}
.ki-work-card__tag[data-type="room-tour"] {
  background: var(--ki-cream);
  color: var(--ki-black);
}
.ki-work-card__tag[data-type="contents"] {
  background: #EDE7DC;
  color: var(--ki-black);
}
.ki-work-card__tag[data-type="case"] {
  background: var(--ki-orange-soft);
  color: var(--ki-black);
}
.ki-work-card__tag[data-type="ad"] {
  background: var(--ki-black);
  color: #fff;
}

.ki-work-card__meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #fff;
  font-family: "Manrope", sans-serif;
  z-index: 2;
}

.ki-work-card__num { display: none; }

.ki-work-card__meta { justify-content: flex-end; }

.ki-work-card__num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.ki-work-card__client {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.92;
  text-transform: uppercase;
}

.ki-works-sub {
  margin-top: 72px;
  padding: 48px 40px;
  background: #fff;
  border-radius: var(--ki-radius-lg);
  box-shadow: var(--ki-shadow-card);
  position: relative;
}

.ki-works-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 48px;
  height: 3px;
  background: var(--ki-orange);
  border-radius: 0 0 3px 3px;
}

.ki-works-sub__label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ki-orange);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.ki-works-sub__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ki-black);
  margin: 0 0 28px;
  line-height: 1.4;
}

.ki-works-sub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .ki-works-sub { padding: 36px 24px; }
  .ki-works-sub::before { left: 24px; }
  .ki-works-sub__grid { grid-template-columns: 1fr; gap: 16px; }
}

.ki-works-sub__item {
  position: relative;
  border-radius: var(--ki-radius);
  overflow: hidden;
  background: var(--ki-gray-bg);
  aspect-ratio: 4 / 5;
  transition: transform 0.4s var(--ki-ease-out);
}
.ki-works-sub__item:hover {
  transform: translateY(-2px);
}
.ki-works-sub__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ki-works-sub__item .ki-work-card__tag {
  top: 10px;
  left: 10px;
}
.ki-works-sub__item .ki-work-card__meta {

  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
  padding: 24px 14px 12px;
  left: 0;
  right: 0;
  bottom: 0;
}

.ki-works-zone {
  margin-top: 96px;
}
.ki-works-zone:first-of-type {
  margin-top: 56px;
}
.ki-works-zone__head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 32px;
  row-gap: 6px;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.12);
}
.ki-works-zone__label {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ki-orange);
  text-transform: uppercase;
  margin: 0;
  grid-row: 1;
  grid-column: 1;
  white-space: nowrap;
}
.ki-works-zone__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--ki-black);
  margin: 0;
  grid-row: 1;
  grid-column: 2;
}
.ki-works-zone__desc {
  grid-row: 2;
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ki-dark);
  max-width: 780px;
}
@media (max-width: 640px) {
  .ki-works-zone { margin-top: 72px; }
  .ki-works-zone__head {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .ki-works-zone__label { grid-row: 1; grid-column: 1; }
  .ki-works-zone__title { grid-row: 2; grid-column: 1; font-size: 22px; }
  .ki-works-zone__desc  { grid-row: 3; grid-column: 1; font-size: 13px; }
}

.ki-works-grid--v {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 1180px) {
  .ki-works-grid--v { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (max-width: 760px) {
  .ki-works-grid--v { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .ki-works-grid--v .ki-work-card--v:nth-child(n+7) { display: none; }
}
@media (max-width: 420px) {
  .ki-works-grid--v { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .ki-works-grid--v .ki-work-card--v:nth-child(n+7) { display: none; }
}
.ki-work-card--v .ki-work-card__media {
  aspect-ratio: 9 / 16;
}
.ki-work-card--v .ki-work-card__meta {
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.ki-work-card--v .ki-work-card__num {
  font-size: 16px;
}
.ki-work-card--v .ki-work-card__client {
  font-size: 10px;
  letter-spacing: 0.08em;
}
.ki-work-card--v .ki-work-card__tag {
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  font-size: 9px;
}
.ki-work-card--v .ki-work-card__play {
  width: 32px;
  height: 32px;
  right: 8px;
  bottom: 8px;
  font-size: 16px;
}

.ki-works-grid--h {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .ki-works-grid--h { grid-template-columns: 1fr; gap: 18px; }
}
.ki-work-card--h .ki-work-card__media {
  aspect-ratio: 16 / 9;
}

.ki-works-zone--ad .ki-works-sub__grid {
  gap: 22px;
}
@media (max-width: 760px) {
  .ki-works-zone--ad .ki-works-sub__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ki-works-zone--ad .ki-works-sub__grid { grid-template-columns: 1fr; }
}

.ki-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s var(--ki-ease-out),
    visibility 0s linear 0.28s;
  padding: 24px;
  pointer-events: none;
}
.ki-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.32s var(--ki-ease-out),
    visibility 0s linear 0s;
  pointer-events: auto;
}
.ki-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ki-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
  width: min(100%, 1200px);

  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  transform: translateY(8px) scale(0.985);
  transition: transform 0.36s var(--ki-ease-spring);
}
.ki-lightbox.is-open .ki-lightbox__panel {
  transform: translateY(0) scale(1);
}
.ki-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  background: #000;
  border-radius: var(--ki-radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.ki-lightbox__stage video,
.ki-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  max-height: calc(100dvh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
}

.ki-lightbox__stage--v video {
  aspect-ratio: 9 / 16;
  height: calc(100vh - 160px);
  height: calc(100dvh - 160px);
  max-width: 100%;
}

.ki-lightbox__stage--h video {
  aspect-ratio: 16 / 9;
  width: min(100%, 1200px);
  max-height: calc(100vh - 160px);
  max-height: calc(100dvh - 160px);
}

.ki-lightbox__stage--img img {
  max-height: calc(100vh - 160px);
  max-height: calc(100dvh - 160px);
}

.ki-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ki-ease-out), transform 0.25s var(--ki-ease-spring);
  z-index: 2;
}
.ki-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}
.ki-lightbox__close:focus-visible {
  outline: 2px solid var(--ki-orange);
  outline-offset: 3px;
}
.ki-lightbox__close .material-symbols-outlined {
  font-size: 22px;
}

.ki-lightbox__caption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", sans-serif;
  padding: 4px 4px 0;
}
.ki-lightbox__tag {
  display: inline-block;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ki-black);
  background: #fff;
  border-radius: 999px;
  text-transform: uppercase;
}
.ki-lightbox__tag[data-type="branding"] { background: var(--ki-orange); color: #fff; }
.ki-lightbox__tag[data-type="case"]     { background: var(--ki-orange-soft); color: var(--ki-black); }
.ki-lightbox__tag[data-type="ad"]       { background: var(--ki-black); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.ki-lightbox__num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;

  display: none;
}
.ki-lightbox__client {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.82;
}

body.is-lightbox-open {
  overflow: hidden;
}

.ki-work-card,
.ki-works-sub__item {
  cursor: zoom-in;
}

@media (max-width: 640px) {
  .ki-lightbox { padding: 16px; }

  .ki-lightbox__close {
    top: -52px;
    right: -4px;
    width: 44px;
    height: 44px;
  }
  .ki-lightbox__close .material-symbols-outlined { font-size: 22px; }
  .ki-lightbox__caption { gap: 10px; }
  .ki-lightbox__num { font-size: 18px; }
  .ki-lightbox__stage--v video {
    height: calc(100vh - 140px);
    height: calc(100dvh - 140px);
  }
  .ki-lightbox__stage video,
  .ki-lightbox__stage img {
    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ki-lightbox,
  .ki-lightbox__panel {
    transition: opacity 0.15s linear, visibility 0s linear;
    transform: none !important;
  }
}

@media print {
  .ki-hero,
  .ki-section--dark,
  .ki-section--accent {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .ki-watermark { display: none; }
  .ki-placeholder { border-style: solid; }
  .ki-hero__video,
  .ki-work-card__video { display: none; }
}
