/* ==============================================
   Pictomina forschool ページ CSS
   学校・先生・保護者向けLP（2026-02-04）
   - forvendor.css をベースに学校向けトーンに調整
   ============================================== */

/* ==============================================
   1. カラー変数・共通リセット（学校向けトーン）
   ============================================== */
body.page-id-712 {
  overflow-x: hidden;
}

.pm-lp-school {
  /* 学校向けカラー - 柔らかく安心感のあるトーン */
  --pm-school-primary: #5CC5EF;      /* プールブルー（メイン） */
  --pm-school-primary-dark: #3BA8D8;
  --pm-school-accent: #e67e22;        /* オレンジ（アクセント） */
  --pm-school-accent-dark: #d35400;
  --pm-school-green: #27ae60;         /* グリーン（安心） */
  --pm-school-text: #444;
  --pm-school-text-light: #666;
  --pm-school-bg-warm: #FFF9F5;       /* 温かみのある背景 */
  --pm-school-bg-blue: #F0F9FF;       /* 爽やかな背景 */
}

.pm-lp-school {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  color: var(--pm-school-text);
  max-width: none;
  padding: 0;
  margin: 0 auto;
}

.pm-lp-school * {
  box-sizing: border-box;
}

/* ==============================================
   2. 共通コンポーネント
   ============================================== */

/* 共通ヘッダー */
.pm-lp-school .pm-lphead {
  text-align: center;
  margin-bottom: 50px;
}

.pm-lp-school .pm-lphead__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.pm-lp-school .pm-lphead__color {
  color: var(--pm-school-primary);
}

/* 共通ボタン */
.pm-lp-school .pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.pm-lp-school .pm-btn--orange {
  background: var(--pm-school-accent);
  color: #fff;
  border: 2px solid var(--pm-school-accent);
}

.pm-lp-school .pm-btn--orange:hover {
  background: var(--pm-school-accent-dark);
  border-color: var(--pm-school-accent-dark);
}

.pm-lp-school .pm-btn--white {
  background: #fff;
  color: var(--pm-school-accent);
  border: 2px solid var(--pm-school-accent);
}

.pm-lp-school .pm-btn--white:hover {
  background: var(--pm-school-accent);
  color: #fff;
}

/* ==============================================
   3. ヒーローセクション（学校向け）
   ============================================== */
