﻿/* ================================================================
   CARDS Amazon LP — campaigns/css/lp-202606-amazon.css
================================================================ */

:root {
  --navy: #18085d;
  --navy-dark: #0b0231;
  --yellow: #fe0;
  --red: #bf0508;
  --gray-bg: #f1f1f1;
  --font: "Noto Sans JP", sans-serif;
}

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

html {
  font-family: var(--font);
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--gray-bg);
  background-attachment: fixed;
  color: #000;
}

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

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

ul {
  list-style: none;
}

p {
  margin: 0;
}

/* ================================================================
   Page Layout
================================================================ */
.page-outer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin-top: -25px;
  padding: 0;
}

.pc-hero {
  display: none;
}

.lp-wrap {
  width: 100%;
  max-width: 375px;
  background: var(--gray-bg);
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
}

.lp-wrap > section,
.lp-wrap > header {
  margin-bottom: 0;
}

.site-header {
  margin-bottom: 0 !important;
}

/* ================================================================
   PC Layout — fixed background + left hero + right SP column
================================================================ */
@media (min-width: 900px) {
  .page-outer {
    justify-content: flex-end;
    padding-right: max(40px, min(120px, calc(120px + (100vw - 1440px) * 0.5)));
  }

  .pc-hero {
    --pc-hero-left: max(60px, calc((100vw - 1440px) / 2 + 120px));
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: var(--pc-hero-left);
    top: 93px;
    width: 680px;
    transform: scale(1);
    transform-origin: top left;
    z-index: 0;
  }

  .pc-hero-inner {
    width: 592px;
    max-width: 100%;
    overflow: visible;
  }

  .pc-hero-logo {
    display: block;
    width: 108px;
    height: auto;
    margin: 0 0 157px;
  }

  .pc-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .pc-hero-lead {
    font-size: 35px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1.75px;
    line-height: 1.4;
    margin-bottom: 26px;
  }

  .pc-hero-divider {
    width: 100%;
    height: 2px;
    background: var(--navy);
    margin-bottom: 4px;
  }

  .pc-hero-title-wrap {
    position: relative;
    width: 100%;
    padding: 4px 0 20px;
    margin-bottom: 48px;
    overflow: visible;
  }

  .pc-hero-title-wrap,
  .pc-hero-quotes {
    width: 100%;
  }

  .pc-hero-title-glow {
    position: absolute;
    left: calc(-44px - var(--pc-hero-left));
    bottom: 6px;
    width: 561px;
    height: 18px;
    background: linear-gradient(
      90deg,
      #fff 50%,
      rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  .pc-hero-title {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: visible;
  }

  .pc-hero-title-line1 {
    display: inline-block;
    color: var(--navy);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.35px;
    white-space: nowrap;
  }

  .pc-hero-title-lg {
    font-size: 63px;
  }

  .pc-hero-title-md {
    font-size: 54px;
    letter-spacing: -1.63px;
  }

  .pc-hero-title-sm {
    font-size: 45px;
  }

  .pc-hero-title-sub {
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
  }

  .pc-hero-quotes {
    width: 100%;
    margin-bottom: 68px;
    text-align: center;
  }

  .pc-hero-quote {
    font-size: 25px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.75px;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .pc-hero-quote-sub {
    font-size: 25px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.75px;
    line-height: 1.4;
  }

  .pc-hero .btn-cta--pc {
    margin: 0 auto;
  }

  .lp-wrap {
    width: 375px;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  }
}

/* 1440px未満で固定背景を段階的に縮小（数値は画面幅比ベース） */
@media (min-width: 900px) and (max-width: 1079px) {
  .pc-hero {
    transform: scale(0.72);
  }
}

@media (min-width: 1080px) and (max-width: 1199px) {
  .pc-hero {
    transform: scale(0.82);
  }
}

@media (min-width: 1200px) and (max-width: 1319px) {
  .pc-hero {
    transform: scale(0.9);
  }
}

@media (min-width: 1320px) and (max-width: 1439px) {
  .pc-hero {
    transform: scale(0.96);
  }
}

@media (min-width: 641px) {
  .lp-wrap {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  }
}

/* ================================================================
   Buttons
================================================================ */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-radius: 19px;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.85;
}

.btn-cta--pc {
  width: 327px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  font-size: 22px;
  letter-spacing: 2.17px;
  border: 2px solid #fff;
  border-radius: 24px;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.15);
}

.btn-cta--white {
  width: 325px;
  height: 40px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  border: 2px solid var(--yellow);
  box-shadow: 4.75px 4.75px 0 #000;
  margin: 0 auto;
}

.btn-cta--yellow {
  width: 325px;
  height: 40px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 16px;
  border: 2px solid #fff;
  box-shadow: 4.75px 4.75px 0 #000;
  margin: 0 auto;
}

.btn-cta--navy {
  width: 325px;
  height: 40px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  border: 2px solid #fff;
  box-shadow: 4.75px 4.75px 0 rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

/* ================================================================
   Header
================================================================ */
.site-header {
  background: #fff;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  position: relative;
  z-index: 10;
}

.site-logo {
  width: 46px;
  height: auto;
}

/* ================================================================
   Hero (FV)
================================================================ */
.mv {
  position: relative;
  background: var(--gray-bg);
  padding-bottom: 0;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  display: flow-root;
  overflow: visible;
  /* テーマ共通CSSの height: calc(100dvh - 3rem - 48px) を無効化 */
  height: auto !important;
  min-height: 0 !important;
}

/* Navy background — Figma path with downward V at bottom */
.mv-navy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 622.5px;
  max-height: 100%;
  z-index: 0;
  pointer-events: none;
}

.mv-navy-shape {
  display: block;
  width: 100%;
  height: 100%;
}

.mv-navy-pattern {
  position: absolute;
  top: 31px;
  left: 0;
  width: 100%;
  height: 333px;
  opacity: 0.6;
  mix-blend-mode: difference;
  pointer-events: none;
}

.mv-navy-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-content {
  position: relative;
  z-index: 1;
  padding-top: 33px;
}

/* Speech bubble */
.mv-bubble {
  position: relative;
  width: 329px;
  height: 68px;
  margin: 0 auto;
  transform: rotate(-1.14deg);
}

.mv-bubble-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mv-bubble-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1;
}

