@charset "UTF-8";
/* ==========================================================================
   print-way.css : プリント方法・作り方（/print-way/ ・ /print-way/manuscript/）
   上部 = SVG図解（.pw-hero） / 下部 = 説明文（.pw-detail）
   order-way.css の設計を踏襲（変数は :root で共有）
   ========================================================================== */

:root {
  --pw-navy:   #0d457c;
  --pw-text:   #222;
  --pw-muted:  #5b6470;
  --pw-line:   #e3e6ea;
  --pw-bg:     #f7f9fc;
  --pw-radius: 14px;

  --pw-blue:   #2f80ed;
  --pw-pink:   #e2568c;
  --pw-orange: #f2994a;
  --pw-purple: #8b5cf6;
  --pw-green:  #27ae60;
  --pw-red:    #d63333;

  --pw-font:   system-ui, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  --pw-inner:  1040px;
}

/* サイト共通CSSは box-sizing を全体指定していないため、当ページの構成要素だけに限定して付与する
   （content-box のままだと width:100% + padding が加算され、SPで表やカードが右にはみ出す） */
.pw-hero,
.pw-hero *,
.pw-detail,
.pw-detail *,
.pw-cta,
.pw-cta * {
  box-sizing: border-box;
}

/* ==========================================================================
   上部 : SVG図解エリア
   ========================================================================== */
.pw-hero {
  font-family: var(--pw-font);
  line-height: 1.7;
  color: var(--pw-text);
  background: var(--pw-bg);
  padding: 40px 0 46px;
  margin: 0 0 40px;
}

.pw-hero__inner {
  max-width: var(--pw-inner);
  margin-inline: auto;
  padding-inline: 16px;
}

.pw-hero__header {
  text-align: center;
  margin-bottom: 30px;
}

.pw-hero__label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 14px;
  border-radius: 999px;
  background: var(--pw-navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.pw-hero__heading {
  margin: 0 0 10px;
  font-size: clamp(2.0rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.4;
}

.pw-hero__heading strong {
  color: var(--pw-pink);
}

.pw-hero__lead {
  margin: 0;
  color: var(--pw-muted);
  font-size: 1.4rem;
}

.pw-hero__subtitle {
  margin: 34px 0 16px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pw-navy);
  text-align: center;
  line-height: 1.5;
}

/* ==========================================================================
   選び方フローチャート
   ========================================================================== */
.pw-flowchart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pw-flowchart__step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 18px 16px 20px;
  box-shadow: 0 1px 3px rgba(13, 69, 124, .06);
}

/* PC：カード間の矢印（3列並びの1・2枚目の右側） */
.pw-flowchart__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #b9c6d4;
  transform: translateY(-50%);
}

.pw-flowchart__num {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--pw-navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.pw-flowchart__title {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.45;
}

.pw-flowchart__illust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--pw-blue);
}

.pw-flowchart__illust--pink   { color: var(--pw-pink); }
.pw-flowchart__illust--orange { color: var(--pw-orange); }
.pw-flowchart__illust--purple { color: var(--pw-purple); }
.pw-flowchart__illust--green  { color: var(--pw-green); }

.pw-flowchart__illust svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.pw-flowchart__choices {
  margin: auto 0 0;
  padding: 12px 0 0;
  border-top: 1px dashed var(--pw-line);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pw-flowchart__choices li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.25rem;
  color: var(--pw-muted);
}

.pw-flowchart__choices b {
  flex: 0 0 auto;
  padding: 2px 10px;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--pw-navy);
  font-size: 1.15rem;
  font-weight: 700;
}

/* 結論（推奨方式） */
.pw-result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-result__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-left: 5px solid var(--pw-blue);
  border-radius: var(--pw-radius);
}

.pw-result__item--transfer {
  border-left-color: var(--pw-pink);
}

.pw-result__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pw-blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.pw-result__item--transfer .pw-result__icon {
  background: var(--pw-pink);
}

.pw-result__title {
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.5;
}

.pw-result__title a {
  color: var(--pw-navy);
  text-decoration: none;
}

.pw-result__title a:hover {
  text-decoration: underline;
}

.pw-result__text {
  margin: 0;
  font-size: 1.25rem;
  color: var(--pw-muted);
}

/* ==========================================================================
   版の比較図（シルクスクリーン vs スクリーン転写）
   ========================================================================== */
.pw-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-compare__item {
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 18px 16px 20px;
  box-shadow: 0 1px 3px rgba(13, 69, 124, .06);
}