/* ===== Hero背景画像 ===== */
.pm-lp-school .pm-hero-v2 {
  position: relative;
  background-image: url('https://vod.pictomina.com/wp-content/uploads/2026/02/forschool_back-scaled.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: clamp(40px, 6vw, 80px) 20px clamp(40px, 6vw, 80px);
  min-height: clamp(400px, 50vw, 550px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: none;
  overflow: hidden;
}

/* ===== 左側オーバーレイ（コピー可読性確保） ===== */
.pm-lp-school .pm-hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 35%,
    rgba(255, 255, 255, 0.3) 55%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ===== pm-hero-v2__image を非表示 ===== */
.pm-lp-school .pm-hero-v2__image {
  display: none;
}

/* ===== pm-hero-v2__badge を非表示 ===== */
.pm-lp-school .pm-hero-v2__badge {
  display: none;
}

.pm-lp-school .pm-hero-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-left: clamp(12px, 3vw, 39px);
}

.pm-lp-school .pm-hero-v2__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.pm-lp-school .pm-hero-v2__headblock {
  flex: 0 0 50%;
  min-width: clamp(280px, 45vw, 500px);
  max-width: 550px;
  position: relative;
  z-index: 2;
  text-align: left;
}
.pm-lp-school .pm-hero-v2__platform {
  text-align: left;
}

.pm-lp-school .pm-hero-v2__headblock h1 br {
  display: none;
}

.pm-lp-school .pm-hero-v2__headblock h1 {
  text-align: left;
  margin-bottom: 16px;
}

.pm-lp-school .pm-hero-v2__catchcopy {
  text-align: left;
}

.pm-lp-school .pm-hero-v2__buttonarea {
  justify-content: flex-start;
}

.pm-lp-school .pm-hero-v2__column {
  flex: 1 1 55%;
  min-width: clamp(280px, 45vw, 550px);
  max-width: 600px;
  margin-left: 0;
}
.pm-lp-school .pm-hero-v2__platform {
  display: inline-block;
  background: var(--pm-school-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  margin-bottom: 16px;
}

.pm-lp-school .pm-hero-v2__title-text {
  display: block;
  line-height: 1.2;
  margin-bottom: 8px;
}

.pm-lp-school .pm-hero-v2__large {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-hero-v2__small {
  font-size: clamp(18px, 3.5vw, 28px);
  font-weight: 600;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-hero-v2__highlight {
  color: var(--pm-school-primary);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
}

.pm-lp-school .pm-hero-v2__badge {
  margin: 20px 0;
}

.pm-lp-school .pm-hero-v2__badge img {
  max-width: clamp(150px, 30vw, 200px);
  height: auto;
}

.pm-lp-school .pm-hero-v2__catchcopy {
  margin: 0 0 16px 0;
}

.pm-lp-school .pm-hero-v2__catch-main {
  display: block;
  font-size: clamp(11px, 4vw, 26px);
  font-weight: 800;
  color: var(--pm-school-accent);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
}

.pm-lp-school .pm-hero-v2__catch-sub {
  display: block;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--pm-school-text-light);
}

.pm-lp-school .pm-hero-v2__image {
  position: absolute;
  bottom: 0;
  right: clamp(0px, 2vw, 20px);
  width: auto;
  max-width: 50%;
  z-index: 1;
  height: clamp(350px, 50vw, 560px);
}

.pm-lp-school .pm-hero-v2__image img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.pm-lp-school .pm-hero-v2__buttonarea {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 16px;
}

.pm-lp-school .pm-hero-v2__button {
  flex: 0 0 auto;
}

/* ==============================================
   4. お悩みセクション
   ============================================== */
.pm-lp-school .pm-worries {
  background: var(--pm-school-bg-warm);
  padding: 80px 20px;
}

.pm-lp-school .pm-worries__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pm-lp-school .pm-worries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pm-lp-school .pm-worries__item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.pm-lp-school .pm-worries__item:hover {
  transform: translateY(-5px);
}

.pm-lp-school .pm-worries__icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.pm-lp-school .pm-worries__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-worries__solution {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-worries__highlight {
  color: var(--pm-school-primary);
  font-size: 26px;
}

/* ==============================================
   5. Before/After（3つの安心）
   ============================================== */
.pm-lp-school .pm-story {
  background: #fff;
  padding: 80px 20px;
}

.pm-lp-school .pm-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(8px, 2vw, 20px);
}

.pm-lp-school .pm-story__lead {
  text-align: center;
  font-size: 18px;
  color: var(--pm-school-text-light);
  margin-bottom: 50px;
}

.pm-lp-school .pm-story__cards {
  display: flex;
  gap: clamp(10px, 1.5vw, 15px);
  justify-content: center;
}

.pm-lp-school .pm-story__card {
  flex: 1;
  max-width: 380px;
  background: var(--pm-school-bg-blue);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
}

.pm-lp-school .pm-story__before,
.pm-lp-school .pm-story__after {
  padding: 20px 0;
}

.pm-lp-school .pm-story__label {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pm-lp-school .pm-story__before .pm-story__label {
  background: #ffebee;
  color: #c62828;
}

.pm-lp-school .pm-story__after .pm-story__label {
  background: #e8f5e9;
  color: #2e7d32;
}

.pm-lp-school .pm-story__icon {
  margin-bottom: 15px;
}

.pm-lp-school .pm-story__icon img {
  max-width: 90%;
  height: auto;
}

.pm-lp-school .pm-story__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-story__text {
  font-size: 14px;
  color: var(--pm-school-text-light);
  line-height: 1.6;
}

.pm-lp-school .pm-story__arrow {
  font-size: 24px;
  color: var(--pm-school-primary);
  padding: 10px 0;
}

.pm-lp-school .pm-story__buttonblock {
  margin-top: 50px;
}

.pm-lp-school .pm-story__buttonarea {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ==============================================
   6. 比較表
   ============================================== */
.pm-lp-school .pm-comparison {
  background: var(--pm-school-bg-blue);
  padding: 80px 20px;
}

.pm-lp-school .pm-comparison__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pm-lp-school .pm-comparison__tablearea {
  overflow-x: auto;
}

.pm-lp-school .pm-comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pm-lp-school .pm-comparison__table th,
.pm-lp-school .pm-comparison__table td {
  padding: 20px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pm-lp-school .pm-comparison__table thead th {
  background: var(--pm-school-text);
  color: #fff;
  font-weight: 700;
}

.pm-lp-school .pm-comparison__table thead th.pm-comparison__highlight {
  background: var(--pm-school-primary);
}

.pm-lp-school .pm-comparison__table tbody th {
  background: #f8f9fa;
  font-weight: 600;
  text-align: left;
}

.pm-lp-school .pm-comparison__table tbody td.pm-comparison__highlight {
  background: #F0F9FF;
}

.pm-lp-school .pm-comparison__good {
  color: var(--pm-school-green);
  font-weight: 700;
}

/* ==============================================
   7. セキュリティ
   ============================================== */
.pm-lp-school .pm-security {
  background: #fff;
  padding: 80px 20px;
}

.pm-lp-school .pm-security__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pm-lp-school .pm-security__intro {
  text-align: center;
  font-size: 18px;
  color: var(--pm-school-text-light);
  margin-bottom: 50px;
}

.pm-lp-school .pm-security__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pm-lp-school .pm-security__item {
  background: var(--pm-school-bg-blue);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.pm-lp-school .pm-security__icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.pm-lp-school .pm-security__item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-security__item p {
  font-size: 14px;
  color: var(--pm-school-text-light);
  line-height: 1.7;
}

/* ==============================================
   8. 導入の流れ
   ============================================== */
.pm-lp-school .pm-steps {
  background: var(--pm-school-bg-warm);
  padding: 80px 20px;
}

.pm-lp-school .pm-steps__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pm-lp-school .pm-steps__lead {
  text-align: center;
  font-size: 18px;
  color: var(--pm-school-text-light);
  margin-bottom: 50px;
}

.pm-lp-school .pm-steps__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pm-lp-school .pm-steps__item {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pm-lp-school .pm-steps__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid var(--pm-school-primary);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.pm-lp-school .pm-steps__num {
  margin-bottom: 15px;
}

.pm-lp-school .pm-steps__head {
  display: block;
  font-size: 12px;
  color: var(--pm-school-primary);
  font-weight: 700;
}

.pm-lp-school .pm-steps__number {
  font-size: 48px;
  font-weight: 800;
  color: var(--pm-school-primary);
  line-height: 1;
}

.pm-lp-school .pm-steps__item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--pm-school-text);
}

.pm-lp-school .pm-steps__icon {
  margin-bottom: 15px;
}

.pm-lp-school .pm-steps__icon img {
  max-width: 90%;
  height: auto;
}

.pm-lp-school .pm-steps__text {
  font-size: 14px;
  color: var(--pm-school-text-light);
  line-height: 1.6;
}

.pm-lp-school .pm-steps__buttonarea {
  margin-top: 50px;
  text-align: center;
}

/* ==============================================
   9. FAQ
   ============================================== */
.pm-lp-school .pm-faq {
  background: #fff;
  padding: 80px 20px;
}

.pm-lp-school .pm-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.pm-lp-school .pm-faq__item {
  border-bottom: 1px solid #eee;
  padding: 25px 0;
}

.pm-lp-school .pm-faq__item:first-child {
  padding-top: 0;
}

.pm-lp-school .pm-faq__q {
  font-size: 17px;
  font-weight: 700;
  color: var(--pm-school-text);
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
}

.pm-lp-school .pm-faq__q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--pm-school-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.pm-lp-school .pm-faq__a {
  font-size: 15px;
  color: var(--pm-school-text-light);
  padding-left: 35px;
  line-height: 1.8;
}

/* ==============================================
   10. お問い合わせ
   ============================================== */
.pm-lp-school .pm-contact {
  background: var(--pm-school-bg-blue);
  padding: 80px 20px;
}

.pm-lp-school .pm-contact__inner {
  max-width: 700px;
  margin: 0 auto;
}

.pm-lp-school .pm-contact__formarea {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pm-lp-school .pm-contact__intro {
  text-align: center;
  font-size: 16px;
  color: var(--pm-school-text-light);
  margin-bottom: 30px;
}

/* ==============================================
   11. レスポンシブ対応
   ============================================== */

/* タブレット */
@media (max-width: 980px) {
  .pm-lp-school .pm-hero-v2 {
    background-position: 70% center;
    min-height: clamp(350px, 55vw, 450px);
  }

  .pm-lp-school .pm-hero-v2::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.8) 45%,
      rgba(255, 255, 255, 0.4) 65%,
      transparent 80%
    );
  }

  .pm-lp-school .pm-hero-v2__headblock {
    flex: 0 0 60%;
    max-width: none;
  }

  .pm-lp-school .pm-worries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-lp-school .pm-story__cards {
    flex-wrap: nowrap;
  }

  .pm-lp-school .pm-story__card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .pm-lp-school .pm-steps__flow {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2vw, 30px);
  }

  .pm-lp-school .pm-steps__item:not(:last-child)::after {
    right: clamp(-15px, -2vw, -20px);
    border-left-width: clamp(8px, 1.5vw, 12px);
    border-top-width: clamp(5px, 1vw, 8px);
    border-bottom-width: clamp(5px, 1vw, 8px);
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  /* ページタイトル（行事のビデオ撮影担当の先生へ）レスポンシブ */
  .page-id-712 .entry-title {
    font-size: clamp(18px, 5vw, 28px) !important;
    white-space: nowrap;
    overflow: hidden;
  }

  .pm-lp-school .pm-lphead__title {
    font-size: clamp(17px, 4vw, 24px);
  }

  .pm-lp-school .pm-hero-v2 {
    background-position: 75% center;
    min-height: auto;
    padding: 40px 15px 50px;
  }

  .pm-lp-school .pm-hero-v2::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0.3) 100%
    );
  }

  /* テキスト光彩（可読性向上） */
  
  .pm-lp-school .pm-hero-v2__title-text,
  .pm-lp-school .pm-hero-v2__catch-main,
  .pm-lp-school .pm-hero-v2__catch-sub {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.9),
      0 0 15px rgba(255, 255, 255, 0.6),
      0 0 25px rgba(255, 255, 255, 0.3);
  }

  .pm-lp-school .pm-hero-v2__content {
    align-items: flex-start;
  }

  .pm-lp-school .pm-hero-v2__headblock {
    flex: 0 0 100%;
    min-width: 100%;
    text-align: left;
  }

  .pm-lp-school .pm-hero-v2__column {
    text-align: left;
  }

    .pm-lp-school .pm-hero-v2__platform {
    font-size: clamp(10px, 2vw, 13px);
    text-align: left;
  }

  .pm-lp-school .pm-hero-v2__catchcopy {
    text-align: left;
  }

  .pm-lp-school .pm-hero-v2__buttonarea {
    justify-content: flex-start;
  }

  .pm-lp-school .pm-hero-v2__catch-main {
    font-size: clamp(11px, 4.2vw, 22px);
  }

  .pm-lp-school .pm-worries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .pm-lp-school .pm-worries__item {
    padding: 20px 15px;
  }

  .pm-lp-school .pm-worries__icon {
    font-size: 36px;
  }

  .pm-lp-school .pm-worries__text {
    font-size: 13px;
  }

  .pm-lp-school .pm-worries__solution {
    font-size: 18px;
  }

  .pm-lp-school .pm-worries__highlight {
    font-size: 22px;
  }

  .pm-lp-school .pm-story__cards {
    flex-wrap: nowrap;
    gap: clamp(5px, 1vw, 10px);
  }

  .pm-lp-school .pm-story__card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    padding: clamp(15px, 4vw, 30px) clamp(10px, 2.5vw, 20px);
    border-radius: clamp(12px, 3vw, 20px);
  }

  .pm-lp-school .pm-story__label {
    font-size: clamp(9px, 2.5vw, 12px);
    padding: clamp(3px, 1vw, 5px) clamp(8px, 2vw, 15px);
  }

  .pm-lp-school .pm-story__title {
    font-size: clamp(11px, 3vw, 16px);
  }

  .pm-lp-school .pm-story__text {
    font-size: clamp(10px, 2.5vw, 14px);
  }

  .pm-lp-school .pm-story__icon img {
    max-width: 90%;
  }

  .pm-lp-school .pm-story__arrow {
    font-size: clamp(16px, 4vw, 24px);
    padding: clamp(5px, 1.5vw, 10px) 0;
  }

  .pm-lp-school .pm-security__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 3vw, 20px);
  }

  .pm-lp-school .pm-security__item {
    padding: clamp(15px, 4vw, 30px);
    border-radius: clamp(10px, 3vw, 16px);
  }

  .pm-lp-school .pm-security__icon {
    font-size: clamp(32px, 10vw, 48px);
  }

  .pm-lp-school .pm-security__item h4 {
    font-size: clamp(13px, 3.5vw, 18px);
  }

  .pm-lp-school .pm-security__item p {
    font-size: clamp(11px, 3vw, 14px);
  }

  .pm-lp-school .pm-steps__flow {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2vw, 30px);
  }

  .pm-lp-school .pm-steps__item {
    padding: clamp(15px, 4vw, 30px) clamp(10px, 2.5vw, 20px);
    border-radius: clamp(12px, 3vw, 20px);
  }

  .pm-lp-school .pm-steps__item:not(:last-child)::after {
    right: clamp(-12px, -3vw, -20px);
    border-left-width: clamp(6px, 1.5vw, 12px);
    border-top-width: clamp(4px, 1vw, 8px);
    border-bottom-width: clamp(4px, 1vw, 8px);
  }

  .pm-lp-school .pm-steps__number {
    font-size: clamp(28px, 8vw, 48px);
  }

  .pm-lp-school .pm-steps__head {
    font-size: clamp(9px, 2.5vw, 12px);
  }

  .pm-lp-school .pm-steps__item h3 {
    font-size: clamp(11px, 3vw, 18px);
    min-height: auto;
    margin-bottom: clamp(10px, 2.5vw, 15px);
  }

  .pm-lp-school .pm-steps__icon img {
    max-height: clamp(50px, 15vw, 100px);
    width: auto;
    max-width: 100%;
  }

  .pm-lp-school .pm-steps__text {
    font-size: clamp(10px, 2.5vw, 14px);
  }

  .pm-lp-school .pm-comparison__table th,
  .pm-lp-school .pm-comparison__table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .pm-lp-school .pm-faq__q {
    font-size: 15px;
  }

  .pm-lp-school .pm-faq__a {
    font-size: 14px;
  }

  .pm-lp-school .pm-contact__formarea {
    padding: 25px 20px;
  }

  .pm-lp-school .pm-btn {
    padding: 14px 30px;
    font-size: 14px;
    min-width: 160px;
  }

  .pm-lp-school .pm-hero-v2__buttonarea {
    flex-direction: column;
    align-items: center;
  }
}

