/* ==============================================
   Pictomina forvendor ページ CSS
   統合・整理版（2026-01-31）
   - Yellow Pencil / Microthemer 設定を統合
   - メディアクエリを末尾に集約
   ============================================== */

/* ==============================================
   1. カラー変数・共通リセット
   ============================================== */
:root {
  --pm-orange: #e67e22;
  --pm-orange-dark: #d35400;
  --pm-orange-light: #f39c12;
  --pm-text: #333;
  --pm-text-light: #666;
  --pm-bg-gray: #f5f5f5;
  --pm-bg-light: #fafafa;
  --pm-white: #fff;
  --pm-border: #ddd;
  /* ブランドカラー */
  --pm-royal-blue: #344D90;
  --pm-pool-blue: #5CC5EF;
}

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

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

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

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

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

.pm-lphead__color {
  color: var(--pm-royal-blue);
}

/* 共通ボタン */
.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-btn--orange {
  background: var(--pm-orange);
  color: var(--pm-white);
  border: 2px solid var(--pm-orange);
}

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

.pm-btn--white {
  background: var(--pm-white);
  color: var(--pm-orange);
  border: 2px solid var(--pm-orange);
}

.pm-btn--white:hover {
  background: var(--pm-orange);
  color: var(--pm-white);
}

.pm-btn--large {
  padding: 20px 50px;
  font-size: 18px;
}

/* フェードインアニメーション */
.pm-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pm-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   3. ヒーローセクション - clamp()対応版
   2026-02-03 リファクタリング
   - すべてのサイズをclamp()で可変に
   - 画像を.pm-hero-v2基準で配置（浮き問題解決）
   ============================================== */