.pw-compare__title {
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pw-navy);
  text-align: center;
  line-height: 1.5;
}

.pw-compare__sub {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--pw-muted);
  text-align: center;
}

.pw-compare__figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.pw-compare__figure svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}

/* ==========================================================================
   下部 : 説明文
   ========================================================================== */
.pw-detail {
  max-width: var(--pw-inner);
  margin: 0 auto 34px;
  padding-inline: 16px;
  font-family: var(--pw-font);
  line-height: 1.8;
  color: var(--pw-text);
}

.pw-detail__lead {
  margin: 0 0 26px;
  font-size: 1.4rem;
}

.pw-section {
  margin: 0 0 30px;
  padding: 0 0 24px;
  border-bottom: 1px dotted #cfd6de;
}

.pw-section:last-of-type {
  border-bottom: 0;
}

.pw-section__title {
  margin: 0 0 14px;
  padding: 0 0 6px 12px;
  border-left: 5px solid var(--pw-navy);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.5;
  scroll-margin-top: 20px;
}

.pw-section__subtitle {
  margin: 22px 0 10px;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.5;
}

.pw-section__text {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.pw-list {
  margin: 0 0 14px;
  padding: 0 0 0 4px;
  list-style: none;
}

.pw-list > li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 20px;
  font-size: 1.35rem;
}

.pw-list > li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #03a9f4;
}

.pw-list > li:last-child {
  margin-bottom: 0;
}

.pw-list a {
  color: var(--pw-navy);
  font-weight: 700;
  text-decoration: underline;
}

.pw-note {
  color: var(--pw-red);
  font-weight: 700;
}

.pw-material {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: #f2f6fa;
  border-radius: 8px;
  font-size: 1.3rem;
}

.pw-material dt {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--pw-navy);
}

.pw-material dd {
  margin: 0;
  color: var(--pw-muted);
}

/* ==========================================================================
   原稿の種類（柄見本 3種）
   ========================================================================== */
.pw-pattern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.pw-pattern__item {
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 16px 14px 18px;
  text-align: center;
}

.pw-pattern__figure {
  margin: 0 0 10px;
  display: flex;
  justify-content: center;
}

.pw-pattern__figure svg {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}

.pw-pattern__name {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pw-navy);
}

.pw-pattern__text {
  margin: 0;
  font-size: 1.2rem;
  color: var(--pw-muted);
}

/* ==========================================================================
   スクリーン転写5種 比較表
   ========================================================================== */
.pw-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 10px;
}

.pw-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 1.3rem;
  background: #fff;
}

.pw-table th,
.pw-table td {
  padding: 12px 14px;
  border: 1px solid var(--pw-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.pw-table thead th {
  background: var(--pw-navy);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.pw-table tbody th {
  background: #eef3f8;
  color: var(--pw-navy);
  font-weight: 700;
  white-space: nowrap;
}

.pw-table tbody tr:nth-child(even) td {
  background: #fafbfd;
}

.pw-table .pw-table__mark {
  color: var(--pw-pink);
  font-weight: 700;
}

.pw-table-note {
  margin: 0 0 14px;
  font-size: 1.2rem;
  color: var(--pw-muted);
}

/* ==========================================================================
   洗濯について
   ========================================================================== */
.pw-wash {
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-left: 5px solid var(--pw-orange);
  border-radius: var(--pw-radius);
  list-style: none;
}

.pw-wash > li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 24px;
  font-size: 1.35rem;
}

.pw-wash > li:last-child {
  margin-bottom: 0;
}

.pw-wash > li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pw-orange);
  font-weight: 700;
}

.pw-wash > li.pw-wash--ng::before {
  content: "\2715";
  color: var(--pw-red);
}

/* ==========================================================================
   子ページカードCTA
   ========================================================================== */
.pw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 18px 22px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  box-shadow: 0 1px 3px rgba(13, 69, 124, .06);
  text-decoration: none;
  color: var(--pw-text);
  transition: box-shadow .25s ease, transform .25s ease;
}

.pw-card:hover {
  box-shadow: 0 6px 18px rgba(13, 69, 124, .12);
  transform: translateY(-2px);
  text-decoration: none;
}

.pw-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #eef3f8;
  color: var(--pw-navy);
}

.pw-card__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.pw-card__title {
  margin: 0 0 6px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.5;
}

.pw-card__text {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--pw-muted);
}

.pw-card__more {
  margin: auto 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pw-blue);
}

/* ==========================================================================
   入稿フロー図（manuscript）
   ========================================================================== */
