@charset "UTF-8";

/* ============================================================
   セクション5: お客様の声（SP版） — CSS Grid
   仕様: 4行×2列 = 8枚表示 → もっと見るで残り4枚表示
   ============================================================ */

@media screen and (max-width: 768px) {

  /* --- セクション全体 --- */
  .sec-5 {
    position: relative;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    overflow: visible;
    background: #FFFFFF;
    z-index: 10;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sec-5 .sec-5__inner {
    position: relative;
    width: 375px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    overflow: visible;
  }

  /* --- タイトル画像 --- */
  .sec-5 .sec-5__group-86 {
    position: relative;
    width: 335px;
    height: 52px;
    margin: 40px auto 20px;
    background: url("../images/sp/sec5/グループ 86 2.png") center center / contain no-repeat;
    z-index: 20;
    display: block;
    visibility: visible;
  }

  /* --- グリッドコンテナ (2列) --- */
  .sec-5__grid {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    gap: 15px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    z-index: 15;
    position: relative;
  }

  /* --- カード共通 --- */
  .sec-5__review-card {
    background: #F5F5F5;
    border-radius: 6.121px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 160px;
    min-height: 221px;
  }

  /* --- 星 --- */
  .sec-5__review-stars {
    width: 60.41px;
    height: 10.94px;
    background: url("../images/sec5/78789 1.png") center center / contain no-repeat;
    margin-bottom: 10px;
    flex-shrink: 0;
  }

  /* --- テキスト --- */
  .sec-5__review-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 170%;
    color: #1E333B;
    margin: 0;
    overflow: hidden;
  }

  /* --- カード9-12: 初期非表示（もっと見るで展開） --- */
  .sec-5__review-card.is-review-hidden {
    display: none;
  }

  /* --- もっと見るボタン --- */
  .sec-5__more-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 305px;
    height: 30px;
    margin: 20px auto 0;
    background: #FFFFFF;
    border: none;
    box-shadow: inset 0 0 0 1.5px #1E333B;
    border-radius: 100px;
    z-index: 20;
    text-decoration: none;
    cursor: pointer;
  }

  .sec-5__more-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #1E333B;
  }

  .sec-5__more-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #1E333B;
    border-bottom: 2px solid #1E333B;
    transform: rotate(45deg);
    margin-top: -2px;
  }

  /* --- 展開後: カード9-12表示、ボタン非表示 --- */
  .sec-5.is-reviews-expanded .sec-5__review-card.is-review-hidden {
    display: flex;
  }

  .sec-5.is-reviews-expanded .sec-5__more-btn {
    display: none;
  }

}

/* end @media */