/* Hero コンテナ */
.pm-hero-v2 {
  position: relative;
  background-image: url('https://vod.pictomina.com/wp-content/uploads/2026/01/Gemini_Generated_Image_mjeyommjeyommjey.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: clamp(20px, 4vw, 60px) 20px 0;
  min-height: clamp(380px, 52vw, 600px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: none;
  overflow: hidden;
}

.pm-hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 0;
}

/* Inner - position: static で画像を.pm-hero-v2基準に */
.pm-hero-v2__inner {
  position: static;
  z-index: 1;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-left: clamp(12px, 3vw, 39px);
}

/* Content - flexboxベースで柔軟に */
.pm-hero-v2__content {
  position: static;  /* 画像を.pm-hero-v2基準にするため */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.pm-hero-v2__headblock {
  flex: 1 1 55%;
  min-width: clamp(280px, 45vw, 550px);
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.pm-hero-v2__column {
  flex: 1 1 55%;
  min-width: clamp(280px, 45vw, 550px);
  max-width: 600px;
  margin-left: clamp(0px, 2vw, 20px);
}

/* 画像 - .pm-hero-v2基準でbottom:0配置（高さベース） */
.pm-hero-v2__image {
  position: absolute;
  bottom: 0;
  right: clamp(0px, 2vw, 20px);
  width: auto;
  max-width: 50%;
  z-index: 1;
  /* 高さをHeroのmin-heightと連動（52vwに合わせる） */
  height: clamp(350px, 50vw, 560px);
}

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

/* ボタンエリア */
.pm-hero-v2__buttonarea {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(15px, 2vw, 20px);
  margin-bottom: clamp(15px, 3vw, 30px);
  margin-left: clamp(0px, 2vw, 20px);
  position: relative;
  z-index: 2;
}

.pm-hero-v2__button {
  width: auto;
}

.pm-hero-v2__button .pm-btn {
  min-width: clamp(160px, 20vw, 200px);
  padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2.5vw, 24px);
  border-width: 2px;
  border-radius: 4px;
}

.pm-hero-v2__button .pm-btn .pm-btn__text {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
}

/* プラットフォームテキスト */
.pm-hero-v2__platform {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  background: #fff;
  display: inline-block;
  padding: 0px 5px;
  white-space: nowrap;  /* 1行強制 */
}

/* h1 - clamp()で可変 */
.pm-hero-v2__content h1 {
  font-size: clamp(28px, 5.5vw, 69px);
  font-weight: 900;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.pm-hero-v2__large {
  color: #1a1a1a;
  font-size: clamp(28px, 5.5vw, 69px);
}

.pm-hero-v2__small {
  font-size: clamp(20px, 3.8vw, 48px);
}

.pm-hero-v2__highlight {
  color: var(--pm-royal-blue);
  font-size: clamp(28px, 5.5vw, 69px);
}

/* バッジ */
.pm-hero-v2__badge {
  margin-bottom: 15px;
  margin-top: -12px;
}

.pm-hero-v2__badge img {
  width: clamp(150px, 20vw, 276px);
  height: auto;
  margin-left: clamp(0px, 2vw, 20px);
}

/* 料金表示 */
.pm-hero-v2__fee {
  line-height: 1.15;
  margin-top: 15px;
  margin-left: clamp(0px, 2vw, 20px);
}

.pm-hero-v2__fee-label {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #1a1a1a;
  display: block;
  margin-bottom: 0;
  line-height: 1.2;
}

.pm-hero-v2__fee-num {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--pm-royal-blue);
  background: linear-gradient(to right, rgb(255, 183, 69) 56%, rgba(0, 0, 0, 0) 60%);
  padding: 0 5px;
}

.pm-hero-v2__button .pm-btn--white {
  color: var(--pm-royal-blue);
  border-color: var(--pm-royal-blue);
}

.pm-hero-v2__button .pm-btn--white:hover {
  background: var(--pm-royal-blue);
  color: #fff;
}

.pm-hero-v2__headblock p span:nth-child(1) {
  font-weight: 600;
}

.pm-hero-v2 .pm-hero-v2__headblock p {
  margin-bottom: 15px;
}

.pm-hero-v2__headblock p span {
  display: inline-block;
}

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

.pm-worries__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pm-worries__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.pm-worries__item {
  background: var(--pm-white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pm-worries__icon {
  margin-bottom: 20px;
}

.pm-worries__icon img {
  max-width: 160px;
  height: auto;
}

.pm-worries__text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.pm-worries__text strong {
  color: #E7552C;
}

.pm-worries__detail {
  font-size: 14px;
  color: var(--pm-text-light);
}

.pm-worries__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  font-size: 64px;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  border-radius: 50%;
  margin: 0 auto;
  line-height: 1;
}

/* ==============================================
   5. メリットセクション
   ============================================== */
.pm-merit {
  padding: 80px 20px;
  background: var(--pm-white);
}

.pm-merit__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pm-merit__box {
  margin-bottom: 60px;
  padding: 40px;
  background: var(--pm-bg-light);
  border-radius: 20px;
}

.pm-merit__box:nth-child(even) {
  background: var(--pm-white);
  border: 1px solid var(--pm-border);
}

.pm-merit__data h3 {
  margin-bottom: 20px;
}

.pm-merit__num {
  display: block;
  font-size: 14px;
  color: var(--pm-pool-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.pm-merit__title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.pm-merit__image {
  margin: 30px 0;
  text-align: center;
}

.pm-merit__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.pm-merit__text {
  font-size: 16px;
  margin-bottom: 15px;
}

.pm-merit__color {
  color: var(--pm-royal-blue);
  font-weight: 700;
}

.pm-merit__buttonblock {
  background: linear-gradient(135deg, #344D90 0%, #5CC5EF 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--pm-white);
}

.pm-merit__buttonblock h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.pm-merit__buttonarea {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pm-merit__iconbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
  border: 2px solid #e8f0f8;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 20px;
  min-height: 200px;
}

.pm-merit__emoji {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 15px;
}

.pm-merit__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--pm-royal-blue);
}

/* ==============================================
   6. サービス紹介セクション
   ============================================== */
.pm-about {
  padding: 80px 20px;
  background: var(--pm-bg-gray);
}

.pm-about__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pm-about__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.pm-about__text {
  font-size: 16px;
  margin-bottom: 15px;
}

.pm-about__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.pm-about__numberone {
  background: var(--pm-white);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--pm-royal-blue);
}

.pm-about__highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.pm-about__highlight dt {
  font-size: 18px;
  font-weight: 700;
}

.pm-about__large {
  font-size: 24px;
}

.pm-about__com {
  color: var(--pm-royal-blue);
  font-size: 36px;
  font-weight: 900;
}

.pm-about__icon-image img {
  max-width: 128px;
  height: auto;
}

.pm-about__description {
  grid-column: 1 / -1;
}

.pm-about__lead {
  font-size: 14px;
  color: var(--pm-text-light);
}

.pm-about__iconbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #344D90 0%, #5a7bc4 100%);
  border-radius: 16px;
  padding: 50px 30px;
  min-height: 250px;
}

.pm-about__emoji {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
}

.pm-about__label {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* ==============================================
   7. 料金セクション
   ============================================== */
.pm-price {
  padding: 80px 20px;
  background: var(--pm-white);
}

.pm-price__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pm-price__image {
  text-align: center;
  margin-bottom: 30px;
}

.pm-price__image img {
  max-width: 100%;
  height: auto;
}

.pm-price__text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

.pm-price__comment {
  font-size: 14px;
  color: var(--pm-text-light);
  text-align: center;
  margin-bottom: 40px;
}

.pm-price__pattern {
  background: var(--pm-bg-gray);
  padding: 40px;
  border-radius: 20px;
}

.pm-price__pattern h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.pm-price__flows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pm-price__flowitem {
  background: var(--pm-white);
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  min-width: 150px;
  position: relative;
}

.pm-price__flowitem--minus::before {
  content: '−';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: var(--pm-orange);
}

.pm-price__flowitem--circle {
  background: var(--pm-orange);
  color: var(--pm-white);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-price__flowitem--circle::before {
  content: '=';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: var(--pm-orange);
}

.pm-price__flowtext {
  font-size: 14px;
  line-height: 1.4;
}

.pm-price__example {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

/* 料金 - テーブル */
.pm-price__table-section {
  margin: 40px 0;
}

.pm-price__table-section h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--pm-text);
}

.pm-price__table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 15px;
  border-collapse: collapse;
  font-size: 16px;
}

.pm-price__table th,
.pm-price__table td {
  padding: 16px 20px;
  border: 1px solid var(--pm-border);
  text-align: center;
  vertical-align: middle;
}

.pm-price__table thead th {
  background: var(--pm-bg-gray);
  font-weight: 700;
  font-size: 14px;
}

.pm-price__rate {
  font-size: 20px;
  font-weight: 700;
  color: var(--pm-orange);
}

.pm-price__table-note {
  font-size: 13px;
  color: var(--pm-text-light);
  text-align: center;
  margin-top: 10px;
}

/* 料金 - 計算例 */
.pm-price__example-section {
  background: var(--pm-bg-gray);
  padding: 30px;
  border-radius: 16px;
  margin: 40px 0;
}

.pm-price__example-section h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
  color: var(--pm-text);
}

.pm-price__calc-box {
  max-width: 400px;
  margin: 0 auto;
  background: var(--pm-white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pm-price__calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
}

.pm-price__calc-row--minus .pm-price__calc-value {
  color: #c0392b;
}

.pm-price__calc-divider {
  border-top: 2px dashed var(--pm-border);
  margin: 10px 0;
}

.pm-price__calc-row--total {
  font-size: 18px;
  font-weight: 700;
}

.pm-price__calc-row--total .pm-price__calc-value {
  color: var(--pm-orange);
  font-size: 22px;
}

.pm-price__calc-row--total .pm-price__calc-value small {
  font-size: 14px;
  font-weight: 400;
  color: var(--pm-text-light);
  margin-left: 5px;
}

.pm-price__calc-label {
  color: var(--pm-text);
}

.pm-price__calc-value {
  font-weight: 600;
}

/* 料金 - CTA */
.pm-price__cta {
  text-align: center;
  margin-top: 40px;
}

.pm-price__cta-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--pm-text);
}