/* 小型スマートフォン */
@media (max-width: 480px) {
  .pm-lp-school .pm-hero-v2 {
    background-position: 80% center;
    padding: 30px 15px 40px;
  }

  .pm-lp-school .pm-hero-v2__content {
    align-items: flex-start;
  }

  .pm-lp-school .pm-hero-v2__headblock,
  .pm-lp-school .pm-hero-v2__column,
  
  .pm-lp-school .pm-hero-v2__catchcopy {
    text-align: left;
  }

  .pm-lp-school .pm-hero-v2__buttonarea {
    justify-content: flex-start;
  }

  .pm-lp-school .pm-hero-v2__catch-main {
    font-size: clamp(11px, 4.5vw, 18px);
  }

  .pm-lp-school .pm-lphead__title {
    font-size: clamp(15px, 4vw, 20px);
  }

  .pm-lp-school .pm-hero-v2__large {
    font-size: 22px;
  }

  .pm-lp-school .pm-hero-v2__highlight {
    font-size: 28px;
  }

  .pm-lp-school .pm-hero-v2__catch-main {
    font-size: clamp(11px, 4.5vw, 18px);
  }

  .pm-lp-school .pm-worries,
  .pm-lp-school .pm-story,
  .pm-lp-school .pm-comparison,
  .pm-lp-school .pm-security,
  .pm-lp-school .pm-steps,
  .pm-lp-school .pm-faq,
  .pm-lp-school .pm-contact {
    padding: 50px 15px;
  }

  .pm-lp-school .pm-worries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2vw, 15px);
  }

  .pm-lp-school .pm-worries__item {
    padding: clamp(12px, 3vw, 20px) clamp(8px, 2vw, 15px);
    border-radius: clamp(10px, 3vw, 16px);
  }

  .pm-lp-school .pm-worries__icon {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: clamp(8px, 2vw, 15px);
  }

  .pm-lp-school .pm-worries__text {
    font-size: clamp(10px, 2.8vw, 13px);
  }
}

