@charset "utf-8";


/* ============================================================
    RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1, h2, h3, h4, p {
  margin: 0;
}

/* ============================================================
    LP メインラッパー
============================================================ */
.lp-main {
  overflow: hidden;
  width: 100%;
}

/* ============================================================
    汎用：CTA
============================================================ */

/* CTAエリア */
.cta {
  background: linear-gradient(180deg, #f3f3f3 0%, #fff 5%);
  border-top: #fff solid 1px;
  margin: 40px auto 0;
  padding: 30px 20px 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    background: linear-gradient(180deg, #f3f3f3 0%, #fff 10%);
    margin-top: 48px;
    padding: 40px 0 60px;
  }
}

/* CTAリードテキスト */
.cta-lead {
  color: #cfab35;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.cta-lead.green {
  color: #3d7e33;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .cta-lead {
    font-size: 22px;
    margin-bottom: 22px;
  }
}

/* CTAボタン */
.cta-btn {
  animation: ctaPulse 5s ease-in-out infinite;
  background: linear-gradient(90deg, #cfab35, #d3b65f);
  
  position: relative; /* 追加：光の基準 */
  overflow: hidden;    /* 追加：はみ出た光を隠す */
  
  border: #d4af37 solid 1px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(200, 178, 78, 0.45);
  color: #fff;
  display: flex;
    align-items: center;
    justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none; /* aタグの場合に必要 */
  
  /* hover時の挙動を滑らかにする */
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .cta-btn{
    font-size: 26px;
    max-width: 560px;
    margin: 0 auto;
    padding: 24px 0;
  }
}
@media screen and (max-width: 375px) {
  .cta-btn{
    font-size: 16px;
  }
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: -100%; /* 少し余裕を持たせる */
  left: -150%;
  width: 100%;
  height: 300%; /* 回転しても隙間が出ないよう高さを出す */
  
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.4) 50%, /* つや感 */
    rgba(255, 255, 255, 0.1) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  
  transform: rotate(20deg);
  /* 本体と同じ5sに合わせる */
  animation: shiny-sweep 5s ease-in-out infinite;
}

/* 共通のアニメーション（5秒に調整） */
@keyframes shiny-sweep {
  0% { left: -150%; }
  30%, 100% { left: 150%; } /* 30%地点で通り抜け、残りは待機 */
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(200, 178, 78, 0.45);
    transform: scale(1);
  }
  /* 光が走り抜ける30%付近に合わせて最大化させるのもアリ */
  30% {
    box-shadow: 0 8px 32px rgba(200, 178, 78, 0.65);
    transform: scale(1.02); /* 少しだけ変化を大きくしました */
  }
}

.cta-btn:hover {
  box-shadow: 0 10px 36px rgba(200, 178, 78, 0.65); 
  transform: translateY(-3px) scale(1.02); /* hover時もサイズを維持 */
}
@media screen and (min-width: 768px) {
  .cta-btn:hover {
    background: linear-gradient(90deg, #d4b44a, #dcc46e);
    box-shadow: 0 12px 34px rgba(200, 178, 78, 0.62);
  }
}
.cta-tx::before{
  font-family: "Font Awesome 6 Free";
    content: "\f521";
    font-weight: 900;
  font-size: 15px;
  margin-right: .2em;
}
@media screen and (min-width: 768px) {
  .cta-tx::before{
    font-size: 18px;
  }
}
.cta-hero{
  background: none;
  margin-top: -10px;
}

/* CTAサブテキスト（ボタン下の補足） */
.cta-sub {
  color: #8f8f8f;
  font-size: 12px;
  margin-top: 15px;
}
.cta-sub .line {
  border-bottom: #ccc dashed 1px;
}
@media screen and (min-width: 768px) {
  .cta-sub {
    font-size: 16px;
    margin-top: 18px;
  }
}


/* ============================================================
    汎用：スクロールフェードアップ
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延クラス */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.50s; }


/* ============================================================
    HERO セクション
============================================================ */

/* セクション全体 */
.hero {      
  overflow: hidden;
  padding-bottom: 44px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-bottom: 72px;
  }
}

/* 背景デコ：右上グリーンサークル */
.hero::before {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
    right: -160px;
    top:  -160px;
    z-index: 0;
  width:  500px;
  height: 500px;
}

