/* ── このページ専用スコープ（他ページ不干渉）── */
body.ti-active {
  margin: 0;
  padding: 0;
}

body.ti-active #site-header {
  transition:
    background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.ti-active #site-header.ti-on-hero {
  background: transparent !important;
  box-shadow: none !important;
}

body.ti-active #site-header.ti-on-hero #site-logo {
  color: #fff !important;
}

body.ti-active #site-header.ti-on-hero .hamburger-line {
  background: rgba(255, 255, 255, 0.85) !important;
}

body.ti-active #site-header.ti-on-hero #header-tagline {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ── スライダーセクション ── */
.ti-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #050508;
}

/* ── 背景フェード：非表示 ── */
.ti-bg {
  display: none;
}

/* ── グリッド ── */
.ti-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── 中央グロウ ── */
.ti-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: glow-pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: blur(40px);
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scale(0.95);
  }

  50% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes reveal-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes reveal-in-scale {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── スパーク層 ── */
.ti-sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* ── TEAM IMPACT 大文字（人物の後ろ）── */
.ti-watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
  font-family: "Bokor", cursive;
  text-align: center;
  letter-spacing: 0.08em;
}

.ti-watermark .wm-tagline {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.4rem, 10vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  margin-bottom: 14px;
  transition: color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ti-watermark .wm-service {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1rem, 3.5vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255, 196, 145, 0.48);
  margin: 30px 0 70px;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ti-watermark .wm-team {
  font-size: clamp(4rem, 20vw, 26rem);
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
  transition:
    color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    text-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ti-watermark .wm-impact {
  font-size: clamp(5rem, 25vw, 32rem);
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
  transition:
    color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    text-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ti-spark {
  position: absolute;
  border-radius: 50%;
  animation: spark-rise linear infinite;
}

/* 中型：横ドリフトあり */
.ti-spark.mid {
  animation-name: spark-drift;
}

/* 大型：その場でパルス */
.ti-spark.big {
  animation-name: spark-pulse;
  border-radius: 50%;
}

@keyframes spark-rise {
  0% {
    transform: translateY(0) scale(1) translateX(0);
    opacity: 0;
  }

  5% {
    opacity: 0.8;
  }

  85% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-80vh) scale(0.2) translateX(var(--tx, 0px));
    opacity: 0;
  }
}

@keyframes spark-drift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  6% {
    opacity: 0.85;
  }

  50% {
    transform: translate(var(--dx), -40vh) scale(0.8);
  }

  100% {
    transform: translate(calc(var(--dx) * 1.5), -80vh) scale(0.2);
    opacity: 0;
  }
}

@keyframes spark-pulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* ── 2. 人物カルーセル ── */
.ti-photos {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.ti-photos .swiper,
.ti-photo-swiper.swiper {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.ti-photos .swiper-slide {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ti-photos .swiper-slide img {
  height: 85%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  border-radius: 0;
  opacity: 0.35;
  transform: scale(0.85);
  filter: brightness(0.5);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease;
}

.ti-photos .swiper-slide-active img {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

/* ── 下部グラデーション ── */
.ti-grad {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

/* ── 3. テキスト（中央下固定）── */
.ti-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 10% 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Bokor", cursive;
  pointer-events: none;
}

.ti-text-inner {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.ti-text-inner.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.ti-num {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.6rem;
}

.ti-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3.2rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.5em;
  letter-spacing: 0.12em;
}

.ti-title .t1 {
  color: #f6f4f1;
}

.ti-title .t2 {
  color: #fff;
}

.ti-role {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
  color: rgba(246, 244, 241, 0.68);
  margin-bottom: 0.75rem;
}

.ti-desc {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.ti-btn {
  display: inline-block;
  font-family: "Bokor", cursive;
  font-size: 1.2rem;
  color: #1a1a1a;
  background: #fff;
  padding: 0 2rem;
  line-height: 3rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  pointer-events: auto;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.ti-btn:hover {
  background: #f6f4f1;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.ti-btn:active {
  transform: translateY(0);
}

/* ── ナビゲーション（PC：右端縦並び < > のみ） ── */
.ti-nav {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* paginationは非表示 */
.ti-hero .swiper-pagination {
  display: none;
}

.ti-arr {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 145, 0.5);
  background: transparent;
  color: #ffc491;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.ti-arr:hover {
  background: #ffc491;
  color: #0c0c0c;
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(255, 196, 145, 0.25);
}

.ti-arr:active {
  transform: scale(0.95);
}

.ti-arr svg {
  width: 1rem;
  height: 1rem;
}

/* ── 左下カウンター ── */
.ti-counter {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 20;
  font-family: "Bokor", cursive;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: rgba(255, 196, 145, 0.6);
  transition: color 0.35s ease;
}

/* ── スワイプヒント（SP専用） ── */
.ti-swipe-hint {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.sh-dot-wrap {
  display: flex;
  gap: 5px;
  animation: sh-slide 1.6s ease-in-out infinite;
}

.sh-dot-wrap span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 196, 145, 0.9);
}

.sh-dot-wrap span:nth-child(2) {
  opacity: 0.6;
}

.sh-dot-wrap span:nth-child(3) {
  opacity: 0.3;
}

@keyframes sh-slide {
  0% {
    transform: translateX(-8px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(8px);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .ti-swipe-hint {
    display: none;
  }

  .ti-num {
    display: none;
  }
}

/* ── 下コンテンツ ── */
.ti-content {
  background: #fff;
  min-height: 100vh;
  padding: 6rem 10%;
}

@media (max-width: 767px) {
  /* SP: ナビ・カウンター非表示 */
  .ti-nav {
    display: none;
  }

  .ti-counter {
    display: none;
  }

  /* SP: お問合せボタン分（約80px）上にずらす */
  .ti-text {
    padding: 0 6% calc(4rem + 80px);
  }

  .ti-title {
    font-size: 2.5rem;
  }

  .ti-watermark {
    justify-content: flex-start;
    padding-top: 15vh;
  }

  .ti-watermark .wm-tagline {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    margin-bottom: 25px;
  }

  .ti-watermark .wm-service {
    margin: 0 0 25px;
  }

  /* SP: 1枚ずつ・画像を大きく */
  .ti-photos .swiper-slide img {
    height: 80vh;
    width: auto;
    max-width: 100vw;
  }

  .ti-photos .swiper {
    touch-action: pan-y pinch-zoom;
  }
}

body.ti-active #site-header:not(.ti-on-hero) {
  background: rgba(246, 244, 241, 0.92) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) !important;
}

body.ti-active #site-header:not(.ti-on-hero) #site-logo {
  color: #1a1a1a !important;
}

body.ti-active #site-header:not(.ti-on-hero) .hamburger-line {
  background: rgba(26, 26, 26, 0.75) !important;
}

body.ti-active #site-header:not(.ti-on-hero) #header-tagline {
  color: rgba(26, 26, 26, 0.45) !important;
}

/* ── MESSAGE セクション ── */
.tim-section-outer {
  position: relative;
  background: #f6f4f1;
  overflow: hidden;
}

.tim-section {
  position: relative;
  background: transparent;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tim-orbs,
.tim-bg-glow {
  display: none;
}

.tim-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.tim-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  text-align: left;
}

.tim-label-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0 0;
  justify-content: center;
}

.tim-label-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.14));
}