/* After背景色を緑に変更（オレンジが画像と同化するため） */
.pm-lp-school .pm-story__after {
  background: linear-gradient(135deg, #ffb74d 0%, #ffa726 100%);
}

/* After背景を薄くし、画像・テキストに光彩追加 */
.pm-lp-school .pm-story__after {
  background: linear-gradient(135deg, #ffb74d 0%, #ffa726 100%);
}

.pm-lp-school .pm-story__after .pm-story__title {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 15px rgba(255, 255, 255, 0.6);
}

.pm-lp-school .pm-story__after .pm-story__text {
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.5);
}

.pm-lp-school .pm-story__after .pm-story__icon img {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

/* 矢印グラデーションをAfterに合わせる */
.pm-lp-school .pm-story__arrow {
  background: linear-gradient(180deg, #e8e8e8 0%, #ffb74d 100%);
}

/* テキスト光彩を強化 */
.pm-lp-school .pm-story__after .pm-story__title {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.5);
}

.pm-lp-school .pm-story__after .pm-story__text {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 15px rgba(255, 255, 255, 0.7);
}

/* セキュリティアイコン画像サイズ */
.pm-lp-school .pm-security__icon img {
  width: 240px;
  height: auto;
  max-width: 100%;
}
/* ==============================================
   forschool 追加セクション CSS
   2026-02-05
   ============================================== */

/* ==============================================
   写真販売との違いセクション
   ============================================== */
.pm-lp-school .pm-difference {
  padding: 80px 20px;
  background: var(--pm-school-bg-blue);
}

.pm-lp-school .pm-difference__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pm-lp-school .pm-difference__lead {
  text-align: center;
  font-size: 18px;
  color: var(--pm-school-text-light);
  margin-bottom: 40px;
}

.pm-lp-school .pm-difference__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pm-lp-school .pm-difference__card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-lp-school .pm-difference__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pm-lp-school .pm-difference__icon {
  margin-bottom: 20px;
}

.pm-lp-school .pm-difference__emoji {
  font-size: 64px;
  display: block;
}

.pm-lp-school .pm-difference__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pm-school-primary-dark);
  margin-bottom: 15px;
}

