.topchart-title-wrap{
  position: relative;
}

.topchart-title-wrap .topchart-num{
  position: absolute;
  top: 54%;
  left: 81%;
  transform: translate(-50%, -50%);
  pointer-events: none;

  font-size: clamp(28px, 8vw, 90px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;

  /* Firefox 等のフォールバック色（ブロンズ） */
  color: #956A3B;

  font-family:
    "Didot",
    "Bodoni 72",
    "Bodoni MT",
    "Times New Roman",
    serif;
    letter-spacing: -0.06em;
}

/* Chrome / Safari 用：グラデーション文字 */
@supports (-webkit-background-clip: text) {
  .topchart-title-wrap .topchart-num{
    background: linear-gradient(
      180deg,
      #F1E2B8 0%,
      #CBB478 18%,
      #AA8C56 36%,
      #956A3B 55%,
      #784E2D 74%,
      #D8C38A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* ==========================
   New Service
========================== */
.new-service-wrap{
  background:#fff;
  padding: 18px 10px 10px;
  box-sizing: border-box;

  /* 追加：中身を中央固定 */
  display: flex;
  justify-content: center;
}

/* ==========================
   バナー全体（枠＝1枚グラデーション）
========================== */
.new-service-banner{
  position: relative;
  max-width: 980px;
  margin: 0 auto;

  /* 枠サイズ */
  --new-service-border: 32px;
  --new-service-topbar: 72px; /* ← 上枠だけ太く */

  border-radius: 16px;
  box-sizing: border-box;

  /* 枠全体で1つのグラデーション */
  background: linear-gradient(
    135deg,
    #f7e7a8 0%,
    #fff4cc 35%,
    #ffffff 50%,
    #fff4cc 65%,
    #f7e7a8 100%
  );

  /* 上だけ太く、左右下は32px */
  padding:
    var(--new-service-topbar)
    var(--new-service-border)
    var(--new-service-border);
}

/* ==========================
   上枠内テキスト
========================== */
.new-service-banner-head{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height: var(--new-service-topbar);

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:800;
  letter-spacing:0.1em;
  color:#e4007f;
  white-space:nowrap;

  z-index:3;
  pointer-events:none;
  font-size: 26px;     /* ← 大きく（お好みで 20〜26px） */
  line-height: 1;
}

/* ==========================
   中身カード（白）
========================== */
.new-service-card{
  position: relative;
  background:#fff;
  border-radius: 10px;
  padding: 18px 18px 14px;
  padding-right: 70px;
  box-sizing: border-box;
  z-index:2;
}

/* ==========================
   左上リング
========================== */
.new-service-ring{
  position:absolute;
  top: calc(var(--new-service-topbar) - 44px); /* ← 上にずらす（数値調整可） */
  left: -18px;                                /* ← 少し外へ */
  width: 110px;                               /* ← 大きく */
  height: auto;
  z-index:4;
  pointer-events:none;
}

/* 右上写真（大きく＋上へ） */
.new-service-photo{
  position:absolute;
  top: calc(var(--new-service-topbar) - 58px); /* ← 上にずらす（数値調整可） */
  right: -6px;                                 /* ← 少し外へ */
  width: 155px;                                /* ← 大きく */
  height: auto;
  transform: rotate(8deg);
  border-radius: 6px;
  box-shadow: none;
  z-index:5;
  pointer-events:none;
}


/* ==========================
   テキスト
========================== */
.new-service-line1{
  text-align:center;
  color:#6b6257;
  font-weight:800;
  font-size: 30px;
  margin-bottom: 15px;
}

.new-service-line2{
  display:flex;
  justify-content:center;
  align-items:center;   /* ← baseline から center に変更 */
  gap:14px;
  flex-wrap:wrap;
  font-weight:900;
}

.new-service-plan{ font-size:18px; color:#e4007f; }
.new-service-max{ font-size:33px; color:#e4007f; }
.new-service-percent{ font-size:77px; color:#e4007f; line-height:1; }
.new-service-off{ font-size:40px; color:#e4007f; }

.new-service-line3{
  margin-top:10px;
  font-size:20px;
  text-align:center;
  color:#444;
}

/* 注釈 */
.new-service-note{
  max-width:980px;
  margin:8px auto 0;
  text-align:center;
  font-size:20px;
  color:#666;
}

/* 料金(本文)の上に プラン(ルビ) を固定表示 */
.new-service-max ruby{
  display:inline-block;
  position:relative;
  padding-top: 0.65em;
  line-height:1;
}

.new-service-max rt{
  position:absolute;
  top: 0;               /* ← 上に固定 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45em;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e4007f;
  line-height: 1;
  white-space: nowrap;
}

.new-service-scale{
  width: 980px;        /* ← PCデザイン基準幅を固定 */
  margin: 0;
}


/* ==========================
   スマホ：PCデザインを完全に縮小
   （文字サイズも含めて）
========================== */
@media (max-width: 768px){
  .new-service-wrap{ overflow-x: hidden; }

  .new-service-scale{
    width: 980px;
    transform: scale(0.90);
    transform-origin: top center;
    margin: 0;        /* ← auto禁止 */
  }

  .new-service-banner-head {
    font-size: 15px;
  }
  .new-service-line1 {
    font-size: 24px;
  }
  .new-service-max {
    font-size: 15px;
  }
  .new-service-percent {
    font-size: 36px;
  }
  .new-service-off {
    font-size: 18px;
  }

  .new-service-card {
      position: relative;
      background: #fff;
      border-radius: 10px;
      padding: 18px 18px 14px;
      padding-right: 30px;
      box-sizing: border-box;
      z-index: 2;
  }

  .new-service-line2 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
      font-weight: 900;
  }

  .new-service-line3 {
      margin-top: 10px;
      font-size: 15px;
      text-align: center;
      color: #444;
  }

  .new-service-note {
      font-size: 12px;
      white-space: nowrap;   /* 改行させない */
      overflow: visible;     /* はみ出しても隠さない */
      text-overflow: clip;   /* …省略しない */
  }
}

@media (max-width: 480px){
  .new-service-scale{
    width: 980px;
    transform: scale(0.90);
    transform-origin: top center;
    margin: 0;        /* ← auto禁止 */
  }

  .new-service-banner-head {
    font-size: 13px;
  }
  .new-service-line1 {
    font-size: 18px;
  }
  .new-service-max {
    font-size: 15px;
  }
  .new-service-percent {
    font-size: 25px;
  }
  .new-service-off {
    font-size: 14px;
  }

  .new-service-card {
      position: relative;
      background: #fff;
      border-radius: 10px;
      padding: 18px 18px 14px;
      padding-right: 57px;
      box-sizing: border-box;
      z-index: 2;
  }

  .new-service-line2 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
      font-weight: 900;
  }

  .new-service-line3 {
      margin-top: 10px;
      font-size: 12px;
      text-align: center;
      color: #444;
  }

  .new-service-note {
      font-size: 12px;
      white-space: nowrap;   /* 改行させない */
      overflow: visible;     /* はみ出しても隠さない */
      text-overflow: clip;   /* …省略しない */
  }
}


/* 見出しエリア */
.pricing-system-head{
  width: 100%;
  text-align: center;
  padding: 40px 0 12px;
  box-sizing: border-box;

  position: relative; /* 追加 */
  z-index: 1;         /* 見出しはこの層 */
}

/* 見出し全体 */
.pricing-system-lead{
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  color: #e4007f;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .4em;
  white-space: nowrap;

  z-index: auto;      /* ★重要：ここでスタッキングを作らない */
}

/* 上下罫線（背面） */
.pricing-system-lead::before,
.pricing-system-lead::after{
  content:"";
  position:absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  background: #e4007f;

  z-index: 0;          /* 見出しの背面 */
  pointer-events: none;
}

.pricing-system-lead::before{ top: 0; }
.pricing-system-lead::after { bottom: 0; }

/* 中央テキスト */
.pricing-system-text{
  position: relative;
  z-index: 2;
}

/* ✶ */
.pricing-system-lead .star{
  position:absolute;
  transform: translateY(-50%);
  font-size: 35px;
  color: #e4007f;
  z-index: 3;
  padding: 2px 6px;
  line-height: 1;
  pointer-events: none;
}

.pricing-system-lead .star.left{
  left: -24px;
  top: 0%;
}

.pricing-system-lead .star.right{
  right: -24px;
  top: 100%;
}

/* 下テキスト */
.pricing-system-sub{
  margin-top: 26px;
  font-size: 22px;
  font-weight: 700;
  color:#e4007f;
  letter-spacing:.08em;
}

/* ===== Pricing System ===== */
.pricing-system-section {
  width: 100%;
}

.pricing-system-hero {
  position: relative;
  /*min-height: 520px;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 75px 25px;
  background-image:url('https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg-pricing-system.png');
}

/* ★カード群は見出しより確実に前へ */
.pricing-system-inner{
  position: relative; /* 追加 */
  z-index: 10;        /* ★重要：カード側を前面に固定 */
  max-width: 960px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-system-grid {
  width: 90%;
  display: grid;
  /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.pricing-system-card {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.pricing-system-card--pink {
  border-color: #e31b79;
}

.pricing-system-card--blue {
  border-color: #1aa0d8;
}

.pricing-system-card-head {
  padding: 18px 16px;
  text-align: center;
}

.pricing-system-card--pink .pricing-system-card-head {
  background: #e31b79;
}

.pricing-system-card--blue .pricing-system-card-head {
  background: #1aa0d8;
}

.pricing-system-card-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(20px, 3.0vw, 34px);
}

.pricing-system-card-body {
  /*background: rgba(255, 255, 255, 0.92);*/
  background: transparent;
}

.pricing-system-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-system-row--center {
  text-align: center;
}

.pricing-system-biglabel {
  color: #e31b79;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 40px);
}

.pricing-system-subcopy {
  color: #e31b79;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 30px);
}

.pricing-system-divider-pink {
  height: 2px;
  /* background: rgba(0, 0, 0, 0.06); */
  /* margin: 14px 0; */
  background: #e31b79;
}

.pricing-system-divider-blue {
  height: 2px;
  /* background: rgba(0, 0, 0, 0.06); */
  /* margin: 14px 0; */
  background: #1aa0d8;
}

.pricing-system-row--price {
  gap: 14px;
}

.pricing-system-price-sub,
.pricing-system-price-unit {
  color: #e31b79;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 34px);
}

.pricing-system-price-main {
  color: #e31b79;
  font-weight: 900;
  line-height: 1;
  font-size: clamp(54px, 2vw, 110px);
}

.pricing-system-price-main--wide {
  letter-spacing: 0.02em;
}

.pricing-system-note {
  margin: 0;
  text-align: center;
  color: #e31b79;
  font-weight: 800;
  font-size: clamp(16px, 2.0vw, 26px);
  line-height: 1.5;
  padding: 5px 0 5px 0;
}

/* 下部テキスト */
.pricing-system-bottom {
  background: #fff;
  padding: 22px 16px 26px;
}

.pricing-system-bottom-text {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #e31b79;
  font-weight: 900;
  /*font-size: clamp(18px, 1.4vw, 42px);*/
  font-size: clamp(18px, 1.4vw, 20px);
  letter-spacing: 0.02em;
}

/* プラン料金まとめブロック */
.pricing-system-plan-box{
  background: rgba(122, 106, 85, 0.25); /* #7a6a55 を透過 */
  padding: 20px 16px;
  text-align: center;
}

/* プラン料金ラベル */
.pricing-system-plan-label{
  color: #e31b79;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 10px;
  letter-spacing: .08em;
}

/* 数字側は白に */
.pricing-system-plan-box
.pricing-system-price-sub,
.pricing-system-plan-box
.pricing-system-price-main,
.pricing-system-plan-box
.pricing-system-price-unit{
  color: #e31b79;
}


/* レスポンシブ */
@media (max-width: 860px) {
  .pricing-system-hero {
    min-height: 560px;
    padding: 28px 14px;
      background-image:url('https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg-pricing-system-sp.jpg');
  }

  .pricing-system-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px){

  .pricing-system-head{
    width: 100%;
    padding: 14px 0 10px;
  }

  .pricing-system-lead{
    font-size: 16px;
    padding: 12px 18px;
    letter-spacing: .06em;
    white-space: normal;     /* スマホは折り返しOK */
    line-height: 1.4;
  }

  /* 罫線は画面幅いっぱい */
  .pricing-system-lead::before,
  .pricing-system-lead::after{
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    height: 1.5px;
  }
  
  /* ✶も罫線上に乗せる（左右は内側へ） */
  .pricing-system-lead .star{
    font-size: 18px;
    transform: translateY(-50%);
  }

  .pricing-system-lead .star.left{
    left: 8px;
    top: 0;
  }

  .pricing-system-lead .star.right{
    right: 8px;
    top: 100%;
  }

  .pricing-system-sub{
    font-size: 16px;
    margin-top: 14px;
    letter-spacing: .06em;
  }

  .pricing-system-bottom-text{
    font-size: 11px;   /* 必要に応じて調整 */
    letter-spacing: .04em;
  }

}



/* =========================
   price-incluede FULL CSS
   ========================= */

/* section */
.price-incluede{
  --bg: #f3efe6;
  --panel: #fffdf7;
  --frame: #cdbfa8;     /* 枠色 */
  --frame2:#b9aa93;     /* 濃い枠 */
  --bar: #a79a86;       /* タイトル帯 */
  --accent:#e4007f;     /* ピンク */
  --text:#4b3f35;

  background: var(--bg);
  padding: 0 0 18px;
  color: var(--text);
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  /*max-width: 720px;*/
  max-width: 850px;
  margin: 0 auto;
  box-sizing: border-box;
}

.price-incluede *{ box-sizing: border-box; }

/* =========================
   header block
   ========================= */
.price-incluede-header{
  padding: 0;
  text-align: center;
}

.price-incluede-title{
  margin: 0;
  background: var(--bar);
  color:#fff;
  padding: 12px 10px;
  font-size: 20px;
  letter-spacing: .03em;
}

.price-incluede-lead{
  margin: 0;
  padding: 12px 10px 10px;
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
}

.price-incluede-lead-accent{
  color: var(--accent);
  font-weight: 800;
}

/* =========================
   rows wrapper
   ========================= */
.price-incluede-rows{
  padding: 10px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* 各段の間隔 */
}

/* =========================
   row layouts
   ========================= */
.price-incluede-row{
  display: grid;
  gap: 16px;               /* カード間隔（＋が入る想定の余白） */
  align-items: stretch;
}

.price-incluede-row--2{
  grid-template-columns: repeat(2, 1fr);
}

.price-incluede-row--3{
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   card frame
   ========================= */
.price-incluede-card{
  background: #cdbfa8;                 /* 外枠のベージュ */
  border: 3px solid var(--frame);                    /* 内側余白 */
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  padding-bottom: 3px;
  min-width: 0;
}

/* inner image look */
.price-incluede-img{
  width: 100%;
  height: 178px;                        /* 見た目合わせ（必要なら調整） */
  object-fit: cover;
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
}

/* =========================
   label style (pink text like sample)
   ========================= */
.price-incluede-card--label{
  position: relative;
}

.price-incluede-label{
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--accent);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .02em;
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

/* =========================
   optional: make first row images taller like sample
   ========================= */
.price-incluede-row--2 .price-incluede-img{
  height: 190px;
}

.price-incluede-text{
  min-width: 0;
  margin: 3px 0 0;
  text-align: center;
  color: #e31b79;

  /* 1行固定・省略しない */
  white-space: nowrap;

  /* 文字サイズを可変にして全表示 */
  /*font-size: clamp(10px, 2.6vw, 13px);*/
  font-size: 18px;
  line-height: 1.3;

  /* 白フチ */
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;

  white-space: nowrap;        /* 1行固定 */
  overflow: visible;          /* 見切れさせない */
  text-overflow: clip;        /* …省略しない */
  line-height: 1.25;

  /* 画面幅に応じて文字サイズを自動調整 */
  font-size: clamp(12px, 1.2vw, 20px);
  /*font-size: clamp(16px, 1.2vw, 20px);*/

  /* 長い単語対策（折り返しはしないが潰れ防止） */
  max-width: 100%;
}

/* =========================
   responsive
   ========================= */
@media (max-width: 680px){
  .price-incluede-rows{ padding: 10px 10px 0; }
  .price-incluede-row{ gap: 12px; }
  /*.price-incluede-img{ height: 150px; }*/
  .price-incluede-row--2 .price-incluede-img{ height: 170px; }
}

@media (max-width: 520px){
  /*.price-incluede-img{ height: 180px; }*/
  .price-incluede-text{
    /*font-size: 13px;*/
  }
}

/* ===== 追加（＋入りレイアウト用） ===== */
.price-incluede-row--2plus{
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  column-gap: 6px;
  row-gap: 10px;
  align-items: center;
}

.price-incluede-row--3plus{
  display: grid;
  grid-template-columns: 1fr 14px 1fr 14px 1fr;
  column-gap: 4px;
  row-gap: 10px;
  align-items: center;
}

.price-incluede-plus{
  text-align:center;
  font-weight:900;
  font-size:22px;
  color:#a99b88;
  line-height:1;
}

/* スマホは＋を消して縦並び */
@media (max-width:520px){

  /* 行全体の最小幅をさらに圧縮 */
  .price-incluede-row--2plus,
  .price-incluede-row--3plus{
    min-width: 320px;
  }

  /* 画像 + 画像（2つ） */
  .price-incluede-row--2plus{
    grid-template-columns: 1fr 18px 1fr;
    column-gap: 6px;   /* ← ここが一番効く */
    row-gap: 10px;
  }

  /* 2段目・3段目（3つ並び）の画像だけ */
  .price-incluede-row--3plus .price-incluede-img{
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
  }

  /* ＋ 自体を少し小さく */
  .price-incluede-plus{
    font-size: 16px;
    line-height: 1;
  }

}


/* =========================
   アイコンエリア
   ========================= */

/* 1段目：4列 */
.price-incluede-icons{
  padding: 14px 12px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

/* 2段目：同じ4列グリッドにして、中央2列だけ使う */
.price-incluede-icons2{
  padding: 0 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* ←ここがポイント */
  gap: 10px;

  max-width: none;   /* 80%を撤廃 */
  margin: 0;         /* 中央寄せ不要（gridで中央化する） */
}

/* 2段目の各アイコンを中央2列に配置 */
.price-incluede-icons2 .price-incluede-icon:nth-child(1){ grid-column: 2; }
.price-incluede-icons2 .price-incluede-icon:nth-child(2){ grid-column: 3; }


/* 1アイテム（枠） */
.price-incluede-icon{
  background: #fff;
  border: 2px solid var(--frame2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 6px;
  aspect-ratio: 1 / 1;         /* 正方形枠 */
  min-width: 0;                /* はみ出し対策 */
  position: relative;     /* ← 追加 */
  overflow: hidden;       /* はみ出し防止 */
}

/* アイコン画像 */
.price-incluede-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 全体を収める（切りたくない場合） */
  display: block;

  border: none;          /* 画像自体の枠を消す */
  box-shadow: none;
}

/* ラベル（1行・全表示・自動縮小） */
.price-incluede-icon-text{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  margin: 0;
  padding: 4px 0 5px;
  text-align: center;

  /* 見た目 */
  /*color: var(--frame2);*/
  color: #e31b79;
  font-size: clamp(10px, 1.2vw, 14px);
  line-height: 1.2;
  white-space: nowrap;

  /* 下帯（半透明） */
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(1px);

  /* 白フチ */
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;

  pointer-events: none; /* 画像操作の邪魔をしない */

  white-space: nowrap;        /* 1行固定 */
  overflow: visible;          /* 見切れ防止 */
  text-overflow: clip;        /* …にしない */
  line-height: 1.2;

}

.price-incluede-icon,
.price-incluede-icon-inner,
.price-incluede-icon-box{
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

@media (max-width: 520px){

  .price-incluede-icons{
/*    grid-template-columns: repeat(4, minmax(90px, 1fr));
    padding: 14px 0 0;
    gap: 6px;*/ /* スマホなので少し詰める */
  }

  .price-incluede-icons2{
/*    margin-top: -4px;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    max-width: 80%;
    gap: 6px;*/
  }

  .price-incluede-icon-text {
    /*font-size: 9px;*/
    /*font-size: clamp(9px, 2.6vw, 12px);*/
  }

  .price-incluede-icon{
    border-width: 1px;
    padding: 5px;
  }
  
  .price-incluede-icon img{
    width: 100%;
    height: 100%;
  }

}








/* =========================
   POSPA コンセプト
========================= */
.popular-secret-concept {
  background-image: url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/top_secretelemnt.gif");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 32px 20px;
}

.popular-secret-concept-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 上部タイトル */
.popular-secret-total {
  background: #ffffff;              /* 白背景 */
  border: 4px double #8a7a63;        /* 2重枠線 */
  padding: 30px 30px;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 28px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.popular-secret-total,
.popular-secret-no1 {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ルビ（TOTAL）の色 */
.popular-secret-ruby-total rt{
  color: #e4007f;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: .06em;
}

/* 念のため：本文との間隔調整 */
.popular-secret-ruby-total{
  ruby-position: over;
}

.popular-secret-total.is-show,
.popular-secret-no1.is-show {
  opacity: 1;
  transform: translateY(0);
}

.popular-secret-total .en {
  display: block;
  font-size: 14px;
  color: #8a7a63;
}

.popular-secret-total .jp {
  color: #8a7a63;
}

.popular-secret-total .pink {
  color: #e4007f;
  font-weight: bold;
}

/* 円アイコン */
.popular-secret-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  margin-bottom: 50px;
/*  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.6s ease, transform 0.6s ease;*/
}

/* 円の初期状態 */
.popular-secret-points .point {
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transform-origin: center center;
  width: 240px;
  height: 240px;
}

/* 表示状態 */
.popular-secret-points .point.is-show {
  opacity: 1;
  transform: scale(1);
}

.point {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  /*border: 8px double #b9a48a;*/
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point span {
  font-size: 32px;
  color: #e4007f;
  font-weight: bold;
  line-height: 1.2;
  /*background: rgba(255,255,255,0.7);*/
  padding: 10px;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.point.circle1{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.point.circle2{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.point.circle3{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.point.circle4{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point04.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.point.circle5{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point05.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 下部テキスト */
.popular-secret-note {
  margin: 40px 0 35px;
  font-size: 25px;
}

.popular-secret-no1 {
  font-size: 36px;
  color: #e4007f;
  margin-bottom: 30px;
}

.popular-secret-message .small {
  font-size: 18px;
}

.popular-secret-message .large {
  font-size: 26px;
  margin: 10px 0;
}

.popular-secret-message .blue {
  background: #cfe4ff;
  padding: 5px 10px;
}

.popular-secret-message .tag {
  color: #e4007f;
  /*font-weight: bold;*/
  font-size: 28px;
}

.popular-secret-concept-line {
  background: transparent; /* 背景なし */
  padding: 0;              /* 余白も不要なら */
  font-size: 25px;
  margin: 34px 0;
}

.popular-secret-keyword {
  color: #e4007f;     /* 指定カラー */
  font-size: 1.4em;   /* 周囲より大きく */
  font-weight: bold;
}




/* =========================
   スマホ：構成はそのまま縮小
========================= */
@media screen and (max-width: 768px) {
  .popular-secret-total {
    display: block;
    width: 92%;
    margin: 0 auto 40px;

    /* 枠内調整 */
    padding: 20px 10px;              /* ← 横余白を削る */
    border-width: 3px;               /* ← 枠も少し細く */

    /* 文字制御 */
    white-space: nowrap;
    /*font-size: clamp(15px, 4vw, 16px); */
    font-size: 15px;
    letter-spacing: 0.02em;          /* ← 間隔を詰める */
    box-sizing: border-box;
  }

  /* 3+2 の並びを作る親 */
  .popular-secret-points{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* 2段目(2個)を中央へ */
    align-items: flex-start;  /* ★ stretch をやめる（楕円化防止） */
    gap: 12px;
  }

  /* 円（flexの幅で決め、aspect-ratioで正方形化） */
  .popular-secret-points .point{
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);

    /* ★ PCの固定 220px を無効化 */
    width: auto !important;
    height: auto !important;

    /* ★ 正円を保証 */
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-sizing: border-box;

    /* 中身で伸びて楕円化するのを防ぐ */
    min-height: 0;
    overflow: hidden;

    font-size: clamp(11px, 3.2vw, 15px);
  }

  .popular-secret-points .point span {
    /*font-size: 1.4em;*/
    font-size: 1.2em;
    line-height: 1.2;
    padding: 0 6%;
    text-align: center;
    box-sizing: border-box;
  }

  .popular-secret-note {
    margin: 40px 0 35px;
    font-size: 20px;
  }

  .popular-secret-concept-line {
    background: transparent; /* 背景なし */
    padding: 0;              /* 余白も不要なら */
    font-size: 20px;
    margin: 34px 0;
  }

  .popular-secret-message .tag {
    color: #e4007f;
    /*font-weight: bold;*/
    font-size: 22px;
  }
}


/* ==========================
   顧客満足度
========================== */

.satisfaction{
  background:#fff;
  padding: 40px 20px 30px;
  display: flex;
  justify-content: center;
}

.satisfaction-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 3カラム */
.satisfaction-grid{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 42px;

  width: fit-content;
  margin: 0 auto;
}

/* 1カラム要素 */
.satisfaction-item{
  text-align: center;
  width: 220px;
  min-width: unset;
}

/* 上の見出し */
.satisfaction-top{
  color:#8a7a63;
  font-weight:700;
  letter-spacing: .18em;
  font-size: 26px;
  margin-bottom: 18px;
}

/* 円 */
.satisfaction-circle{
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;

  font-size: 0.85em;

  /* 2重枠＋外側枠 */
/*  border: 6px double #b9a48a;
  box-shadow: 0 0 0 3px #8a7a63;*/

  background-size: cover;
  background-position: center;
  overflow: hidden;

  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 円の白オーバーレイ */
/*.satisfaction-circle::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.55);
}*/

.satisfaction-circle.is-show {
  opacity: 1;
  transform: scale(1);
}

/*.satisfaction .satisfaction-circle-overlay *{
  font-weight: 900 !important;
}
*/
/* 円内テキスト */
.satisfaction-circle-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  padding: 18px;
  box-sizing:border-box;
  z-index:1;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}


.satisfaction-circle.satisfaction-bg1{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point04.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.satisfaction-circle.satisfaction-bg2{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point05.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.satisfaction-circle.satisfaction-bg3{
  background-image:url("https://pospa.jp/wp-content/themes/twentyseventeen/assets/images/bg_secret_point06.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.satisfaction-small{
  color:#8a7a63;
  font-size: 16px;
  margin-bottom: 4px;
}

.satisfaction-big{
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 10px;
}

.satisfaction-price{
  color:#8a7a63;
  font-size: 60px;
  line-height: 1;
}

/* ピンク共通 */
.pink{ color:#e4007f; }

/* 下の説明 */
.satisfaction-bottom{
  margin-top: 22px;
}

.satisfaction-bottom-title{
  font-weight:800;
  color:#8a7a63;
  font-size: 28px;
  letter-spacing:.06em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.satisfaction-bottom-title.is-lower {
  margin-top: 32px;
}

.satisfaction-bottom-title ruby {
  ruby-position: over;
  ruby-align: center;
  position: relative;
  top: -0.05em;
}

.satisfaction-bottom-title rt {
  font-size: 0.45em;       /* ルビサイズ */
  color: #8a7a63;          /* オススメ感を出す */
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
}

.satisfaction-bottom-sub{
  font-weight:800;
  font-size: 20px;
  letter-spacing:0.06em;
  line-height: 1.3;
}

/* ===== レスポンシブ（構成維持で縮小） ===== */
@media (max-width: 900px){
  .satisfaction-grid{
    transform: scale(.85);
    transform-origin: top center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 700px){
  .satisfaction-grid{
    transform: scale(.7);
    transform-origin: top center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================
   スマホ表示（最終形）
========================== */
@media screen and (max-width: 768px){

  /* 円サイズの基準（ここだけ触れば全体調整可） */
  :root{
    --sat-circle-size: 160px;   /* ← 円の最終サイズ */
  }

  /* 全体を中央寄せ */
  .satisfaction{
    display: flex;
    justify-content: center;
    padding: 40px 20px 0;
  }


  .satisfaction-inner{
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* グリッド中央寄せ・縮小解除 */
  .satisfaction-grid{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: auto;
    margin: 0 auto;
    /*transform: none;*/
  }

  /* 各カラムを固定幅に（親幅依存を断つ） */
  .satisfaction-item{
    flex: 0 0 var(--sat-circle-size);
    width: var(--sat-circle-size);
    max-width: var(--sat-circle-size);
    text-align: center;
  }

  /* 円を完全固定サイズに */
  .satisfaction-circle{
    width: var(--sat-circle-size);
    height: var(--sat-circle-size);
    max-width: none;
    aspect-ratio: auto;
    border-radius: 50%;
    margin: 0 auto;

    /* 表示アニメーション維持 */
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .satisfaction-circle.is-show{
    opacity: 1;
    transform: scale(1);
  }

  /* 円内文字サイズ（スマホ用） */
  .satisfaction-small{
    font-size: 11px;
  }

  .satisfaction-big{
    font-size: 20px;
    line-height: 1;
  }

  .satisfaction-price{
    font-size: 28px;
    line-height: 1;
  }

  /* 下部テキスト */
  .satisfaction-bottom{
    margin-top: 18px;
  }

  .satisfaction-bottom-title{
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .satisfaction-bottom-title.is-lower {
    margin-top: 24px;
  }

  .satisfaction-bottom-sub{
    font-size: 14px;
    line-height: 1.3;
  }

  /* ルビ微調整（スマホ用） */
  .satisfaction-bottom-title ruby{
    top: -0.03em;
  }

  .satisfaction-bottom-title rt{
    font-size: 0.4em;
    line-height: 1;
  }

}


/* ==========================
   price list
========================== */
.priceplan-block{
  background: #fff;
  padding: 30px 0 60px;
}

.priceplan-hero{
  width: 100%;
  opacity: 0;
  transform: translateY(60px);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease;
}

.priceplan-hero.is-show {
  opacity: 1;
  transform: translateY(0);
}

.priceplan-hero-inner{
  margin: 0 auto;
  position: relative;
  background: repeating-linear-gradient(
    90deg,
    #f3f1ee,
    #f3f1ee 28px,
    #ffffff 18px,
    #ffffff 36px
  );
  padding: 34px 30px 26px;
  box-sizing:border-box;
}

/* 右写真 */
.priceplan-photo{
  position:absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  width: 230px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  pointer-events:none;
}

.priceplan-photo img{
  width: 100%;
  height: auto;
  display:block;
  z-index: 10;
}

/* 見出し */
.priceplan-head{
  padding-right: 260px; /* 写真分の余白 */
  text-align:center;
}

.priceplan-head-top{
  font-size: 63px;
  font-weight: 800;
  color: #e4007f;
  letter-spacing: .06em;
  line-height: 1.1;
  margin-bottom: 40px;   /* 下に余白 */
  margin-top: 8px;       /* 上に余白 */
  text-shadow:
    -5px -5px 0 #fff,
     5px -5px 0 #fff,
    -5px  5px 0 #fff,
     5px  5px 0 #fff,
    -5px  0    0 #fff,
     5px  0    0 #fff,
     0   -5px  0 #fff,
     0    5px  0 #fff;
}

.priceplan-star{
  font-size: .6em;
  vertical-align: top;
  margin-left: 6px;
}

.priceplan-head-mid{
  margin-top: 10px;
  margin-bottom: 76px;
  padding-left: 14px;
  font-size: 33px;
  font-weight: 800;
  color: #e4007f;
  letter-spacing: .04em;
  white-space: nowrap;
  text-shadow:
    -5px -5px 0 #fff,
     5px -5px 0 #fff,
    -5px  5px 0 #fff,
     5px  5px 0 #fff,
    -5px  0    0 #fff,
     5px  0    0 #fff,
     0   -5px  0 #fff,
     0    5px  0 #fff;
}

.priceplan-head-bar{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background: #9a8876;
  color: #fff;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: .06em;
  padding: 26px 26px;
  text-align: left;
  padding-left: 120px;   /* ← 左余白（60〜120pxで調整） */
  z-index: 5;
}

.priceplan-circles{
  display:flex;
  justify-content:center;
  margin-top: 46px;
}

.priceplan-circles-inner{
  width: 1000px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap: 0px;
}

.priceplan-col{
  width: 380px;
  text-align:center;
}

.priceplan-col-title{
  font-size: 30px;
  font-weight: 800;
  color: #e4007f;
  margin-bottom: 25px;
}

/* OR */
.priceplan-or{
  align-self: center;
  font-size: 44px;
  font-weight: 700;
  color: #9a8876;
  margin-top: 54px;
}

/* 円 */
.priceplan-circle{
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  border: 6px double #b9a48a;      /* 2重枠 */
  box-shadow: 0 0 0 3px #8a7a63;   /* 外側枠 */
  background: #fff;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

/* ==========================
   priceplan circles + title 連動（左右フェード）
   ※JSが動いている時だけ初期非表示
========================== */

.js-anim .priceplan-circle,
.js-anim .priceplan-col-title{
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

/* 左カラム：左→右 */
.js-anim .priceplan-col:first-child .priceplan-circle,
.js-anim .priceplan-col:first-child .priceplan-col-title{
  transform: translateX(-60px);
}

/* 右カラム：右→左 */
.js-anim .priceplan-col:last-child .priceplan-circle,
.js-anim .priceplan-col:last-child .priceplan-col-title{
  transform: translateX(60px);
}

/* 表示状態（同時にON） */
.js-anim .priceplan-circles.is-show .priceplan-circle,
.js-anim .priceplan-circles.is-show .priceplan-col-title{
  opacity: 1;
  transform: translateX(0);
}

/* 任意：見出し→円の順に少しだけ遅延（要らなければ削除） */
.js-anim .priceplan-circle{
  transition-delay: .08s;
}


.priceplan-circle-inner{
  width: 92%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.priceplan-circle-small{
  font-size: 25px;
  word-break: keep-all;
  line-break: strict;
  margin-bottom: 8px;
  line-height: 1.15;
  color: #8a7a63;
}

/* 左：¥0 */
.priceplan-circle-price{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap: 10px;
  line-height: 1;
  margin-bottom: 6px;
  gap: 6px;
}

.priceplan-yen{
  font-size: 46px;
  color:#8a7a63;
}

.priceplan-zero{
  font-size: 120px;
  color:#e4007f;
  line-height: .9;
}

/* 左：プラン */
.priceplan-circle-foot{
  font-size: 28px;
  color:#8a7a63;
}

/* 右：金額 */
.priceplan-circle-price2{
  margin: 5px 0 22px;
  line-height: 1;
}

.priceplan-amount{
  font-size: 49px;
  color:#e4007f;
  letter-spacing: .02em;
}

.priceplan-en{
  font-size: 40px;
  color:#8a7a63;
  margin-left: 6px;
}

/* 右：全3プラン */
.priceplan-circle-foot2{
  font-size: 35px;
  color:#8a7a63;
}

/*@media (max-width: 1024px){
  .priceplan-hero-inner,
  .priceplan-circles-inner{
    transform: scale(.9);
    transform-origin: top center;
  }
}*/

@media (max-width: 768px){

  /* PC同様：写真は右absoluteのまま */
  .priceplan-hero-inner{
    position: relative;
    padding: 22px 14px 18px;   /* 全体を少し詰める */
  }

  /* 右写真：幅を縮めて下に寄せる */
  .priceplan-photo{
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 140px;              /* ← 230px→縮小（要調整） */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .priceplan-photo img{
    width: 100%;
    height: auto;
  }

  /* 見出し：写真分の余白をスマホ用に縮小 */
  .priceplan-head{
    padding-right: 150px;      /* ← 写真140px + 余白分 */
    text-align: center;
  }

  .priceplan-head-top{
    font-size: 36px;
    margin: 6px 0 16px;
  }

  /* ここが崩れの主因：nowrapを解除 or 条件付きに */
  .priceplan-head-mid{
    font-size: 20px;
    margin: 8px 0 60px;        /* barが下にあるので下余白確保 */
    padding-left: 0;
    white-space: normal;       /* ← スマホは折り返し */
    line-height: 1.25;
  }

  /* 帯バー：PC同様 absolute のまま。左余白だけ縮小 */
  .priceplan-head-bar{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 28px;
    padding: 14px 14px;
    padding-left: 18px;        /* ← 120px/80pxはスマホだと過剰 */
  }
}



@media (max-width: 480px){
  .priceplan-hero-inner,
  .priceplan-circles-inner{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    transform: none;
    padding: 20px 16px;
  }

  .priceplan-hero{
    left: auto;
    transform: none;
    margin: 0 auto;
  }

  .priceplan-head-top {
      font-size: 30px;
      /* padding-left: 43px; */
      margin-bottom: 25px;
  }

  .priceplan-head-mid{
      font-size: 11px;
  }

  .priceplan-head-bar {
      font-size: 24px;
      padding-left: 33px;
  }
}


.review-card{
  font-family: "Zen Kurenaido", sans-serif;
  position: relative;
  max-width: 450px;
  padding: 44px 36px 44px;
  border: 3px solid #cfc4b8;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  overflow: visible;
}

/* 上のピンク丸 */
.review-dot{
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 13px;
  border-radius: 50%;
  background: #e4007f;
}

/* 文章ブロック */
.review-body{
  max-width: 460px;              /* ← 行幅の肝（ここで見た目が決まる） */
}

/* 本文 */
.review-text{
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: #2b2b2b;
  text-align: left;

  /* 日本語の自動改行をきれいに */
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 署名 */
.review-sign{
  font-family: "Zen Kurenaido", sans-serif;
  opacity: 0.95;
  margin-top: 18px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
.review-sign p{
  margin: 0;
}

/* 右下写真 */
.review-photo-wrap{
  position: absolute;
  right: 14px;
  bottom: 18px;
  margin: 0;
  width: min(330px, 44%);
  z-index: 10;
  pointer-events: none;
}

/* 写真は回転（影より上に） */
.review-photo{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  /*border: 6px solid #fff;*/

  transform: rotate(-10deg);

  box-shadow:
    4px 6px 6px rgba(0,0,0,.45),   /* 近い・くっきり */
    10px 20px 28px rgba(0,0,0,.30); /* 遠い・広がり */
}

@media (max-width: 600px){

  /* カード全体をさらにスリムに */
  .review-card{
    max-width: 290px;          /* ← 450px → 320px */
    padding: 28px 18px 26px;   /* ← 縦横ともに圧縮 */
  }

  /* 本文 */
  .review-text{
    font-size: 18px;           /* ← 25px → 18px */
    line-height: 1.45;         /* ← 行間も詰める */
    letter-spacing: 0.025em;
  }

  /* 署名 */
  .review-sign{
    margin-top: 12px;          /* ← 縦余白を縮める */
    font-size: 19px;           /* ← 26px → 19px */
    line-height: 1.45;
  }

  /* 写真サイズも少し小さく */
  .review-photo-wrap{
    width: 40%;
    right: 5px;
    bottom: 5px;
  }

  .review-photo{
    border-width: 8px;         /* ← 白フチも軽く */
    transform: rotate(-8deg);  /* ← 角度も少し控えめ */
    box-shadow:
      3px 5px 5px rgba(0,0,0,.35),
      8px 16px 20px rgba(0,0,0,.25);
    border: 3px solid #fff;
  }
}