.tim-label-line:last-child {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent);
}

.tim-label-text {
  font-family: "Averia Libre", cursive;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.tim-intro-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(7rem, 14vw, 11rem);
}

@media (max-width: 767px) {
  .tim-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.tim-intro-col-head .tim-tagline {
  margin-bottom: 0;
}

.tim-intro-col-body .tim-para:last-child {
  margin-bottom: 0;
}

.tim-tagline {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0 0 1.4rem;
}

.tim-tagline-accent {
  color: inherit;
}

.tim-accent {
  color: inherit;
  text-shadow: none;
}

.tim-sep {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3.5rem auto;
  justify-content: center;
  max-width: 200px;
}

.tim-sep-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.tim-sep-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: none;
  flex-shrink: 0;
}

.tim-para {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.62);
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
}

.tim-para .ts.tim-ts-one-line {
  white-space: nowrap;
}

.tim-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 4.5rem 0;
  text-align: left;
}

.tim-result-card {
  border: 1px solid rgba(255, 196, 145, 0.2);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.tim-result-card:hover {
  border-color: rgba(255, 196, 145, 0.5);
  box-shadow:
    0 16px 32px rgba(255, 196, 145, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.tim-result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 196, 145, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tim-result-card:hover {
  border-color: rgba(255, 196, 145, 0.55);
  box-shadow:
    0 0 28px rgba(255, 196, 145, 0.08),
    inset 0 0 28px rgba(255, 196, 145, 0.04);
}

.tim-result-card:hover::before {
  opacity: 1;
}

.tim-result-num {
  font-family: "Bokor", cursive;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(255, 196, 145, 0.4);
  margin-bottom: 1rem;
}

.tim-result-text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.tim-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tim-orb {
  position: absolute;
  border-radius: 50%;
  animation: tim-orb-radiate linear infinite;
}

@keyframes tim-orb-radiate {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) scale(1);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    transform: translate(-50%, -50%) translate(var(--ox), var(--oy)) scale(0.08);
    opacity: 0;
  }
}

.tim-flow-caption {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: min(960px, 100%);
  width: 100%;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0;
}

.tim-flow-caption-person {
  flex: 0 0 auto;
  margin: 0;
  align-self: flex-start;
}

.tim-flow-caption-avatar {
  width: clamp(64px, 14vw, 84px);
  height: clamp(64px, 14vw, 84px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(26, 26, 26, 0.08);
  background: #e8dfd4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tim-flow-caption-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tim-flow-caption-bubble {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: clamp(1.35rem, 2.8vw, 1.9rem) clamp(1.6rem, 3.2vw, 2.35rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.tim-flow-caption-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: clamp(1.75rem, 4vw, 2.25rem);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
  filter: drop-shadow(-1px 0 0 rgba(0, 0, 0, 0.06));
}

.tim-flow-caption-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.7rem;
  margin: 0 0 0.75rem;
}

.tim-flow-caption-name {
  font-family: "Shippori Mincho", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  line-height: 1.4;
}

.tim-flow-caption-role {
  font-family: "Averia Libre", cursive;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: rgba(26, 26, 26, 0.48);
}

.tim-flow-caption-lead {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0 0 0.8rem;
}

.tim-flow-caption-text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.62);
  margin: 0;
}

.tim-flow-caption-text + .tim-flow-caption-text {
  margin-top: 0.85em;
}

.tim-flow-caption-text strong {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.78);
}

@media (max-width: 767px) {
  .tim-flow-caption {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .tim-flow-caption-person {
    align-self: center;
  }

  .tim-flow-caption-bubble {
    width: 100%;
  }

  .tim-flow-caption-bubble::before {
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    border-top: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
    filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.06));
  }

  .tim-flow-caption-br {
    display: none;
  }
}