.mv-bubble-roas {
  font-size: 32px;
  letter-spacing: 0;
}

/* Sub headline */
.mv-sub {
  margin-top: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* Main title — yellow + white on same row */
.mv-title-block {
  position: relative;
  margin-top: 16px;
  text-align: center;
}

.mv-title {
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.mv-title-wrap {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 4px;
}

.mv-title-main {
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.75px;
  white-space: nowrap;
}

.mv-title-main .lg {
  font-size: 35px;
}

.mv-title-main .md {
  font-size: 30px;
  letter-spacing: -0.9px;
}

.mv-title-main .sm {
  font-size: 25px;
}

.mv-title-sub {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.6);
  padding-bottom: 2px;
  white-space: nowrap;
}

.mv-title-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 251px;
  height: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Dark desc panel with V-bottom — extends behind video */
.mv-desc-panel {
  position: relative;
  width: 325px;
  margin: 16px auto 0;
  padding-bottom: 0;
}

.mv-desc-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 271px;
  height: 100%;
  z-index: 0;
}

.mv-desc {
  position: relative;
  z-index: 1;
  width: 271px;
  margin: 0 auto;
  padding: 16px 8px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.7px;
  line-height: 1.7;
}

/* Video — white border, sits on the V-cut transition zone */
.mv-video {
  position: relative;
  z-index: 3;
  width: 325px;
  margin: 12px auto 0;
  border: 3px solid #fff;
  aspect-ratio: 325 / 183;
  overflow: hidden;
  box-sizing: content-box;
  cursor: pointer;
  background: #000;
}

.mv-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.mv-video-unmute {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.05);
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.mv-video-unmute:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mv-video-unmute-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(24, 8, 93, 0.72);
  backdrop-filter: blur(3px);
  color: var(--yellow);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 4px 4px 0 #000;
  pointer-events: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mv-video-unmute:hover .mv-video-unmute-btn {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 #000;
}

.mv-video-unmute-icon {
  flex-shrink: 0;
  color: var(--yellow);
}

.mv-video.is-activated .mv-video-unmute {
  display: none;
}

/* Stats on gray background */
.mv-stats {
  position: relative;
  z-index: 4;
  width: 271px;
  margin: 37px auto 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}

.mv-stat-row {
  flex-shrink: 0;
  height: 35px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mv-stat-row p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.6px;
  line-height: 1;
  white-space: nowrap;
}