.pm-lp-school .pm-difference__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pm-school-text);
}

/* ==============================================
   学校負担ゼロセクション
   ============================================== */
.pm-lp-school .pm-pricing {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
}

.pm-lp-school .pm-pricing__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pm-lp-school .pm-pricing__lead {
  text-align: center;
  font-size: 18px;
  color: var(--pm-school-text-light);
  margin-bottom: 40px;
}

.pm-lp-school .pm-pricing__cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.pm-lp-school .pm-pricing__card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 180px;
}

.pm-lp-school .pm-pricing__card--accent {
  background: linear-gradient(135deg, var(--pm-school-accent) 0%, var(--pm-school-accent-dark) 100%);
  color: #fff;
}

.pm-lp-school .pm-pricing__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.9;
}

.pm-lp-school .pm-pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pm-lp-school .pm-pricing__num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.pm-lp-school .pm-pricing__yen {
  font-size: 20px;
  font-weight: 700;
  margin-left: 5px;
}

.pm-lp-school .pm-pricing__card--accent .pm-pricing__num,
.pm-lp-school .pm-pricing__card--accent .pm-pricing__yen {
  color: #fff;
}

.pm-lp-school .pm-pricing__note {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.9;
}

.pm-lp-school .pm-pricing__notice {
  text-align: center;
  font-size: 14px;
  color: var(--pm-school-text-light);
}