/* ── 提供サービス（SERVICE FLOW 内） ── */
.tim-services-block {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.tim-services-block .tim-label-row {
  margin-top: 0;
}

.tim-label-row--flow {
  margin-top: clamp(4rem, 8vw, 6rem);
}

.tim-svc-flow {
  display: flex;
  align-items: stretch;
  gap: clamp(0.5rem, 1.2vw, 1rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.tim-svc-stage {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition-delay: var(--stage-delay, 0ms);
}

.tim-svc-stage-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(2.35rem, 5.88vw, 4.4rem);
  margin: 0 0 clamp(0.35rem, 0.94vw, 0.7rem);
  padding: 0 clamp(0.15rem, 0.35vw, 0.25rem);
  font-family: inherit;
  font-size: clamp(0.625rem, 1.18vw, 0.875rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-align: center;
  border: 1px solid rgba(26, 26, 26, 0.22);
  border-radius: clamp(8px, 1.18vw, 14px);
}

.tim-svc-stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.71vw, 0.53rem);
}

.tim-svc-stage-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(1.75rem, 4.41vw, 3.3rem);
  padding: 0 clamp(0.15rem, 0.35vw, 0.25rem);
  font-family: inherit;
  font-size: clamp(0.625rem, 1.18vw, 0.875rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(26, 26, 26, 0.72);
  text-align: center;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: clamp(5px, 0.74vw, 9px);
}

.tim-svc-stage-list li.tim-svc-item-has-detail {
  flex-direction: column;
  gap: 0.25em;
  min-height: clamp(2.25rem, 5.5vw, 4rem);
  padding: clamp(0.35rem, 0.8vw, 0.55rem) clamp(0.2rem, 0.35vw, 0.3rem);
}

.tim-svc-item-label {
  font-weight: 500;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.3;
}

.tim-svc-item-detail {
  font-size: 0.88em;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(26, 26, 26, 0.52);
}

.tim-svc-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: clamp(0.9rem, 2.35vw, 1.75rem);
}

.tim-svc-arrow svg {
  display: block;
}

@media (max-width: 767px) {
  .tim-svc-flow {
    flex-direction: column;
    gap: 0;
  }

  .tim-svc-stage {
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  }

  .tim-svc-stage:first-child {
    border-top: 1px solid rgba(26, 26, 26, 0.12);
  }

  .tim-svc-arrow {
    padding: 0;
    margin: 0 auto;
    transform: rotate(90deg);
    height: 1.5rem;
  }
}

.tim-flow-chart {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.tim-container > .tim-flow-chart:last-child {
  margin-bottom: 0;
}

.tim-flow-chart::-webkit-scrollbar {
  display: none;
}

.tim-flow-chart svg {
  width: 100%;
  max-width: 100%;
  min-width: 900px;
  height: auto;
  flex-shrink: 0;
  display: block;
  margin: 0 auto;
  background: transparent;
}

.tw-session-flow {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.tw-session-flow-head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tw-session-flow-eyebrow {
  font-family: "Averia Libre", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0 0 0.65rem;
}

.tw-session-flow-heading {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0;
}

.tw-session-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tw-session-flow-item {
  display: grid;
  grid-template-columns: clamp(2.5rem, 5vw, 3.5rem) 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .tw-session-flow-item {
    grid-template-columns: clamp(3rem, 5vw, 4.5rem) 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.tw-session-flow-num {
  grid-column: 1;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.2);
  line-height: 1;
  padding-top: 0.12em;
}

.tw-session-flow-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.tw-session-flow-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.tw-session-flow-desc {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  font-weight: 500;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.58);
  margin: 0;
  letter-spacing: 0.03em;
  white-space: pre-line;
}

.tw-session-flow-note {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  padding: 0;
  border: none;
  text-align: left;
  font-family: "Averia Libre", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.38);
}

.tim-quote {
  margin: 3.5rem 0;
  padding: 2.5rem 2.5rem;
  border-top: 1px solid rgba(255, 196, 145, 0.3);
  border-bottom: 1px solid rgba(255, 196, 145, 0.3);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2.3;
  letter-spacing: 0.1em;
  position: relative;
  background: rgba(255, 196, 145, 0.03);
}

.tim-quote::before {
  content: "\201C";
  font-family: "Bokor", cursive;
  font-size: 5rem;
  color: rgba(255, 196, 145, 0.1);
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
}

.tim-finale {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 0;
  border-top: none;
  display: flex;
  justify-content: flex-end;
}

.tim-finale-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tw-cta-inner > .tim-finale {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.tim-finale-sub {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.62);
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
}

.tim-finale-title {
  font-family: "Bokor", cursive;
  line-height: 0.85;
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 400;
  color: transparent;
  text-align: left;
  animation: none;
}

.tim-finale-team {
  display: block;
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  -webkit-text-stroke: 1px #1a1a1a;
}

.tim-finale-impact {
  display: block;
  font-size: clamp(3rem, 12vw, 6.5rem);
  -webkit-text-stroke: 1.5px #1a1a1a;
}

/* Reveal アニメーション - モダン版 */
.tim-reveal {
  animation: reveal-in-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
  animation-play-state: paused;
}

.tim-reveal.tim-visible {
  animation-play-state: running;
}

/* スタッガード遅延: リスト要素ごとに遅延 */
.tim-reveal:nth-child(1) {
  animation-delay: 0s;
}

.tim-reveal:nth-child(2) {
  animation-delay: 0.12s;
}

.tim-reveal:nth-child(3) {
  animation-delay: 0.24s;
}

.tim-reveal:nth-child(4) {
  animation-delay: 0.36s;
}

.tim-reveal:nth-child(5) {
  animation-delay: 0.48s;
}

.tim-result-card {
  animation: reveal-in-scale 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  animation-play-state: paused;
}

.tim-result-card.tim-visible {
  animation-play-state: running;
}

.tim-result-card:nth-child(1) {
  animation-delay: 0.1s;
}

.tim-result-card:nth-child(2) {
  animation-delay: 0.2s;
}

.tim-result-card:nth-child(3) {
  animation-delay: 0.3s;
}

.tim-result-card:nth-child(4) {
  animation-delay: 0.4s;
}

.tim-result-card:nth-child(5) {
  animation-delay: 0.5s;
}

/* ── PC レイアウト ── */
@media (min-width: 768px) {
  .tim-label-row {
    justify-content: flex-start;
    margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  }

  .tim-flow-caption {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .tim-flow-chart {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .tim-label-line:first-child {
    max-width: 60px;
    flex: 0 0 60px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.14));
  }

  .tim-label-line:last-child {
    max-width: none;
    flex: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent);
  }

  .tim-para .ts {
    display: block;
  }
}

