/* ============================================================
   style.css — SkyAce ドローンLP
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  /* スムーズスクロール */
}

/* ===== スクロールフェードインアニメーション ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延バリエーション */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background: #fff;
  color: #000;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 64px;
  background: #ffffff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.header__logo-img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  display: block;
}

/* デスクトップ: ナビ＋CTA */
.header__desktop {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.header__nav-item a {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.08px;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__nav-item a:hover {
  opacity: 0.65;
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background-color: #1badff;
  border-radius: 12px;
  box-shadow: 1px 3px 0 0 #118bcf;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 1px 4px 0 0 #118bcf;
}

.header__cta:active {
  transform: translateY(1px);
  box-shadow: 1px 2px 0 0 #118bcf;
}

.header__cta-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.08px;
  line-height: 1.2;
  color: #fff;
}

/* タブレット・スマホ: CTAボタンのみ */
.header__mobile {
  display: none;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.header__cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1badff;
  border-radius: 12px;
  box-shadow: 1px 3px 0 0 #118bcf;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  max-width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header__cta-mobile:hover {
  transform: translateY(-1px);
  box-shadow: 1px 4px 0 0 #118bcf;
}

.header__cta-mobile-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.08px;
  line-height: 1.2;
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 120px 64px 120px;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
}

.hero__text {
  position: relative;
  /* display: flex; flex-direction: column; gap: 32px; */
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -1.28px;
  /* line-height: 1.27; color: #005fcc; */
  line-height: 1.27;
  color: #3ea2ff;
  text-shadow: 0 0 26px white;
  max-width: 970px;
}

.hero__title--license {
  margin-bottom: 4px;
}

.hero__title--simulator {
  margin-bottom: 24px;
}

.hero__title-chunk {
  display: inline-block;
  white-space: nowrap;
}

.hero__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.8);
}

.hero__logo {
  display: block;
  width: min(100%, 600px);
  height: auto;
  margin-bottom: 16px;
}

.hero__desc+.hero__desc {
  margin-top: 12px;
}

.hero__buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hero__btn {
  background: #fff;
  border: none;
  border-radius: 31px;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  color: #000;
  cursor: default;
  min-width: 257px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 64px 64px 80px;
  background-color: #2f81cf;
  width: 100%;
}

.video-section__drone {
  position: absolute;
  width: 240px;
  height: 200px;
  top: -90px;
  right: 0;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
  z-index: 10;
}

.video-section__drone-left {
  position: absolute;
  width: 240px;
  height: 200px;
  bottom: -90px;
  left: 0;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  z-index: 10;
}

.video-section__title {
  position: relative;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.96px;
  line-height: 1.27;
  color: #fff;
  text-align: center;
  max-width: 914px;
}

.video-section__desc {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.12px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  width: 100%;
}

.video-section__embed {
  position: relative;
  width: 600px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.video-section__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 100%;
  padding-bottom: 80px;
}

.features__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(215, 235, 255, 0.5);
}

.features__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.features__heading-wrap {
  position: relative;
  padding: 64px 0 80px;
  width: 100%;
  text-align: center;
  max-width: 1280px;
}

.features__heading {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: #005fcc;
}

.features__row {
  position: relative;
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 40px 64px;
  width: 100%;
  max-width: 1280px;
  /* 他セクションと幅を統一 */
}

.features__row--image-left {
  flex-direction: row;
}

.features__row--image-right {
  flex-direction: row;
}

.features__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__feature-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 1.2;
  background: linear-gradient(to right, #398ae6, #0061cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features__feature-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.1px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.55);
}

.features__image-wrap {
  flex: 1 0 0;
  position: relative;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 0 40px 4px rgba(142, 225, 255, 0.65);
  overflow: hidden;
}

.features__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* 対応試験カード */
.features__exam {
  position: relative;
  width: 100%;
  padding: 0 64px;
  /* features__rowと同じ左右padding */
  display: flex;
  justify-content: center;
  max-width: 1280px;
  /* 他セクションと幅を統一 */
}

