#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 背景テキスト共通 */
.hero-bgtxt {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 50%;
  overflow: hidden;
  pointer-events: none;
}

.hero-bgtxt-third {
  top: 0;
}

.hero-bgtxt-voice {
  bottom: 0;
}

.hero-bgtxt-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.hero-bgtxt img {
  flex: 0 0 auto;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  margin-right: 120px;
}

/* 上部：右 → 左 */
.hero-bgtxt-third .hero-bgtxt-track {
  animation: heroBgtxtLeft 50s linear infinite;
}

/* 下部：左 → 右 */
.hero-bgtxt-voice .hero-bgtxt-track {
  animation: heroBgtxtRight 50s linear infinite;
  background: rgba(0, 0, 0, 0.15);
}

@keyframes heroBgtxtLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroBgtxtRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-copy-text {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  font-size: 88px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  letter-spacing: -0.04em;
  white-space: nowrap;
  opacity: 1;
  transform: translateX(-50%);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  perspective: 800px;
}

.hero-copy-text span {
  color: #fff !important;
}

.hero-copy-text.is-enter {
  opacity: 0;
  transform: translateX(calc(-50% - 120px));
}

.hero-copy-text.is-exit {
  opacity: 0;
  transform: translateX(calc(-50% + 120px));
}

.hero-copy-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-80px) rotateY(-90deg);
  transform-origin: left center;
  backface-visibility: hidden;
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.16, 0.84, 0.2, 1);
}