/* ── SP ── */
@media (max-width: 767px) {
  .tim-section {
    padding: 5rem 0 2.5rem;
  }

  .tim-section-outer + .tp-section {
    padding-top: 2.5rem;
  }

  .tim-para {
    text-align: left;
  }

  .tim-results {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .tim-result-card {
    padding: 1.5rem;
  }

  .tim-quote {
    padding: 2rem 1.5rem;
  }

  .tim-quote::before {
    font-size: 3rem;
  }

  .tim-finale-team {
    font-size: clamp(2.5rem, 18vw, 5rem);
    -webkit-text-stroke: 1px #1a1a1a;
  }

  .tim-finale-impact {
    font-size: clamp(3rem, 22vw, 6rem);
    -webkit-text-stroke: 1.5px #1a1a1a;
  }
}

/* ====== MEMBER WORKS ====== */
.tw-section {
  position: relative;
  background: #f6f4f1;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-bg-grid {
  display: none;
}

.tw-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.tw-section-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.tw-st-member,
.tw-st-works {
  display: inline;
  font-size: inherit;
  color: inherit;
  -webkit-text-stroke: 0;
  animation: none;
}

/* Member block */
.tw-member-block {
  margin-bottom: 7rem;
}

.tw-member-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tw-work-category {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.62);
  text-transform: none;
  margin: 0;
  -webkit-text-stroke: 0;
}

/* Video gallery */
.tw-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .tw-videos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tw-video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #e8dfd4;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}

.tw-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.tw-video-card:hover img {
  transform: scale(1.05);
}

.tw-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.4s;
}

.tw-video-card:hover .tw-video-overlay {
  background: transparent;
}

.tw-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  animation: none;
}

@keyframes tw-play-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 196, 145, 0);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 196, 145, 0.1);
  }
}

.tw-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #1a1a1a;
  margin-left: 3px;
}

.tw-video-card:hover .tw-play-btn {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: scale(1.06);
  animation: none;
}

.tw-video-card:hover .tw-play-btn svg {
  fill: #f6f4f1;
}

.tw-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1.1rem;
  font-family: "Shippori Mincho", serif;
  font-size: 0.82rem;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  font-weight: 500;
  background: linear-gradient(
    0deg,
    rgba(246, 244, 241, 0.92) 0%,
    transparent 100%
  );
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease;
}

.tw-video-card:hover .tw-video-label {
  opacity: 1;
}

/* Photo masonry */
.tw-photo-grid {
  columns: 3;
  column-gap: 0.5rem;
}

.tw-photo-item {
  break-inside: avoid;
  overflow: hidden;
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: 0.75rem;
  background: #e8dfd4;
}

.tw-photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s ease;
}

.tw-photo-item:hover img {
  transform: scale(1.05);
}

.tw-photo-item--more {
  display: none;
}

.tw-photo-grid.is-expanded .tw-photo-item--more {
  display: block;
}

.tw-photo-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.tw-photo-grid.is-expanded + .tw-photo-more-wrap {
  display: none;
}

.tw-photo-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #f6f4f1;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 9999px;
  padding: clamp(0.85rem, 1.6vw, 1.05rem) clamp(1.35rem, 2.8vw, 1.85rem);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    gap 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tw-photo-more-btn:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  gap: 0.85rem;
}

.tw-photo-more-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(246, 244, 241, 0.15);
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.tw-photo-more-btn-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tw-photo-more-btn:hover .tw-photo-more-btn-icon {
  background: rgba(246, 244, 241, 0.22);
  transform: translateY(2px);
}

@media (max-width: 900px) {
  .tw-photo-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .tw-photo-grid {
    columns: 2;
    column-gap: 0.35rem;
  }

  .tw-photo-item {
    margin-bottom: 0.35rem;
  }
}

/* Video modal */
.tw-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.tw-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.tw-modal-inner {
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.tw-modal-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.tw-modal-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.tw-modal-close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 196, 145, 0.6);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
  font-family: sans-serif;
}

.tw-modal-close:hover {
  color: #ffc491;
}

/* Photo lightbox */
.tw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tw-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.tw-lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  user-select: none;
  cursor: grab;
}

.tw-lb-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
  pointer-events: none;
}

.tw-lb-close,
.tw-lb-prev,
.tw-lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 196, 145, 0.6);
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s;
  padding: 0.5rem;
  font-family: sans-serif;
}

.tw-lb-close:hover,
.tw-lb-prev:hover,
.tw-lb-next:hover {
  color: #ffc491;
}

.tw-lb-close {
  top: 1.5rem;
  right: 2rem;
  font-size: 2.2rem;
  line-height: 1;
}

.tw-lb-prev,
.tw-lb-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  line-height: 1;
}

.tw-lb-prev {
  left: 1rem;
}

.tw-lb-next {
  right: 1rem;
}

.tw-lb-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.tw-lb-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* Reveal - モダン版 */
.tw-reveal {
  animation: reveal-in-up 0.68s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
  animation-play-state: paused;
}

.tw-reveal.tw-visible {
  animation-play-state: running;
}

/* 個別の遅延 */
.tw-reveal:nth-child(1) {
  animation-delay: 0s;
}

.tw-reveal:nth-child(2) {
  animation-delay: 0.15s;
}

.tw-reveal:nth-child(3) {
  animation-delay: 0.3s;
}

.tw-video-card,
.tw-photo-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.tw-video-card.tw-visible,
.tw-photo-item.tw-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .tw-section {
    padding: 5rem 0 7rem;
  }

  .tw-inner {
    padding: 0 6%;
  }

  .tw-member-block {
    margin-bottom: 4rem;
  }

  .tw-play-btn {
    width: 44px;
    height: 44px;
  }

  .tw-play-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ====== MEMBER PROFILES セクション（Superpower風） ====== */