.features__exam-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 56px;
  width: 100%;
  /* max-width制限なし＝親と同じ幅 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.features__exam-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.64px;
  line-height: 1.2;
  background: linear-gradient(to right, #398ae6, #0061cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.features__exam-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__exam-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features__exam-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.1px;
  line-height: 1.5;
  color: #000;
}

.features__exam-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
}

.features__exam-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
}

/* タブレット・スマホ対応 */
@media (max-width: 1024px) {
  .features__exam {
    padding: 0 24px;
  }

  .features__exam-card {
    padding: 32px 28px;
    gap: 24px;
  }

  .features__exam-title {
    font-size: 26px;
  }

  .features__exam-name {
    font-size: 18px;
  }

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

  .features__exam-note {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .features__exam {
    padding: 0 32px;
  }

  .features__exam-card {
    padding: 28px 24px;
    gap: 20px;
    border-radius: 20px;
  }

  .features__exam-title {
    font-size: 22px;
  }

  .features__exam-name {
    font-size: 16px;
  }

  .features__exam-desc {
    font-size: 15px;
  }

  .features__exam-note {
    font-size: 15px;
  }
}

/* ============================================================
   PLANS
   ============================================================ */
.plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0 80px;
  width: 100%;
}

.plans__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: #005fcc;
  text-align: center;
  white-space: nowrap;
}

.plans__cards {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 64px;
  list-style: none;
  width: 100%;
}

.plans__card-wrap {
  flex: 1 0 0;
  max-width: 363px;
}

.plans__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02), 0 6px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  width: 100%;
}

.plans__card-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.plans__card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans__card-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  text-align: center;
}

.plans__card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plans__card-name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 1.45;
  color: #000;
}

.plans__card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}