.pm-price__cta-button {
  display: inline-block;
}

/* 料金 - ハイライトボックス */
.pm-price__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  border-radius: 16px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 600px;
}

.pm-price__zero {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.pm-price__big {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.pm-price__yen {
  font-size: 40px;
  font-weight: 700;
}

/* ==============================================
   8. 便利機能セクション
   ============================================== */
.pm-features {
  padding: 80px 20px;
  background: var(--pm-bg-gray);
}

.pm-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pm-features__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.pm-features__item {
  background: var(--pm-white);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pm-features__icon {
  margin-bottom: 15px;
}

.pm-features__icon img {
  max-width: 100%;
  height: auto;
}

.pm-features__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pm-royal-blue);
  margin-bottom: 10px;
}

.pm-features__text {
  font-size: 13px;
  color: var(--pm-text-light);
}

.pm-features__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 48px;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  border-radius: 16px;
  margin: 0 auto 15px;
  line-height: 1;
}

/* ==============================================
   9. 比較表セクション
   ============================================== */
.pm-comparison {
  padding: 80px 20px;
  background: var(--pm-white);
}

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

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

.pm-comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pm-comparison__table th,
.pm-comparison__table td {
  padding: 16px 20px;
  border: 1px solid var(--pm-border);
  text-align: center;
  vertical-align: middle;
}

.pm-comparison__table thead th {
  background: var(--pm-bg-gray);
  font-weight: 700;
}

.pm-comparison__table thead th.pm-comparison__highlight {
  background: var(--pm-pool-blue);
  color: var(--pm-white);
}

.pm-comparison__table tbody th {
  background: var(--pm-bg-light);
  font-weight: 600;
  text-align: left;
}