.pw-nagare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-nagare__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 18px 14px 20px;
  box-shadow: 0 1px 3px rgba(13, 69, 124, .06);
}

.pw-nagare__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #b9c6d4;
  transform: translateY(-50%);
}

.pw-nagare__num {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--pw-navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.pw-nagare__illust {
  margin-bottom: 12px;
  color: var(--pw-blue);
}

.pw-nagare__illust--pink   { color: var(--pw-pink); }
.pw-nagare__illust--orange { color: var(--pw-orange); }
.pw-nagare__illust--green  { color: var(--pw-green); }

.pw-nagare__illust svg {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
}

.pw-nagare__title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.5;
}

.pw-nagare__text {
  margin: 0;
  font-size: 1.2rem;
  color: var(--pw-muted);
}

/* ==========================================================================
   入稿先（連絡先ボックス）
   ========================================================================== */
.pw-contact {
  margin: 8px 0 0;
  padding: 12px 14px;
  background: #f2f6fa;
  border-radius: 8px;
  font-size: 1.3rem;
}

.pw-contact div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 4px;
}

.pw-contact div:last-child {
  margin-bottom: 0;
}

.pw-contact dt {
  min-width: 5.5em;
  font-weight: 700;
  color: var(--pw-navy);
}

.pw-contact dd {
  margin: 0;
}

.pw-contact a {
  color: var(--pw-navy);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.pw-cta {
  max-width: var(--pw-inner);
  margin: 0 auto 50px;
  padding-inline: 16px;
}

.pw-cta__box {
  font-family: var(--pw-font);
  line-height: 1.7;
  padding: 30px 20px 28px;
  border-radius: var(--pw-radius);
  background: linear-gradient(135deg, #0d457c 0%, #1b6fb8 100%);
  color: #fff;
  text-align: center;
}

.pw-cta__label {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .16em;
  opacity: .85;
}

.pw-cta__title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.45;
}

.pw-cta__text {
  margin: 0 0 20px;
  font-size: 1.3rem;
  opacity: .9;
}

.pw-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.pw-cta__button {
  position: relative;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 34px 16px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pw-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
  text-decoration: none;
}

.pw-cta__button--quote { background: #ffd43b; color: #0d457c; }
.pw-cta__button--mail  { background: #fff;    color: var(--pw-navy); }
.pw-cta__button--tel   { background: rgba(255, 255, 255, .12); color: #fff; border: 2px solid rgba(255, 255, 255, .6); }

.pw-cta__main {
  font-size: 1.6rem;
  line-height: 1.4;
}

.pw-cta__sub {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: .8;
}

.pw-cta__arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 1.6rem;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media screen and (max-width: 900px) {
  .pw-flowchart,
  .pw-cards,
  .pw-nagare {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2列時は右端カードの矢印を消す */
  .pw-flowchart__step:nth-child(2n)::after,
  .pw-nagare__step:nth-child(2n)::after {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .pw-hero {
    padding: 28px 0 32px;
    margin-bottom: 28px;
  }

  .pw-flowchart,
  .pw-result,
  .pw-compare,
  .pw-cards,
  .pw-nagare {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* SP 1列：矢印を下向きに */
  .pw-flowchart__step:not(:last-child)::after,
  .pw-nagare__step:not(:last-child)::after {
    display: block;
    top: auto;
    bottom: -13px;
    right: 50%;
    border-top: 9px solid #b9c6d4;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0;
    transform: translateX(50%);
  }

  .pw-flowchart__step:last-child::after,
  .pw-nagare__step:last-child::after {
    display: none;
  }

  .pw-pattern {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .pw-pattern__item {
    padding: 12px 8px 14px;
  }

  .pw-pattern__name {
    font-size: 1.3rem;
  }

  .pw-pattern__text {
    font-size: 1.1rem;
  }

  .pw-section__title {
    font-size: 1.6rem;
  }

  .pw-wash {
    padding: 16px;
  }

  .pw-cta {
    margin-bottom: 32px;
  }

  .pw-cta__box {
    padding: 24px 16px 22px;
  }

  .pw-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .pw-cta__button {
    flex: 0 0 auto;
    width: 100%;
    max-width: 340px;
  }
}

/* ==========================================================================
   LLMO対応：追加コンポーネント（2026年9月）
   ・.pw-answer   … ファーストビュー直下の「答え」ブロック
   ・.pw-nagare--5 … 作り方の流れ（5ステップ）
   ・.pw-method   … プリント加工方法の各ブロック
   ・.pw-case     … ケース別の選び方
   ・.pw-faq      … よくある質問
   ========================================================================== */

/* ----- 答えブロック（ファーストビュー直下） ----- */
.pw-answer {
  max-width: var(--pw-inner);
  margin: 0 auto;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-left: 5px solid var(--pw-navy);
  border-radius: var(--pw-radius);
  box-shadow: 0 1px 3px rgba(13, 69, 124, .06);
}

.pw-answer p {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.9;
  color: var(--pw-text);
}

.pw-answer p:last-child {
  margin-bottom: 0;
}

.pw-answer strong {
  font-weight: 700;
  color: var(--pw-navy);
}

/* ----- セクション冒頭の短い回答 ----- */
.pw-lead-answer {
  margin: 0 0 18px;
  padding: 14px 16px;
  background: var(--pw-bg);
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--pw-text);
}

/* ----- 作り方の流れ：5ステップ ----- */
.pw-nagare--5 {
  grid-template-columns: repeat(5, 1fr);
}

.pw-nagare__step a {
  color: var(--pw-navy);
  text-decoration: underline;
}

/* ----- プリント加工方法ブロック ----- */
.pw-method {
  margin: 0 0 22px;
  padding: 18px 20px 20px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
}

.pw-method:last-child {
  margin-bottom: 0;
}

.pw-method__title {
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--pw-blue);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.5;
}

.pw-method--transfer  .pw-method__title { border-left-color: var(--pw-purple); }
.pw-method--dtf       .pw-method__title { border-left-color: var(--pw-pink); }
.pw-method--embroidery .pw-method__title { border-left-color: var(--pw-green); }

.pw-method__text {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--pw-text);
}

.pw-method__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.pw-method__spec li {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  font-size: 1.15rem;
  color: var(--pw-muted);
}

/* ----- 内容が分かるアンカーテキストのリンク ----- */
.pw-more {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pw-navy);
  text-decoration: underline;
}

.pw-more::after {
  content: " →";
  text-decoration: none;
}

.pw-more:hover {
  opacity: .75;
}

/* ----- ケース別の選び方 ----- */
.pw-case {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-case__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 18px 16px 20px;
  box-shadow: 0 1px 3px rgba(13, 69, 124, .06);
}

.pw-case__q {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--pw-line);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pw-text);
  line-height: 1.7;
}

.pw-case__a {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pw-navy);
}

.pw-case__a::before {
  content: "→ ";
  color: var(--pw-orange);
}

.pw-case__text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--pw-muted);
}