.plans__card-price {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.45;
  margin: 0;
  background: linear-gradient(to right, #4b99f2, #0b68d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans__card-plan {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.64px;
  line-height: 1.45;
  margin: 0;
  background: linear-gradient(to right, #4b99f2, #0b68d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans__card-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Figma: gap-[8px] */
}

/* ============================================================
   RESPONSIVE — タブレット: ~1024px
   ============================================================ */
@media (max-width: 1024px) {

  /* Header */
  .header {
    padding: 12px 40px;
  }

  .header__logo-img {
    width: clamp(200px, 50vw, 300px);
  }

  .header__desktop {
    display: none;
  }

  .header__mobile {
    display: flex;
  }

  .header__cta-mobile {
    padding: 10px 16px;
  }

  .header__cta-mobile-text {
    font-size: clamp(14px, 2vw, 18px);
  }

  /* Hero */
  .hero {
    padding: 80px 24px;
    gap: 32px;
  }

  .hero__title {
    font-size: 48px;
    letter-spacing: -0.96px;
  }

  .hero__desc {
    font-size: 18px;
  }

  .hero__logo {
    width: min(100%, 340px);
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__btn {
    width: 327px;
    font-size: 16px;
  }

  /* Video */
  .video-section {
    padding: 32px 24px 80px;
    gap: 40px;
  }

  .video-section__drone {
    width: 212px;
    height: 180px;
    top: -90px;
    right: 0;
  }

  .video-section__drone-left {
    width: 212px;
    height: 180px;
    bottom: -90px;
    left: 0;
  }

  .video-section__title {
    font-size: 38px;
    letter-spacing: -0.76px;
    max-width: 662px;
  }

  .video-section__desc {
    font-size: 20px;
  }

  .video-section__embed {
    width: 375px;
    height: 250px;
  }

  /* Features */
  .features__heading-wrap {
    padding: 48px 0 15px;
  }

  .features__heading {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .features__row {
    flex-direction: column !important;
    padding: 30px 24px 32px;
    gap: 32px;
  }

  /* 画像左のときはHTMLの順序を逆にして「コピー→写真」に揃える */
  .features__row--image-left {
    flex-direction: column-reverse !important;
  }

  .features__image-wrap {
    width: 100%;
    height: 243px;
    flex: none;
  }

  .features__feature-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .features__feature-desc {
    font-size: 20px;
  }

  .features__content {
    gap: 16px;
  }

  /* Plans */
  .plans {
    padding: 48px 0 20px;
  }

  .plans__title {
    font-size: 32px;
    letter-spacing: -0.64px;
    white-space: normal;
    max-width: 704px;
    line-height: 1.5;
  }

  .plans__cards {
    flex-direction: column;
    align-items: center;
    padding: 20px 24px 80px;
    gap: 32px;
  }

  .plans__card-wrap {
    max-width: 100%;
    width: 100%;
  }

  .plans__card-body {
    gap: 24px;
  }

  .plans__card-name {
    font-size: 20px;
    letter-spacing: -0.3px;
  }

  .plans__card-desc {
    font-size: 16px;
    letter-spacing: -0.08px;
  }

  .plans__card-price {
    font-size: 16px;
    letter-spacing: -0.08px;
  }
}

/* ============================================================
   RESPONSIVE — スマホ: ~767px
   ============================================================ */
@media (max-width: 767px) {

  /* Header */
  .header {
    gap: 12px;
    padding: 12px 16px;
  }

  .header__logo-img {
    width: clamp(120px, 50vw, 200px);
  }

  .header__cta-mobile {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .header__cta-mobile-text {
    font-size: clamp(12px, 3.6vw, 15px);
  }

  /* Hero：横に余白追加 */
  .hero {
    padding: 45px 32px;
    gap: 32px;
  }

  .hero__title {
    font-size: 38px;
    letter-spacing: -0.48px;
  }

  .hero__title--simulator {
    font-size: clamp(28px, 8.8vw, 38px);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .hero__desc {
    font-size: 16px;
  }

  .hero__logo {
    width: min(100%, 280px);
    margin-top: 12px;
  }

  .hero__btn {
    width: 100%;
    max-width: 327px;
  }

  /* Video：ドローン装飾を小さくして文字に被らないように */
  .video-section {
    padding: 50px 32px;
    gap: 40px;
  }

  .video-section__drone {
    width: 100px;
    height: 85px;
    top: -30px;
    right: 0;
  }

  .video-section__drone-left {
    width: 100px;
    height: 85px;
    bottom: -30px;
    left: 0;
  }

  .video-section__embed {
    width: 100%;
    height: 250px;
  }

  /* Plans：文字がはみ出さないように */
  .plans {
    padding: 48px 32px 80px;
  }

  .plans__title {
    font-size: 22px;
    white-space: normal;
    text-align: center;
  }

  .plans__cards {
    padding: 20px 0 0;
  }
}

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison {
  background: linear-gradient(to bottom right, #eff6ff, #e0e7ff);
  padding: 64px 16px;
  width: 100%;
}

.comparison__container {
  max-width: 1152px;
  margin: 0 auto;
}

.comparison__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #005fcc;
  text-align: center;
  margin-bottom: 16px;
}

.comparison__lead {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 32px;
}

.comparison__footer {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  color: rgba(0, 0, 0, 0.726);
  font-size: 14px;
  margin-top: 32px;
}

/* モバイルタブ */
.comparison__tabs {
  display: none;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.comparison__tab {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.comparison__tab.is-active {
  background: #005fcc;
  color: #fff;
}

.comparison__tab-name {
  font-size: 14px;
  font-weight: 700;
}

.comparison__tab-price {
  font-size: 12px;
}

/* 比較表本体 */
.comparison__table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* デスクトップヘッダー */
.comparison__header--desktop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: #0061cf;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.comparison__header-feature {
  font-weight: 700;
}

.comparison__header-plan {
  text-align: center;
}

.comparison__header-name {
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison__header-price {
  font-size: 24px;
  font-weight: 700;
}

.comparison__header-suffix {
  font-size: 14px;
  opacity: 0.9;
}

/* モバイルヘッダー */
.comparison__header--mobile {
  display: none;
  padding: 24px;
  background: #0061cf;
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.comparison__header--mobile .comparison__header-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison__header--mobile .comparison__header-price {
  font-size: 30px;
  font-weight: 700;
}

.comparison__header--mobile .comparison__header-suffix {
  font-size: 14px;
  opacity: 0.9;
}

/* 機能行 */
.comparison__row--feature {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.comparison__row--feature:hover {
  background: #eff6ff;
}

.comparison__label {
  font-size: 15px;
  color: #1f2937;
}

.comparison__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
}

.comparison__value--yes {
  background: #dcfce7;
  color: #16a34a;
}

.comparison__value--no {
  background: #f3f4f6;
  color: #9ca3af;
}

/* カテゴリ見出し */
.comparison__row--category {
  padding: 20px 24px;
  background: #eef2ff;
  border-top: 2px solid #c7d2fe;
  color: #4338ca;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* デスクトップCTA */
.comparison__cta--desktop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
}

.comparison__cta-cell {
  display: flex;
  justify-content: center;
}

.comparison__btn {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

.comparison__btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.comparison__btn--primary {
  background: #1badff;
}

.comparison__btn--secondary {
  background: #0061cf;
}

/* モバイルCTA */
.comparison__cta--mobile {
  display: none;
  padding: 16px;
  background: #f9fafb;
}

.comparison__cta--mobile .comparison__btn {
  padding: 16px 24px;
  font-size: 16px;
}

/* モバイル表示では特定プラン列のみ表示 */
.comparison__table[data-active="basic"] .comparison__value[data-plan="pro"],
.comparison__table[data-active="basic"] .comparison__value[data-plan="enterprise"],
.comparison__table[data-active="pro"] .comparison__value[data-plan="basic"],
.comparison__table[data-active="pro"] .comparison__value[data-plan="enterprise"],
.comparison__table[data-active="enterprise"] .comparison__value[data-plan="basic"],
.comparison__table[data-active="enterprise"] .comparison__value[data-plan="pro"] {
  display: flex;
}

/* ===== タブレット・スマホ: ~1024px ===== */
@media (max-width: 1024px) {
  .comparison {
    padding: 48px 16px;
  }

  .comparison__title {
    font-size: 28px;
  }

  .comparison__tabs {
    display: flex;
  }

  /* デスクトップヘッダー・CTAを非表示 */
  .comparison__header--desktop {
    display: none;
  }

  .comparison__cta--desktop {
    display: none;
  }

  /* モバイルヘッダー・CTAを表示 */
  .comparison__header--mobile {
    display: block;
  }

  .comparison__cta--mobile {
    display: block;
  }

  /* 機能行を2カラムレイアウトに */
  .comparison__row--feature {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .comparison__label {
    font-size: 14px;
  }

  /* アクティブプランの列だけ表示 */
  .comparison__table[data-active="basic"] .comparison__value:not([data-plan="basic"]),
  .comparison__table[data-active="pro"] .comparison__value:not([data-plan="pro"]),
  .comparison__table[data-active="enterprise"] .comparison__value:not([data-plan="enterprise"]) {
    display: none;
  }

  .comparison__row--category {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* ===== スマホ: ~640px ===== */
@media (max-width: 640px) {
  .comparison__tab-name {
    font-size: 13px;
  }

  .comparison__tab-price {
    font-size: 11px;
  }

  .comparison__label {
    font-size: 13px;
    padding-right: 8px;
  }

  .comparison__value {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0 80px;
  width: 100%;
}

.pricing__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: #005fcc;
  text-align: center;
  white-space: nowrap;
}

.pricing__cards {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 60px 64px;
  list-style: none;
  width: 100%;
  max-width: 1280px;
}

.pricing__card {
  flex: 1 0 0;
  min-width: 336px;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 0 4.4px rgba(0, 0, 0, 0.06), 0 5px 19px rgba(0, 0, 0, 0.08);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.09px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.726);
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 16px;
}

/* カードヘッダー */
.pricing__card-header {
  display: flex;
  flex-direction: column;
}

.pricing__card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.16px;
  line-height: 1.4;
  color: #000;
}

.pricing__card-tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}

/* 価格 */
.pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.pricing__card-price--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.pricing__card-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -1.04px;
  line-height: 1.1;
  color: #000;
}

.pricing__card-amount--sm {
  font-size: 49px;
  letter-spacing: -0.98px;
}

.pricing__card-tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  color: rgba(0, 0, 0, 0.55);
}

/* 機能リスト */
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 0 auto;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.4;
  color: #000;
}

.pricing__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #005fcc;
  font-weight: 700;
  font-size: 16px;
}

/* ボタン */
.pricing__btn {
  width: 100%;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.45;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  min-height: 50px;
}

.pricing__btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.pricing__btn--outline {
  background: #fff;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.pricing__btn--dark {
  background: #000;
  color: #fff;
  border: none;
}

/* ===== タブレット・スマホ: ~1024px ===== */
@media (max-width: 1024px) {
  .pricing {
    padding: 48px 0 0;
  }

  .pricing__title {
    font-size: 28px;
    letter-spacing: -0.56px;
  }

  .pricing__cards {
    flex-direction: column;
    gap: 24px;
    padding: 20px 24px 48px;
  }

  .pricing__card {
    min-width: 0;
    width: 100%;
    padding: 24px 16px 16px;
    gap: 32px;
  }

  .pricing__card-name {
    font-size: 32px;
    letter-spacing: -0.32px;
  }

  .pricing__card-tagline {
    font-size: 16px;
    letter-spacing: -0.08px;
  }

  .pricing__card-amount {
    font-size: 40px;
    letter-spacing: -0.2px;
  }

  .pricing__card-amount--sm {
    font-size: 40px;
    letter-spacing: -0.2px;
  }

  .pricing__card-tax {
    font-size: 16px;
    letter-spacing: -0.08px;
  }

  .pricing__feature {
    font-size: 16px;
    letter-spacing: -0.08px;
  }

  .pricing__btn {
    font-size: 16px;
    letter-spacing: -0.08px;
    min-height: 47px;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  width: 100%;
  padding: 24px 24px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.faq__container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.faq__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: #005fcc;
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(0, 95, 204, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 97, 207, 0.08);
  padding: 28px 32px;
}

.faq__question,
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq__question {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.11px;
  line-height: 1.6;
  color: #000;
}

.faq__question::before,
.faq__answer::before {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.faq__question::before {
  content: 'Q';
  color: #fff;
  background: linear-gradient(135deg, #1badff, #0061cf);
}

.faq__answer {
  margin-top: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.68);
}

.faq__answer::before {
  content: 'A';
  color: #0061cf;
  background: rgba(27, 173, 255, 0.12);
}

@media (max-width: 1024px) {
  .faq {
    padding: 0 24px 64px;
  }

  .faq__title {
    font-size: 28px;
    letter-spacing: -0.56px;
    margin-bottom: 32px;
  }

  .faq__item {
    padding: 24px;
  }

  .faq__question {
    font-size: 18px;
  }

  .faq__answer {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 0 16px 48px;
  }

  .faq__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .faq__list {
    gap: 16px;
  }

  .faq__item {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .faq__question,
  .faq__answer {
    gap: 12px;
  }

  .faq__question {
    font-size: 16px;
  }

  .faq__question::before,
  .faq__answer::before {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .faq__answer {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ============================================================
   TESTIMONIALS（導入スクールの声）
   ============================================================ */
/* TODO 顧客アンケート取り次第有効にする */
.testimonials {
  background: #fff;
  display: none !important;
  flex-direction: column;
  align-items: center;
  padding: 64px 0 80px;
  width: 100%;
}

.testimonials__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: #005fcc;
  text-align: center;
  white-space: nowrap;
}

/* 統計画像 */
.testimonials__stats {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 64px;
}

.testimonials__stats-desktop {
  display: flex;
  gap: 32px;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
}

.testimonials__stat {
  flex: 1 0 0;
  max-width: 388px;
  min-width: 336px;
  height: 362px;
  border-radius: 16px;
  object-fit: cover;
}

.testimonials__stats-tablet,
.testimonials__stats-mobile {
  display: none;
}

/* 証言カード */
.testimonials__cards {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  padding: 0 64px;
  list-style: none;
  width: 100%;
  max-width: 1280px;
}

.testimonials__card {
  flex: 1 0 0;
  max-width: 388px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 0 30px 2px rgba(208, 230, 238, 0.65);
  overflow: hidden;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.testimonials__card:hover {
  transform: translateY(-4px);
}

.testimonials__card-image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.testimonials__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.testimonials__card-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.48px;
  line-height: 1.45;
  color: #000;
}

.testimonials__card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}

/* ===== タブレット: ~1024px ===== */
@media (max-width: 1024px) {
  .testimonials {
    padding: 48px 0 0;
  }

  .testimonials__title {
    font-size: 28px;
    letter-spacing: -0.56px;
  }

  /* デスクトップ用3枚を非表示、タブレット用1枚を表示 */
  .testimonials__stats {
    padding: 24px 24px 0;
  }

  .testimonials__stats-desktop {
    display: none;
  }

  .testimonials__stats-tablet {
    display: block;
    width: 100%;
    max-width: 704px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
  }

  /* 証言カードを縦並び */
  .testimonials__cards {
    flex-direction: column;
    align-items: center;
    padding: 48px 64px 96px;
    gap: 32px;
  }

  .testimonials__card {
    flex: none;
    /* 潰れ防止 */
    max-width: 456px;
    width: 100%;
    height: auto;
  }

  .testimonials__card-name {
    font-size: 20px;
    letter-spacing: -0.3px;
  }
}

/* ===== スマホ: ~767px ===== */
@media (max-width: 767px) {
  .testimonials__stats {
    padding: 13px 15px 0;
    max-width: 367px;
    margin: 0 auto;
  }

  .testimonials__stats-tablet {
    display: none;
  }

  .testimonials__stats-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
  }

  .testimonials__cards {
    padding: 13px 24px 20px;
    gap: 32px;
  }

  .testimonials__card {
    flex: none;
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .testimonials__card-image-wrap {
    height: 180px;
    flex-shrink: 0;
  }

  .testimonials__card-body {
    flex-shrink: 0;
  }

  .testimonials__card-desc {
    font-size: 16px;
    letter-spacing: -0.08px;
  }
}

/* ============================================================
   SPECS（動作環境）
   ============================================================ */
.specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0 80px;
  width: 100%;
  background: #fff;
}

.specs__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: #0061cf;
  text-align: center;
  width: 100%;
  padding: 0;
  margin-bottom: 40px;
  /* 「動作環境」と「推奨スペック」の間の余白 */
}

.specs__list {
  width: 100%;
  max-width: 1060px;
  padding: 0 24px;
}

.specs__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 20px 48px;
  border-bottom: 1px solid #c3d4e3;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.56px;
  line-height: 1.2;
  color: #000;
  align-items: center;
}

.specs__label {
  margin: 0;
  font-weight: 550;
}

.specs__value {
  margin: 0;
  font-weight: 300;
}

.specs__note {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72em;
  line-height: 1.6;
}

.specs__row:first-child .specs__value {
  font-weight: 550;
}

/* ===== タブレット: ~1024px ===== */
@media (max-width: 1024px) {
  .specs {
    padding: 48px 0 60px;
  }

  .specs__title {
    font-size: 36px;
    padding: 0;
  }

  .specs__list {
    padding: 0 20px;
  }

  .specs__row {
    grid-template-columns: 140px 1fr;
    gap: 32px;
    padding: 20px;
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

/* ===== スマホ: ~767px ===== */
@media (max-width: 767px) {
  .specs {
    padding: 48px 0 40px;
  }

  .specs__title {
    font-size: 28px;
    letter-spacing: -0.56px;
    padding: 0;
  }

  .specs__list {
    padding: 0 16px;
  }

  .specs__row {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 16px 12px;
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

/* ============================================================
   EVENT BANNER（Japan Drone 2026 告知）
   ============================================================ */
.event-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 64px 100px;
  /* 下を大きめにして視覚的に上下均等に */
  width: 100%;
  overflow: hidden;
}

.event-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -2;
}

.event-banner__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  z-index: -1;
}

/* テキスト */
.event-banner__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  /* padding除去で上下均等に */
  height: auto;
  text-align: center;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #000;
  width: 100%;
}

.event-banner__lead {
  letter-spacing: -0.2px;
  font-weight: 700;
  display: block;
  color: #000;
  margin: 0;
}

.event-banner__lead-big {
  font-size: 48px;
  line-height: 69.6px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #000;
  word-wrap: break-word;
}

.event-banner__lead-small {
  font-size: 40px;
  line-height: 58px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #000;
  word-wrap: break-word;
}

.event-banner__title {
  font-size: 64px;
  /* Figma: text-[64px] */
  letter-spacing: -1.28px;
  /* Figma: tracking-[-1.28px] */
  line-height: 1.38;
  font-weight: 700;
  color: #000;
  max-width: 843px;
}

/* ボタン（Figma: gap-[16px] / h-[45px]） */
.event-banner__buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 585px;
  max-width: 100%;
}

.event-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 33px;
  /* Figma: px-[33px] py-[12px]（primary） */
  height: 45px;
  /* Figma: h-[45px] */
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.09px;
  line-height: 1.45;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.event-banner__btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.event-banner__btn--primary {
  background: #40c454;
  width: 257px;
  /* Figma: w-[257px] */
}

.event-banner__btn--secondary {
  background: #1badff;
  width: 272px;
  /* Figma: w-[272px] */
  gap: 9px;
  padding: 12px 20px;
  /* Figma: px-[20px] py-[12px] */
  justify-content: center;
}

.event-banner__arrow {
  font-size: 14px;
  letter-spacing: -0.07px;
}

/* ===== タブレット: ~1024px ===== */
@media (max-width: 1024px) {

  /* Figma: gap-[91px], px-[24px] py-[80px] */
  .event-banner {
    gap: 91px;
    padding: 60px 24px;
  }

  /* 上下同じ */
  /* Figma: gap-[7px], py-[10px] */
  .event-banner__text {
    gap: 7px;
    padding: 0;
    /* padding除去 */
    height: auto;
  }

  /* Figma: text-[28px]/text-[32px] mix */
  .event-banner__lead {
    line-height: 1.45;
  }

  .event-banner__lead-big {
    font-size: 32px;
  }

  .event-banner__lead-small {
    font-size: 28px;
  }

  /* Figma: text-[40px], tracking-[-0.8px] */
  .event-banner__title {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .event-banner__buttons {
    gap: 16px;
    width: 585px;
    max-width: 100%;
  }
}

/* ===== スマホ: ~767px ===== */
@media (max-width: 767px) {
  .event-banner {
    gap: 69px;
    padding: 40px 32px;
  }

  .event-banner__bg-overlay {
    background: rgba(255, 255, 255, 0.4);
  }

  .event-banner__text {
    gap: 16px;
    /* Figma: gap-[16px] */
    padding: 0;
    height: auto;
  }

  /* リード文：2行で表示 */
  .event-banner__lead {
    line-height: 1.45;
    display: block;
    text-align: center;
    letter-spacing: -0.12px;
    position: relative;
    padding: 0 45px;
    /* テキスト表示幅を広げる */
  }

  .event-banner__slash {
    display: none;
  }

  .event-banner__slash-sp {
    display: none;
  }

  /* 装飾線（＼）：テキスト左横・文字の高さ分 */
  .event-banner__lead::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(62deg);
    width: 70px;
    height: 2px;
    background: #000;
  }

  /* 装飾線（／）：テキスト右横・文字の高さ分 */
  .event-banner__lead::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-62deg);
    width: 70px;
    height: 2px;
    background: #000;
  }

  .event-banner__lead-big {
    font-size: 24px;
    line-height: 34.8px;
    display: block;
  }

  .event-banner__lead-small {
    font-size: 24px;
    line-height: 34.8px;
    display: block;
  }

  .event-banner__title {
    font-size: 36px;
    letter-spacing: -0.8px;
    line-height: 1.38;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.79);
    white-space: normal;
    word-break: keep-all;
  }

  .event-banner__buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: center;
  }

  .event-banner__btn {
    width: 273px;
    max-width: 100%;
    height: 47px;
  }

  .event-banner__btn--primary {
    width: 273px;
  }

  .event-banner__btn--secondary {
    width: 273px;
  }
}

/* ============================================================
   DIAGNOSIS（プラン診断）
   ============================================================ */
.diagnosis {
  background: rgba(215, 235, 255, 0.2);
  padding: 64px 16px 80px;
  width: 100%;
}

.diagnosis__container {
  max-width: 1280px;
  margin: 0 auto;
}

.diagnosis__title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #005fcc;
  text-align: center;
  margin-bottom: 8px;
}

.diagnosis__lead {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #475569;
  font-size: 16px;
  margin-bottom: 48px;
}

/* 選択肢カード（Figma準拠：上：青グラデ文字／下：白背景に画像） */
.diagnosis__options {
  display: flex;
  flex-direction: row;
  gap: 32px;
  /* Figma: カード間 ml-[394.67px - 362.667px] = 32px */
  margin-bottom: 64px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.diagnosis__option {
  width: 362.667px;
  /* Figma実寸 */
  height: 432px;
  /* Figma実寸 */
  padding: 0;
  border: none;
  border-radius: 130px;
  /* Figma: rounded-[130px] */
  overflow: hidden;
  background: linear-gradient(231deg, #2a88e0 13%, #50c0f8 83%);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
}

.diagnosis__option:hover {
  transform: translateY(-6px);
}

.diagnosis__option.is-active {
  transform: translateY(-6px);
}

/* 上部：テキストエリア */
.diagnosis__option-top {
  background: transparent;
  padding: 80px 30px 24px;
  /* 上余白を大きく（文字がカード中央付近に来る） */
  height: 220px;
  display: flex;
  align-items: center;
  /* テキストを縦中央に */
  justify-content: center;
  flex-shrink: 0;
}

.diagnosis__option-text {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.11px;
  color: #fff;
  text-align: center;
  word-wrap: break-word;
  width: 90%;
  /* 親いっぱいに広げてセンタリングを効かす */
  margin: 0;
}

/* 下部：画像エリア（背景透明、グラデの上に画像を重ねる） */
.diagnosis__option-bottom {
  flex: 1;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.diagnosis__option-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.diagnosis__option-placeholder {
  display: none !important;
  /* プレースホルダーは表示しない（青グラデのみ見せる） */
}

/* 結果カード（Figma準拠：白背景・青文字） */
.diagnosis__result {
  display: none;
  background: #fff;
  border-radius: 60px;
  padding: 40px 0;
  /* Figma: py-[40px] */
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0, 95, 204, 0.08);
  animation: diagnosisFadeIn 0.3s ease-in;
  overflow: hidden;
}

#diagnosis-result {
  scroll-margin-top: 120px;
  /* stickyヘッダー分のオフセット */
}

.diagnosis__result.is-visible {
  display: block;
}

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

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

/* 内側テキストエリア（Figma: gap-[8px] / px-[40px] py-[32px]） */
.diagnosis__result-lead,
.diagnosis__result-title,
.diagnosis__result-desc {
  padding-left: 40px;
  padding-right: 40px;
  color: #0372d3;
  margin: 0;
}

.diagnosis__result-lead {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.15px;
  line-height: 1.45;
  padding-top: 32px;
  /* py-[32px] の上 */
}

.diagnosis__result-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.24px;
  line-height: 1.45;
  margin-top: 8px;
  /* gap-[8px] */
}

.diagnosis__result-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.15px;
  line-height: 1.45;
  margin-top: 8px;
  /* gap-[8px] */
  padding-bottom: 32px;
  /* py-[32px] の下 */
}