.tp-section {
  position: relative;
  background: #f6f4f1;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: visible;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tim-section-outer + .tp-section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.tp-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.tp-header {
  text-align: left;
}

.tp-heading {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0 0 0.85rem;
  max-width: none;
}

.tp-subheading {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.62);
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

/* MEMBER Swiper（style.css の .swiper グローバル指定を上書き） */
.tp-member-swiper.swiper {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.tp-member-swiper .swiper-slide {
  height: auto;
  width: clamp(260px, 72vw, 300px);
  box-sizing: border-box;
}

.tp-member-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

@media (min-width: 768px) {
  .tp-member-swiper {
    padding-left: clamp(1.25rem, 5vw, 3rem);
    padding-right: clamp(1.25rem, 5vw, 3rem);
    box-sizing: border-box;
  }

  .tp-member-swiper .swiper-slide {
    width: 300px;
  }
}

.tp-card {
  cursor: pointer;
}

.tp-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  background: #e8dfd4;
  margin-bottom: 1.25rem;
}

.tp-card-tone-1 .tp-card-photo,
.tp-card:nth-child(6n + 1) .tp-card-photo {
  background: #ebe3d6;
}

.tp-card-tone-2 .tp-card-photo,
.tp-card:nth-child(6n + 2) .tp-card-photo {
  background: #e4ddd4;
}

.tp-card-tone-3 .tp-card-photo,
.tp-card:nth-child(6n + 3) .tp-card-photo {
  background: #efe8dc;
}

.tp-card-tone-4 .tp-card-photo,
.tp-card:nth-child(6n + 4) .tp-card-photo {
  background: #e6e0d8;
}

.tp-card-tone-5 .tp-card-photo,
.tp-card:nth-child(6n + 5) .tp-card-photo {
  background: #ece5da;
}

.tp-card-tone-6 .tp-card-photo,
.tp-card:nth-child(6n + 6) .tp-card-photo {
  background: #e9e2d7;
}

.tp-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s ease;
}

.tp-card:hover .tp-card-photo img {
  transform: scale(1.03);
}

.tp-card-body {
  padding: 0 0.15rem;
}

.tp-card-name {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.tp-card-role {
  font-family: "Averia Libre", cursive;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0 0 0.85rem;
}

.tp-card-bio {
  font-family: "Shippori Mincho", serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.62);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Shippori Mincho", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 0.15rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.tp-card:hover .tp-card-link {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.55);
  gap: 0.55rem;
}

.tp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 5vw, 3rem) 0;
}

.tp-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #1a1a1a;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.tp-nav-btn:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #f6f4f1;
  transform: translateY(-1px);
}

.tp-nav-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.tp-nav-prev svg {
  transform: translateX(-1px);
}

.tp-nav-next svg {
  transform: translateX(1px);
}

/* ====== 固定お問合せカード ====== */
.ti-fixed-contact-card {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1025px) {
  .ti-fixed-contact-card {
    display: flex;
  }
}

.ti-fixed-contact-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.ti-fixed-contact-label {
  font-family: "Shippori Mincho", serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}

.ti-fixed-contact-arrow {
  width: 20px;
  height: 20px;
  color: rgba(255, 196, 145, 0.6);
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.ti-fixed-contact-card:hover .ti-fixed-contact-arrow {
  color: rgba(255, 196, 145, 0.9);
  transform: translateY(4px);
}

/* ====== プロフィールモーダル（MEMBER PROFILES テイスト） ====== */
.tpm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 26, 26, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.tpm-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.tpm-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  background: #f6f4f1;
  border-radius: 1.25rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.35s ease;
}

.tpm-overlay.is-open .tpm-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.tpm-close {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.15rem);
  right: clamp(0.85rem, 2vw, 1.15rem);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.25s,
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  z-index: 3;
}

.tpm-close:hover {
  color: #1a1a1a;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  transform: rotate(90deg);
}

.tpm-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: clamp(2.5rem, 5vw, 3rem);
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

@media (min-width: 768px) {
  .tpm-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(2.5rem, 4vw, 3rem);
  }
}

.tpm-photo {
  flex-shrink: 0;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
  background: #e8dfd4;
}

@media (min-width: 768px) {
  .tpm-photo {
    width: 38%;
    max-width: 300px;
    margin: 0;
  }
}

.tpm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.3s ease;
}

.tpm-info {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-right: 0.5rem;
}

.tpm-name-ja {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  padding-right: 2.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.08s,
    transform 0.4s ease 0.08s;
}

.tpm-overlay.is-open .tpm-name-ja {
  opacity: 1;
  transform: translateY(0);
}

.tpm-name-en {
  font-family: "Averia Libre", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0 0 0.45rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.14s,
    transform 0.4s ease 0.14s;
}

.tpm-overlay.is-open .tpm-name-en {
  opacity: 1;
  transform: translateY(0);
}

.tpm-role {
  font-family: "Averia Libre", cursive;
  font-size: clamp(0.75rem, 1.2vw, 0.82rem);
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0 0 0.15rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.2s,
    transform 0.4s ease 0.2s;
}

.tpm-overlay.is-open .tpm-role {
  opacity: 1;
  transform: translateY(0);
}

.tpm-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1rem 0 1.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.24s,
    transform 0.4s ease 0.24s;
}

.tpm-overlay.is-open .tpm-badges {
  opacity: 1;
  transform: translateY(0);
}

.tpm-badge {
  padding: 0.85rem 0;
  min-width: 0;
}

.tpm-badge + .tpm-badge {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tpm-badge-value {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin-bottom: 0.15rem;
  overflow-wrap: anywhere;
}

.tpm-badge-label {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.48);
  overflow-wrap: anywhere;
}