.hl-yellow {
  color: var(--yellow);
  font-size: 25px;
  line-height: 1;
}

.hl-yellow-sm {
  color: var(--yellow);
  font-size: 20px;
  line-height: 1;
}

.mv-stat-note {
  flex-shrink: 0;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.3px;
  line-height: 1.5;
}
.mv-offer-note {

  font-size: 16px;
  color:red;
  font-weight: bold;
}
/* ================================================================
   Section: この動画で分かること
================================================================ */
.sec-learn {
  background: #fff;
  padding: 23px 0 40px;
  margin: 10px 25px 0;
  width: calc(100% - 50px);
}

.sec-learn-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0;
  position: relative;
  display: block;
  padding-bottom: 2px;
  z-index: 0;
}

.sec-learn-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 216px;
  height: 9px;
  background: rgba(255, 238, 0, 0.5);
  z-index: -1;
}

.sec-learn-arrow {
  text-align: center;
  margin: 8px 0 16px;
}

.sec-learn-arrow img {
  width: 34px;
  height: 34px;
  margin: 0 auto;
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 270px;
  margin-left: 28px;
}

.learn-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

.learn-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.learn-check {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}

.learn-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.48px;
}

.learn-warning {
  margin-top: 36px;
  width: 304px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.warn-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.54px;
  line-height: 1.4;
  white-space: nowrap;
  text-align: center;
}

.warn-line--full {
  width: 100%;
}

/* ================================================================
   CTA Section
================================================================ */
.sec-cta,
.sec-final-cta {
  background: linear-gradient(113deg, var(--navy) 12.7%, var(--navy-dark) 79.08%);
  padding: 20px 25px 40px;
  text-align: center;
}

.sec-cta-inner p,
.sec-final-cta p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.sec-cta-heading {
  margin-bottom: 8px !important;
}

.hl-yellow-lg {
  color: var(--yellow);
  font-size: 30px;
  letter-spacing: 1.5px;
}

.hl-yellow-md {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 0.9px;
}

.hl-yellow-xl {
  color: var(--yellow);
  font-size: 25px;
  letter-spacing: 1.25px;
}

.sec-cta .btn-cta,
.sec-final-cta .btn-cta {
  margin-top: 24px;
}

/* ================================================================
   Logos
================================================================ */
.sec-logos {
  background: #fff;
  padding: 26px 12px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 8px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
}

/* ================================================================
   成果事例
================================================================ */
.sec-cases {
  position: relative;
}

.sec-cases-title {
  background: #000;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3.3px;
  padding: 14px 0;
  line-height: 1.2;
}

.cases-body {
  position: relative;
  background-color: #aaaaaa;
  padding: 0 0 41px;
  overflow: hidden;
}

.cases-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.cases-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases-list {
  position: relative;
  z-index: 1;
  padding: 21px 46px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 284px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 117px;
  background: #fff;
  box-shadow: 8.5px 8.5px 0 rgba(24, 8, 93, 0.1);
  padding: 14px 12px;
}

.case-photo {
  flex-shrink: 0;
  width: 90px;
}

.case-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.case-body {
  flex: 1;
  min-width: 0;
  padding-top: 5px;
}

.case-company {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1.1px;
  line-height: 1.4;
}

.case-company-line {
  height: 1px;
  background: var(--navy);
  margin: 4px -12px 10px 0;
  width: calc(100% + 12px);
}

.case-result {
  font-size: 14px;
  font-weight: 800;
  color: #000;
  line-height: 1.53;
  letter-spacing: 0.7px;
}

/* ================================================================
   作り手の想い
================================================================ */
.sec-philosophy {
  position: relative;
  background-color: #f1f1f1;
  min-height: 890px;
  overflow: hidden;
}

.philosophy-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  left: -52px;
}

.philosophy-gradient img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  min-height: 890px;
}

.philosophy-title {
  padding: 35px 24px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.92px;
  line-height: 36px;
}

.philosophy-divider {
  width: 350px;
  max-width: calc(100% - 48px);
  height: 1px;
  background: var(--navy);
  margin: 22px 0 0 24px;
}

.philosophy-text {
  width: 325px;
  max-width: calc(100% - 50px);
  margin: 21px 0 0 25px;
}

.philosophy-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  line-height: 24px;
  letter-spacing: 0;
}

.philosophy-ceo-img {
  position: absolute;
  top: 553px;
  right: -58px;
  width: 247px;
  height: 337px;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  pointer-events: none;
}