/* 結果ボタン（要望で追加：青グラデーション・カード下部） */
.diagnosis__result-btn {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0 40px;
  padding: 20px 32px;
  background: linear-gradient(231deg, #2a88e0 13%, #50c0f8 83%);
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 6px 16px rgba(42, 136, 224, 0.3);
  width: calc(100% - 80px);
  /* 左右マージン40pxずつ差し引き */
}

.diagnosis__result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(42, 136, 224, 0.4);
  filter: brightness(1.05);
}

/* ===== タブレット・スマホ: ~1024px ===== */
@media (max-width: 1024px) {

  /* Figma準拠: px-[24px] py-[80px] / gap-[24px] */
  .diagnosis {
    padding: 80px 24px;
  }

  .diagnosis__title {
    font-size: 28px;
  }

  .diagnosis__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* 選択肢を縦並び */
  .diagnosis__options {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
  }

  /* Figma: rounded-[80px] / h-[250px] / w-full (327px) */
  .diagnosis__option {
    width: 100%;
    max-width: 327px;
    height: auto;
    min-height: 300px;
    border-radius: 80px;
  }

  /* 画像下部の高さを確保 */
  .diagnosis__option-bottom {
    height: auto;
    min-height: 160px;
    flex: 1;
  }

  /* Figma: pt-[15px] pb-[40px] / 内: px-[40px] py-[24px] */
  .diagnosis__option-top {
    height: auto;
    padding: 60px 30px 24px;
    /* 上余白を大きく */
    align-items: center;
  }

  /* 結果カード（Figma: rounded-[30px] / py-[40px] / 内: p-[24px]） */
  .diagnosis__result {
    border-radius: 30px;
    padding: 40px 0;
  }

  .diagnosis__result-lead,
  .diagnosis__result-title,
  .diagnosis__result-desc {
    padding-left: 24px;
    padding-right: 24px;
  }

  .diagnosis__result-lead {
    font-size: 23px;
    /* Figma実寸 text-[23px] */
    letter-spacing: -0.115px;
    padding-top: 24px;
  }

  .diagnosis__result-title {
    font-size: 41px;
    /* Figma実寸 text-[41px] */
    letter-spacing: -0.205px;
  }

  .diagnosis__result-desc {
    font-size: 20px;
    /* Figma実寸 text-[20px] */
    letter-spacing: -0.1px;
    padding-bottom: 24px;
  }

  .diagnosis__result-btn {
    margin: 8px 24px 0;
    width: calc(100% - 48px);
    font-size: 18px;
    padding: 18px 28px;
  }
}