/* ---- グラデエリア ---- */
.grd-area{
      background-image:
        radial-gradient(ellipse 100% 50% at   5%   0%, #bde0ee 0%, transparent 100%),
        radial-gradient(ellipse 100% 80% at  95%  95%, #ebf0f1 0%, transparent 100%);

}
.grd-area2{
      background: linear-gradient(135deg, #e7f0fd, #accbee);

}

/* ---- ロゴエリア ---- */
.hero-logo {
  display: flex;
    align-items: center;
    justify-content: center;
  padding: 10px 0 10px;
  position: relative;
    z-index: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-logo {
    justify-content: flex-start;
    padding: 12px 60px 12px;
    text-align: left;
  }
}

/* ロゴ画像 */
.hero-logo-img {
  max-width: 80px;
}
@media screen and (min-width: 768px) {
  .hero-logo-img {
  max-width: 100px;
  }
}

/* ---- メインビジュアル ---- */
.hero-mv {
  background-color: #fff;
  position: relative;
    z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero-mv {
    display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
    margin: 0 auto 0;
    padding: 0 0;
  }
}
@media screen and (min-width: 1100px) {
  .hero-mv {
    background-image: url("../images/lp/mv-pc-bg.png");
    background-repeat: repeat-x;
    display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
    margin: 0 auto 0;
    padding: 0 0;
  }
}

/* バッジ：全ページ広告非表示 */
.hero-badge {
  background: linear-gradient(135deg, #5ec84e, #3ab22b);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  position: absolute;
    right: 12px;
    top: -4px;
    z-index: 20;
  text-align: center;
  width:  90px;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .hero-badge {
    font-size: 22px;
    right: 48px;
    top: -50px;
    width:  150px;
    height: 150px;
  }
}

/* MV内コンテナ：モバイルは固定高さ、PCはflexアイテム */
.hero-mv-inner {
  height: 420px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero-mv-inner {
    flex-shrink: 0;
    height: 480px;
    order: 2;
    width: 460px;
  }
}

/* スマホ画像 共通 */
.hero-phone {
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  position: absolute;
}
@media screen and (min-width: 768px) {
  .hero-phone {
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  }
}

/* 右スマホ（screen-1）：モバイル＝下・小さめ・左側が下がる傾き */
.hero-phone--right {
  bottom: 0;
  right: -4px;
  transform: rotate(-5deg);
  width: 38%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero-phone--right {
    animation: floatRight 5s ease-in-out infinite;
    bottom: 0;
    right: 0;
    transform: rotate(-4deg);
    width: 50%;
    z-index: 2;
  }
}

/* 左スマホ（screen-2）：モバイル＝上・大きめ・右側が下がる傾き */
.hero-phone--left {
  left: -4px;
  top: 0;
  transform: rotate(5deg);
  width: 46%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .hero-phone--left {
    animation: floatLeft 5s ease-in-out infinite 0.7s;
    left: 0;
    top: 0;
    transform: rotate(4deg);
    width: 54%;
    z-index: 3;
  }
}

/* フロートアニメーション（PCのみ） */
@keyframes floatRight {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%       { transform: rotate(4deg) translateY(-12px); }
}
@keyframes floatLeft {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%       { transform: rotate(-5deg) translateY(-10px); }
}

/* コピーエリア：モバイル＝hero-mv-innerに絶対配置で中央オーバーレイ */
.hero-copy {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  left: 50%;
  padding: 18px 14px;
  position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  text-align: center;
  width: 64%;
}
@media screen and (min-width: 768px) {
  /* PC：左側に通常配置 */
  .hero-copy {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    flex: 1;
    left: auto;
    order: 1;
    padding: 0;
    position: static;
    text-align: left;
    transform: none;
    width: auto;
  }
}

/* 「専門書を超える」ラベル */
.hero-copy-label {
  background: linear-gradient(135deg, #5ec84e, #3ab22b);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding: 5px 18px;
}
@media screen and (min-width: 768px) {
  .hero-copy-label {
    font-size: 15px;
    margin-bottom: 16px;
    padding: 6px 22px;
  }
}

/* メインキャッチコピー */
.hero-copy-main {
  color: #1a1a1a;
  font-size: clamp(24px, 6.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .hero-copy-main {
    font-size: 54px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

/* 強調テキスト（「妥協なし」） */
.hero-copy-main em {
  color: #5ec84e;
  font-style: normal;
}

/* サブコピー */
.hero-copy-desc {
  color: #555;
  font-size: 13px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .hero-copy-desc {
    font-size: 18px;
  }
}

/* ---- 特徴サークルエリア ---- */
.hero-features {
  display: flex;
    gap: 10px;
    justify-content: center;
  margin: 0 auto 0;
  padding: 30px 10px 30px;
}
@media screen and (min-width: 768px) {
  .hero-features {
    gap: 20px;
    margin-top: 44px;
    max-width: 880px;
    padding: 0 60px;
  }
}

/* 特徴サークル：各アイテム */
.hero-feature {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #fff, #f9f9f9);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  color: #333;
  display: flex;
    align-items: center;
    flex: 1;
    flex-direction: column;
    justify-content: center;
  max-width: 120px;
  padding: 10px 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-feature {
    flex: none;
    max-width: none;
    padding: 20px 14px;
    width: 200px;
  }
}

/* 特徴：タイトル */
.hero-feature-ttl {
  color: #5ec84e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .hero-feature-ttl {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

/* 特徴：テキスト */
.hero-feature-txt {
  font-size: 10px;
  line-height: 1.5;
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .hero-feature-txt {
    font-size: 14px;
  }
}

/* ---- ナビカードエリア ---- */
.hero-nav {
  margin: 0 auto 0;
  overflow: hidden;
}
        @media screen and (min-width: 768px) {
  .hero-nav {
    overflow: visible;
    margin: 12px auto 0;
    width: 748px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-nav {
    overflow: visible;
    margin: 18px auto 0;
    width: 1000px;
  }
}


/* ナビタイトル */
.hero-nav-ttl {
  color: #64beba;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  padding: 0 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-nav-ttl {
    font-size: 20px;
    margin-bottom: 18px;
    padding: 0;
  }
}

/* ナビカードリスト（モバイル横スクロール） */
.hero-nav-list {
  display: flex;
    gap: 10px;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 15px 20px 15px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-nav-list::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 768px) {
  .hero-nav-list {
    gap: 12px;
    padding: 16px 60px 16px;
    scroll-snap-type: x mandatory;
  }
}

/* ナビカード */
.hero-nav-card {
  background-color: #fff;
  background: linear-gradient(180deg, #fff 97%, #eee 100%);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #333;
  display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: center;
  padding: 14px 12px 10px;
  scroll-snap-align: start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  /* 3枚＋4枚目の左端が少し見える幅 */
  width: calc((100vw - 40px - 20px) / 3);
}
@media screen and (min-width: 768px) {
  .hero-nav-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 18px 16px 14px;
    /* PC：3〜4枚目が少し見える固定幅 */
    width: 200px;
  }
}

.hero-nav-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* ナビカード：タイトル */
.hero-nav-card-ttl {
  border-bottom: #ccc dashed 1px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 0 0 .5em;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-nav-card-ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

/* ナビカード：テキスト */
.hero-nav-card-txt {
  color: #777;
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-nav-card-txt {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

/* ナビ スクロールラッパー */
.hero-nav-scroll-wrap {
  background: linear-gradient(135deg, #a0dcda 0%, #64beba 100%);
  position: relative;
  padding: 0 0 0 10px;
}
@media screen and (min-width: 768px) {
  .hero-nav-scroll-wrap {
    background: linear-gradient(90deg, #ffffff 0%, #d4d4d4 80%, #d4d4d4 20%, #ffffff 100%);
    background: #a0dcda;
    align-items: center;
    display: flex;
      gap: 0;
    padding: 0;
    width: 100%;
  }
}

/* PC用スクロールボタン 共通 */
.hero-nav-btn {
  background-color: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  display: none; /* モバイルは非表示 */
  flex-shrink: 0;
  outline: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width:  44px;
  height: 44px;
}
@media screen and (min-width: 768px) {
  .hero-nav-btn {
    display: flex;
      align-items: center;
      justify-content: center;
  }
}

.hero-nav-btn:hover {
  background-color: #64beba;
  border-color: #64beba;
  box-shadow: 0 4px 16px rgba(78, 196, 200, 0.35);
  transform: scale(1.08);
}

/* ボタン矢印アイコン（Font Awesome 6） */
.hero-nav-btn--prev::before,
.hero-nav-btn--next::before {
  color: #555;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  transition: color 0.2s ease;
}
.hero-nav-btn--prev::before {
  content: "\f053"; /* chevron-left */
}
.hero-nav-btn--next::before {
  content: "\f054"; /* chevron-right */
}
.hero-nav-btn:hover::before {
  color: #fff;
}

/* ボタンが無効（端に達した）状態 */
.hero-nav-btn:disabled {
  box-shadow: none;
  opacity: 0.3;
  pointer-events: none;
  transform: none;
}
.hero-nav-card-arrow {
  color: #64beba;
  display: block;
  font-size: 16px;
  margin-top: auto;
  text-align: center;
}
.hero-nav-card-arrow::before {
  content: "\f063";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ============================================================
    ポイントナビ（浮き上がりタブ型）
    各セクションの直前に1つずつ配置
============================================================ */

/* ナビ全体ラッパー */
.point-nav {
  background: #e8e8e2;
  overflow: visible; /* 浮き上がりが見切れないよう */
  padding-top: 8px; /* タブが上に浮き上がる分の余白 */
}

/* ナビリスト */
.point-nav-list {
  align-items: flex-end;
  display: flex;
  list-style: none;
  margin: 0 auto;
  max-width: 1040px;
  padding: 0;
}

/* ナビ各アイテム */
.point-nav-item {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* ナビリンク */
.point-nav-link {
  align-items: center;
  background: #e8e8e2;
  color: #999;
  display: flex;
    flex-direction: column;
    justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
  padding: 10px 4px 10px;
  position: relative;
    z-index: 1;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .point-nav-link {
    font-size: 18px;
    padding: 12px 8px 12px;
  }
}

    @media screen and (max-width: 390px) {
  .point-nav-link {
    font-size: 11px;
  }
}

/* ホバー */
.point-nav-link:hover {
  background: #e0e0da;
  color: #64beba;
}

/* ナビ番号 */
.point-nav-num {
  color: inherit;
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
  opacity: 0.75;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .point-nav-num {
    font-size: 12px;
  }
}

/* ナビテキスト */
.point-nav-txt {
  display: block;
}

/* ---- アクティブ：浮き上がり ---- */
.point-nav-item.is-active {
  z-index: 2;
}

.point-nav-item.is-active .point-nav-link {
  background: #fff;
  border-radius: 6px 6px 0 0;
  color: #64beba;
}
@media screen and (min-width: 768px) {
  .point-nav-item.is-active .point-nav-link {
  }
}

/* アクティブ：上部グリーンライン */
.point-nav-item.is-active .point-nav-link::before {
  background: linear-gradient(90deg, #a0dcda, #64beba);
  border-radius: 6px 6px 0 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
    right: 0;
    top: 0;
}

/* アクティブ：番号 */
.point-nav-item.is-active .point-nav-num {
  color: #64beba;
  opacity: 1;
}

/* ============================================================
    汎用：ポイントセクション共通スタイル
============================================================ */

/* セクション共通 */
.no-ads,
.search,
.keep,
.history {
  padding: 52px 0 1px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .no-ads,
  .search,
  .keep,
  .history {
    padding: 80px 0 1px;
  }
}

/* 背景色 */
.no-ads,
.keep,
.search,
.history {
  background: linear-gradient(180deg, #fff 0%, #f3f2ef 80%, #ebe8df 100%);
}

/* ポイントセクション内コンテナ */
.point-inner {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.point-inner.wide {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .point-inner {
  }
}
@media screen and (min-width: 1024px) {
  .point-inner {
    padding: 0 60px;
    max-width: 1024px;
  }
}
/* ---- ポイントヘッダー ---- */
.point-header {
  margin-bottom: 20px;
  position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px) {
  .point-header {
    margin-bottom: 28px;
  }
}

/* 「Point ◯◯」ラベル行 */
.point-num {
  align-items: center;
  display: flex;
    gap: 8px;
  margin-bottom: 12px;
}

/* Point テキスト */
.point-num-txt {
  color: #5ec84e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .point-num-txt {
    font-size: 12px;
  }
}

/* 横線 */
.point-num::after {
  background: linear-gradient(90deg, #5ec84e, transparent);
  border-radius: 2px;
  content: "";
  display: block;
  flex: 1;
  height: 2px;
  max-width: 60px;
}

/* ---- ポイントしおり（ブックマーク型） ---- */
.point-header {
  margin-bottom: 20px;
  position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px) {
  .point-header {
    margin-bottom: 28px;
  }
}

/* しおり本体 */
.point-badge {
  align-items: center;
  background: linear-gradient(175deg, #a0dcda 0%, #64beba 100%);
  box-shadow: 2px 4px 12px rgba(78, 196, 200, 0.45);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  color: #fff;
  display: flex;
    flex-direction: column;
    justify-content: flex-start;
  padding: 10px 8px 22px;
  text-align: center;
  width:  58px;
  min-height: 72px;
}
@media screen and (min-width: 768px) {
  .point-badge {
    padding: 12px 10px 26px;
    width:  68px;
    min-height: 84px;
  }
}

/* POINT テキスト（小） */
.point-badge-sub {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 5px;
  opacity: 0.92;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .point-badge-sub {
    font-size: 11px;
    margin-bottom: 6px;
  }
}

/* ナンバリング（大） */
.point-badge-main {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .point-badge-main {
    font-size: 28px;
  }
}

/* point-badge-num は不要になったため非表示 */
.point-badge-num {
  display: none;
}

/* ---- 黒バッジ ---- */
.point-black-badge {
  background: linear-gradient(135deg, #2a2a2a, #111);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  padding: 9px 20px;
}
@media screen and (min-width: 768px) {
  .point-black-badge {
    font-size: 17px;
    padding: 11px 26px;
  }
}

/* ============================================================
    ポイントセクション：コピーエリア（バッジ＋テキスト横並び）
============================================================ */
.point-copy-area {
  align-items: flex-start;
  display: flex;
    gap: 16px;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .point-copy-area {
    gap: 24px;
    margin-bottom: 36px;
  }
}

/* コピーエリア：テキスト側 */
.point-copy-text {
  flex: 1;
}

/* ポイント大見出し */
.point-main-ttl {
  color: #1a1a1a;
  font-size: clamp(24px, 6.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.8;
  margin: 0 0 12px;
}
@media screen and (min-width: 768px) {
  .point-main-ttl {
    font-size: 38px;
    margin: 10px 0 14px;
  }
}

/* 見出し内の強調（大きく・グリーン） */
.point-main-ttl .em-main {
  color: #64beba;
  font-size: 1.3em;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .point-main-ttl .em-main {
    font-size: 1.5em;
  letter-spacing:0;
  }
}

/* 件数などの特大強調 */
.point-main-ttl .em-num {
  color: #64beba;
  font-size: 1.4em;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* サブコピー */
.point-copy-sub {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .point-copy-sub {
    font-size: 20px;
    margin-top: 8px;
  }
}

/* スマホのみ改行（PCでは改行なし） */
.br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: inline-block;
  }
}
/* PCのみ改行（スマホでは改行なし） */
.br-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: inline-block;
  }
}
/* スマホのみ表示（PCでは非表示） */
.sp-only {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
/* PCのみ表示（スマホでは非表示） */
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: inline-block;
  }
}
/* 幅によって改行 */
.inline-b {
  display: inline-block;
}
/* ポイント本文 */
.point-desc {
  border-radius: 0 6px 6px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 20px;
  padding: 10px 16px;
}
@media screen and (min-width: 768px) {
  .point-desc {
    font-size: 18px;
    margin-top: 24px;
    padding: 18px 38px;
  }
}

/* ============================================================
    ポイントセクション：MV画像エリア（3パターン共通）
============================================================ */

/* MVラッパー：左右全幅（モバイル） */
.point-mv-area {
  margin-bottom: 32px;
  margin-left:  -20px;
  margin-right: -20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .point-mv-area {
    margin-bottom: 44px;
    margin-left:  0;
    margin-right: 0;
    overflow: visible;
  }
}

/* ---- ひょいっとアニメーション ---- */
.pop-up {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pop-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 時間差 */
.pop-delay-1 { transition-delay: 0.10s; }
.pop-delay-2 { transition-delay: 0.26s; }
.pop-delay-3 { transition-delay: 0.42s; }

/* ---- パターン1：1枚 ---- */
.point-mv--single {
  padding: 0 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-mv--single {
    padding: 0;
    text-align: center;
  }
}

.point-mv--single .point-mv-img {
  border-radius: 24px;
  display: inline-block;
  max-width: 390px;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .point-mv--single .point-mv-img {
    border-radius: 20px;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .keep .point-mv--single .point-mv-img {
    max-width: 50%;
    width: 50%;
  }
  .history .point-mv--single .point-mv-img {
    max-width: 70%;
    width: 70%;
  }
}

/* ---- パターン2：2枚 ---- */
.point-mv--double {
  align-items: flex-end;
  display: flex;
    justify-content: center;
    gap: 20px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .point-mv--double {
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .point-mv--double {
    gap: 50px;
  }
}

/* 2枚：各アイテム */
.point-mv--double .point-mv-item {
  display: flex;
    flex-direction: column;
  padding: 0 0 15px;
}

/* 2枚：左（やや小さく・控えめ） */
.point-mv--double .point-mv-item:first-child {
  flex: 0 0 44%;
  margin-right: -8px;
  opacity: 0.82;
  padding-bottom: 20px;
  position: relative;
    z-index: 1;
}
@media screen and (min-width: 768px) {
  .point-mv--double .point-mv-item:first-child {
    flex: 0 0 240px;
    margin-right: 0;
    opacity: 0.85;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .point-mv--double .point-mv-item:first-child {
    flex: 0 0 260px;
  }
}
/* 2枚：右（大きめ・目立つ） */
.point-mv--double .point-mv-item:last-child {
  flex: 0 0 52%;
  position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px) {
  .point-mv--double .point-mv-item:last-child {
    flex: 0 0 280px;
  }
}
@media screen and (min-width: 1024px) {
  .point-mv--double .point-mv-item:last-child {
    flex: 0 0 300px;
  }
}

/* 2枚：右画像のグリーン枠 */
.point-mv--double .point-mv-item:last-child .point-mv-img {
  border-radius: 30px;
  box-shadow:
    0 0 0 2px #64beba,
    0 0 20px rgba(78, 196, 200, 0.50);
}
@media screen and (min-width: 768px) {
  .point-mv--double .point-mv-item:last-child .point-mv-img {
    border-radius: 45px;
    box-shadow:
      0 0 0 4px #64beba,
      0 0 40px rgba(78, 196, 200, 0.50);
  }
}

/* 2枚：矢印 */
.point-mv--double .point-mv-arrow {
  align-self: center;
  color: #aaa;
  flex-shrink: 0;
  font-size: 18px;
  margin-bottom: 22px;
  padding: 0 2px;
  position: relative;
    z-index: 3;
}
.point-mv--double .point-mv-arrow::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .point-mv--double .point-mv-arrow {
    font-size: 24px;
    margin-bottom: 44px;
    padding: 0 20px;
  }
}

/* ラベル（広告あり・なしなど） */
.point-mv-label {
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  padding: 4px 10px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .point-mv-label {
    font-size: 16px;
    padding: 5px 14px;
  }
}

.point-mv-label--before {
  background: #1a1a1a;
  color: #fff;
}
.point-mv-label--after {
  background: linear-gradient(135deg, #a0dcda, #64beba);
  box-shadow: 0 3px 10px rgba(78, 196, 200, 0.35);
  color: #fff;
}

/* ---- パターン3：3枚 ---- */
.point-mv--triple {
  align-items: flex-end;
  display: flex;
    justify-content: center;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .point-mv--triple {
    gap: 16px;
    padding: 0;
  }
}

/* 3枚：各アイテム */
.point-mv--triple .point-mv-item {
  display: flex;
    flex: 1;
    flex-direction: column;
}

/* 3枚：真ん中を大きく目立たせる */
.point-mv--triple .point-mv-item:nth-child(2) .point-mv-img {
  box-shadow:
    0 0 0 3px #5ec84e,
    0 10px 32px rgba(78, 196, 200, 0.30);
}

/* 3枚：左右は控えめ */
.point-mv--triple .point-mv-item:first-child,
.point-mv--triple .point-mv-item:last-child {
  opacity: 0.82;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .point-mv--triple .point-mv-item:first-child,
  .point-mv--triple .point-mv-item:last-child {
    opacity: 0.85;
    padding-bottom: 32px;
  }
}

/* 全パターン共通：画像 */
.point-mv-img {
  border-radius: 30px;
  display: block;
  width: 100%;
}

/* ---- パターン2フラット：2枚・装飾なし（履歴など） ---- */
.point-mv--double-plain {
  align-items: flex-end;
  display: flex;
    gap: 12px;
    justify-content: center;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .point-mv--double-plain {
    gap: 24px;
    padding: 0;
  }
}

/* 2枚フラット：各アイテム（左右同サイズ・装飾なし） */
.point-mv--double-plain .point-mv-item {
  display: flex;
    flex: 1;
    flex-direction: column;
}

/* ---- PC用画像切り替え ---- */
/* SP画像：デフォルト表示 / PC画像：デフォルト非表示 */
.point-mv-img-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  /* PC：pc画像を表示・sp画像を非表示 */
  .point-mv-img-pc {
    display: block !important;
  }
  .point-mv-img-sp {
    display: none !important;
  }
}

/* ============================================================
    ポイント2：名前詳細検索（.search）
============================================================ */


/* MV：スマホ画像右 + コピー左 */
.search-mv {
  margin-bottom: 32px;
  /* モバイル：point-innerの右padding(20px)を突き破って右端まで */
  margin-right: -20px;
  position: relative;
    z-index: 1;
}
@media screen and (min-width: 768px) {
  .search-mv {
    align-items: center;
    display: flex;
      gap: 56px;
    margin-bottom: 48px;
    margin-right: 0; /* PCは通常に戻す */
  }
}

/* MV コピーエリア */
.search-mv-copy {
  /* モバイル：画像の左にgridで並べる */
}
@media screen and (min-width: 768px) {
  .search-mv-copy {
    flex: 1;
    order: 1;
  }
}

/* MV 上部ラベル */
.search-mv-label {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .search-mv-label {
    font-size: 15px;
  }
}

/* MV 大見出し */
.search-mv-ttl {
  color: #1a1a1a;
  font-size: clamp(26px, 7vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .search-mv-ttl {
    font-size: 42px;
  }
}

/* MV 大見出し：強調 */
.search-mv-ttl .em-main {
  color: #5ec84e;
  font-size: 1.35em;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .search-mv-ttl .em-main {
    font-size: 1.4em;
  }
}

/* MV スマホ画像エリア */
.search-mv-img-wrap {
  float: right;
  margin-left: 10px;
  width: 46%;
}
@media screen and (min-width: 768px) {
  .search-mv-img-wrap {
    flex-shrink: 0;
    float: none;
    margin: 0;
    order: 2;
    width: 300px;
  }
}

.search-mv-img {
  border-radius: 20px 0 0 20px; /* モバイル：右端は角丸なし */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search-mv-img {
    border-radius: 24px;
  }
}

/* MV コンテナ（floatを内包） */
.search-mv-inner {
  overflow: hidden; /* floatを内包 */
}
@media screen and (min-width: 768px) {
  .search-mv-inner {
    display: contents;
    overflow: visible;
  }
}

/* 本文テキスト */
.search-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .search-desc {
    font-size: 18px;
    margin-bottom: 52px;
  }
}


/* ---- サブセクション共通（こんな検索ができる①②③） ---- */
.search-sub {
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .search-sub {
    margin: 0 40px 64px;
  }
}



.search-sub-label-ribbon-wrapper {  
  display: block;
  position: relative;
  margin: 15px 10px 10px;
  padding: 10px 10px 0 0;
  width: fit-content;
  }

.search-sub-label-ribbon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 10px 20px 10px 15px;
  margin: 0 0 0 -20px;
  width: calc(100% + 20px);
  font-size: 14px;
  color: white;
  background: #64beba;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
  @media screen and (min-width: 768px) {
    .search-sub-label-ribbon {
    font-size: 22px;
    }
  }
.search-sub-label-ribbon:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #4fa5a1;
}
/* サブ見出し */
.search-sub-ttl {
  color: #1a1a1a;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 20px 10px;
}

@media screen and (min-width: 768px) {
  .search-sub-ttl {
    font-size: 40px;
    margin-bottom: 28px;
  }
}
/* サブ見出し：引用符強調 */
.search-sub-ttl em {
  color: #64beba;
  font-style: normal;
}
.search-sub-lead{
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .search-sub-lead{
    font-size: 16px;
  }
}

/* サブコンテンツ：上＝検索フォーム画像 / 下＝動画 */
.search-sub-body {
  display: flex;
  flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
  .search-sub-body {
    display: grid;
    column-gap: 36px;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .search-sub-body {
    column-gap: 60px;
  }
}

/* ---- 検索フォーム画像エリア ---- */
.search-form-im-wrap{
  padding: 0 20px 0;
}
@media screen and (min-width: 768px) {
  .search-form-im-wrap{
    padding: 50px 20px 0;
  }
}
.search-form-im{
}

/* ---- 動画エリア ---- */
.search-video-wrap {
  display: flex;
    flex-direction: column;
  position: relative;
  height: 250px;
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .search-video-wrap {
    height: auto;
  }
}
.search-video-ttl {
  font-weight: bold;
  margin: 0 0 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .search-video-ttl {
    font-size: 20px;
    height: 40px;
  }
}

/* サムネ＋再生ボタン（モバイル・PC共通） */
.search-video-thumb {
  background-color: #999;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  flex: 1;
  overflow: hidden;
  padding: 0 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .search-video-thumb {
    border-radius: 16px;
  }
}

.search-video-thumb img {
  aspect-ratio: 9 / 16;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search-video-thumb img {
    height: 100%;
  }
}
/* 黒オーバーレイ */
.search-video-thumb::before {
  background: rgba(0, 0, 0, 0.28);
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 0.2s ease;
}
.search-video-thumb:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

/* 再生ボタンアイコン（Font Awesome 6） */
.search-video-thumb::after {
  color: #fff;
  content: "\f144"; /* circle-play */
  font-family: "Font Awesome 6 Free";
  font-size: 36px;
  font-weight: 900;
  left: 50%;
  position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .search-video-thumb::after {
    font-size: 48px;
  }
}
.search-video-thumb:hover::after {
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1.1);
}

/* サムネが非表示になったとき（再生中） */
.search-video-thumb.is-hidden {
  display: none;
}

/* PC：インライン動画（JS制御で表示） */
.search-video-inline {
  border-radius: 16px;
  display: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search-video-inline {
    border-radius: 46px;
  }
}
/* 再生キャプション */
.search-video-caption {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .search-video-caption {
    font-size: 18px;
  }
}

/* ---- 吹き出し ---- */
.search-balloon {
  background: linear-gradient(135deg, #5a5a5a, #3a3a3a);
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 560px;
  padding: 20px 28px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .search-balloon {
    font-size: 22px;
    margin-bottom: 52px;
    padding: 24px 40px;
  }
}

/* 吹き出し：強調テキスト */
.search-balloon em {
  color: #64beba;
  font-size: 1.15em;
  font-style: normal;
  font-weight: 900;
}

/* 吹き出し下の三角 */
.search-balloon::after {
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #3a3a3a;
  bottom: -14px;
  content: "";
  left: 50%;
  position: absolute;
    transform: translateX(-50%);
}

/* 検索サンプルエリア（外枠） */
.search-sample {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  display: flex;
    flex-direction: column;
    gap: 8px;
  padding: 14px 12px;
}
@media screen and (min-width: 768px) {
  .search-sample {
    border-radius: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 18px;
  }
}
@media screen and (min-width: 1024px) {
  .search-sample {
    border-radius: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 30px 25px;
  }
}
.search-sample-ttl {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .search-sample-ttl {
    font-size: 20px;
    margin: 0 0 20px;
    width: 100%;
  }
}
/* 条件カード（①②各1枚） */
.search-cond-card {
  background: #f7f7f5;
  border: 1.5px solid #e0e0db;
  border-radius: 8px;
  padding: 10px 10px;
}
@media screen and (min-width: 768px) {
  .search-cond-card {
    border-radius: 10px;
    padding: 14px 16px;
    width: 49%;
  }
}

/* 検索サンプル：条件行 */
.search-cond-row {
  align-items: center;
  display: flex;
    flex-wrap: wrap;
    gap: 4px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .search-cond-row {
    align-items: center;
    display: flex;
      flex-wrap: wrap;
      gap: 6px;
    margin-bottom: 8px;
  }
}
.search-cond-row:last-child {
  margin-bottom: 0;
}

/* 検索サンプル：入力ボックス風 */
.search-cond-box {
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 12px;
}
@media screen and (min-width: 768px) {
  .search-cond-box {
    font-size: 20px;
    padding: 4px 10px;
  }
}

/* 検索サンプル：テキスト */
.search-cond-txt {
  color: #555;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .search-cond-txt {
    font-size: 16px;
  }
}

/* 検索サンプル下の説明文（カード外） */
.search-sample-desc {
  color: #666;
  font-size: 11px;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .search-sample-desc {
    font-size: 13px;
    margin-top: 14px;
  }
}

/* ---- 検索条件保存エリア ---- */
.search-save {
  display: grid;
    column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .search-save {
    align-items: center;
    column-gap: 50px;
    grid-template-columns: 1fr 1.2fr;
    margin-bottom: 52px;
  }
}

/* 保存エリア：テキスト */
.search-save-txt {
  color: #555;
  font-size: 13px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .search-save-txt {
    font-size: 18px;
    line-height: 2.2;
  }
}

/* 保存エリア：画像 */
.search-save-img {
  background: #e8e8e4;
  border-radius: 10px;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 締め本文 */
.search-closing {
  background-color: #fff;
  border-radius: 12px;
  color: #444;
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 0;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .search-closing {
    font-size: 15px;
    padding: 28px 32px;
  }
}

.search-closing p {
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .search-closing p {
    font-size: 18px;
  }
}
.search-closing p:last-child {
  margin-bottom: 0;
}
.search-closing .note {
  color: #999;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .search-closing .note {
    color: #999;
    font-size: 14px;
  }
}
/* ---- 動画モーダル（モバイル用） ---- */
.video-modal {
  background: rgba(0, 0, 0, 0.88);
  display: flex;
    align-items: center;
    justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9000;
  transition: opacity 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル内コンテンツ */
.video-modal-inner {
  position: relative;
  width: 88vw;
  max-width: 400px;
}

/* モーダル動画 */
.video-modal-video {
  border-radius: 50px;
  display: block;
  width: 100%;
}

/* 閉じるボタン */
.video-modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
    align-items: center;
    justify-content: center;
  font-size: 18px;
  outline: none;
  position: absolute;
    right: -12px;
    top: -12px;
    z-index: 10;
  transition: background 0.2s ease;
  width:  36px;
  height: 36px;
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.28);
}
.video-modal-close::before {
  content: "\f00d"; /* xmark */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ============================================================
    ポイント3：名前のキープ（.keep）
============================================================ */

/* 本文テキスト */
.keep-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .keep-desc {
    font-size: 18px;
    margin-bottom: 44px;
  }
}

/* ---- 比較テーブルエリア ---- */
.keep-table-wrap {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .keep-table-wrap {
    background: rgba(228, 226, 209, 0.3);
    border-radius: 40px;
    margin-bottom: 44px;
    padding: 30px;
  }
}

/* テーブルタイトル（枠外） */
.keep-table-hd {
  align-items: center;
  display: flex;
    gap: 8px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .keep-table-hd {
    margin-bottom: 14px;
  }
}

/* テーブルタイトルアイコン */
.keep-table-hd-icon {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .keep-table-hd-icon {
    font-size: 24px;
  }
}

/* テーブルタイトルテキスト */
.keep-table-hd-txt {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .keep-table-hd-txt {
    font-size: 17px;
  }
}

/* テーブル本体のみ枠線・角丸 */
.keep-table-body {
  border: 1px solid #e8e8e2;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .keep-table-body {
    border-radius: 20px;
  }
}

/* 比較テーブル本体 */
.keep-table {
  background: #fff;
  border-collapse: collapse;
  width: 100%;
}

/* テーブルセル 共通 */
.keep-table th,
.keep-table td {
  border: 1px solid #e8e8e2;
  font-size: 13px;
  padding: 10px 6px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .keep-table th,
  .keep-table td {
    font-size: 15px;
    padding: 16px 20px;
  }
}

/* ラベル列（保存上限） */
.keep-table .col-label {
  background: #fff;
  color: #888;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  white-space:nowrap;
}
@media screen and (min-width: 768px) {
  .keep-table .col-label {
    font-size: 18px;
    width: 22%;
  }
}

/* 列ヘッダー：ゲスト・無料会員 */
.keep-table .col-guest,
.keep-table .col-free {
  background: #fff;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  white-space:nowrap;
}
@media screen and (min-width: 768px) {
    .keep-table .col-guest,
    .keep-table .col-free {
    font-size: 18px;
  }
}
.keep-table .col-guest .sub {
  color: #ccc;
  font-size: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
.keep-table .col-guest .sub {
  font-size: 14px;
  }
}
/* 列ヘッダー：プレミアム会員（強調） */
.keep-table .col-premium-hd {
  background: rgba(78, 196, 200, 0.10);
  border-top: 3px solid #64beba;
  color: #469793;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .keep-table .col-premium-hd {
    font-size: 20px;
  }
}

/* おすすめバッジ */
.keep-badge-recommend {
  background: linear-gradient(135deg, #e8748a, #d45c70);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
  padding: 2px 10px;
}
@media screen and (min-width: 768px) {
  .keep-badge-recommend {
    font-size: 12px;
    margin-top: 0;
  }
}
/* ゲスト・無料会員の数値（グレー） */
.keep-table .val-normal {
  background: #fff;
  color: #bbb;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .keep-table .val-normal {
    font-size: 36px;
  }
}

/* プレミアム会員の数値（グリーン・大） */
.keep-table .val-premium {
  background: rgba(78, 196, 200, 0.07);
  color: #64beba;
  letter-spacing: -0.03em;
  line-height: 1.5;
}
.keep-table .big {
  font-size: 36px;
  font-weight: 900;
}
.keep-table .small {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .keep-table .big {
    font-size: 54px;
  }
}

/* メモ機能付きバッジ */
  .keep-badge-memo {
  background-color: #fff;
  border: #eee solid 1px;
  border-radius: 5px;
  color: #999;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 0;
  padding: 5px 5px;
}
@media screen and (min-width: 768px) {
  .keep-badge-memo {
    font-size: 14px;
    padding: 4px 14px;
  }
}

/* ---- 詳細説明テキスト ---- */
.keep-detail {
  color: #555;
  font-size: 14px;
  line-height: 2.0;
}
@media screen and (min-width: 768px) {
  .keep-detail {
    font-size: 18px;
    margin: 0 0 40px;
  }
}

.keep-detail p {
  margin-bottom: 16px;
}
.keep-detail p:last-child {
  margin-bottom: 0;
}


/* ---- 便利な使い方 ---- */
.keep-tips{
  margin: 30px 0 0;
}

/* --- タイトル --- */
.keep-tips-container {
  text-align: center;
  width: 100%;
}

/*  吹き出し本体  */
.keep-tips-ttl {
  background: linear-gradient(135deg, #78d1cd 0%, #64beba 100%);
  background: -webkit-linear-gradient(135deg, #78d1cd 0%, #64beba 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  color: #ffffff;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 15px 25px;
  position: relative;
  max-width: 90%;
}
@media screen and (min-width: 768px) {
.keep-tips-ttl {
    font-size: 24px;
  margin: 0 auto 40px;
  }
}
/* 下部中央の三角 */
.keep-tips-ttl::after {
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: #64beba transparent transparent transparent;
  position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 768px) {
  .keep-tips-box{
    display: flex;
      align-items: center;
      gap: 30px;
    margin-bottom: 64px;
  }
}
.keep-tips-tx{
  color: #555;
  font-size: 14px;
  line-height: 2.0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .keep-tips-tx{
    font-size: 16px;
    flex: 1.2;
    line-height: 2.4;
  }
  .keep-tips-im{
    flex: 1;
  }
}



/* ============================================================
    ポイント4：履歴・条件保存（.history）
============================================================ */

/* 本文 */
.history-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .history-desc {
    font-size: 18px;
    margin-bottom: 44px;
  }
}

/* ---- 比較テーブル ---- */
.history-table-wrap {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .history-table-wrap {
    background: rgba(228, 226, 209, 0.3);
    border-radius: 40px;
    margin-bottom: 44px;
    padding: 30px;
  }
}

/* タイトル（枠外） */
.history-table-hd {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .history-table-hd {
    font-size: 17px;
    margin-bottom: 14px;
  }
}

/* テーブル本体（枠線・角丸） */
.history-table-body {
  border: 1px solid #e8e8e2;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .history-table-body {
    border-radius: 20px;
  }
}

/* テーブル */
.history-table {
  background: #fff;
  border-collapse: collapse;
  width: 100%;
}
.history-table em {
  font-style: normal;
}

.history-table th,
.history-table td {
  border: 1px solid #e8e8e2;
  font-size: 12px;
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .history-table th,
  .history-table td {
    font-size: 14px;
    padding: 14px 18px;
  }
}

/* ラベル列 */
.history-table .col-label {
  background: #fff;
  color: #888;
  font-size: 11px;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .history-table .col-label {
    font-size: 18px;
    width: 22%;
  }
}

/* ゲスト・無料会員 列ヘッダー */
.history-table .col-guest,
.history-table .col-free {
  background: #fff;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .history-table .col-guest,
  .history-table .col-free {
    font-size: 18px;
  }
}
.history-table .col-guest .sub {
  color: #ccc;
  font-size: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
.history-table .col-guest .sub {
  font-size: 14px;
  }
}
/* プレミアム列ヘッダー */
.history-table .col-premium-hd {
  background: rgba(78, 196, 200, 0.10);
  border-top: 3px solid #64beba;
  color: #469793;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .history-table .col-premium-hd {
    font-size: 18px;
  }
}

/* ゲスト・無料会員の数値 */
.history-table .val-normal {
  background: #fff;
  color: #bbb;
  font-size: 20px;
  font-weight: 700;
}
.history-table .val-normal span {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .history-table .val-normal {
    font-size: 36px;
  }
  .history-table .val-normal span {
    font-size: 14px;
  }
}

/* プレミアムの数値 */
.history-table .val-premium {
  background: rgba(78, 196, 200, 0.07);
  color: #64beba;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.history-table .val-premium span {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .history-table .val-premium {
    font-size: 52px;
  }
  .history-table .val-premium span {
    font-size: 16px;
  }
}

/* 詳細テキスト */
.history-detail {
  color: #555;
  font-size: 14px;
  line-height: 2.0;
}
@media screen and (min-width: 768px) {
  .history-detail {
    font-size: 18px;
    margin-bottom: 64px;
  }
}

.history-detail p {
  margin-bottom: 14px;
}
.history-detail p:last-child {
  margin-bottom: 0;
}

/* ============================================================
    第2カテゴリ共通：機能比較・登録の流れ・料金プラン・FAQ
    セクションタイトル共通スタイル
============================================================ */

/* セクション共通 */
.compare,
.flow,
.plan,
.faq {
  overflow: hidden;
  padding: 60px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .compare,
  .flow,
  .plan,
  .faq {
    padding: 88px 0 0;
  }
}

/* 交互に背景 */
.compare,
.plan {
  background: linear-gradient(160deg, #f8f8f5 0%, #f3f3ee 100%);
}
.flow,
.faq {
  background: linear-gradient(160deg, #f8f8f5 0%, #f3f3ee 100%);
}

/* 第2カテゴリ共通コンテナ */
.sec-inner {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sec-inner {
    padding: 0 60px;
  }
}

/* ---- 第2カテゴリ セクションタイトル ---- */
.sec-ttl-wrap {
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .sec-ttl-wrap {
    margin-bottom: 40px;
  }
}

/* タイトル上の装飾ライン */
.sec-ttl-wrap::before {
  background: linear-gradient(90deg, #64beba, rgba(78, 196, 200, 0.0));
  border-radius: 2px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 16px;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .sec-ttl-wrap::before {
    height: 5px;
    margin-bottom: 20px;
    width: 30%;
  }
}

/* セクションタイトル */
.sec-ttl {
  color: #1a1a1a;
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    font-size: 32px;
  }
}

/* セクションリード文 */
.sec-lead {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .sec-lead {
    font-size: 18px;
    margin-top: 14px;
  }
}

/* ============================================================
    機能比較表（.compare）
============================================================ */

.compare-table-wrap{
}
@media screen and (min-width: 768px) {
  .compare-table-wrap{
    background: rgba(228, 226, 209, 0.3);
    border-radius: 40px;
    margin-bottom: 44px;
    padding: 30px;
  }
}

/* テーブルタイトル行（枠外） */
.compare-table-hd {
  align-items: center;
  display: flex;
    gap: 10px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .compare-table-hd {
    margin-bottom: 18px;
  }
}

.compare-table-hd-icon {
  font-size: 22px;
}

.compare-table-hd-txt {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .compare-table-hd-txt {
    font-size: 18px;
  }
}

/* テーブル枠 */
.compare-table-body {
  border: 1px solid #e0e0da;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .compare-table-body {
    border-radius: 20px;
    margin-bottom: 20px;
  }
}

/* テーブル本体 */
.compare-table {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

/* セル共通 */
.compare-table th,
.compare-table td {
  border: 1px solid #e8e8e2;
  font-size: 12px;
  padding: 10px 6px;
  text-align: center;
  vertical-align: middle;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .compare-table th,
  .compare-table td {
    font-size: 14px;
    padding: 14px 16px;
  }
}

/* ラベル列 */
.compare-table .col-label {
  background: #fafaf8;
  color: #777;
  font-size: 11px;
  font-weight: 500;
  text-align: left;
  width: 26%;
}
@media screen and (min-width: 768px) {
  .compare-table .col-label {
    font-size: 16px;
    width: 24%;
  }
}

/* ゲスト・無料会員 ヘッダー */
.compare-table .col-guest,
.compare-table .col-free {
  background: #fff;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  width: 22%;
}
@media screen and (min-width: 768px) {
  .compare-table .col-guest,
  .compare-table .col-free {
    font-size: 18px;
    width: 22%;
  }
}
.compare-table .col-guest .sub {
  color: #ccc;
  font-size: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
.compare-table .col-guest .sub {
  font-size: 14px;
  }
}
/* プレミアム ヘッダー */
.compare-table .col-premium-hd {
  background: rgba(78, 196, 200, 0.10);
  border-top: 3px solid #64beba;
  color: #469793;
  font-size: 12px;
  font-weight: 700;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .compare-table .col-premium-hd {
    font-size: 18px;
    width: 32%;
  }
}

/* 通常セル（ゲスト・無料会員） */
.compare-table .val-normal {
  background: #fff;
  color: #bbb;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.compare-table .val-normal.up {
  color: #64beba;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .compare-table .val-normal.up {
    font-size: 24px;
  }
}
.compare-table .val-normal.up2 {
  background: rgba(78, 196, 200, 0.07);
  color: #64beba;
  font-size: 20px;
}
.compare-table .val-normal sub {
  font-size: 10px;
  font-weight: 400;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .compare-table .val-normal {
    font-size: 24px;
  }
  .compare-table .val-normal sub {
    font-size: 16px;
  }
}

/* プレミアムセル */
.compare-table .val-premium {
  background: rgba(78, 196, 200, 0.07);
  color: #64beba;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.compare-table .val-premium sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .compare-table .val-premium {
    font-size: 28px;
  }
  .compare-table .val-premium sub {
    font-size: 14px;
  }
}

/* 極小画面（375px以下）でフォントを下げる */
@media screen and (max-width: 374px) {
  .compare-table th,
  .compare-table td {
    font-size: 10px;
    padding: 8px 4px;
  }
  .compare-table .col-label {
    font-size: 10px;
  }
  .compare-table .val-normal {
    font-size: 12px;
  }
  .compare-table .val-premium {
    font-size: 16px;
  }
  .compare-table .val-normal sub,
  .compare-table .val-premium sub {
    font-size: 9px;
  }
}

/* バッジ：表示 / 非表示 / 検索種別 */
.tbl-badge {
  border-radius: 4px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .tbl-badge {
    font-size: 16px;
    padding: 4px 14px;
  }
}

.tbl-badge--show {
  background: #fff3f5;
  color: #e8748a;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .tbl-badge--show {
    font-size: 16px;
  }
}
.tbl-badge--hide {
  background: rgba(78, 196, 200, 0.12);
  color: #469793;
}

.tbl-badge--normal {
  background: #f0f0ec;
  color: #888;
}

.tbl-badge--detail {
  background: #fff3f5;
  color: #e8748a;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .tbl-badge--detail {
    font-size: 16px;
  }
}
/* キープメモ ○ */
.tbl-circle {
  color: #64beba;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .tbl-circle {
    font-size: 22px;
  }
}

/* ダッシュ */
.tbl-dash {
  color: #ccc;
  font-size: 14px;
}

/* テーブル下注釈 */
.compare-note {
  color: #999;
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .compare-note {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

/* 締めテキスト */
.compare-closing {
  color: #444;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .compare-closing {
    font-size: 18px;
  }
}

/* ============================================================
    登録の流れ（.flow）
============================================================ */

/* ---- ステップリスト全体 ---- */
.flow-steps {
  margin: 32px 0 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-steps {
    align-items: stretch; /* 全ステップ同じ高さに */
    display: flex;
      gap: 0;
    margin: 44px 0 52px;
  }
}

/* モバイル：縦の繋ぎ線 */
.flow-steps::before {
  background: linear-gradient(180deg, #64beba 0%, rgba(78, 200, 194, 0.15) 100%);
  bottom: 32px;
  content: "";
  left: 26px;
  position: absolute;
    top: 32px;
    z-index: 0;
  width: 2px;
}
@media screen and (min-width: 768px) {
  .flow-steps::before {
    display: none;
  }
}

/* ---- 各ステップ ---- */
.flow-step {
  margin-bottom: 20px;
  padding-left: 68px;
  position: relative;
    z-index: 1;
}
.flow-step:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .flow-step {
    display: flex;
      flex-direction: column;
    flex: 1;
    margin-bottom: 0;
    padding-left: 0;
    padding-top: 82px;
    position: relative;
    text-align: center;
  }
}

/* PC：ステップ間の矢印 */
@media screen and (min-width: 768px) {
  .flow-step + .flow-step::before {
    color: #a0dcda;
    content: "\f054"; /* chevron-right */
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 900;
    left: -14px;
    position: absolute;
      top: 30px;
      transform: translateY(0);
  }
}

/* ステップ番号バッジ（円） */
.flow-step-num {
  align-items: center;
  background: linear-gradient(145deg, #a0dcda, #64beba);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(78, 200, 200, 0.4);
  color: #fff;
  display: flex;
    flex-direction: column;
    justify-content: center;
  font-weight: 700;
  left: 0;
  line-height: 1.1;
  position: absolute;
    top: 0;
  text-align: center;
  width:  52px;
  height: 52px;
}
@media screen and (min-width: 768px) {
  .flow-step-num {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width:  70px;
    height: 70px;
  }
}

/* STEP テキスト */
.flow-step-num-label {
  font-size: 8px;
  letter-spacing: 0.1em;
  opacity: 0.85;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .flow-step-num-label {
    font-size: 11px;
  }
}
/* 番号 */
.flow-step-num-val {
  font-size: 24px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .flow-step-num-val {
    font-size: 24px;
  }
}

/* ステップカード */
.flow-step-card {
  background: #fff;
  border: 1.5px solid #e8e8e2;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
  padding: 16px 18px;
}
@media screen and (min-width: 768px) {
  .flow-step-card {
    border-radius: 16px;
    flex: 1; /* カードが残り高さをすべて埋める */
    margin: 0 12px;
    padding: 20px 18px 24px;
    text-align: left;
  }
}

/* ステップ小見出し（「プランの選択」など） */
.flow-step-ttl {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .flow-step-ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

/* ステップ上部のタグ（「料金プランを選びます」） */
.flow-step-tag {
  background: linear-gradient(135deg, rgba(94,200,78,0.12), rgba(94,200,78,0.06));
  border: 1px solid rgba(94,200,78,0.3);
  border-radius: 6px;
  color: #3aaa2a;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding: 3px 10px;
}

/* ステップ説明文 */
.flow-step-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .flow-step-desc {
    font-size: 15px;
  line-height: 2.2;
  }
}

/* 購入後テキスト */
.flow-closing {
  border-radius: 0 10px 10px 0;
  color: #444;
  font-size: 14px;
  line-height: 1.9;
  padding: 16px 18px;
}
@media screen and (min-width: 768px) {
  .flow-closing {
    font-size: 18px;
    padding: 20px 24px;
  }
}

/* ============================================================
    料金プラン比較表（.plan）
============================================================ */

/* リード */
.plan-lead {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .plan-lead {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 48px;
  }
}
.plan-lead-small {
  color: #777;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .plan-lead-small {
    font-size: 13px;
  }
}
/* ---- プランカードリスト ---- */
.plan-list {
  display: flex;
    flex-direction: column;
    gap: 16px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .plan-list {
  }
}
@media screen and (min-width: 1024px) {
  .plan-list {
    align-items: stretch;
      gap: 18px;
    margin-bottom: 64px;
  }
}

.plan-card-wrap {
	position: relative;
}


.plan-card.plan-card--recommended{
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .plan-card.plan-card--recommended {
    padding-top: 0;
  }
}

/* おすすめカード（90日・180日） */
.plan-card--recommended {
  border-color: #8fcecc;
  box-shadow: 0 6px 24px rgba(78, 196, 200, 0.20);
    box-shadow: 0 6px 24px rgba(170, 170, 170, 0.2);
}
.plan-card--recommended:hover {
  box-shadow: 0 10px 36px rgba(78, 196, 200, 0.35);
    box-shadow: 0 6px 24px rgba(170, 170, 170, 0.35);
}
@media screen and (min-width: 768px) {
  .plan-card--recommended {
    box-shadow: 0 6px 24px rgba(170, 170, 170, 0.2);
  }
}

/* おすすめリボン */
.plan-card-wrap--recommended{
  padding-top: 3px;
}

.plan-card-wrap--recommended .plan-ribbon {
	align-items: center;
	color: #c7a12c;
	display: inline-flex;
	font-size: 17px;
	font-weight: 700;
	justify-content: center;
	left: 25px;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin: 0;
  padding: 28px 0 0 0;
	position: absolute;
	text-align: center;
	top: -9px;
	width: calc(100% - 50px);
	z-index: 3;
}
@media screen and (min-width: 768px) {
.plan-card-wrap--recommended .plan-ribbon {
	font-size: 19px;
    padding: 18px 0 0 40px;
    width: fit-content;
  }
}
.plan-card-wrap--recommended .plan-ribbon::before {
	background: linear-gradient(180deg, #f3dc8a, #d4af37);
	border-radius: 1px 1px 0 0;
	box-shadow: 0 3px 8px rgba(212, 175, 55, 0.16);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
	content: "";
	left: 0;
	position: absolute;
	top: 27px;
	transform: translateY(-50%);
	width: 26px;
	height: 42px;
}
@media screen and (min-width: 768px) {
  .plan-card-wrap--recommended .plan-ribbon::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px));
	  top: 45px;
	  width: 30px;
	  height: 52px;
  }
}
.plan-card-wrap--recommended .plan-ribbon----::after {
	border-color: #b99320 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 0 0 4px;
	content: "";
	height: 0;
	left: 26px;
	position: absolute;
	top: calc(50% - 16px);
	width: 0;
  transform: rotate(180deg);
}
/* ---- プラン購入の補足（購入手順簡易） ---- */
.plan-flow{
  border: #bbb7a7 dashed 1px;
  border-radius: 10px;
  color: #666;
  font-size: 12px;
  margin: 0 0 15px;
  padding: 1.0em;
}
@media screen and (min-width: 768px) {
  .plan-flow{
    font-size: 15px;
  }
}
/* ---- 各プランカード ---- */

.plan-card {
  background: #fff;
  border: 2px solid #e8e8e2;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
@media screen and (min-width: 768px) {
  .plan-card {
    display: grid;
      align-items: center;
      grid-template-columns: 1.8fr 1fr;
      gap: 0;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .plan-card {
    border-radius: 18px;
    grid-template-columns: 2.0fr 1fr;
    margin: 0 auto;
  }
}
.plan-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}


@media screen and (min-width: 768px) {
  .plan-card-wrap--recommended .plan-card{
    margin-top: 40px;
  }
}

/* ---- カードボディ ---- */
/* モバイル：2カラムgrid */
.plan-card-body {
  display: grid;
    column-gap: 0;
    grid-template-columns: 1fr 1.4fr;
    grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  /* PC：縦積み flex */
  .plan-card-body {
    grid-template-columns: 1fr 1.3fr;
  }
  .plan-ribbon + .plan-card-body {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  /* PC：縦積み flex */
  .plan-card-body {
    grid-template-columns: 1fr 1.7fr;
  }
}

/* 左列（モバイル）/ 上部（PC）：プラン名＋価格 */
.plan-left {
  border-right: 1px solid #f0f0ea;
  display: flex;
    flex-direction: column;
    justify-content: center;
  padding: 14px 16px;
}
@media screen and (min-width: 768px) {
  .plan-left {
    align-items: center;
    padding: 24px 16px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .plan-left {
    justify-content: flex-start;
    min-height: 140px;
    width: 100%;
  }
}

/* プラン名 */
.plan-name {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .plan-name {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

/* 価格 */
.plan-price {
  align-items: baseline;
  color: #1a1a1a;
  display: flex;
  gap: 1px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-price-green {
  align-items: baseline;
  /* --- グラデーションの設定 --- */
  background: linear-gradient(180deg, #66c5c0, #52a8a4); /* あおみどり色 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* --- 影の設定（filterを使うのがコツ） --- */
  /* drop-shadow(右へのズレ 下へのズレ ぼかし具合 影の色) */
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.1));

  display: flex;
    gap: 1px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-price-gold {
  align-items: baseline;
  /* --- グラデーションの設定 --- */
  background: linear-gradient(180deg, #eccc62, #af9441); /* 金色 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* --- 影の設定（filterを使うのがコツ） --- */
  /* drop-shadow(右へのズレ 下へのズレ ぼかし具合 影の色) */
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.1));

  display: flex;
    gap: 1px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .plan-price {
    font-size: 34px;
  }
}

@media screen and (min-width: 1024px) {
  .plan-price {
    font-size: 40px;
  }
}

/* 円記号 */
.plan-price-yen {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

/* 月額換算 */
.plan-price-monthly {
  color: #777;
  font-size: 12px;
  margin-top: 5px;
  display: flex;
    align-items: center;
    gap: 2px;
}
@media screen and (min-width: 768px) {
  .plan-price-monthly {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .plan-price-monthly {
    font-size: 16px;
  }
}
.plan-price-monthly .color {
  color: #e68e9e;
  font-size: 20px;
  font-weight: 600;
  display: flex;
    align-items: center;
}
@media screen and (min-width: 768px) {
  .plan-price-monthly .color {
    font-size: 180%;
  }
}
.plan-price-monthly .fee {
  padding-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .plan-price-monthly .fee {
    padding-bottom: 9px;
  }
}
.plan-price-monthly .yen {
  font-size: 13px;
}


/* おすすめカードの価格： */
.plan-card--recommended .plan-price {
  /* --- グラデーションの設定 --- */
  background: linear-gradient(180deg, #eccc62, #af9441); /* 金色 */
  background: linear-gradient(180deg, #66c5c0, #52a8a4); /* あおみどり色 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* --- 影の設定（filterを使うのがコツ） --- */
  /* drop-shadow(右へのズレ 下へのズレ ぼかし具合 影の色) */
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.1));

  font-size: 34px;
}
@media screen and (min-width: 768px) {
  .plan-card--recommended .plan-price {
    font-size: 38px;
  }
}
@media screen and (min-width: 1024px) {
  .plan-card--recommended .plan-price {
    font-size: 44px;
  }
}

/* 右列（モバイル）/ 下部（PC）：キャッチ＋説明 */
.plan-right {
  display: flex;
    flex-direction: column;
    justify-content: flex-start;
  padding: 16px 14px;
}
@media screen and (min-width: 768px) {
  .plan-right {
    flex: 1; /* PC：残り高さを埋めて全カード揃える */
    justify-content: flex-start;
    padding: 24px 18px 24px;
  }
}

/* キャッチ吹き出し */
.plan-catch {
  background: rgba(78, 196, 200, 0.12);
  border-radius: 20px;
  color: #469793;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  padding: 5px 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-catch {
    font-size: 15px;
    margin-bottom: 10px;
    padding: 4px 0;
  }
}

/* 説明文 */
.plan-desc {
  color: #777;
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-desc {
    font-size: 15px;
  }
}

/* ============================================================
   料金プラン 最終CTAボタン
============================================================ */

/* ---- ボタンラッパー余白 ---- */
.plan-card-btn {
  margin: 0;
  padding: 5px 10px 15px;
}
@media screen and (min-width: 768px) {
  .plan-card-btn {
    margin: 0;
    padding: 0 10px 0;
  }
}

/* ---- フォームリセット ---- */
.plan-card-btn .form-inline {
  margin: 0;
  padding: 0;
}

.plan-card-btn .form-inline input[type="hidden"] {
  display: none;
}

/* ---- ボタン基底リセット ---- */
.plan-card-btn .btn-pricing {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  outline: none;
}

/* ============================================================
   通常プラン（30日・365日）：アウトライン
============================================================ */
.plan-card-btn .btn-pricing {
  align-items: center;
  display: inline-flex;
    gap: 8px;
    justify-content: center;
  background: linear-gradient(90deg, #64beba, #59afab);
  border: 2px solid #70ccc7;
  border-radius: 50px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 20px;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .plan-card-btn .btn-pricing {
    gap: 15px;
    font-size: 17px;
    line-height: 1.4;
  }
}

/* Font Awesome アイコン */
.plan-card-btn .btn-pricing::after {
  content: "\f054"; /* fa-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

/* 通常プラン ホバー */
.plan-card-btn .btn-pricing:hover {
  background: linear-gradient(90deg, #a0dcda, #64beba);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(100, 190, 186, 0.35);
  color: #fff;
}

.plan-card-btn .btn-pricing:hover::after {
  transform: translateX(3px);
}

/* ============================================================
   おすすめプラン（90日・180日）：グラデ塗り
============================================================ */
.plan-card--recommended .plan-card-btn .btn-pricing {
  background: linear-gradient(90deg, #64beba, #59afab);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(100, 190, 186, 0.3);
  color: #fff;
}

.plan-card--recommended---- .plan-card-btn .btn-pricing {
  background: linear-gradient(90deg, #a0dcda, #64beba);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(100, 190, 186, 0.3);
  color: #fff;
}

/* おすすめプラン ホバー */
.plan-card--recommended .plan-card-btn .btn-pricing:hover {
  background: linear-gradient(90deg, #8dd4d2, #4eadaa);
  box-shadow: 0 6px 20px rgba(100, 190, 186, 0.45);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .plan-card-btn .period {
    display: block;
  }
}

/* ---- 書籍比較エリア ---- */

.plan-book-comparison{
  margin: 80px 0 30px;
}

/* --- タイトル --- */
.plan-book-comparison-container {
  text-align: center;
  width: 100%;
}

/*  吹き出し本体  */
.plan-book-comparison-ttl {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: #64beba solid 3px;
  border-radius: 15px;
  color: #30807c;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 15px 20px;
  position: relative;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-book-comparison-ttl {
    font-size: 24px;
    margin: 0 auto 40px;
  }
}

/* 下部中央の三角 */
.plan-book-comparison-ttl::before {
	border-style: solid;
	border-width: 17px 14px 0 14px;
	border-color: #64beba transparent transparent transparent;
	content: "";
	left: 50%;
	position: absolute;
	bottom: -18px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 0;
}

/* 白い三角本体 */
.plan-book-comparison-ttl::after {
	border-style: solid;
	border-width: 14px 11px 0 11px;
	border-color: #ffffff transparent transparent transparent;
	content: "";
	left: 50%;
	position: absolute;
	bottom: -14px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 1;
}

/*  吹き出し本体 緑  */
.plan-book-comparison-ttl.green {
  background: linear-gradient(135deg, #78d1cd 0%, #64beba 100%);
  background: -webkit-linear-gradient(135deg, #78d1cd 0%, #64beba 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  color: #ffffff;
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 15px 20px;
  position: relative;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-book-comparison-ttl.green {
    font-size: 24px;
    margin: 0 auto 40px;
  }
}

/* 下部中央の三角 */
.plan-book-comparison-ttl.green::after {
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: #64beba transparent transparent transparent;
  position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.1));
}

.plan-book-comparison-tx{
  color: #555;
  font-size: 14px;
  line-height: 2.0;
  margin-bottom: 20px;

}
@media screen and (min-width: 768px) {
  .plan-book-comparison-tx{
    font-size: 18px;

  }
}

/* ---- 書籍比較テーブルエリア ---- */

/* テーブルタイトル（枠外） */
.plan-comparison-table-hd {
  align-items: center;
  display: flex;
    gap: 8px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table-hd {
    margin-bottom: 14px;
  }
}

/* テーブルタイトルアイコン */
.plan-comparison-table-hd-icon {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table-hd-icon {
    font-size: 24px;
  }
}

/* テーブルタイトルテキスト */
.plan-comparison-table-hd-txt {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table-hd-txt {
    font-size: 17px;
  }
}

/* テーブル本体のみ枠線・角丸 */
.plan-comparison-table-body {
  border: 1px solid #e8e8e2;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table-body {
    border-radius: 20px;
  }
}

@media screen and (min-width: 768px) {
  .plan-comparison-table-wrap{
  background: rgba(228, 226, 209, 0.3);
  border-radius: 40px;
  margin-bottom: 44px;
  padding: 30px;
  }
}

/* 比較テーブル本体 */
.plan-comparison-table {
  background: #fff;
  border-collapse: collapse;
  width: 100%;
}
/* テーブルセル 共通 */
.plan-comparison-table th,
.plan-comparison-table td {
  border: 1px solid #e8e8e2;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 6px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table th,
  .plan-comparison-table td {
    font-size: 15px;
    padding: 16px 20px;
  }
}

/* ラベル列 */
.plan-comparison-table .col-label {
  background: #fff;
  color: #888;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  white-space:nowrap;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .col-label {
    font-size: 18px;
    width: 22%;
  }
}

/* 列ヘッダー */
.plan-comparison-table .col-guest,
.plan-comparison-table .col-book {
  background: #fff;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  white-space:nowrap;
}
@media screen and (min-width: 768px) {
    .plan-comparison-table .col-guest,
    .plan-comparison-table .col-book {
    font-size: 18px;
  }
}
.plan-comparison-table .col-book .sub {
  color: #ccc;
  font-size: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
.plan-comparison-table .col-book .sub {
  font-size: 14px;
  }
}
/* 列ヘッダー：プレミアム会員（強調） */
.plan-comparison-table .col-premium-hd {
  background: rgba(78, 196, 200, 0.10);
  border-top: 3px solid #64beba;
  color: #469793;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .col-premium-hd {
    font-size: 20px;
  }
}

/* 値（グレー） */
.plan-comparison-table .val-book {
  background: #fff;
  color: #999;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .val-book {
    font-size: 26px;
  }
}

/* プレミアム会員の値（グリーン・大） */
.plan-comparison-table .val-premium {
  background: rgba(78, 196, 200, 0.10);
  color: #64beba;
  font-size: 18px;
  line-height: 1.3;
}
.plan-comparison-table .big {
  font-size: 24px;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .big {
    font-size: 34px;
  }
}
.plan-comparison-table .mid {
  font-size: 18px;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .mid {
    font-size: 22px;
  }
}
.plan-comparison-table .small {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .small {
    font-size: 16px;
  }
}
.plan-comparison-table .small-s {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .small-s {
    font-size: 14px;
  }
}
.plan-comparison-table .sub {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .plan-comparison-table .sub {
    font-size: 16px;
  }
}
.plan-comparison-table .normal-color {
  color: #888;
}

/* メモ */
  .plan-comparison-memo {
  color: #999;
  display: block;
  font-size: 11px;
  padding: 5px 0 0;
}
@media screen and (min-width: 768px) {
  .plan-comparison-memo {
    font-size: 12px;
    padding: 4px 14px;
  }
}

/* ============================================================
    よくあるご質問（.faq）
============================================================ */

/* FAQ リスト */
.faq-list {
  display: flex;
    flex-direction: column;
    gap: 0;
  margin-bottom: 0;
}

/* FAQ アイテム */
.faq-item {
  border-bottom: 1px solid #e8e8e2;
}
.faq-item:first-child {
  border-top: 1px solid #e8e8e2;
}

/* Q行（クリッカブル） */
.faq-q {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
    gap: 12px;
  padding: 20px 4px;
  position: relative;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:hover {
  background: rgba(78, 196, 200, 0.04);
}
@media screen and (min-width: 768px) {
  .faq-q {
    gap: 16px;
    padding: 30px 8px;
  }
}

/* Q アイコン */
.faq-q-icon {
  background: linear-gradient(135deg, #a0dcda, #64beba);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(78, 196, 200, 0.30);
  color: #fff;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: center;
  width:  32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .faq-q-icon {
    font-size: 16px;
    line-height: 42px;
    width:  42px;
    height: 42px;
  }
}

/* Q テキスト */
.faq-q-txt {
  color: #1a1a1a;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .faq-q-txt {
    font-size: 20px;
    padding-top: 6px;
  }
}

/* 開閉矢印（Font Awesome 6） */
.faq-toggle {
  color: #469793;
  flex-shrink: 0;
  font-size: 14px;
  padding-top: 7px;
  transition: transform 0.3s ease;
}
.faq-toggle::before {
  content: "\f107"; /* chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.faq-item.is-open .faq-toggle {
  transform: rotate(180deg);
}

/* A エリア（アコーディオン） */
.faq-a {
  display: grid;
    grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

/* A 内コンテンツ */
.faq-a-inner {
  align-items: flex-start;
  display: flex;
    gap: 12px;
  overflow: hidden;
  padding: 0 4px;
}
.faq-item.is-open .faq-a-inner {
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .faq-a-inner {
    gap: 16px;
    padding: 0 8px;
  }
  .faq-item.is-open .faq-a-inner {
    padding-bottom: 28px;
  }
}

/* A アイコン */
.faq-a-icon {
  background: #f0f0ec;
  border-radius: 50%;
  color: #888;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: center;
  width:  32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .faq-a-icon {
    font-size: 16px;
    line-height: 40px;
    margin-top: 10px;
    width:  40px;
    height: 40px;
  }
}

/* A テキスト */
.faq-a-txt {
  color: #555;
  flex: 1;
  font-size: 14px;
  line-height: 1.85;
  padding-top: 4px;
}
@media screen and (min-width: 768px) {
  .faq-a-txt {
    font-size: 16px;
    line-height: 2.2;
    padding-top: 12px;
  }
}

/* A 内の注釈 */
.faq-a-note {
  color: #999;
  font-size: 12px;
  margin-top: 8px;
}

/* ============================================================
    上部追従ナビ（グローバルナビ）
============================================================ */

/* ナビ本体 */
.global-nav {
  background: linear-gradient(135deg, #f0f9fa 0%, #e8f6f5 100%);
  border-bottom: 2px solid rgba(78, 196, 200, 0.30);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* スクロールで表示 */
.global-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ナビリスト */
.global-nav-list {
  align-items: stretch;
  display: flex;
  list-style: none;
  margin: 0 auto;
  max-width: 1040px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .global-nav-list {
    padding: 0 40px;
  }
}

/* 各アイテム */
.global-nav-item {
  flex: 1;
  min-width: 0;
}

/* リンク */
.global-nav-link {
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #30807c;
  display: flex;
    flex-direction: column;
    justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  padding: 8px 2px;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .global-nav-link {
    flex-direction: row;
    font-size: 14px;
    padding: 12px 6px;
    white-space: nowrap;
  }
}

/* モバイル：改行テキスト用スパン */
.global-nav-link .nav-br {
  display: block;
}
@media screen and (min-width: 768px) {
  .global-nav-link .nav-br {
    display: inline;
  }
}

/* ホバー */
.global-nav-link:hover {
  background: rgba(78, 196, 200, 0.08);
  color: #8fcecc;
}

/* アクティブ */
.global-nav-item.is-active .global-nav-link {
  border-bottom-color: #64beba;
  color: #8fcecc;
}

/* 区切り */
.global-nav-item + .global-nav-item {
  border-left: 1px solid rgba(78, 196, 200, 0.20);
}

/* ============================================================
    固定CTA（スクロール追従）
============================================================ */
.sticky-cta {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(78, 196, 200, 0.20);
  bottom: 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.10);
  left: 0;
  opacity: 0;
  padding: 12px 20px 12px;
  pointer-events: none;
  position: fixed;
  響きも漢字も画数も、一度に検索できる！  right: 0;
    z-index: 8000;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sticky-cta {
    padding: 16px 40px 16px;
  }
}

/* 表示状態 */
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* ボタン */
.sticky-cta-btn {
  background: #fff;
  border: 2px solid #cfab35;
  border-radius: 50px;
  color: #b19127;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 auto;
  max-width: 560px;
  padding: 13px 24px;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .sticky-cta-btn {
    font-size: 20px;
    padding: 15px 60px;
  }
}

.sticky-cta-btn:hover {
  background: linear-gradient(135deg,#cfab35, #d3b65f);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(200, 178, 78, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

/* ボタン 青緑 */
.sticky-cta-btn.green {
  background: #fff;
  border: 2px solid #64beba;
  border-radius: 50px;
  color: #30807c;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 auto;
  max-width: 560px;
  padding: 13px 24px;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .sticky-cta-btn.green {
    font-size: 20px;
    padding: 15px 60px;
  }
}

.sticky-cta-btn.green:hover {
  background: linear-gradient(135deg, #a0dcda, #64beba);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(78, 196, 200, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

/* サブテキスト */
.sticky-cta-sub {
  color: #999;
  font-size: 12px;
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sticky-cta-sub {
    font-size: 15px;
    margin-top: 5px;
  }
}
.lp-footer {
  background: #1e1e1e;
  padding: 36px 20px 28px;
}
@media screen and (min-width: 768px) {
  .lp-footer {
    padding: 48px 60px 36px;
  }
}

/* フッター内コンテナ */
.lp-footer-inner {
  margin: 0 auto;
  max-width: 1040px;
}

/* フッターナビ */
.footer-nav {
  display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    gap: 8px 32px;
    margin-bottom: 32px;
  }
}

/* フッターナビリンク */
.footer-nav a {
  color: #ccc;
  font-size: 12px;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s ease;
}
@media screen and (min-width: 768px) {
  .footer-nav a {
    font-size: 13px;
  }
}

.footer-nav a:hover {
  color: #fff;
}

/* ナビリンク下線アニメーション */
.footer-nav a::after {
  background: #5ec84e;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 0.2s ease;
  width: 0;
}
.footer-nav a:hover::after {
  width: 100%;
}

/* 区切り線 */
.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 0 0 20px;
}

/* コピーライト */
.footer-copyright {
  color: #aaa;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    font-size: 12px;
  }
}

/* ============================================================
   比較スライダー（クラスプレフィックス：cmp2-）
============================================================ */

/* 外枠 */
.cmp2-wrap {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cmp2-wrap {
    margin: 0 auto;
    max-width: 960px;
    padding: 0 40px;
  }
}

/* PC用ラベル行 */
.cmp2-labels {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmp2-labels {
    display: flex;
      gap: 16px;
    margin-bottom: 10px;
  }
}

.cmp2-label {
  border-radius: 6px;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  text-align: center;
}
.cmp2-label--guest {
  background: #eee;
  color: #888;
}
.cmp2-label--premium {
  background: rgba(78, 196, 200, 0.12);
  border: 1.5px solid rgba(78, 196, 200, 0.35);
  color: #3ab22b;
}

/* スライダー本体 */
.cmp2-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* スクロールトラック */
.cmp2-track {
  cursor: grab;
  display: flex;
    gap: 1px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cmp2-track:active {
  cursor: grabbing;
}
.cmp2-track::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmp2-track {
    cursor: default;
    gap: 20px;
    overflow-x: visible;
  }
}

/* 各アイテム（スマホ：88vw幅で両画像が覗く） */
.cmp2-item {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
  padding: 0 8px;
  position: relative;
  width: 78vw;
}
.cmp2-item.premium {
  background-color: #fdcece;
}
@media screen and (min-width: 768px) {
  .cmp2-item {
    flex: 1;
    width: auto;
  }
}

/* スマホ用ラベル */
.cmp2-item-label {
  border-radius: 5px;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 75px 0 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmp2-item-label {
    display: none;
  }
}
.cmp2-item-label--guest {
}
.cmp2-item-label--premium {
  color: #b22b2b;
}

/* 画像 */
.cmp2-img {
  border-radius: 40px 40px 0 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  display: block;
  width: 100%;
}
                              .cmp2-item--premium .cmp2-img--------- {
                                box-shadow:
                                  0 0 4px 4px #5ec84e,
                                  0 6px 24px rgba(78, 196, 200, 0.22);
                              }

/* 矢印ボタン（スマホのみ・画像に重ねる） */
.cmp2-btn {
  align-items: center;
  background: rgba(30, 30, 30, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  display: none;
    gap: 4px;
    justify-content: center;
  outline: none;
  padding: 10px 8px;
  position: absolute;
    top: 35px;
    transform: translateY(-50%);
    z-index: 10;
  transition: background 0.2s ease, transform 0.15s ease;
  width:  100px;
  min-height: 50px;
}
.cmp2-btn.is-show {
  display: flex;
}
.cmp2-btn:hover {
  background: rgba(78, 196, 200, 0.85);
  transform: translateY(-50%) scale(1.04);
}
.cmp2-btn-icon {
  display: block;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.cmp2-btn--prev .cmp2-btn-icon::before { content: "\f053"; }
.cmp2-btn--next .cmp2-btn-icon::before { content: "\f054"; }
.cmp2-btn-txt {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
}
.cmp2-btn--prev { left: 6px; }
.cmp2-btn--next { right: 6px; }
@media screen and (min-width: 768px) {
  .cmp2-btn { display: none !important; }
}

/* インジケーター（スマホのみ） */
.cmp2-dots {
  display: flex;
    gap: 6px;
    justify-content: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .cmp2-dots { display: none; }
}
.cmp2-dot {
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  transition: background 0.2s ease, transform 0.2s ease;
  width:  7px;
  height: 7px;
}
.cmp2-dot.is-active {
  background: #5ec84e;
  transform: scale(1.35);
}

/*
 * 開閉ボックス（クラスプレフィックス：toggle-）
 */

/* ---- 上部：開く／閉じるボタン ---- */
.toggle-btn-open {
  align-items: center;
  background: #f8f8f5;
  border: 1.5px solid #e0e0da;
  border-radius: 8px;
  color: #555;
  cursor: pointer;
  display: flex;
    gap: 8px;
    justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 12px 20px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .toggle-btn-open {
    font-size: 14px;
    padding: 14px 24px;
  }
}
.toggle-btn-open:hover {
  background: rgba(78, 196, 200, 0.06);
  border-color: #a0dcda;
  color: #469793;
}

/* アイコン：閉じた状態 → 下矢印 */
.toggle-btn-open::before {
  content: "\f078"; /* chevron-down */
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}

/* 開いた状態：ボタンをグリーンに・アイコンを上矢印に */
.toggle-wrap.is-open .toggle-btn-open {
  background: rgba(78, 196, 200, 0.06);
  border-color: #64beba;
  color: #469793;
}
.toggle-wrap.is-open .toggle-btn-open::before {
  content: "\f077"; /* chevron-up */
}

/* 上ボタン内テキスト切り替え */
.toggle-btn-open-txt  { display: inline; }
.toggle-btn-close-txt { display: none; }
.toggle-wrap.is-open .toggle-btn-open-txt  { display: none; }
.toggle-wrap.is-open .toggle-btn-close-txt { display: inline; }

/* ---- コンテンツエリア（グリッドで開閉アニメーション） ---- */
.toggle-body {
  display: grid;
    grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.toggle-wrap.is-open .toggle-body {
  grid-template-rows: 1fr;
}

/* オーバーフロー防止用の内側ラッパー */
.toggle-body-inner {
  overflow: hidden;
}

/* ---- 下部：閉じるタブ ---- */
.toggle-btn-close {
  align-items: center;
  background: #e8e8e2;
  border: none;
  border-radius: 0 0 10px 10px;
  color: #777;
  cursor: pointer;
  display: flex;
    gap: 6px;
    justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 16px;
  padding: 10px 20px;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .toggle-btn-close {
    font-size: 13px;
    padding: 11px 24px;
  }
}
.toggle-btn-close:hover {
  background: #d8d8d2;
  color: #444;
}
.toggle-btn-close::before {
  content: "\f077"; /* chevron-up */
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
}


/* ボックススタイル　左線あり、背景白 */
.point-box {
  background-color: #fff;
  border-left: 3px solid rgba(78, 196, 200, 0.5);
  border-radius: 0 10px 10px 0;
  color: #444;
  font-size: 14px;
  line-height: 1.9;
  padding: 16px 18px;
}

/* テキストカラー */
.tx-red{
  color: #e8748a;
}
.tx-b-green{
  color: #469793;
}

/* テキスト装飾 */
.u-under-dashed{
  border-bottom-style: dashed !important;
  border-bottom-width: 1px;
}

/* 余白調整 */

.mt00 {
	margin-top: 0 !important;
}

.mt05 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt45 {
	margin-top: 45px !important;
}

.mt50 {
	margin-top: 50px !important;
}