.pm-comparison__table td.pm-comparison__highlight {
  background: #e8f7fc;
}

.pm-comparison__good {
  color: #E7552C;
  font-weight: 700;
}

/* ==============================================
   10. CTAバナー
   ============================================== */
.pm-cta-banner {
  background: linear-gradient(135deg, #344D90 0%, #5CC5EF 100%);
  padding: 60px 20px;
}

.pm-cta-banner__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pm-cta-banner__content {
  text-align: center;
  color: var(--pm-white);
}

.pm-cta-banner__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pm-cta-banner__text {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.pm-cta-banner .pm-btn--white {
  background: #FFB745;
  color: #fff;
  border-color: #FFB745;
}

.pm-cta-banner .pm-btn--white:hover {
  background: #E7552C;
  border-color: #E7552C;
}

/* ==============================================
   11. 導入の流れセクション
   ============================================== */
.pm-steps {
  padding: 80px 20px;
  background: var(--pm-bg-gray);
}

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

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

.pm-steps__item {
  background: var(--pm-white);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

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

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

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

.pm-steps__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--pm-pool-blue);
  line-height: 1;
}

.pm-steps__item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  min-height: 50px;
}

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

.pm-steps__icon img {
  max-width: 100%;
  height: auto;
}

.pm-steps__text {
  font-size: 14px;
  color: var(--pm-text-light);
}

.pm-steps__buttonarea {
  display: flex;
  justify-content: center;
}

.pm-step__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 56px;
  background: linear-gradient(135deg, #344D90 0%, #5a7bc4 100%);
  border-radius: 50%;
  margin: 0 auto 15px;
  line-height: 1;
}

/* ==============================================
   12. FAQセクション
   ============================================== */
.pm-faq {
  padding: 80px 20px;
  background: var(--pm-white);
}

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

.pm-faq__list {
  margin: 0 auto;
}

.pm-faq__item {
  border-bottom: 1px solid var(--pm-border);
  padding-top: 10px;
}

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

.pm-faq__question {
  cursor: pointer;
  padding: 25px 50px 25px 0;
  position: relative;
}

.pm-faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--pm-orange);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.pm-faq__item.is-open .pm-faq__question::after {
  content: '−';
}

.pm-faq__q {
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto;
  padding-left: 35px;
  position: relative;
}

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

.pm-faq__answer {
  display: none;
  padding: 0 0 25px 35px;
}

.pm-faq__item.is-open .pm-faq__answer {
  display: block;
}

.pm-faq__a {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto;
  color: var(--pm-text-light);
}

.pm-faq__a-detail {
  margin-top: 15px;
}

.pm-faq__a-detail h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--pm-royal-blue);
  margin: 15px 0 8px 0;
}

.pm-faq__a-detail ul {
  margin: 0 auto;
  padding-left: 20px;
}

.pm-faq__a-detail li {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 5px;
}

.pm-faq__a-note {
  margin-top: 15px;
  font-size: 14px;
  color: var(--pm-royal-blue);
  font-weight: 500;
}

/* ==============================================
   13. お問い合わせセクション
   ============================================== */
.pm-contact {
  padding: 80px 20px;
  background: var(--pm-bg-gray);
}

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

.pm-contact__formarea {
  background: var(--pm-white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.pm-contact__form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
}

.pm-contact__form input[type="text"],
.pm-contact__form input[type="email"],
.pm-contact__form input[type="tel"],
.pm-contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--pm-border);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.pm-contact__form input:focus,
.pm-contact__form textarea:focus {
  outline: none;
  border-color: var(--pm-orange);
}

.pm-contact__form textarea {
  min-height: 120px;
  resize: vertical;
}

.pm-contact__form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pm-contact__required {
  color: #e74c3c;
  margin-left: 5px;
}

.pm-contact__form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
  padding: 18px 40px;
  background: var(--pm-orange);
  color: var(--pm-white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pm-contact__form input[type="submit"]:hover {
  background: var(--pm-orange-dark);
}

/* ==============================================
   14. セキュリティセクション
   ============================================== */
.pm-security {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
}

.pm-security__inner {
  max-width: 1200px;
  width: calc(100% - 40px);  /* 左右20px余白 */
  margin: 0 auto;
  padding: 0 20px;
}

.pm-security__intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.8;
}

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

.pm-security__item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(52, 77, 144, 0.08);
  border: 1px solid #e8f0f8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-security__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(52, 77, 144, 0.12);
}

.pm-security__icon {
  font-size: 48px;
  margin-bottom: 15px;
  line-height: 1;
}