.tpm-sep {
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
  margin: 0 0 0.75rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.28s;
}

.tpm-overlay.is-open .tpm-sep {
  opacity: 1;
}

.tpm-career {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.32s,
    transform 0.4s ease 0.32s;
}

@media (max-width: 767px) {
  .tpm-career {
    max-height: 28vh;
  }
}

.tpm-career::-webkit-scrollbar {
  width: 5px;
}

.tpm-career::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
}

.tpm-career::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}

.tpm-overlay.is-open .tpm-career {
  opacity: 1;
  transform: translateY(0);
}

.tpm-career li {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.86rem, 1.5vw, 0.95rem);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.75;
  letter-spacing: 0.03em;
  padding-left: 0;
  position: relative;
  margin-bottom: 0.85rem;
}

.tpm-career li:last-child {
  margin-bottom: 0;
}

.tpm-career li::before {
  content: none;
}

.tpm-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.35);
}

.tpm-arr {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.tpm-arr:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #f6f4f1;
}

.tpm-arr svg {
  width: 0.95rem;
  height: 0.95rem;
}

.tpm-counter {
  font-family: "Shippori Mincho", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  min-width: 4.5rem;
  justify-content: center;
}

/* ── ご相談から運用までの流れ ── */
.tw-flow-section {
  position: relative;
  background: #f6f4f1;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-flow-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.tw-flow-section .tw-session-flow {
  margin-top: 0;
}

.tw-flow-section .tw-session-flow-head .tw-qa-title {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tw-flow-section + .tw-qa-section {
  border-top: none;
  padding-top: clamp(4rem, 8vw, 7rem);
}

/* ── QA セクション ── */
.tw-qa-section {
  position: relative;
  background: #f6f4f1;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-qa-section .tw-qa-bg-grid {
  display: none;
}

.tw-qa-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.tw-qa-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}

.tw-qa-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tw-qa-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.tw-qa-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tw-qa-question {
  width: 100%;
  padding: 2rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: opacity 0.2s ease;
  text-align: left;
}

.tw-qa-question:hover {
  opacity: 1;
}

.tw-qa-question:hover .tw-qa-text {
  color: rgba(0, 0, 0, 0.72);
}

.tw-qa-label {
  font-family: "Averia Libre", cursive;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.55);
  min-width: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.tw-qa-text {
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.65;
}

.tw-qa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  color: rgba(0, 0, 0, 0.45);
}

.tw-qa-question[aria-expanded="true"] .tw-qa-icon {
  transform: rotate(180deg);
  color: #1a1a1a;
}

.tw-qa-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.tw-qa-answer-wrap {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.tw-qa-item.is-open .tw-qa-answer-wrap {
  grid-template-rows: 1fr;
}

.tw-qa-answer-inner {
  overflow: hidden;
}

.tw-qa-item.is-open .tw-qa-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-qa-answer {
  padding: 1.75rem 0 2.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.tw-qa-answer .tw-qa-label {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.82rem;
  padding-top: 0.1rem;
}

.tw-qa-answer .tw-qa-text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  font-weight: 400;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.78);
}

/* ── CTA セクション ── */
.tw-qa-section + .tw-cta-section {
  border-top: none;
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.tw-cta-section {
  position: relative;
  background: #f6f4f1;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-cta-section .tw-cta-bg-grid {
  display: none;
}

.tw-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.tw-cta-message {
  text-align: left;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.tw-cta-message h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  color: #1a1a1a;
  letter-spacing: 0.04em;
}

.tw-cta-message .tim-tagline.tw-cta-tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
}

.tw-cta-message .tw-session-flow {
  margin-top: 0;
}

.tw-cta-message .tw-session-flow-note {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
}

.tw-cta-message p:not(.tim-tagline):not(.tw-session-flow-note) {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.85;
  margin: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .tw-cta-message p {
    font-size: clamp(0.85rem, 4vw, 1.05rem);
  }
}

.tw-form-head {
  max-width: 768px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.tw-form-head .tw-qa-title {
  margin-bottom: 0;
  text-align: center;
}

.tw-cta-form-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  overflow: hidden;
}

/* ── Form Steps ── */
.tw-form-steps {
  margin-bottom: 40px;
}

.tw-steps-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}

.tw-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.tw-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 14px;
  width: 40px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
}

.tw-step-item:not(:last-child) .tw-step-marker.completed ~ ::after {
  background: #1a1a1a;
}

.tw-step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tw-step-marker.active {
  background: #333;
  color: white;
}

.tw-step-marker.completed {
  background: #1a1a1a;
  color: white;
}

.tw-step-marker svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.tw-step-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.tw-step-item .tw-step-marker.active ~ .tw-step-label {
  color: #333;
}

.tw-step-item .tw-step-marker.completed ~ .tw-step-label {
  color: #1a1a1a;
}

/* ── Form Fields ── */
.tw-form-wrapper {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tw-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.tw-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tw-form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
}

.tw-form-field input,
.tw-form-field textarea {
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  font-size: 16px;
  background: transparent;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.tw-form-field input:focus,
.tw-form-field textarea:focus {
  outline: none;
  border-bottom-color: #1a1a1a;
}

.tw-form-field input::placeholder,
.tw-form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.tw-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.tw-optional {
  font-weight: 400;
  color: #999;
  text-transform: none;
}

.tw-required-mark {
  color: #1a1a1a;
  font-weight: 700;
}

.tw-textarea-field textarea {
  min-height: 140px;
}

.tw-privacy-field {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tw-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  font-weight: normal;
}

.tw-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.tw-checkbox-label a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tw-checkbox-label a:hover {
  text-decoration: underline;
}

.tw-form-error {
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  border-radius: 4px;
  margin-bottom: 32px;
}

.tw-form-error-title {
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tw-form-error ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.tw-form-error li {
  font-size: 12px;
  color: #991b1b;
  margin-bottom: 4px;
}

.tw-form-submit {
  width: 100%;
  padding: 16px 24px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.tw-form-submit:hover {
  background: #1a1a1a;
}

.tw-form-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ── 確認画面 ── */
.tw-form-confirm {
  padding-top: 0.5rem;
}

.tw-confirm-notice {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.tw-confirm-notice p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.65);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.tw-confirm-table {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 2.5rem;
}

.tw-confirm-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 1rem 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-confirm-row dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.45);
  padding-top: 3px;
}

.tw-confirm-row dd {
  margin: 0;
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.85;
  word-break: break-word;
}

.tw-confirm-row dd.tw-confirm-name {
  font-weight: 700;
}

.tw-confirm-row dd.tw-confirm-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2d6a4f;
  font-size: 0.85rem;
}