/* ----- よくある質問 ----- */
.pw-faq {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-faq__item {
  margin-bottom: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
}

.pw-faq__item:last-child {
  margin-bottom: 0;
}

.pw-faq__q {
  position: relative;
  margin: 0 0 8px;
  padding-left: 28px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--pw-navy);
  line-height: 1.7;
}

.pw-faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pw-navy);
  color: #fff;
  font-size: 1.2rem;
  line-height: 20px;
  text-align: center;
}

.pw-faq__a {
  position: relative;
  margin: 0;
  padding-left: 28px;
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--pw-text);
}

.pw-faq__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pw-orange);
  color: #fff;
  font-size: 1.2rem;
  line-height: 20px;
  text-align: center;
}

.pw-faq__a a {
  color: var(--pw-navy);
  text-decoration: underline;
}

/* ----- 比較表内のリンク ----- */
.pw-table a {
  color: var(--pw-navy);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   追加コンポーネントのレスポンシブ
   ========================================================================== */
@media screen and (max-width: 900px) {
  .pw-nagare--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 3列時は右端カードの矢印を消す */
  .pw-nagare--5 .pw-nagare__step:nth-child(3n)::after {
    display: none;
  }

  /* 2列指定（900px時の共通ルール）を打ち消す */
  .pw-nagare--5 .pw-nagare__step:nth-child(2n)::after {
    display: block;
  }

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

@media screen and (max-width: 640px) {
  .pw-answer {
    padding: 16px 16px;
  }

  .pw-answer p {
    font-size: 1.3rem;
    line-height: 1.85;
  }

  .pw-nagare--5,
  .pw-case {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* SP 1列：矢印を下向きに戻す */
  .pw-nagare--5 .pw-nagare__step:nth-child(3n)::after,
  .pw-nagare--5 .pw-nagare__step:nth-child(2n)::after {
    display: block;
  }

  .pw-nagare--5 .pw-nagare__step:last-child::after {
    display: none;
  }

  .pw-method {
    padding: 16px 14px 18px;
  }

  .pw-method__title {
    font-size: 1.5rem;
  }
}