.pm-security__item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pm-royal-blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pm-security__item p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 auto;
}

.pm-security__icon--lock::before { content: "🔐"; }
.pm-security__icon--shield::before { content: "🛡️"; }
.pm-security__icon--trash::before { content: "🗑️"; }
.pm-security__icon--log::before { content: "📋"; }

/* ==============================================
   15. 導入事例（Coming Soon）
   ============================================== */
.pm-casestudy {
  background: #fff;
  padding: 80px 0;
}

.pm-casestudy__inner {
  max-width: 1200px;
  width: calc(100% - 40px);  /* 左右20px余白 */
  margin: 0 auto;
  padding: 0 20px;
}

.pm-casestudy__coming-soon {
  text-align: center;
  padding: 60px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px dashed #ddd;
}

.pm-casestudy__coming-soon p {
  font-size: 18px;
  color: #888;
  margin: 0 0 10px 0;
}

.pm-casestudy__note {
  font-size: 14px;
  color: #aaa;
}

/* ==============================================
   16. ユーティリティ・ページ固有
   ============================================== */
.is--sp {
  display: none;
}

.is--tab {
  display: none;
}

/* フォーム追加スタイル */
.pm-forvendor-form {
  max-width: 100%;
}

.pm-form-field {
  margin-bottom: 24px;
}

.pm-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.pm-form-required {
  color: #e74c3c;
  margin-left: 4px;
}

.pm-form-field input[type="text"],
.pm-form-field input[type="email"],
.pm-form-field input[type="tel"],
.pm-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.pm-form-field input:focus,
.pm-form-field textarea:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.pm-form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.pm-form-submit {
  text-align: center;
  margin-top: 30px;
}

.pm-form-submit button {
  cursor: pointer;
  border: none;
}

.pm-form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 15px;
}

.pm-form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.pm-form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* 横スクロール防止 */
body.page-id-456 {
  overflow-x: hidden;
}

/* ページタイトル非表示 */
.page-id-456 .entry-title,
.page-id-456 .ast-archive-description {
  display: none;
}

/* forvendorページ：ヘッダーとヒーロー間の余白削除 */
.page-id-456 .site-content,
.page-id-456 .ast-container,
.page-id-456 .entry-content {
  padding-top: 0;
  margin-top: 0;
}

.page-id-456 .entry-content > p:first-child {
  display: none;
}

/* forvendorページ：タイトルエリア完全削除 */
body.page-id-456 .entry-header,
body.page-id-456 .entry-header.ast-no-thumbnail,
body.page-id-456 header.entry-header {
  display: none;
  height: 0;
  padding: 0;
  margin: 0 auto;
  visibility: hidden;
}

/* 創業者実績絵文字 */
.pm-founder__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  font-size: 64px;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  border-radius: 50%;
  line-height: 1;
}

/* ==============================================
   17. レスポンシブ - 1200px以下
   clamp()で対応済み、追加設定のみ
   ============================================== */
@media (max-width: 1200px) {
  /* Hero: clamp()で対応済み、追加設定不要 */
}

/* ==============================================
   18. レスポンシブ - 980px以下
   レイアウト変更のみ（サイズはclamp()で対応）
   ============================================== */
