    :root {
      --pp-green: #16a085;
      --pp-green-dark: #12806a;
      --pp-gray: #f5f5f5;
      --pp-text: #333;
    }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--pp-text);
      line-height: 1.7;
      background: #fff;
    }
    a {
      color: var(--pp-green-dark);
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    header, footer {
      background: #fff;
      border-bottom: 1px solid #eee;
    }
    .container {
      max-width: 1040px;
      margin: 0 auto;
      padding: 0 16px;
    }
    .section {
      padding: 56px 0;
    }
    .section-gray {
      background: var(--pp-gray);
    }
    .section-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 16px;
      text-align: center;
    }
    .section-lead {
      text-align: center;
      margin-bottom: 32px;
      color: #555;
      font-size: 15px;
    }
    /* ヒーロー */
    .hero {
      padding: 72px 0 56px;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.34) 45%, rgba(255, 255, 255, 0.24) 100%),
        url("hero1.jpg") center/cover no-repeat;
    }
    .hero-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 32px;
    }
    .hero-copy {
      flex: 1 1 320px;
    }
    .hero-kicker {
      font-size: 13px;
      font-weight: 600;
      color: var(--pp-green-dark);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .hero-title {
      font-size: 30px;
      font-weight: 700;
      margin: 0 0 12px;
      line-height: 1.3;
    }
    .hero-sub {
      font-size: 15px;
      margin-bottom: 20px;
      color: #555;
    }
    .hero-point-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      font-size: 16px;
    }
    .hero-point-list li::before {
      content: "✓";
      color: var(--pp-green-dark);
      margin-right: 6px;
    }
    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 4px;
      background: var(--pp-green);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--pp-green-dark);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 18px;
      border-radius: 4px;
      border: 1px solid var(--pp-green);
      color: var(--pp-green-dark);
      font-size: 13px;
      background: #fff;
      cursor: pointer;
    }
    .btn-outline:hover {
      background: #f0fffc;
    }
    .hero-note {
      font-size: 12px;
      color: #777;
      margin-top: 8px;
    }
    /* 課題 */
    .problem-grid {
      display: grid;
      gap: 16px;
    }
    .problem-item {
      background: #fff;
      border-radius: 8px;
      padding: 16px;
      border: 1px solid #eee;
      font-size: 16px;
      display: grid;
      grid-template-columns: 60px 1fr;
      align-items: center;
      column-gap: 6px;
      row-gap: 8px;
      min-height: calc(1.7em * 3 + 0px);
    }
    .problem-text {
      line-height: 1.7;
    }
    .problem-headline {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 6px;
      color: #1f2a27;
    }
    .problem-title {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      align-self: center;
      gap: 4px;
      justify-content: center;
    }
    .problem-label {
      font-size: 15px;
      font-weight: 700;
      color: var(--pp-green-dark);
      letter-spacing: 0.06em;
      line-height: 1.1;
    }
    .problem-num {
      font-size: 30px;
      font-weight: 700;
      color: var(--pp-green-dark);
      line-height: 1.05;
      letter-spacing: 0.02em;
    }
    /* 機能 */
    .feature-grid {
      display: grid;
      gap: 20px;
    }
    .feature-item {
      border-radius: 8px;
      padding: 18px;
      border: 1px solid #eee;
      background: #fff;
      font-size: 16px;
    }
    .feature-title {
      font-weight: 600;
      margin-bottom: 6px;
    }
    .feature-tag {
      display: inline-block;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 999px;
      background: #e9f9f5;
      color: var(--pp-green-dark);
      margin-bottom: 6px;
    }
    /* 機能セクション：1行1項目・左右交互 */
    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .feature-row {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-areas:
        "visual"
        "body";
      gap: 12px;
      align-items: center;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 18px;
    }
    .feature-body { grid-area: body; }
    .feature-visual {
      grid-area: visual;
      min-height: 180px;
      border-radius: 10px;
      background: linear-gradient(135deg, #e6f6f2, #f9fffd);
      border: 1px solid #d5ebe4;
      overflow: hidden;
      display: block;
    }
    .feature-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    @media (min-width: 768px) {
      .feature-row {
        grid-template-columns: minmax(180px, 0.8fr) 1.2fr;
        grid-template-areas: "visual body";
        gap: 16px 20px;
      }
      .feature-row:nth-child(even) {
        grid-template-columns: 1.2fr minmax(180px, 0.8fr);
        grid-template-areas: "body visual";
      }
    }
    /* 活用シーン・流れ・FAQ */
    .cols-2 {
      display: grid;
      gap: 24px;
    }
    .case-item, .flow-item, .faq-item {
      font-size: 16px;
      background: #fff;
      border-radius: 8px;
      padding: 16px;
      border: 1px solid #eee;
    }
    /* FAQ デザイン */
    .faq-item {
      background: #fff;
      border: 1px solid #e2f1ec;
      border-radius: 16px;
      padding: 18px 20px;
      display: grid;
      row-gap: 12px;
    }
    .faq-item + .faq-item { margin-top: 16px; }
    .faq-q, .faq-a { margin: 0; padding: 0; }
    .faq-q {
      font-size: 17px;
      font-weight: 800;
      color: #1f2a27;
      line-height: 1.6;
      display: grid;
      grid-template-columns: 54px 1fr;
      column-gap: 12px;
      align-items: center;
    }
    .faq-q::before {
      content: "Q";
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #16a085, #12806a);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }
    .faq-a {
      font-size: 16px;
      color: #3f4543;
      line-height: 1.75;
      display: grid;
      grid-template-columns: 54px 1fr;
      column-gap: 12px;
      align-items: flex-start;
    }
    .faq-a::before {
      content: "A";
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f0fbf7;
      border: 1px solid #c8efe3;
      color: #0f6b58;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    /* ご利用の流れ：縦型タイムライン */
    .flow-wrapper {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
      padding-left: 6px;
    }
    .flow-wrapper::before {
      content: none;
    }
    .flow-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .flow-item {
      position: relative;
      padding: 16px 16px 16px 76px;
      border-radius: 12px;
      border: 1px solid #e2f1ec;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
      z-index: 1;
    }
    .flow-item:not(:first-child)::before {
      content: "";
      position: absolute;
      left: 30px;
      top: -18px;
      width: 2px;
      height: calc(50% + 18px);
      background: linear-gradient(180deg, #cfeee6, #b6e4d8);
      z-index: 0;
    }
    .flow-item:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 30px;
      top: 50%;
      width: 2px;
      height: calc(50% + 18px);
      background: linear-gradient(180deg, #cfeee6, #b6e4d8);
      z-index: 0;
    }
    .flow-badge {
      position: absolute;
      left: 4px;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, #16a085, #12806a);
      color: #fff;
      font-weight: 700;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1px;
      line-height: 1;
      z-index: 2;
    }
    .flow-badge-step {
      font-size: 10px;
      letter-spacing: 0.08em;
      line-height: 1;
    }
    .flow-badge-num {
      font-size: 18px;
      line-height: 1;
      letter-spacing: 0.02em;
    }
    .flow-step-label {
      font-size: 12px;
      color: #0f6b58;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 2px;
      display: inline-block;
      padding: 2px 8px;
      border-radius: 999px;
      background: #e9f9f5;
      border: 1px solid #c8efe3;
    }
    .flow-title {
      font-size: 16px;
      margin-bottom: 6px;
    }
    .flow-item p {
      margin: 0;
      color: #555;
      font-size: 13px;
      line-height: 1.55;
    }
    @media (max-width: 640px) {
      .flow-wrapper {
        padding-left: 0;
      }
      .flow-wrapper::before {
        left: 24px;
      }
      .flow-item {
        padding: 12px 12px 12px 72px;
      }
      .flow-item:not(:first-child)::before {
        left: 27px;
      }
      .flow-item:not(:last-child)::after {
        left: 27px;
      }
      .flow-badge {
        left: 4px;
      }
    }
    .case-item.enhanced {
      border: 1px solid #d8ebe5;
      padding: 20px;
    }
    .case-heading {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }
    .case-number-round {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, #16a085, #12806a);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }
    .case-header-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
    }
    .case-item.enhanced .case-title {
      margin: 0;
      line-height: 1.35;
    }
    .case-title, .flow-title {
      font-weight: 600;
      margin-bottom: 6px;
    }
    .flow-step-label {
      font-size: 12px;
      color: #999;
      margin-bottom: 4px;
    }
    .faq-a {
      margin-top: 0;
    }
    .center {
      text-align: center;
    }
    .small {
      font-size: 12px;
      color: #777;
    }
    footer {
      padding: 24px 0;
      font-size: 12px;
      color: #777;
      border-top: 1px solid #eee;
      background: #fafafa;
    }
    /* レスポンシブ */
    @media (min-width: 768px) {
      .hero-inner {
        align-items: center;
      }
      .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
      /* 活用シーン専用デザイン（他に影響しない） */
    .case-item.enhanced {
      margin-bottom: 28px;
    }
    .case-item.enhanced .case-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 0;
    }
      /* カテゴリタグ（活用シーン専用） */
    .case-category {
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 999px;
      background: #defbf3;
      color: var(--pp-green-dark);
      font-weight: 600;
      margin-bottom: 2px;
    }
      .case-before {
      margin-bottom: 12px;
    }
    .case-after {
      margin-top: 0;
      background: #f7fefc;
      border-left: 3px solid var(--pp-green);
      padding: 10px 12px;
      border-radius: 4px;
    }
    .case-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 8px;
    }
    .case-before-card,
    .case-after-card {
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 13px;
    }
    .case-before-card {
      background: #fff7f7;
      border: 1px solid #ffdede;
    }
    .case-after-card {
      background: #e9f9f5;
      border: 1px solid #c8efe3;
    }
    .case-label {
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 6px;
    }
    .case-before-card .case-label {
      background: #ffecec;
      color: #c0392b;
      border: 1px solid #ffd6d6;
    }
    .case-after-card .case-label {
      background: #defbf3;
      color: var(--pp-green-dark);
      border: 1px solid #c8efe3;
    }
    /* 料金プラン */
    .pricing-card {
      background: #fff;
      border: 1px solid #d8ebe5;
      border-radius: 16px;
      padding: 24px;
      max-width: 720px;
      margin: 0 auto;
    }
    .pricing-amounts {
      display: grid;
      gap: 16px;
      margin: 18px 0 12px;
    }
    .price-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      align-items: baseline;
      gap: 10px;
      padding: 12px 16px;
      border: 1px solid #e8f4f0;
      border-radius: 10px;
      background: #f9fffd;
    }
    .price-label {
      font-weight: 700;
      color: var(--pp-green-dark);
      letter-spacing: 0.04em;
      font-size: 16px;
    }
    .price-value {
      font-size: 26px;
      font-weight: 800;
      color: #0f6b58;
      letter-spacing: 0.01em;
      line-height: 1.2;
    }
    .price-value small {
      font-size: 16px;
      font-weight: 600;
      margin-left: 4px;
      color: #2f7d6a;
    }
    .pricing-note {
      font-size: 13px;
      color: #555;
      margin-top: 12px;
      line-height: 1.6;
    }
    @media (min-width: 640px) {
      .pricing-amounts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }


/* 活用シーン：グループ見出し（追加） */
.scene-group{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 10px 0 18px;
}

.scene-group__line{
  height:1px;
  background: linear-gradient(90deg, rgba(18,128,106,0.0), rgba(18,128,106,0.35), rgba(18,128,106,0.0));
  flex:1;
}

.scene-group__badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8ebe5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  white-space: nowrap;
}

.scene-group__label{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--pp-green-dark);
  background: #defbf3;
  border: 1px solid #c8efe3;
  padding: 3px 8px;
  border-radius: 999px;
}