.tw-confirm-row dd.tw-confirm-privacy svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.tw-confirm-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tw-confirm-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(26, 26, 26, 0.25);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tw-confirm-back:hover {
  color: #f6f4f1;
  border-color: #1a1a1a;
  background: #1a1a1a;
}

.tw-confirm-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.tw-confirm-submit-btn {
  width: auto;
}

.tw-form-submit.is-submitting {
  cursor: wait;
  opacity: 0.88;
  pointer-events: none;
}

.tw-form-submit.is-submitting svg {
  display: none;
}

.tw-form-submit.is-submitting::before {
  content: "";
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: tw-submit-spin 0.75s linear infinite;
  flex-shrink: 0;
}

.tw-confirm-buttons.is-submitting .tw-confirm-back:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

@keyframes tw-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── 送信完了 ── */
.tw-form-thanks {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.tw-thanks-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: rgba(26, 26, 26, 0.4);
  font-family: "Bokor", cursive;
  margin: 0 0 1.25rem;
}

.tw-thanks-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #1a1a1a;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.tw-thanks-check svg {
  width: 28px;
  height: 28px;
  color: #f6f4f1;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.tw-form-thanks h3 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.tw-thanks-body {
  font-size: 0.88rem;
  color: rgba(26, 26, 26, 0.65);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.tw-thanks-body p {
  margin: 0 0 1rem;
}

.tw-thanks-body strong {
  color: #1a1a1a;
  font-weight: 700;
}

.tw-thanks-note {
  font-size: 0.78rem !important;
  color: rgba(26, 26, 26, 0.45) !important;
}

.tw-thanks-note a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tw-thanks-divider {
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 2rem auto;
}

.tw-thanks-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1a1a1a;
  color: #f6f4f1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tw-thanks-home:hover {
  background: #333;
  color: #f6f4f1;
}

.tw-thanks-home svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

@media (max-width: 640px) {
  .tw-confirm-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .tw-confirm-buttons {
    flex-direction: column;
  }

  .tw-confirm-back,
  .tw-confirm-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ====== THREADS 最新投稿（吹き出し） ====== */

.ti-threads {
  position: relative;
  background: #f6f4f1;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ti-threads-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.ti-threads-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ti-threads-eyebrow {
  font-family: "Averia Libre", cursive;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0 0 0.85rem;
}

.ti-threads-heading {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.ti-threads-lead {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

.ti-threads-layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.ti-threads-person {
  flex: 0 0 auto;
  margin: 0;
  align-self: flex-start;
}

.ti-threads-avatar {
  width: clamp(72px, 16vw, 96px);
  height: clamp(72px, 16vw, 96px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(26, 26, 26, 0.08);
  background: #e8dfd4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ti-threads-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ti-threads-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin: 0 0 0.65rem;
}

.ti-threads-name {
  font-family: "Shippori Mincho", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  line-height: 1.4;
}

.ti-threads-handle {
  font-family: "Averia Libre", cursive;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(26, 26, 26, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ti-threads-handle:hover {
  color: #1a1a1a;
}

.ti-threads-bubble {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.ti-threads-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: clamp(2.25rem, 5vw, 2.75rem);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
  filter: drop-shadow(-1px 0 0 rgba(0, 0, 0, 0.06));
}

.ti-threads-text {
  margin: 0;
  padding: 0;
  border: none;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.92rem, 1.7vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.82);
  white-space: pre-line;
  word-break: break-word;
}

.ti-threads-media {
  margin: 1rem 0 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ti-threads-media img {
  display: block;
  width: 100%;
  height: auto;
}

.ti-threads-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ti-threads-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Averia Libre", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ti-threads-link:hover {
  opacity: 0.7;
}

.ti-threads-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #1a1a1a;
  color: #f6f4f1;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.ti-threads-date {
  font-family: "Averia Libre", cursive;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.4);
}

@media (max-width: 767px) {
  .ti-threads-layout {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .ti-threads-person {
    flex-shrink: 0;
    align-self: center;
  }

  .ti-threads-bubble {
    width: 100%;
  }

  .ti-threads-bubble::before {
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    border-top: none;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.06));
  }
}

/* ── Mid-page CTA（Samara風） ── */
.tw-mid-cta {
  position: relative;
  background: #f6f4f1;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.tw-mid-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.tw-mid-cta-worries {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  padding: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.9vw, 1.2rem);
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.42);
}

.tw-mid-cta-worries span {
  display: block;
}

.tw-mid-cta-video {
  width: 100%;
  max-width: 860px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
}

.tw-mid-cta-video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.tw-mid-cta-video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0a0a0a;
}

.tw-mid-cta-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.tw-mid-cta-video-player.is-playing .tw-mid-cta-video-play {
  opacity: 0;
  pointer-events: none;
}

.tw-mid-cta-sub {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.9vw, 1.15rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.05em;
  color: rgba(26, 26, 26, 0.58);
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}