@media (max-width: 980px) {
  /* Hero: headblock 80%、画像 45%（重なりOK） */
  .pm-hero-v2 {
    min-height: clamp(360px, 54vw, 500px);
  }

  .pm-hero-v2__headblock {
    max-width: 80%;
    min-width: 480px;
  }

  .pm-hero-v2__column {
    max-width: 80%;
    min-width: 400px;
  }

  .pm-hero-v2__image {
    height: clamp(330px, 52vw, 460px);
    max-width: 45%;
  }

  .pm-hero-v2__buttonarea {
    margin-bottom: clamp(10px, 2vw, 20px);
  }

  /* フォントサイズ調整（2行に収める） */
  .pm-hero-v2__content h1 {
    font-size: clamp(26px, 5vw, 54px);
  }

  .pm-hero-v2__large {
    font-size: clamp(26px, 5vw, 54px);
  }

  .pm-hero-v2__small {
    font-size: clamp(18px, 3.5vw, 38px);
  }

  .pm-hero-v2__highlight {
    font-size: clamp(26px, 5vw, 54px);
  }

  /* その他セクション */
  .pm-worries__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-about__block {
    grid-template-columns: 1fr;
  }

  .pm-about__highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .pm-steps {
    padding: clamp(40px, 10vw, 80px) clamp(8px, 3vw, 20px);
  }

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

  .pm-steps__item {
    padding: clamp(10px, 3vw, 30px) clamp(8px, 2vw, 25px);
    border-radius: clamp(8px, 3vw, 16px);
  }

  .pm-steps__item:not(:last-child)::after {
    right: clamp(-12px, -3vw, -20px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-left-width: clamp(6px, 2vw, 12px);
    border-top-width: clamp(4px, 1.5vw, 8px);
    border-bottom-width: clamp(4px, 1.5vw, 8px);
  }

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

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

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

  .pm-steps__icon img {
    max-height: clamp(40px, 12vw, 100px);
    width: auto;
    max-width: 100%;
  }

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

  .pm-steps__num {
    margin-bottom: clamp(8px, 2vw, 15px);
  }

  .pm-steps__icon {
    margin-bottom: clamp(8px, 2vw, 15px);
  }

  .is--tab {
    display: inline;
  }
}

/* ==============================================
   19. レスポンシブ - 768px以下
   レイアウト変更のみ（サイズはclamp()で対応）
   ============================================== */
@media (max-width: 768px) {
  /* Hero: headblock 80%、画像 42%（重なりOK） */
  .pm-hero-v2 {
    min-height: clamp(320px, 56vw, 420px);
  }

  .pm-hero-v2__content {
    flex-direction: column;
  }

  .pm-hero-v2__headblock {
    max-width: 80%;
    min-width: 480px;
  }

  .pm-hero-v2__column {
    max-width: 80%;
    min-width: 400px;
  }

  .pm-hero-v2__image {
    height: clamp(290px, 54vw, 380px);
    max-width: 42%;
  }

  /* 768px以下でフォントサイズを小さく（2行に収める） */
  .pm-hero-v2__content h1 {
    font-size: clamp(22px, 4.5vw, 38px);
  }

  .pm-hero-v2__large {
    font-size: clamp(22px, 4.5vw, 38px);
  }

  .pm-hero-v2__small {
    font-size: clamp(16px, 3.5vw, 28px);
  }

  .pm-hero-v2__highlight {
    font-size: clamp(22px, 4.5vw, 38px);
  }

  .pm-hero-v2__buttonarea {
    margin-bottom: clamp(8px, 1.5vw, 15px);
  }

  /* セキュリティ */
  .pm-security {
    padding: 60px 0;
  }

  .pm-security__inner {
    width: calc(100% - clamp(8px, 4vw, 40px));
    padding: 0 clamp(4px, 2vw, 20px);
  }

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

  .pm-security__item {
    padding: clamp(12px, 4vw, 30px);
    border-radius: clamp(8px, 3vw, 12px);
  }

  .pm-security__icon {
    font-size: clamp(28px, 10vw, 48px);
    margin-bottom: clamp(8px, 3vw, 15px);
  }

  .pm-security__item h3 {
    font-size: clamp(12px, 3.5vw, 18px);
    margin-bottom: clamp(8px, 2vw, 12px);
  }

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

  /* 絵文字・アイコン */
  .pm-worries__emoji {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }

  .pm-features__emoji {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .pm-step__emoji {
    width: 80px;
    height: 80px;
    font-size: 44px;
  }

  .pm-founder__emoji {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }

  .pm-merit__iconbox {
    padding: 30px 15px;
    min-height: 150px;
  }

  .pm-merit__emoji {
    font-size: 56px;
  }

  .pm-merit__label {
    font-size: 16px;
  }

  .pm-about__iconbox {
    padding: 40px 20px;
    min-height: 200px;
  }

  .pm-about__emoji {
    font-size: 64px;
  }

  .pm-about__label {
    font-size: 18px;
  }

  .pm-price__highlight {
    padding: 30px 20px;
  }

  .pm-price__zero {
    font-size: 16px;
  }

  .pm-price__big {
    font-size: 60px;
  }

  .pm-price__yen {
    font-size: 30px;
  }

  /* 料金テーブル */
  .pm-price__table {
    font-size: 14px;
  }

  .pm-price__table th,
  .pm-price__table td {
    padding: 12px 10px;
  }

  .pm-price__rate {
    font-size: 18px;
  }

  .pm-price__example-section {
    padding: 20px 15px;
  }

  .pm-price__example-section h3 {
    font-size: 16px;
  }

  .pm-price__calc-box {
    padding: 20px 15px;
  }

  .pm-price__calc-row {
    font-size: 14px;
  }

  .pm-price__calc-row--total .pm-price__calc-value {
    font-size: 20px;
  }
}

/* ==============================================
   20. レスポンシブ - 600px以下
   横配置維持、縮小対応
   ============================================== */
@media (max-width: 600px) {
  /* Hero: 横配置を維持しながら縮小 */
  .pm-hero-v2 {
    min-height: clamp(280px, 58vw, 380px);
    padding-bottom: 10px;
  }

  .pm-hero-v2__headblock {
    max-width: 55%;
    min-width: 180px;
  }

  .pm-hero-v2__column {
    max-width: 55%;
    min-width: 180px;
  }

  .pm-hero-v2__buttonarea {
    /* flex-direction: row を維持（デフォルト） */
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }

  .pm-hero-v2__button {
    width: auto;
  }

  .pm-hero-v2__button .pm-btn {
    min-width: 120px;
    padding: 10px 16px;
  }

  .pm-hero-v2__button .pm-btn .pm-btn__text {
    font-size: 14px;
  }

  .pm-hero-v2__image {
    max-width: 40%;
    height: clamp(250px, 56vw, 340px);
  }

  /* 600px以下でフォントサイズをさらに小さく（2行に収める） */
  .pm-hero-v2__content h1 {
    font-size: clamp(18px, 4vw, 28px);
  }

  .pm-hero-v2__large {
    font-size: clamp(18px, 4vw, 28px);
  }

  .pm-hero-v2__small {
    font-size: clamp(14px, 3vw, 22px);
  }

  .pm-hero-v2__highlight {
    font-size: clamp(18px, 4vw, 28px);
  }

  .pm-hero-v2__platform {
    font-size: clamp(9px, 1.8vw, 12px);
  }

  /* 各セクション */
  .pm-worries,
  .pm-merit,
  .pm-about,
  .pm-price,
  .pm-features,
  .pm-comparison,
  .pm-steps,
  .pm-faq,
  .pm-contact {
    padding: 60px 15px;
  }

  .pm-features {
    padding: 60px clamp(4px, 2vw, 15px);
  }

  .pm-worries__list {
    grid-template-columns: 1fr;
  }

  .pm-merit__box {
    padding: 25px 20px;
  }

  .pm-merit__title {
    font-size: 20px;
  }

  .pm-merit__buttonblock {
    padding: 30px 20px;
  }

  .pm-merit__buttonarea {
    flex-direction: column;
    align-items: stretch;
  }

  .pm-merit__button {
    width: 100%;
  }

  .pm-merit__button .pm-btn {
    width: 100%;
  }

  .pm-about__numberone {
    padding: 25px 20px;
  }

  .pm-about__com {
    font-size: 28px;
  }

  .pm-price__pattern {
    padding: 25px 15px;
  }

  .pm-price__flows {
    flex-direction: column;
  }

  .pm-price__flowitem--minus::before,
  .pm-price__flowitem--circle::before {
    left: 50%;
    top: -20px;
    transform: translateX(-50%) rotate(90deg);
  }

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

  .pm-features__item {
    padding: clamp(12px, 4vw, 20px) clamp(8px, 3vw, 15px);
    border-radius: clamp(10px, 4vw, 16px);
  }

  .pm-features__icon {
    margin-bottom: clamp(8px, 3vw, 15px);
  }

  .pm-features__icon img {
    max-height: clamp(60px, 18vw, 100px);
  }

  .pm-features__title {
    font-size: clamp(12px, 3.5vw, 16px);
    margin-bottom: clamp(6px, 2vw, 10px);
  }

  .pm-features__text {
    font-size: clamp(10px, 3vw, 13px);
  }

  .pm-comparison__table {
    font-size: 13px;
  }

  .pm-comparison__table th,
  .pm-comparison__table td {
    padding: 12px 10px;
  }

  .pm-cta-banner {
    padding: 50px 15px;
  }

  .pm-cta-banner__title {
    font-size: 22px;
  }

  .pm-steps__item h3 {
    min-height: auto;
  }

  .pm-contact__formarea {
    padding: 30px 20px;
  }

  .is--sp {
    display: inline;
  }
}

/* ==============================================
   21. レスポンシブ - 480px以下
   970pxの比率を維持（すべてvwベース + 最小値）
   ============================================== */
@media (max-width: 480px) {
  /* Hero コンテナ - 比率維持 */
  .pm-hero-v2 {
    min-height: 52vw;
    padding: 4vw 3vw 2vw;
  }

  .pm-hero-v2__inner {
    width: calc(100% - 4vw);
    padding-left: 3vw;
  }

  /* headblock / column - 幅を確保して2行に収める */
  .pm-hero-v2__headblock {
    max-width: 80%;
    min-width: 55%;
    flex: 1 1 55%;
  }

  .pm-hero-v2__column {
    max-width: 80%;
    min-width: 55%;
    flex: 1 1 55%;
  }

  /* 画像 - 小さくしてheadblock幅確保 */
  .pm-hero-v2__image {
    height: 48vw;
    max-width: 38%;
  }

  /* コンテンツのgap */
  .pm-hero-v2__content {
    gap: max(6px, 1.5vw);
  }

  /* フォント - 少し大きめに戻す */
  .pm-hero-v2__platform {
    font-size: max(9px, 2.2vw);
    margin-bottom: max(6px, 1.5vw);
  }

  .pm-hero-v2__content h1 {
    font-size: max(16px, 4.5vw);
    margin-bottom: max(6px, 1.5vw);
  }

  .pm-hero-v2__large {
    font-size: max(16px, 4.5vw);
  }

  .pm-hero-v2__small {
    font-size: max(12px, 3.2vw);
  }

  .pm-hero-v2__highlight {
    font-size: max(16px, 4.5vw);
  }

  /* バッジ */
  .pm-hero-v2__badge {
    margin-bottom: max(8px, 2vw);
    margin-top: max(-8px, -1.5vw);
  }

  .pm-hero-v2__badge img {
    width: max(70px, 18vw);
    margin-left: max(0px, 2vw);
  }

  /* 料金表示 */
  .pm-hero-v2__fee {
    margin-top: max(8px, 2vw);
    margin-left: max(0px, 2vw);
  }

  .pm-hero-v2__fee-label {
    font-size: max(10px, 2.2vw);
  }

  .pm-hero-v2__fee-num {
    font-size: max(13px, 3.2vw);
  }

  /* ボタンエリア */
  .pm-hero-v2__buttonarea {
    gap: max(6px, 1.5vw);
    margin-top: max(10px, 2vw);
    margin-bottom: max(8px, 2vw);
    margin-left: max(0px, 2vw);
  }

  /* ボタン - タップ領域44px確保 */
  .pm-hero-v2__button .pm-btn {
    min-width: max(90px, 20vw);
    padding: max(12px, 2.5vw) max(14px, 3vw);
    min-height: 44px;
  }

  .pm-hero-v2__button .pm-btn .pm-btn__text {
    font-size: max(11px, 2.8vw);
  }

  /* ヘッダーロゴのレスポンシブ対応 - 強制縮小 */
  .ast-site-identity .site-logo-img,
  .ast-site-identity .custom-logo,
  .ast-site-identity .astra-logo-svg,
  .ast-site-identity img,
  .site-branding img,
  .custom-logo-link img,
  #masthead .site-logo-img,
  #masthead .custom-logo,
  #masthead img.custom-logo {
    max-width: 60vw !important;
    width: auto !important;
    height: auto !important;
  }

  /* ロゴコンテナも縮小 */
  .ast-site-identity,
  .site-branding,
  .custom-logo-link {
    max-width: 60vw;
    flex-shrink: 1;
  }

  /* ヘッダーをflexboxで調整 */
  .ast-primary-header-bar .ast-builder-grid-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  /* ハンバーガーメニューを確実に表示 */
  .ast-mobile-menu-trigger-minimal,
  .ast-button-wrap,
  .menu-toggle {
    flex-shrink: 0;
    margin-left: auto;
  }
}

/* ==============================================
   22. 予備（Microthemer調整用）
   必要に応じてMicrothermerで追加設定を行う
   ============================================== */

/* ========================================
   pm-story: Before/After カード内画像
   2026-02-04 追加
   ======================================== */

.pm-story__icon {
  margin: 12px 0;
  text-align: center;
}

.pm-story__icon img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.pm-story__before .pm-story__icon img {
  filter: grayscale(20%);
}

.pm-story__after .pm-story__icon img {
  filter: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .pm-story__icon img {
    max-height: 100px;
  }
}

/* ========================================
   pm-story: Before/After ラベル視認性改善
   2026-02-04 追加
   ======================================== */

.pm-story__before .pm-story__label {
  background: #555;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pm-story__after .pm-story__label {
  background: rgba(255,255,255,0.95);
  color: #ff6b00;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ========================================
   pm-story: Before/After 小画面対応
   2026-02-04 追加
   ======================================== */

@media (max-width: 480px) {
  .pm-story__icon {
    margin: 6px 0;
  }
  
  .pm-story__icon img {
    max-height: 45px;
  }
}


/* ==============================================
   Wide Screen Fix: 画像をコンテンツエリア内に収める
   ============================================== */
@media (min-width: 1400px) {
  .pm-hero-v2__inner {
    position: relative;
  }
}
