@charset "UTF-8";

/* =========================
   Video Hero
========================= */
.video-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.84) 38%,
      rgba(255,255,255,0.55) 64%,
      rgba(255,255,255,0.22) 100%
    ),
    url("../img/video_FV.png") center center / cover no-repeat;
}

.video-hero .hero-copy .title {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.28;
  margin-bottom: 20px;
}

.video-hero .hero-copy .text {
  max-width: 520px;
  font-size: 15px;
  line-height: 2;
  color: var(--darkgray);
}

/* =========================
   For Whom
========================= */
.video-for {
  background: var(--white);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.for-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.for-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.for-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.for-body {
  padding: 20px 20px 24px;
}

.for-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.for-body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--black);
}

.for-body p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--darkgray);
}

/* =========================
   Why Video
========================= */
.video-why {
  background: var(--soft);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.why-catch {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.4;
}

.why-text .text {
  margin-bottom: 14px;
}

.why-points {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.why-points li::before {
  content: '▶︎';
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 5 / 3;
}

.why-problem {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
}

.why-problem h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.why-problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.why-problem-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.why-problem-list li::before {
  content: '✗';
  color: #e05050;
  font-weight: 700;
  flex-shrink: 0;
}

.why-solution {
  text-align: center;
  padding: 24px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
}

.why-solution p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.why-solution-main {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 2vw, 22px) !important;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.6;
}

/* =========================
   Contents
========================= */
.video-contents {
  background: var(--white);
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contents-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.contents-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contents-body {
  padding: 16px 18px 20px;
}

.contents-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.5;
}

.contents-body p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--darkgray);
}

/* 施術工程 */
.process-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 48px;
}

.process-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}

.process-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 20px;
}

.process-item small {
  display: block;
  font-size: 12px;
  color: var(--darkgray);
  margin-top: 2px;
}

/* W映像 */
.double-box {
  margin-bottom: 48px;
}

.double-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.double-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* サンプル動画 */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* =========================
   Profile
========================= */
.video-profile {
  background: var(--soft);
}

.video-profile .profile-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.video-profile .profile-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.profile-name {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.profile-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-tags li {
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 500;
}

.profile-tags--sub li {
  border-color: var(--line);
  color: var(--darkgray);
  font-weight: 400;
}

.profile-text {
  margin-top: 20px;
}

/* =========================
   Pricing
========================= */
.video-pricing {
  background: var(--white);
}

.pricing-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row dt {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--soft);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
}

.pricing-row dd {
  padding: 16px 24px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--darkgray);
}

.pricing-row dd strong {
  color: var(--navy);
  font-size: 18px;
}

.caution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.caution-list li {
  font-size: 13px;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.caution-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 10px;
  top: 4px;
}

.notice-box {
  background: #fff8f0;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.notice-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.notice-box .text p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--darkgray);
  margin-bottom: 8px;
}

.purchase-area {
  display: flex;
  justify-content: center;
}

.purchase-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
  min-width: 320px;
}

.purchase-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.purchase-price {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.purchase-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--darkgray);
}

/* =========================
   LINE CTA
========================= */
.video-line {
  background: var(--soft);
}

.video-line .cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.video-line .cta-box h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}

.video-line .cta-box p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--darkgray);
  margin-bottom: 24px;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
  .for-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-image {
    max-width: 280px;
  }

  .contents-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto 48px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .video-profile .profile-inner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-row dt {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