.scene-group__sep{
  color:#9aa7a3;
  font-size: 12px;
  font-weight: 700;
}

.scene-group__title{
  font-size: 13px;
  font-weight: 800;
  color:#1f2a27;
}


/* ===== Header overlay on hero (override) ===== */
.site-header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
}

.site-header .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 18px 0;
}

.site-header .brand{
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.02em;
  color:#fff;
  text-decoration:none;
}
.site-header .brand:hover{ opacity:0.9; }

.site-header .header-nav{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-header .header-nav a{
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.2;
  color:#fff;
  text-decoration:none;
}

.site-header .header-nav a:hover{
  background: rgba(255,255,255,0.15);
}

.site-header .header-nav .nav-cta{
  background: rgba(255,255,255,0.95);
  color: var(--pp-green-dark, #12806a);
  font-weight: 700;
}
.site-header .header-nav .nav-cta:hover{
  background: #fff;
}

/* Ensure generic header styles don't override */
header.site-header{ background: transparent !important; border-bottom: none !important; }


/* ===== Sticky header (scroll) override ===== */
.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* ヘッダー全体の外側余白を最小限に */
  padding: 0 !important; 

  background: #fff !important;
  border-bottom: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* 【追加】内側の要素を囲むコンテナの余白を強制的に詰める */
.site-header.is-fixed .header-inner {
  padding-top: 8px !important;    /* 18pxから8pxに短縮 */
  padding-bottom: 8px !important; /* 18pxから8pxに短縮 */
}
/* fixed時の文字色（白→濃色） */
.site-header.is-fixed .brand,
.site-header.is-fixed .header-nav a{
  color: #00adb8 !important;
}

.site-header.is-fixed .header-nav a:hover{
  background: rgba(18,128,106,0.10);
  text-decoration: none;
}

/* CTAだけ強調（必要なら） */
.site-header.is-fixed .header-nav .nav-cta{
  background: var(--pp-green, #16a085);
  color: #fff !important;
}
.site-header.is-fixed .header-nav .nav-cta:hover{
  background: var(--pp-green-dark, #12806a);
}

/* 固定時に本文がヘッダーの下に潜らないようにする */
:root{ --header-h: 72px; }
body.has-fixed-header{ padding-top: var(--header-h); }

/* ===== Footer (PocketPass LP) ===== */
.site-footer{
  background: #b6ead8;   /* ← 少しだけ濃く */
  border-top: 1px solid #e7f3ef;
  padding: 34px 0 18px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf6f3;
}

.footer-brand{
  display: grid;
  gap: 8px;
}

.footer-logo{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: #0f6b58;
  line-height: 1.2;
}

.footer-note{
  color: #51605c;
  font-size: 13px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ===== Footer links : text style ===== */
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.footer-links a{
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;

  color: #0f6b58;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.6;
}

.footer-links a:hover{
  color: #0b5546;
  text-decoration: underline;
  background: none;
  box-shadow: none;
  transform: none;
}

.footer-bottom{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #6b7773;
  font-size: 12px;
}

/* small helper: focus ring */
.site-footer a:focus-visible{
  outline: 3px solid rgba(22,160,133,0.35);
  outline-offset: 2px;
  border-color: rgba(22,160,133,0.55);
}

/* layout on desktop */
@media (min-width: 768px){
  .footer-inner{
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
  }
  .footer-links{
    justify-content: flex-end;
  }
  .footer-bottom{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