.hero-copy-char.is-show {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.hero-copy-char.is-hero-large {
  font-size: 1.8em;
  line-height: 1;
  vertical-align: baseline;
}

.hero-copy-logo {
  position: absolute;
  left: 50%;
  top: -60px;
  z-index: 1;
  display: block;
  width: 850px;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translate(-50%, -24px);
  transition:
    opacity 2s ease,
    transform 2s ease;
  pointer-events: none;
}

.hero-copy-final-text {
  position: absolute;
  left: 50%;
  top: calc(100% + -10px);
  z-index: 1;
  width: 100%;
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
  color: #fff;
  font-weight: 100;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  pointer-events: none;
}

.hero-copy-final-text.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-copy-logo.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-copy-inner {
  position: relative;
  width: 100%;
  height: calc(88px * 1.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy-cta {
  position: absolute;
  left: 50%;
  top: calc(100% + 90px);
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  padding: 0;
  border: 1px solid #43b99c !important;
  background: #43b99c !important;
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-sizing: border-box;

  opacity: 0;
  transform: translate(-50%, 0) scale(0.88);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 0.84, 0.2, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;

  pointer-events: auto;
}

.hero-copy-cta.is-show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.hero-copy-cta:hover,
.hero-copy-cta:active,
.hero-copy-cta:focus,
.hero-copy-cta:focus-visible {
  border: 1px solid #43b99c !important;
  background: transparent !important;
  color: #43b99c !important;
  outline: none;
  box-shadow: none;
  transform: translate(-50%, 0) scale(1);
}

/* ============================================================
   Common
============================================================ */

.mb0 {
  margin-bottom: 0 !important;
}

.sec {
  position: relative;
  width: 100% !important;
  padding: 120px 30px;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  --secttl-en-color: #46c1a3;
  --secttl-en-size: 42px;
  --secttl-jp-color: #fff;
  --secttl-jp-size: 48px;

  margin-bottom: 10px;
  text-align: center;
}

.section-title .secttl_en,
.section-title .secttl_jp {
  margin: 0;
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.9s cubic-bezier(0.12, 0.85, 0.18, 1),
    transform 0.9s cubic-bezier(0.12, 0.85, 0.18, 1);
}

.section-title .secttl_en {
  color: var(--secttl-en-color);
  font-size: var(--secttl-en-size);
  line-height: 1.2;
  font-style: italic;
  font-weight: 100 !important;
  transform: translateX(140px);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.section-title .secttl_jp {
  color: var(--secttl-jp-color);
  font-size: var(--secttl-jp-size);
  line-height: 1.35;
  font-weight: 100 !important;
  transform: translateX(-140px);
  font-feature-settings: 'palt';
  letter-spacing: -0.08em;
}

.section-title.is-visible .secttl_en,
.section-title.is-visible .secttl_jp {
  opacity: 1;
  transform: translateX(0);
}

.section-title .secttl_jp_sub {
  margin: 8px 0 20px;
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 100 !important;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: 0.75s;
  display: inline-block;
  background: rgba(0, 0, 0, 0.75);
  padding: 0 30px;

  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.section-title.is-visible .secttl_jp_sub {
  opacity: 1;
  transform: translateY(0);
}

.section-line {
  width: 1px;
  height: 40px;
  margin: 0 auto 15px;
  background: #e7db14;
}

@media (max-width: 1200px) {
  .sec {
    padding: 100px 20px;
  }
  .section-title {
    --secttl-en-size: 30px;
    --secttl-jp-size: 32px;
  }
  .section-title .secttl_en {
    margin-bottom: 6px;
  }
  .section-line {
    height: 30px;
  }
}

@media (max-width: 767px) {
  .sec {
    padding: 60px 17px;
  }
  .section-title {
    --secttl-en-size: 20px;
    --secttl-jp-size: 22px;
  }
  .section-title .secttl_en {
    margin-bottom: 3px;
  }
  .section-line {
    height: 25px;
  }
}

@media (max-width: 480px) {
  .sec {
    padding: 40px 17px;
  }
  .section-title {
    --secttl-en-size: 20px;
    --secttl-jp-size: 22px;
  }
  .section-line {
    height: 20px;
  }
}

/* ============================================================
   What's section
============================================================ */

.whats-section {
  background: url('/wp-content/uploads/2026/05/tv_whats_bg.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

/* ============================================================
   What's slider
============================================================ */

.whats-slider {
  width: 100%;
}

.whats-slider-viewport {
  position: relative;
  width: 100%;
  perspective: 1200px;
  overflow: hidden;
}

.whats-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--cube-z, 300px) * -1)) rotateY(0deg);
  transition: transform 1.45s cubic-bezier(0.14, 0.82, 0.18, 1);
  will-change: transform;
}

.whats-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  backface-visibility: hidden;
  transform: rotateY(calc(var(--slide-i) * 120deg)) translateZ(var(--cube-z, 300px));
}

.whats-slide-content p {
  color: #ccc;
  font-size: 24px;
  line-height: 1.95;
  letter-spacing: 0.17em;
  text-align: center;
  margin: 0 0 30px;
}

.whats-slide-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   What's dots
============================================================ */

.whats-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.whats-dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  appearance: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.whats-dot.is-active {
  background: #46c1a3;
}

.whats-dot:hover {
  transform: scale(1.15);
}

/* ============================================================
   Why section
============================================================ */

.why-section {
  background: url('/wp-content/uploads/2026/05/tv_why_bg.jpg') center top / cover no-repeat;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 30px;
}

.why-card {
  position: relative;
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card-icon {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: #46c1a3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
}

.why-card-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.why-card-body {
  position: relative;
  flex: 1;
  min-height: 435px;
  padding: 108px 20px 34px;
  background: rgba(254, 254, 254, 0.25);
}

.why-card-body::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid #46c1a3;
  pointer-events: none;
}

.why-card h4 {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto 22px;
  padding: 8px 18px;
  background: #e7db14;
  color: #222;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.why-number-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1;
}

.why-number {
  font-size: 120px;
  letter-spacing: -0.06em;
  color: #fff;
}

.why-unit {
  margin-left: 8px;
  font-size: 60px;
  color: #fff;
}

.why-text {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.why-ref {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

.why-bottom-text {
  margin-top: 42px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.why-bottom-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-bottom-text p {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.why-bottom-text span {
  display: inline-block;
  border-bottom: 2px solid #e7db14;
  color: #fff;
}

/* ============================================================
   Strong section
============================================================ */

.strong-section {
  padding-left: 0;
  padding-right: 0;
  background: #46c1a3;
}

.strong-section .section-title {
  --secttl-en-color: #fefefe;
  --secttl-jp-color: #222222;
}

.strong-stage-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.strong-stage {
  position: relative;
  width: 100%;
  padding-top: 120px;
  opacity: 0;
  transform: translateX(140px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.14, 0.82, 0.18, 1);
}

.strong-stage.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   Outer area
============================================================ */

.strong-stage--right .strong-label {
  position: absolute;
  left: -13px;
  top: -123px;
  z-index: 3;
  margin: 0;
  color: #222222;
  font-size: 150px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.strong-box {
  position: relative;
  width: 80vw;
  margin-left: 20vw;
  background: #242a29;
}

.strong-point-badge {
  position: absolute;
  left: -115px;
  top: 38px;
  z-index: 4;
}

.strong-point-badge img {
  position: absolute;
  left: -72px;
  top: -18px;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.strong-point-num {
  display: block;
  color: #fefefe;
  font-size: 150px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.1em;
}

.strong-side-copy {
  position: absolute;
  left: -30px;
  top: 188px;
  bottom: 0;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-weight: 100;

  display: flex;
  align-items: center;
}

.strong-side-copy::after {
  content: '';
  display: block;
  flex: 1 1 auto;
  width: 2px;
  min-height: 0;
  margin-top: 7px;
  border-left: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1.2px);
  background-size: 2px 10px;
  background-position: center top;
  background-repeat: repeat-y;
}

.strong-side-jp {
  position: absolute;
  left: -150px;
  bottom: 0;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 120px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

/* ============================================================
   Inner box
============================================================ */

.strong-box-inner {
  max-width: 1120px;
  padding: 50px 60px;
}

.strong-box-inner h4 {
  margin: 0 0 20px;
  color: #fefefe;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.strong-lead {
  margin: 0 0 28px;
  color: #bbbbbb;
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.04em;
}

.strong-image {
  margin: 0 -40px 36px 0;
}

.strong-image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.strong-table-title {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
}

.strong-box h4 span {
  display: inline-block;
  border-bottom: 2px solid #e7db14;
  color: #fff;
}

/* ============================================================
   Table
============================================================ */

.strong-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.strong-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.strong-table th,
.strong-table td {
  padding: 16px 18px;
  color: #fefefe;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
}

.strong-table tbody tr:last-child th,
.strong-table tbody tr:last-child td {
  border-bottom: none;
}

.strong-table thead th {
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 22px;
  font-weight: 400;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
}

.strong-table thead th:first-child {
  max-width: 160px;
}

.strong-table thead th:nth-child(2),
.strong-table thead th:nth-child(3) {
  width: calc((100% - 160px) / 2);
}

.strong-table thead th + th,
.strong-table tbody th + td,
.strong-table tbody td + td {
  border-left: 1px dotted rgba(255, 255, 255, 0.35);
}

.strong-table thead th:first-child,
.strong-table tbody th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 400;
}

.strong-table tbody tr.is-emphasis th,
.strong-table tbody tr.is-emphasis td {
  background: rgba(255, 255, 255, 0.09);
}

.strong-table thead img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.strong-table span {
  color: #e7db14;
}

/* ============================================================
   Strong common / multi-stage
============================================================ */

.strong-stage + .strong-stage {
  margin-top: 90px;
}

.strong-stage {
  position: relative;
  width: 100%;
  opacity: 0;
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.14, 0.82, 0.18, 1);
}

.strong-stage--right {
  transform: translateX(140px);
}

.strong-stage--left {
  transform: translateX(-140px);
}

.strong-stage.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   Strong box variations
============================================================ */

.strong-box--dark {
  width: 80vw;
  margin-left: 20vw;
  background: #242a29;
}

.strong-box--light {
  --strong-inner-width: 1120px;
  --strong-inner-pad-x: 60px;
  --strong-label-left: max(0px, calc(100% - var(--strong-inner-width)));

  width: 80vw;
  margin-left: 0;
  background: #fff;
}

/* ============================================================
   Label / outer decorations
============================================================ */

/* 2個目 */
.strong-box--light .strong-label {
  position: absolute;
  left: calc(var(--strong-label-left) - 13px);
  top: -123px;
  z-index: 3;
  margin: 0;
  color: #ffffff;
  font-size: 150px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.strong-point-badge--left {
  position: absolute;
  right: -115px;
  top: 38px;
  left: auto;
  z-index: 4;
}

.strong-point-badge--left img {
  position: absolute;
  left: -72px;
  top: -18px;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.strong-point-badge--left .strong-point-num {
  color: #222222;
  letter-spacing: -0.03em;
}

.strong-side-copy--right {
  position: absolute;
  left: auto;
  right: -30px;
  top: 188px;
  bottom: 0;
  z-index: 2;
  margin: 0;
  color: #222222;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-weight: 100;
  display: flex;
  align-items: center;
}

.strong-side-copy--right::after {
  content: '';
  display: block;
  flex: 1 1 auto;
  width: 2px;
  min-height: 0;
  margin-top: 7px;
  background-image: radial-gradient(circle, rgba(34, 34, 34, 0.9) 1px, transparent 1.2px);
  background-size: 2px 10px;
  background-position: center top;
  background-repeat: repeat-y;
}

.strong-side-jp--right {
  position: absolute;
  right: -150px;
  left: auto;
  bottom: 0;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 120px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

/* ============================================================
   Light box inner
============================================================ */

.strong-box--light .strong-box-inner {
  margin-left: auto;
}

.strong-box--light .strong-box-inner h4 {
  color: #222222;
}

.strong-box--light .strong-lead {
  color: #555;
}

.strong-box--light .strong-box h4 span,
.strong-box--light h4 span {
  color: #222;
  border-bottom: 2px solid #e7db14;
}

.strong-system-block {
  margin-top: 46px;
}

.strong-system-title {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding-bottom: 10px;
}

/* ============================================================
   Strong Point 03 / Asset Stock
============================================================ */

.strong-stage--asset .strong-box {
  background-color: rgba(0, 0, 0, 1);
  background-image: url('/wp-content/uploads/2026/05/asset-stock_bg.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.strong-stage--asset .strong-label {
  color: #000000;
  left: -2px;
}

.strong-stage--asset .strong-box-inner {
  min-height: 620px;
}

.strong-stage--asset .strong-lead {
  margin-bottom: 280px;
}

.strong-stage--asset .strong-lead p {
  margin: 0 0 22px;
  color: #bbbbbb;
}

.strong-stage--asset .strong-lead p:last-child {
  margin-bottom: 0;
}

.strong-asset-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.strong-asset-list li {
  position: relative;
  padding-left: 1.2em;

  color: #bbbbbb;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.strong-asset-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
  color: #e7db14;
  font-weight: bold;
}

.strong-stage--asset .strong-side-copy::after {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1.2px);
}

.strong-stage--asset .strong-side-jp {
  color: #ffffff;
}

/* ============================================================
   Role groups
============================================================ */

.strong-role-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.strong-role-grid--legacy {
  justify-content: flex-start;
  gap: 20px 18px;
}

.strong-role-grid--tv {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 22px 24px;
  justify-content: flex-start;
  max-width: none;
}

.strong-role-item {
  text-align: center;
}

.strong-role-grid--legacy .strong-role-item {
  width: 86px;
}

.strong-role-circle {
  width: 58px;
  height: 58px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: #222222;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
}

.strong-role-name {
  margin: 0;
  color: #222222;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.12em;
  font-weight: 500;
  min-height: calc(13px * 1.2 * 2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strong-role-item--tv {
  width: 150px;
  text-align: center;
}

.strong-role-pill {
  width: 150px;
  min-height: 58px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #222222;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.strong-role-pill .amp {
  color: #3ca48b;
  font-size: 80%;
  display: inline-block;
  margin: 0 2px;
}

.strong-role-note {
  margin: 10px 0 0;
  color: #222222;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.strong-role-note span {
  color: #3ca48b;
}

/* ============================================================
   Movie section
============================================================ */

#movie-sec {
  display: none;
}

.movie-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}

.movie-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.movie-section .movie-wrap video {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  display: block;
  object-fit: cover;
}

/* ============================================================
   Price section
============================================================ */

.price-section {
  background: url('/wp-content/uploads/2026/05/tv_plan_bg.jpg') center center / cover no-repeat;
}

.price-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.price-section .section-title {
  --secttl-en-color: #46c1a3;
  --secttl-jp-color: #fefefe;
}

/* ============================================================
   Price cards
============================================================ */

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 100px;
}

.price-card {
  position: relative;
  padding: 10px;
  background: rgba(254, 254, 254, 0.05);
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.price-section.is-visible .price-card {
  opacity: 1;
  transform: translateY(0);
}

.price-section.is-visible .price-card:nth-child(1) {
  transition-delay: 0.05s;
}

.price-section.is-visible .price-card:nth-child(2) {
  transition-delay: 0.15s;
}

.price-section.is-visible .price-card:nth-child(3) {
  transition-delay: 0.25s;
}

.price-card-inner {
  position: relative;
  min-height: 480px;
  padding: 42px 19px 24px;
  border: 1px solid #46c1a3;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  z-index: 2;
  transform: translateY(34px) scale(1);
  transform-origin: center center;
}

.price-section.is-visible .price-card--featured {
  animation: priceFeaturedPop 1.25s cubic-bezier(0.2, 0.9, 0.25, 1.15) 0.2s forwards;
}

@keyframes priceFeaturedPop {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(1) rotate(0deg);
  }
  42% {
    opacity: 1;
    transform: translateY(0) scale(1.18) rotate(-1.2deg);
  }
  58% {
    transform: translateY(0) scale(1.08) rotate(1deg);
  }
  74% {
    transform: translateY(0) scale(1.14) rotate(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1.12) rotate(0deg);
  }
}

/* featured icon */
.price-feature-icon {
  position: absolute;
  left: 50%;
  top: -47px;
  z-index: 3;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #46c1a3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.price-feature-icon::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.price-feature-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 46px;
  height: auto;
  max-width: none;
}

/* text */
.price-plan-name {
  margin: 0 0 18px;
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 100 !important;
  letter-spacing: -0.06em;
}

.price-plan-name strong {
  font-weight: 500;
  display: inline-block;
  margin-right: 7px;
  letter-spacing: -0.03em;
}

.price-recommend {
  margin: -17px 0 8px;
  color: #e7db14;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.05em;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
  line-height: 1;
}

.price-num {
  font-size: 88px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
}

.price-unit {
  margin-left: 5px;
  font-size: 26px;
  font-weight: 400;
  color: #bbbbbb;
}

.price-count {
  margin: 0 0 25px;
  padding: 8px 10px;
  background: #46c1a3;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.price-count span {
  font-size: 32px;
  color: #fff;
}

.price-desc {
  margin: 0 0 28px;
  color: #fff;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: 'palt';
  letter-spacing: 0.03em;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-desc.first {
  margin: -20px 0 0;
  font-size: 95%;
  line-height: 1;
  color: #bbbbbb;
}

.price-option {
  margin: 0 -22px -24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.price-option p {
  margin: 0;
  color: #bbbbbb;
}

.price-option-title {
  color: #46c1a3 !important;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 5px !important;
}

.price-note {
  margin: 48px 0 0;
  color: #bbbbbb;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-feature-settings: 'palt';
}

/* ============================================================
   Pickup Video section
============================================================ */

.pickup-video-section {
  background: #222;
}

.pickup-video-block {
  margin-top: 50px;
}

.pickup-section-title {
  margin-bottom: 30px;
  color: #fff;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 100 !important;
  letter-spacing: 0.01em;
  font-feature-settings: 'palt';
}

.pickup-section-title span {
  display: inline-block;
  color: #fff;
  border-bottom: 2px solid #e7db14;
}

/* ============================================================
   Pickup main video slider
============================================================ */

.pickup-video-slider {
  width: calc(100vw - 30px);
  overflow: hidden;
}

.pickup-video-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.2, 1);
}

.pickup-video-slide {
  flex: 0 0 72%;
  max-width: 920px;
}

.pickup-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.pickup-video-thumb,
.pickup-video-card video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}

.pickup-video-thumb {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.pickup-video-card video {
  z-index: 1;
  opacity: 0;
}

.pickup-video-slide.is-active .pickup-video-thumb {
  opacity: 0;
}

.pickup-video-slide.is-active .pickup-video-card video {
  opacity: 1;
}

/* custom.css の video 指定対策 */
@media (max-aspect-ratio: 16 / 9) {
  .pickup-video-card video {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: auto !important;
    transform: none !important;
    object-fit: cover;
  }
}

/* ============================================================
   New video slider
============================================================ */

.new-video-slider {
  width: 100vw;
  overflow: hidden;
}

.new-video-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: newVideoLoop 38s linear infinite;
  will-change: transform;
}

.new-video-slider:hover .new-video-track {
  animation-play-state: paused;
}

.new-video-slide {
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  display: block;
}

.new-video-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.new-video-slide:hover img {
  transform: scale(1.06);
}

@keyframes newVideoLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   View More
============================================================ */
input[type='submit'],
.pickup-view-more {
  margin-top: 52px;
  text-align: center;
}

input[type='submit'],
.pickup-view-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  padding: 0;
  border: 1px solid #43b99c !important;
  background: #43b99c !important;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

input[type='submit']:hover,
input[type='submit']:active,
input[type='submit']:focus,
input[type='submit']:focus-visible,
.pickup-view-more a:hover,
.pickup-view-more a:active,
.pickup-view-more a:focus,
.pickup-view-more a:focus-visible {
  border: 1px solid #43b99c !important;
  background: transparent !important;
  color: #43b99c !important;
  outline: none;
  box-shadow: none;
}

input[type='submit'] {
  line-height: 0 !important;
}

/* ============================================================
   FAQ section
============================================================ */

.faq-section {
  background: url('/wp-content/uploads/2026/05/tv_faq_bg.jpg') center center / cover no-repeat;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.faq-section .section-title {
  --secttl-en-color: #46c1a3;
  --secttl-jp-color: #fefefe;
}

.faq-accordion {
  width: 100%;
  max-width: 1300px;
  margin: 34px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 18px 64px 18px 24px;
  border: none;
  background: rgba(34, 34, 34, 0.9);
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.faq-q {
  flex: 0 0 auto;
  color: #43b99c;
  font-size: 30px;
  line-height: 1;
  font-weight: 100;
}

.faq-title {
  flex: 1 1 auto;
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 100;
  letter-spacing: 0.04em;
}

.faq-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 19px;
  height: 10px;
  transform: translateY(-50%);
}

.faq-arrow::before,
.faq-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #43b99c;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.faq-arrow::before {
  left: 0;
  transform: rotate(45deg);
}

.faq-arrow::after {
  right: 0;
  transform: rotate(-45deg);
}

.faq-item.is-open .faq-arrow::before {
  transform: rotate(-45deg);
}

.faq-item.is-open .faq-arrow::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  transition: height 0.45s ease;
}

.faq-answer-inner {
  padding: 18px;
}

.faq-answer-inner p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 100;
  letter-spacing: 0.05em;
}

.faq-question:hover,
.faq-question:active,
.faq-question:focus,
.faq-question:focus-visible {
  background: rgba(34, 34, 34, 0.9) !important;
  background-color: rgba(34, 34, 34, 0.9) !important;
  outline: none;
  box-shadow: none;
}

#contact-us {
  display: none !important;
}

.contact-section {
  background: url('/wp-content/uploads/2026/06/tv_contact_bg.jpg') center center / cover no-repeat;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

#tv_contact .flexWrap {
  display: flex;
  justify-content: space-between;
}
#tv_contact .flexWrap .item {
  width: 48%;
  text-align: left;
}

#tv_contact .flexWrap .item div p {
  margin-bottom: 25px;
}

.next-sec {
  z-index: 2;
}

.next-sec.grn {
  color: rgba(70, 193, 163, 1);
}

.next-sec.grn:focus,
.next-sec.grn:hover {
  color: rgba(70, 193, 163, 1);
}

.next-sec.grn span {
  border-top: 9px solid rgba(70, 193, 163, 1);
}

.next-sec.grn:focus span,
.next-sec.grn:hover span {
  border-top: 9px solid rgba(70, 193, 163, 1);
}

.page-id-7054 main > :first-child {
  display: none;
}

/* ============================================================
   Responsive
============================================================ */

@media (min-width: 767px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 1200px) {
  .whats-slide-content p {
    font-size: 20px;
    margin: 0 0 25px;
  }
  .whats-dot {
    width: 12px;
    height: 12px;
  }
  .why-bottom-text p {
    font-size: 24px;
  }
  .strong-stage {
    padding-top: 100px;
  }
  .strong-stage--right .strong-label {
    font-size: 120px;
    top: -98px;
    left: -10px;
  }
  .strong-point-num {
    font-size: 126px;
  }
  .strong-side-jp {
    left: -130px;
    font-size: 90px;
  }
  .strong-box-inner {
    padding: 30px 40px;
  }
  .strong-box-inner h4 {
    font-size: 30px;
  }
  .strong-table thead th {
    font-size: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .strong-table th,
  .strong-table td {
    padding: 12px;
    font-size: 14px;
  }
  .strong-stage + .strong-stage {
    margin-top: 50px;
  }

  .strong-box--light .strong-label {
    font-size: 120px;
    top: -98px;
    left: calc(var(--strong-label-left) - 12px);
  }

  .strong-side-jp--right {
    right: -130px;
    font-size: 90px;
  }
  .strong-stage--asset .strong-label {
    left: -2px;
  }
  .pickup-section-title {
    font-size: 30px;
  }
  .section-title .secttl_jp_sub {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .hero-copy-logo {
    width: 600px;
    top: -30px;
  }
  .hero-copy-final-text {
    font-size: 28px;
    top: calc(100% + -25px);
  }
  .strong-stage {
    padding-top: 80px;
  }

  .strong-stage--right .strong-label {
    font-size: 92px;
    top: -75px;
    left: -8px;
  }

  .strong-stage--right .strong-point-badge {
    left: -86px;
    top: 31px;
  }

  .strong-point-num {
    font-size: 112px;
  }

  .strong-stage--right .strong-side-copy {
    left: -25px;
    font-size: 16px;
  }

  .strong-side-jp {
    left: -100px;
    font-size: 72px;
  }

  .strong-lead {
    font-size: 16px;
  }

  .strong-box--light .strong-label {
    font-size: 92px;
    top: -75px;
    left: calc(var(--strong-label-left) - 9px);
  }

  .strong-point-badge--left {
    right: -86px;
    top: 31px;
  }

  .strong-side-copy--right {
    right: -25px;
    font-size: 16px;
  }

  .strong-side-jp--right {
    right: -100px;
    font-size: 72px;
  }

  .strong-role-grid--legacy {
    gap: 18px 14px;
  }

  .strong-role-grid--legacy .strong-role-item {
    width: 76px;
  }

  .strong-role-circle {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .strong-role-pill {
    min-height: 52px;
    padding: 0 18px;
    font-size: 24px;
  }
  .strong-role-name {
    font-size: 12px;
    min-height: calc(12px * 1.2 * 2);
  }
  .strong-stage--asset .strong-label {
    left: -1px;
  }
  .price-cards {
    margin-top: 84px;
  }
  .price-card-inner {
    min-height: 440px;
    padding: 37px 16px 24px;
  }
  .price-feature-icon {
    top: -35px;
    width: 80px;
    height: 80px;
  }
  .price-feature-icon img {
    width: 36px;
  }
  .price-plan-name {
    margin: 0 0 18px;
    font-size: 32px;
  }
  .price-num {
    font-size: 70px;
  }
  .price-unit {
    font-size: 22px;
  }
  .price-recommend {
    font-size: 16px;
  }
  .price-count {
    padding: 6px 8px;
    font-size: 22px;
  }
  .price-desc {
    font-size: 16px;
    line-height: 1.5;
  }
  .price-option {
    font-size: 13px;
  }
  .price-option-title {
    font-size: 15px;
  }
  .pickup-video-slide {
    flex-basis: 78%;
  }

  .new-video-slide {
    width: 260px;
  }
  .hero-copy-cta,
  input[type='submit'],
  .pickup-view-more a {
    width: 200px !important;
    height: 46px !important;
    font-size: 16px !important;
  }
  input[type='submit'] {
    margin-top: 30px;
  }
  .pickup-video-block {
    margin-top: 30px;
  }
  .hero-copy-cta {
    top: calc(100% + 50px);
  }
}

@media (max-width: 900px) {
  .why-cards {
    gap: 18px;
  }

  .why-card-icon {
    width: 130px;
    height: 130px;
  }

  .why-card {
    padding-top: 58px;
  }

  .why-card-body {
    min-height: 390px;
    padding: 92px 16px 30px;
  }

  .why-card h4 {
    font-size: 15px;
    padding: 7px 12px;
  }

  .why-number {
    font-size: 88px;
  }

  .why-unit {
    font-size: 44px;
  }

  .why-text {
    font-size: 15px;
  }
  .price-cards {
    gap: 24px;
  }

  .price-plan-name {
    font-size: 30px;
  }

  .price-count {
    font-size: 26px;
    margin: 0 0 22px;
  }

  .price-desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero-copy-inner {
    height: calc(42px * 1.2);
  }

  .hero-copy-text {
    font-size: 42px;
  }

  .hero-copy-logo {
    width: 430px;
    top: -50px;
  }
  .hero-copy-final-text {
    font-size: 20px;
    top: calc(100% + -15px);
  }
  .whats-slide-content {
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
  .whats-slide-content p {
    font-size: 16px;
    margin: 0 0 20px;
  }

  .whats-dots {
    gap: 14px;
    margin-top: 40px;
  }

  .whats-dot {
    width: 12px;
    height: 12px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin: 20px auto 0;
  }

  .why-card-icon {
    width: 120px;
    height: 120px;
  }
  .why-card-icon img {
    scale: 0.8;
  }

  .why-card {
    padding-top: 58px;
  }

  .why-card-body {
    min-height: auto;
    padding: 92px 18px 34px;
  }

  .why-card h4 {
    font-size: 16px;
  }

  .why-number {
    font-size: 76px;
  }

  .why-unit {
    font-size: 42px;
  }

  .why-bottom-text {
    margin-top: 20px;
  }

  .why-bottom-text p {
    font-size: 18px;
  }
  .strong-stage {
    padding-top: 48px;
  }

  .strong-stage--right .strong-label {
    font-size: 64px;
    line-height: 0.95;
    top: -52px;
    left: -5px;
  }

  .strong-box {
    width: 86vw;
    margin-left: 14vw;
  }

  .strong-stage--right .strong-point-badge {
    left: -71px;
    top: 16px;
  }

  .strong-point-badge img {
    left: -22px;
    top: -14px;
    width: 78px;
    height: auto;
  }

  .strong-point-num {
    font-size: 84px;
  }

  .strong-stage--right .strong-side-copy {
    left: -20px;
    top: 105px;
    font-size: 13px;
  }

  .strong-side-jp {
    display: none;
  }

  .strong-box-inner {
    padding: 26px 20px 24px;
  }

  .strong-box-inner h4 {
    font-size: 24px;
  }

  .strong-lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .strong-image {
    margin-right: -20px;
    margin-bottom: 24px;
  }

  .strong-table-title::after {
    width: 150px;
  }

  .strong-table thead th {
    font-size: 18px;
  }

  .strong-table th,
  .strong-table td {
    font-size: 14px;
    padding: 14px 12px;
  }
  .strong-stage + .strong-stage {
    margin-top: 50px;
  }

  .strong-stage--left {
    padding-top: 48px;
  }

  .strong-box--light {
    width: 86vw;
    margin-left: 0;
  }

  .strong-box--light .strong-label {
    font-size: 64px;
    top: -52px;
    left: -6px;
  }

  .strong-point-badge--left {
    right: -71px;
    top: 16px;
  }

  .strong-point-badge--left img {
    left: -22px;
    top: -14px;
    width: 78px;
    height: auto;
  }

  .strong-side-copy--right {
    right: -23px;
    top: 105px;
    font-size: 13px;
  }

  .strong-side-jp--right {
    right: -72px;
    font-size: 62px;
  }

  .strong-system-block {
    margin-top: 34px;
  }

  .strong-system-title::after {
    width: 150px;
  }

  /* 従来の動画制作体制：3カラム×3行 */
  .strong-role-grid--legacy {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
    max-width: 360px;
  }

  .strong-role-grid--legacy .strong-role-item {
    width: auto;
  }

  /* THIRD VOICE側：SPでも3カラム維持 */
  .strong-role-grid--tv {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
  }

  .strong-role-item--tv {
    width: auto;
  }

  .strong-role-pill {
    width: 100%;
    min-height: 48px;
    padding: 0 4px;
    font-size: 20px;
  }

  .strong-role-note {
    font-size: 12px;
    margin: 8px 0 0;
  }
  .strong-stage--asset .strong-label {
    left: 0;
  }
  .strong-stage--asset .strong-box h4 span {
    margin-bottom: 5px;
  }
  .strong-stage--asset .strong-box-inner {
    padding: 26px 20px 24px 24px;
  }
  .strong-stage--asset .strong-lead p {
    margin: 0 0 16px;
  }

  .pickup-section-title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .pickup-video-slider {
    width: calc(100vw - 17px);
  }

  .pickup-video-track {
    gap: 14px;
  }

  .pickup-video-slide {
    flex-basis: 82%;
  }

  .new-video-track {
    gap: 14px;
    animation-duration: 30s;
  }

  .new-video-slide {
    width: 210px;
  }
  .pickup-view-more {
    margin-top: 30px;
  }

  .faq-accordion {
    margin-top: 20px;
  }

  .faq-question {
    min-height: 60px;
    padding: 12px 40px 12px 12px;
    gap: 8px;
  }

  .faq-q {
    font-size: 26px;
  }

  .faq-title {
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-arrow {
    right: 12px;
  }

  .faq-answer-inner {
    padding: 16px;
  }

  .faq-answer-inner p {
    font-size: 14px;
  }
  #tv_contact .flexWrap {
    display: block;
  }
  #tv_contact .flexWrap .item {
    width: 100%;
  }
  .section-title .secttl_jp_sub {
    margin: 5px 0 14px;
    font-size: 18px;
    padding: 0 20px;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  }
  .price-desc.first {
    margin: -10px 0 15px;
  }
}

@media (max-width: 650px) {
  .strong-box-inner h4 {
    font-size: 20px;
    margin: 0 0 12px;
  }
  .strong-point-num {
    font-size: 70px;
  }
  .strong-stage--right .strong-point-badge {
    left: -56px;
    top: 22px;
  }
  .strong-point-badge img {
    top: -7px;
    left: -10px;
    width: 54px;
  }
  .strong-side-copy {
    top: 94px;
    font-size: 12px;
  }
  .strong-side-copy::after {
    background-size: 1px 6px;
  }
  .strong-lead {
    font-size: 14px;
    line-height: 1.65;
  }
  .strong-table thead th {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .strong-table th,
  .strong-table td {
    font-size: 12px;
    padding: 10px;
  }
  .strong-table thead th:first-child {
    width: 105px;
  }
  .strong-box--light .strong-label {
    font-size: 64px;
    top: -52px;
    left: -5px;
  }

  .strong-point-badge--left {
    right: -57px;
    top: 17px;
  }

  .strong-side-copy--right {
    top: 94px;
    font-size: 12px;
  }

  .strong-side-copy--right::after {
    background-size: 1px 6px;
  }

  .strong-role-circle {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .strong-role-name {
    font-size: 11px;
    min-height: calc(11px * 1.2 * 2);
  }

  .strong-role-pill {
    min-height: 42px;
  }

  .strong-role-note {
    font-size: 11px;
  }
  .strong-stage--asset .strong-point-badge {
    left: -58px;
    top: 26px;
  }
  .strong-stage--asset .strong-lead {
    margin-bottom: 200px;
  }
  .price-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin: 20px auto 0;
  }

  .price-card-inner {
    min-height: auto;
    padding: 34px 18px 22px;
  }

  .price-card--featured {
    transform: translateY(34px) scale(1);
    margin-top: 30px;
  }

  .price-section.is-visible .price-card--featured {
    animation: priceFeaturedPopSp 1.15s cubic-bezier(0.2, 0.9, 0.25, 1.15) 0.15s forwards;
  }

  @keyframes priceFeaturedPopSp {
    0% {
      opacity: 0;
      transform: translateY(34px) scale(1) rotate(0deg);
    }
    45% {
      opacity: 1;
      transform: translateY(0) scale(1.06) rotate(-1deg);
    }
    65% {
      transform: translateY(0) scale(0.98) rotate(0.8deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1) rotate(0deg);
    }
  }

  .price-feature-icon {
    width: 78px;
    height: 78px;
    top: -37px;
    font-size: 46px;
  }

  .price-count {
    font-size: 22px;
    padding: 4px 8px;
  }

  .price-option {
    margin-left: -18px;
    margin-right: -18px;
    margin-bottom: -22px;
  }
  .price-desc {
    margin: 0 0 24px;
  }
  .price-note {
    margin: 20px 0 0;
    font-size: 12px;
  }
  .pickup-section-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-copy-logo {
    width: 340px;
    top: -25px;
  }
  .whats-slide-content p {
    font-size: 14px;
  }
  .whats-dots {
    margin-top: 30px;
  }
  .whats-dot {
    width: 10px;
    height: 10px;
  }
  .why-card-body {
    padding: 64px 18px 34px;
  }
  .why-card h4 {
    font-size: 16px;
    margin: 0 auto 15px;
  }
  .why-card-icon {
    width: 100px;
    height: 100px;
  }
  .why-card-icon img {
    scale: 0.7;
  }
  .why-bottom-text p {
    font-size: 16px;
  }
  .strong-stage {
    padding-top: 35px;
  }
  .strong-stage--right .strong-label {
    font-size: 50px;
    top: -39px;
    left: -4px;
  }
  .strong-point-num {
    font-size: 60px;
  }
  .strong-box-inner h4 {
    font-size: 17px;
    margin: 0 0 10px;
  }
  .strong-stage--right .strong-point-badge {
    left: -46px;
    top: 19px;
  }
  .strong-point-badge img {
    top: -7px;
    left: -7px;
    width: 45px;
  }
  .strong-stage--right .strong-side-copy {
    top: 83px;
    left: -15px;
    font-size: 10px;
  }
  .strong-table th,
  .strong-table td {
    font-size: 11px;
    padding: 8px 6px;
  }
  .strong-table thead th:first-child {
    width: 64px;
  }
  .strong-table thead th {
    font-size: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .strong-box-inner {
    padding: 20px 18px 0px;
  }

  .strong-box--light .strong-label {
    font-size: 50px;
    top: -39px;
  }

  .strong-side-copy--right {
    right: -15px;
    top: 83px;
    font-size: 10px;
  }

  .strong-side-jp--right {
    right: -58px;
    font-size: 50px;
  }

  .strong-point-badge--left {
    right: -47px;
    top: 19px;
  }

  .strong-point-badge--left img {
    top: -7px;
    left: -3px;
    width: 45px;
  }
  .strong-role-pill {
    min-height: 38px;
    padding: 0 2px;
  }

  .strong-role-note {
    font-size: 10px;
    margin: 6px 0 0;
  }
  .strong-role-grid--tv {
    gap: 16px 15px;
    padding-bottom: 20px;
  }
  .strong-box--light .strong-box-inner h4:first-child {
    font-feature-settings: 'palt';
  }
  .strong-stage--asset .strong-label {
    left: 0;
  }
  .strong-stage--asset .strong-lead {
    margin-bottom: 129px;
  }
  .strong-stage + .strong-stage {
    margin-top: 30px;
  }
  .pickup-section-title {
    font-size: 22px;
  }

  .pickup-video-slide {
    flex-basis: 84%;
  }

  .new-video-slide {
    width: 180px;
  }
  .pickup-section-title {
    font-size: 17px;
  }
  .hero-copy-cta,
  input[type='submit'],
  .pickup-view-more a {
    width: 150px !important;
    height: 38px !important;
    font-size: 14px !important;
  }
  input[type='submit'] {
    margin-top: 10px;
  }
  .section-title .secttl_jp_sub {
    margin: 4px 0 10px;
    font-size: 15px;
    padding: 0 16px;

    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  }
}

/* ============================================================
   Strong box width large screen
============================================================ */

@media (min-width: 1400px) {
  /* 01 dark：右端固定 */
  .strong-stage--right .strong-box,
  .strong-box--dark {
    width: 70vw;
    margin-left: 30vw;
  }

  /* 02 light：左端固定 / 幅だけdarkに合わせる */
  .strong-stage--left .strong-box--light {
    width: 70vw;
    margin-left: 0;
  }
}

@media (min-width: 1600px) {
  /* 01 dark：右端固定 */
  .strong-stage--right .strong-box,
  .strong-box--dark {
    width: 65vw;
    margin-left: 35vw;
  }

  /* 02 light：左端固定 / 幅だけdarkに合わせる */
  .strong-stage--left .strong-box--light {
    width: 65vw;
    margin-left: 0;
  }
}

/* ============================================================
   Bottom copy marquee
============================================================ */

.btm-copy-marquee {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #43b99c;
  overflow: hidden;
}

.btm-copy-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: btmCopyMarquee 20s linear infinite;
}

.btm-copy-marquee img {
  flex: 0 0 auto;
  display: block;
  height: clamp(90px, 12vw, 180px);
  width: auto;
  max-width: none;
  margin-right: 60px;
}

@keyframes btmCopyMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Comparison section
============================================================ */

.comparison-section {
  width: 100% !important;
  max-width: 100%;
  background: url('/wp-content/uploads/2026/06/tv_comparison_bg.jpg') left top / cover no-repeat;
}

.comparison-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.comparison-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.comparison-section .section-title {
  --secttl-en-color: #46c1a3;
  --secttl-jp-color: #fefefe;
}

.comparison-table-scroll {
  width: 100%;
  margin-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comparison-table-scroll::-webkit-scrollbar {
  display: none;
}

.comparison-table-scroll.is-dragging {
  cursor: grabbing;
}

.comparison-table {
  width: 100%;
  background: rgba(20, 20, 20, 0.82);
  table-layout: fixed;
  max-width: 1300px;
  margin: 0 auto;
}

.comparison-table thead th:first-child,
.comparison-table thead th:nth-child(1) {
  width: 21%;
  max-width: none;
}

.comparison-table thead th:nth-child(2) {
  width: 18%;
}

.comparison-table thead th:nth-child(3) {
  width: 21%;
}

.comparison-table thead th:nth-child(4) {
  width: 25%;
}

.comparison-table thead th:nth-child(5) {
  width: 15%;
}

.comparison-table thead th {
  padding: 22px 18px;
  background: rgba(34, 34, 34, 0.96);
  color: #fefefe;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 8px;
  color: #fefefe;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.06em;
  background: transparent;
}

.comparison-table tbody th {
  color: #fefefe;
  font-weight: 100;
  background: transparent;
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table thead th + th,
.comparison-table tbody th + td,
.comparison-table tbody td + td {
  border-left: 1px dotted rgba(255, 255, 255, 0.35);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  font-feature-settings: 'palt';
  font-weight: 100;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .comparison-tv-row th,
.comparison-table .comparison-tv-row td {
  background: #e7db14;
  color: #222222 !important;
  font-weight: 500;
  border-bottom: none;
}

.comparison-table .comparison-tv-row th + td,
.comparison-table .comparison-tv-row td + td {
  border-left: 1px dotted rgba(34, 34, 34, 0.45);
}

.comparison-logo-cell img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* comparison table row height */
.comparison-table tbody tr {
  height: 76px;
}

.comparison-table tbody th,
.comparison-table tbody td {
  height: 76px;
  box-sizing: border-box;
}

/* ロゴ行だけ高くならないように抑える */
.comparison-logo-cell img {
  max-height: 46px;
  width: auto;
}

.comparison-table-scroll {
  position: relative;
}

.comparison-swipe-guide {
  display: none;
}

.comparison-bottom-text {
  margin-top: 30px;
}

.comparison-bottom-text p {
  font-feature-settings: 'palt';
}

@media (max-width: 1200px) {
  .comparison-table thead th {
    font-size: 18px;
    padding: 18px 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px 14px;
    font-size: 15px;
  }

  .comparison-logo-cell img {
    width: 220px;
  }
  .comparison-table tbody tr {
    height: 72px;
  }

  .comparison-table tbody th,
  .comparison-table tbody td {
    height: 72px;
  }

  .comparison-logo-cell img {
    max-height: 42px;
  }
}

@media (max-width: 900px) {
  .comparison-table {
    width: 1300px;
    min-width: 1300px;
  }
  .comparison-swipe-guide {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    display: block;
    width: 96px;
    height: auto;
    max-width: none;
    opacity: 0.5;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: comparisonSwipeGuide 1.4s ease-in-out infinite;
  }

  .comparison-table-scroll.is-swipe-guide-hidden .comparison-swipe-guide {
    display: none;
  }
}

@media (max-width: 767px) {
  .comparison-table-scroll {
    margin-top: 25px;
  }

  .comparison-table {
    width: 800px;
    min-width: 800px;
  }

  .comparison-table thead th {
    padding: 14px 10px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 13px 10px;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 0.03em;
  }

  .comparison-logo-cell img {
    width: 170px;
  }

  .comparison-bottom-text {
    margin-top: 20px;
  }
  .comparison-table tbody tr {
    height: 62px;
  }

  .comparison-table tbody th,
  .comparison-table tbody td {
    height: 62px;
  }

  .comparison-logo-cell img {
    max-height: 36px;
  }

  .comparison-swipe-guide {
    width: 76px;
  }
}

@keyframes comparisonSwipeGuide {
  0% {
    transform: translate(-50%, -50%) translateX(-12px);
  }

  50% {
    transform: translate(-50%, -50%) translateX(12px);
  }

  100% {
    transform: translate(-50%, -50%) translateX(-12px);
  }
}