/* ===== スマホ: ~640px ===== */
@media (max-width: 640px) {
  .diagnosis__option {
    max-width: 327px;
    height: auto;
    min-height: 280px;
  }

  .diagnosis__option-text {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: -0.1px;
    text-align: center;
    /* 中央揃えを明示 */
  }
}

/* アンカーリンク用：stickyヘッダーに隠れないようオフセット */
#plans-cards,
#comparison-result,
#comparison-table,
#pricing-cards,
#diagnosis-result {
  scroll-margin-top: 120px;
}

/* ══════════════════════════════════════════
       SEC 11: お問い合わせ (from wireframe-light)
    ══════════════════════════════════════════ */
.contact-sec {
  background: linear-gradient(160deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-sec::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.contact-sec::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.contact-sec .section-title {
  color: #fff;
}

.contact-sec .section-sub {
  color: rgba(255, 255, 255, .8);
}

.cta-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 860px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .12);
}

@media (max-width: 640px) {
  .cta-box {
    padding: 32px 20px;
  }
}

.cta-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.cta-box>p {
  font-size: .9rem;
  color: #64748b;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  font-size: 12px;
  color: #475569;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group .input-mock {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  color: #94a3b8;
}

.form-privacy {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 20px;
  text-align: left;
}

.form-privacy a {
  color: #0284c7;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(14, 165, 233, .35);
}

.security-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #94a3b8;
}

/* ===== カスタムフォーム ===== */
#contact-form {
  text-align: left;
}

.hs-form-field {
  margin-bottom: 16px;
}

.hs-form-field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.hs-form-required {
  color: #e11d48;
  margin-left: 2px;
}

.hs-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  color: #0f172a;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}

.hs-input:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, .15);
}

.hs-input::placeholder {
  color: #94a3b8;
}

textarea.hs-input {
  height: auto;
  padding: 10px 14px;
  resize: vertical;
}

.hs-button.primary.large {
  width: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(14, 165, 233, .35);
  margin-top: 8px;
  transition: opacity .15s;
  font-family: inherit;
}

.hs-button.primary.large:hover {
  opacity: .9;
}

.hs-button.primary.large:disabled {
  opacity: .6;
  cursor: not-allowed;
}