.pm-lp-school .pm-pricing__notice p {
  margin: 5px 0;
}

/* ==============================================
   先生のお仕事は3つだけ（追加スタイル）
   ============================================== */
.pm-lp-school .pm-teacher-tasks .pm-steps__time {
  display: block;
  font-size: 13px;
  color: var(--pm-school-primary);
  font-weight: 700;
  margin-top: 5px;
}

.pm-lp-school .pm-teacher-tasks__rest {
  background: linear-gradient(90deg, var(--pm-school-primary) 0%, var(--pm-school-primary-dark) 100%);
  border-radius: 12px;
  padding: 25px 40px;
  text-align: center;
  margin: 40px auto 30px;
  max-width: 600px;
  color: #fff;
}

.pm-lp-school .pm-teacher-tasks__rest-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pm-lp-school .pm-teacher-tasks__rest-flow {
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* ==============================================
   レスポンシブ対応
   ============================================== */
@media (max-width: 768px) {
  .pm-lp-school .pm-difference__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pm-lp-school .pm-difference__card {
    padding: 30px 25px;
  }

  .pm-lp-school .pm-difference__emoji {
    font-size: 48px;
  }

  .pm-lp-school .pm-pricing__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pm-lp-school .pm-pricing__card {
    width: 100%;
    max-width: 280px;
    padding: 25px 30px;
  }

  .pm-lp-school .pm-pricing__num {
    font-size: 40px;
  }

  .pm-lp-school .pm-teacher-tasks__rest {
    padding: 20px 25px;
  }

  .pm-lp-school .pm-teacher-tasks__rest-flow {
    font-size: 14px;
  }
}

/* 注意書きスタイル */
.pm-lp-school .pm-difference__note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