.philosophy-ceo-info {
  position: absolute;
  top: 693px;
  left: 24px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.6px;
}

.philosophy-ceo-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.8px;
  margin-bottom: 0;
}

.philosophy-ceo-name span {
  font-size: 16px;
}

.philosophy-ceo-info p:nth-child(n + 2) {
  font-weight: 400;
  line-height: 28px;
}

.philosophy-ceo-info p:nth-child(n + 3) {
  line-height: 20px;
}

.sec-philosophy .btn-cta--yellow {
  position: absolute;
  top: 814px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
}

/* ================================================================
   パートナー推薦
================================================================ */
.sec-partners {
  position: relative;
  overflow: hidden;
}

.partners-bg {
  position: absolute;
  inset: 0;
}

.partners-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.53);
}

.partners-inner {
  position: relative;
  z-index: 1;
  padding: 44px 31px 40px;
}

.partners-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

.partner-card {
  background: #fff;
  box-shadow: 15px 15px 0 rgba(24, 8, 93, 0.1);
  padding: 18px 24px 24px;
  margin-bottom: 24px;
}

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

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.partner-info {
  flex: 1;
  min-width: 0;
}

.partner-company {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.4;
  white-space: nowrap;
}

.partner-role {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 2px;
}

.partner-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.8px;
  line-height: 1.4;
  margin-top: 4px;
  white-space: nowrap;
}

.partner-name span {
  font-size: 14px;
}

.partner-divider {
  width: calc(100% + 32px);
  height: 1px;
  background: var(--navy);
  margin: 12px 0 0 -32px;
}

.partner-photo {
  width: 109px;
  height: 109px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.partner-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.7px;
}

/* ================================================================
   無料相談の内容
================================================================ */
.sec-benefits {
  background: var(--navy);
  padding: 47px 36px 48px;
}

.benefits-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 1.92px;
  margin-bottom: 16px;
}

.benefits-lead {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 1.6px;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefits-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.benefits-check {
  width: 18px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefits-item p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 1.58px;
}

/* ================================================================
   お悩みCTA
================================================================ */
.sec-worry {
  background: var(--gray-bg);
  padding: 36px 25px 40px;
  text-align: center;
}

.worry-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.worry-illust {
  width: 129px;
  margin: 0 auto 24px;
}

/* ================================================================
   会社概要
================================================================ */
.sec-company {
  background: #fff;
  padding: 0 24px 40px;
}

.company-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: 1.92px;
  padding: 20px 0 12px;
  margin-bottom: 0;
  white-space: nowrap;
}

.company-divider img {
  display: block;
  width: 100%;
  height: 1px;
}

.company-divider {
  margin-bottom: 28px;
}

.company-table {
  margin-bottom: 0;
}

.company-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.47;
  letter-spacing: 0.75px;
}

.company-row dt {
  flex-shrink: 0;
  white-space: nowrap;
}

.company-row dd {
  margin: 0;
}

.company-row--ceo {
  margin-top: 16px;
  margin-bottom: 12px;
}

.company-bio {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-bio li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0.48px;
}

.company-bio-bullet {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ================================================================
   Final CTA + Form
================================================================ */
.sec-final {
  background: linear-gradient(98deg, var(--navy) 12.7%, var(--navy-dark) 79.08%);
  padding-bottom: 40px;
}

.form-area {
  margin: 24px 25px 0;
  background: #fff;
  border-radius: 18px;
  padding: 30px 20px 48px;
}

.form-area .svc-contact-form__field {
  display: grid;
  align-items: center;
  gap: 8px 0;
}

.form-area .svc-contact-form__field:not(:first-child) {
  margin-top: 23px;
}

.form-area .svc-contact-form__field--textarea {
  align-items: start;
  margin-top: 27px !important;
}

.form-area .svc-contact-form__label {
  margin-left: 7px;
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.form-area .svc-contact-form__label span {
  display: inline-block;
  color: #ff3600;
  margin-left: 10px;
}

.form-area .svc-contact-form__label--required span {
  display: inline-block;
  position: relative;
}

.form-area .svc-contact-form__label--required span::before {
  content: "";
  display: inline-block;
  top: -1px;
  right: -17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ea7979;
  position: absolute;
}

.form-area .svc-contact-form__input {
  width: 100%;
  height: 72px;
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  border: 1px solid #9a9b9b;
  border-radius: 6px;
  padding-left: 15px;
}

.form-area .svc-contact-form__input::placeholder {
  color: #bababa;
  font-family: "Noto Sans JP", sans-serif;
}

.form-area .svc-contact-form__field--textarea .svc-contact-form__input {
  height: 197px;
  resize: vertical;
  padding: 10px 20px 10px 12px;
}

.form-area .svc-contact-form__input-select-wrapper {
  position: relative;
}

.form-area .svc-contact-form__input-select-wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 8px;
  border-color: #231815 transparent transparent transparent;
  pointer-events: none;
}

.form-area .svc-contact-form__input-select-wrapper select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 15px;
  font-weight: 700;
}