.tw-mid-cta-line {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

.tw-mid-cta-lead {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin: 0;
}

.tw-mid-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.tw-mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #f6f4f1;
  text-decoration: none;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 9999px;
  padding: clamp(0.9rem, 1.8vw, 1.15rem) clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    gap 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tw-mid-cta-btn:hover {
  background: #333;
  border-color: #333;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  gap: 1rem;
}

.tw-mid-cta-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(246, 244, 241, 0.15);
  color: inherit;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.tw-mid-cta-btn:hover .tw-mid-cta-btn-arrow {
  background: rgba(246, 244, 241, 0.22);
  transform: translateX(2px);
}

.tw-mid-cta-btn-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.tw-mid-cta-note {
  font-family: "Averia Libre", cursive;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.42);
  margin: 0;
  letter-spacing: 0.12em;
}

.tw-cta-capacity-note {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.tw-cta-capacity-note em {
  font-style: normal;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}

.tw-cta-capacity-note--mid {
  max-width: 36rem;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0;
  text-align: center;
}

.tw-cta-capacity {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
  text-align: left;
}

.tw-cta-capacity-person {
  flex: 0 0 auto;
  margin: 0;
  align-self: flex-start;
}

.tw-cta-capacity-avatar {
  width: clamp(56px, 12vw, 72px);
  height: clamp(56px, 12vw, 72px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(26, 26, 26, 0.08);
  background: #e8dfd4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tw-cta-capacity-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tw-cta-capacity-bubble {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.5rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.tw-cta-capacity-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: clamp(1.5rem, 3.5vw, 2rem);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
  filter: drop-shadow(-1px 0 0 rgba(0, 0, 0, 0.06));
}

.tw-cta-capacity-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin: 0 0 0.55rem;
}

.tw-cta-capacity-name {
  font-family: "Shippori Mincho", serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  line-height: 1.4;
}

.tw-cta-capacity-role {
  font-family: "Averia Libre", cursive;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: rgba(26, 26, 26, 0.48);
}

.tw-cta-capacity-text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.62);
  margin: 0;
}

.tw-cta-capacity-text em {
  font-style: normal;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}

.tw-cta-capacity--form {
  max-width: 768px;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (max-width: 767px) {
  .tw-cta-capacity {
    flex-direction: column;
    align-items: center;
  }

  .tw-cta-capacity-person {
    align-self: center;
  }

  .tw-cta-capacity-bubble {
    width: 100%;
  }

  .tw-cta-capacity-bubble::before {
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    border-top: none;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.06));
  }
}

.tw-br-sp {
  display: none;
}

@media (max-width: 768px) {
  .tw-br-sp {
    display: inline;
  }

  .tw-hide-sp {
    display: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tw-flow-section {
    padding: 5rem 0 2.5rem;
  }

  .tw-qa-section {
    padding: 0 0 4rem;
  }

  .tw-flow-section + .tw-qa-section {
    padding-top: 4.5rem;
  }

  .tw-cta-section {
    padding: 5rem 0 6rem;
  }

  .tw-qa-section + .tw-cta-section {
    padding-top: 2.5rem;
  }

  .tw-cta-form-wrapper {
    padding: 2rem;
  }

  .tw-mid-cta-inner {
    padding: clamp(3.5rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  }

  .tw-mid-cta-lead {
    max-width: none;
  }

  .tw-mid-cta-action {
    align-items: center;
  }

  .tw-step-item:not(:last-child)::after {
    right: -12px;
    width: 24px;
    top: 14px;
  }

  .tw-form-fields {
    gap: 20px;
  }

  .tw-form-steps {
    margin-bottom: 32px;
  }

  .tw-confirm-row {
    grid-template-columns: 90px 1fr;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .tw-confirm-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .tw-confirm-back {
    justify-content: center;
    padding: 12px 20px;
  }

  .tw-confirm-submit-btn {
    width: 100%;
  }
}

/* Interview article cards */
.tw-interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .tw-interview-grid {
    grid-template-columns: 1fr;
  }
}

.tw-interview-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.tw-interview-card.tw-visible {
  opacity: 1;
  transform: translateY(0);
}

.tw-interview-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.tw-interview-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  background: #e8dfd4;
}

.tw-interview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.tw-interview-card:hover .tw-interview-thumb img {
  transform: scale(1.05);
}

.tw-interview-body {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tw-interview-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: rgba(26, 26, 26, 0.4);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.tw-interview-num {
  font-family: "Bokor", cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 196, 145, 0.55);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.tw-interview-divider {
  width: 2rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
  transition: width 0.35s ease;
}

.tw-interview-card:hover .tw-interview-divider {
  width: 3rem;
}

.tw-interview-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin-top: auto;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.tw-interview-card:hover .tw-interview-cta {
  color: rgba(0, 0, 0, 0.55);
  gap: 0.75rem;
}

.tw-interview-cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tw-interview-card:hover .tw-interview-cta svg {
  transform: translateX(4px);
}

/* ── 事例 CPT グリッド ── */
.wcs-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1rem);
}

@media (max-width: 768px) {
  .wcs-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .wcs-case-grid {
    grid-template-columns: 1fr;
  }
}

.wcs-case-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #e8dfd4;
  text-decoration: none;
  border-radius: 1rem;
}

.wcs-case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.wcs-case-card:hover img {
  transform: scale(1.03);
}

.wcs-case-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ebe3d6 0%, #e4ddd4 100%);
}

.wcs-case-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(
    0deg,
    rgba(5, 5, 8, 0.82) 0%,
    rgba(5, 5, 8, 0.1) 60%,
    transparent 100%
  );
  transition: background 0.4s;
}

.wcs-case-card:hover .wcs-case-overlay {
  background: linear-gradient(
    0deg,
    rgba(5, 5, 8, 0.88) 0%,
    rgba(5, 5, 8, 0.2) 60%,
    transparent 100%
  );
}

.wcs-case-title {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.35;
  transition: color 0.2s;
}

.wcs-case-card:hover .wcs-case-title {
  color: rgba(246, 244, 241, 0.92);
}