.form-area .svc-contact-form__submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.form-area .svc-contact-form__agree {
  font-size: 11px;
  font-weight: 500;
  color: #231815;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-top: 35px;
}

.form-area .svc-contact-form__agree a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-area .svc-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 336px);
  height: 74px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-radius: 100px !important;
  background-color: #ff3600;
  border: none;
  cursor: pointer;
}

@media (hover: hover) {
  .form-area .svc-contact-form__submit-wrapper .svc-btn:hover {
    color: #fff;
    opacity: 0.9;
  }
}

.form-area .wpcf7-spinner {
  display: none !important;
}

.form-area .wpcf7 .wpcf7-response-output {
  border: none !important;
  text-align: center !important;
}

.site-footer {
  background: #0e043a;
  color: #fff;
  margin-bottom: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  opacity: 0.5;
}

.site-footer__inner {
  padding-left: 24px;
  padding-right: 24px;
}

.site-footer__content--top {
  border-bottom: 1px solid #fff;
  padding-top: 56px;
  padding-bottom: 32px;
}

.site-footer__logo {
  display: inline-block;
  width: 58px;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 58 / 36;
  object-fit: contain;
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%)
    contrast(101%);
}

.site-footer__company {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-footer__address {
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer__sns {
  display: flex;
  gap: 0;
  margin-top: 32px;
}

.site-footer__sns a {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.site-footer__sns img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__mission-label {
  margin-top: 32px;
  font-family: "Kanit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer__mission-img {
  margin: 20px 0 0;
  max-width: 280px;
}

.site-footer__mission-img img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__contact {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 32px 24px;
  font-family: "Kanit", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}

.site-footer__contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 156px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

.site-footer__contact::after {
  content: "";
  width: 16px;
  height: 1px;
  margin-left: 12px;
  background-color: #fff;
  transform: translateY(1px);
}

.site-footer__page-top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 24px;
  font-family: "Kanit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__page-top::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 12px;
  background-image: url("../images/202606-amazon/footer-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.site-footer__content--links .site-footer__inner {
  padding-left: 0;
  padding-right: 0;
}

.site-footer__content--links {
  margin-top: 40px;
}

.site-footer__nav {
  list-style: none;
  margin: 40px 0 0;
  padding: 0 24px;
}

.site-footer__nav li + li {
  margin-top: 24px;
}

.site-footer__nav a {
  font-family: "Kanit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.site-footer__bottom {
  margin-top: 72px;
  padding-bottom: 16px;
}

.site-footer__policy {
  display: inline-block;
  font-family: "Kanit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer small {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.mv {
  height: auto !important;
  min-height: 0 !important;
}

/* VSL: 視聴完了まで FV・mv-offer・sec-learn のみ表示 */

body.is-vsl-locked .vsl-reveal {
  display: none !important;
}

body.is-vsl-unlocked .vsl-reveal {
  display: revert;
}

/* FV 新デザイン（動画組み込み版） */

.mv--v2 {
  background: #fff;
  padding-bottom: 0;
}

.mv--v2 .mv-navy {
  height: 622.5px;
  max-height: 100%;
}

.mv--v2 .mv-content {
  padding-top: 20px;
  padding-bottom: 46px;
}

.mv-v2-lead {
  margin: 0 20px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.65px;
  line-height: 1.5;
}

.mv-v2-headline {
  position: relative;
  width: 100%;
  padding: 20px 0 0;
  text-align: center;
  overflow: visible;
}

.mv-v2-headline-bg {
  position: absolute;
  top: 0;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 271px;
  background: #000;
  z-index: 0;
  pointer-events: none;
}

.mv-v2-sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 1.5;
}

.mv-v2-title-outer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 14px;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.mv-v2-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  line-height: 1;
  text-align: center;
  overflow: visible;
}

.mv-v2-title-row {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.mv-v2-title-line {
  position: relative;
  z-index: 1;
  display: block;
  align-self: flex-start;
  width: 251px;
  height: 14px;
  margin: 6px 0 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.mv-v2-title-lg {
  font-size: 42px;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
}

.mv-v2-title-sm {
  font-size: 27px;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
}

.mv-v2-title-sub {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 27px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
}

.mv-v2-video-wrap {
  position: relative;
  z-index: 2;
  width: 325px;
  margin: 18px auto 0;
}

.mv--v2 .mv-video {
  margin: 0;
}

.mv-v2-stats {
  position: relative;
  z-index: 4;
  margin: 20px 20px 0;
  text-align: center;
}

.mv-v2-stats-main {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 1.6;
}

.mv-v2-stats-main .hl-yellow,
.mv-v2-stats-main .hl-yellow-sm {
  font-size: 14.5px;
}

.mv-v2-stats-note {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.mv-offer {
  background: #fff;
  padding: 28px 10px 32px;
  text-align: center;
  margin-bottom: 0 !important;
}

.mv-offer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.mv-offer-text {
  text-align: center;
}

.mv-offer-ashirai {
  flex-shrink: 0;
  width: 36px;
  height: auto;
  display: block;
}

.mv-offer-ashirai--right {
  transform: scaleX(-1);
}

.mv-offer-lead {
  font-size: 25px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
}

.mv-offer-num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.mv-offer-free {
  margin: 8px 0 0;
}

.mv-offer-free-text {
  display: inline-block;
  font-size: 25px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.35;
  padding: 0 4px 5px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 55%,
    rgba(217, 217, 217, 0.55) 55%,
    rgba(217, 217, 217, 0.55) 78%,
    transparent 78%
  );
}

.mv-offer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 325px;
  max-width: 100%;
  height: 48px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  border: 2px solid #fff;
  border-radius: 24px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: opacity 0.2s;
}

.mv-offer-btn:hover {
  opacity: 0.88;
}

.mv-video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mv-video-play,
.mv-video-mute,
.mv-video-fullscreen {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(24, 8, 93, 0.85);
  color: var(--yellow);
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mv-video-mute-icon {
  display: block;
}

.mv-video-mute-icon--off {
  display: none;
}

.mv-video-mute.is-muted .mv-video-mute-icon--on {
  display: none;
}

.mv-video-mute.is-muted .mv-video-mute-icon--off {
  display: block;
}

.mv-video-fullscreen {
  border-radius: 4px;
  font-size: 14px;
}

.mv-video:fullscreen,
.mv-video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border: 0;
  aspect-ratio: auto;
  background: #000;
}

.mv-video:fullscreen video,
.mv-video:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mv-video:fullscreen .mv-video-progress,
.mv-video:-webkit-full-screen .mv-video-progress {
  bottom: 48px;
}

.mv-video:fullscreen .mv-video-controls,
.mv-video:-webkit-full-screen .mv-video-controls {
  padding: 10px 16px;
  font-size: 13px;
}

.mv-video:fullscreen .mv-video-play,
.mv-video:fullscreen .mv-video-mute,
.mv-video:fullscreen .mv-video-fullscreen,
.mv-video:-webkit-full-screen .mv-video-play,
.mv-video:-webkit-full-screen .mv-video-mute,
.mv-video:-webkit-full-screen .mv-video-fullscreen {
  width: 36px;
  height: 36px;
}

.mv-video:fullscreen .mv-video-speed-text,
.mv-video:-webkit-full-screen .mv-video-speed-text {
  font-size: 12px;
}

.mv-video-time {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.mv-video-speed-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.mv-video-speed-text {
  font-size: 10px;
  opacity: 0.85;
}

.mv-video-speed {
  width: 52px;
  height: 24px;
  padding: 0 2px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: rgba(24, 8, 93, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.mv-video:fullscreen .mv-video-speed,
.mv-video:-webkit-full-screen .mv-video-speed {
  width: 60px;
  height: 30px;
  font-size: 12px;
}

.mv-video-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 4;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.mv-video-progress-bar {
  height: 100%;
  width: 0;
  background: var(--yellow);
  transition: width 0.15s linear;
}

#fv-movie {
  pointer-events: none;
}
