
    /* =========================================
       リセットCSS（最低限）
       ========================================= */
    body, h1, h2, h3, p, ul, li, div {
      margin: 0;
      padding: 0;
    }
    html, body {
      overflow-x: hidden;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }
    img {
      max-width: 100%;
      height: auto;
      vertical-align: bottom;
      /* ダミー画像を見やすくするためのスタイル（本番では不要） */
      object-fit: contain;
    }

    /* =========================================
       BEM: mvブロック
       ========================================= */
    .mv {
      /* 背景画像の設定（ダミー画像とグラデーションのフォールバック） */
      background-color: #f4f2ed;
      background-image: url('./img/mv_background.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      
      /* 高さを100svhに指定 */
      height: 100svh;
      
      /* スマートフォン表示を想定したサイズ制限 */
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      padding: 40px 20px 40px; /* 下部の余白を少し調整 */
      box-sizing: border-box;
      overflow: hidden;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }

    .mv__inner {
      display: flex;
      flex-direction: column;
      height: 100%; /* 100svhの高さいっぱいに広げる */
      justify-content: space-between; /* 要素間を均等に配置 */
    }

    /* 左上のロゴ画像 */
    .mv__logo {
      width: 120px;
      margin-bottom: 15px; /* 余白を調整 */
    }

    /* タイトル画像（NEEDLE FOUNDATION...） */
    .mv__title {
      width: 95%;
      max-width: 350px;
      margin-bottom: 15px; /* 余白を調整 */
    }

    /* 商品画像のコンテナ */
    .mv__products {
      position: relative;
      width: 100%;
      flex-grow: 1;
      min-height: 250px;
      margin-bottom: 20px;
    }
    .mv__products-svg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
    .mv__svg-compact {
      opacity: 0;
      animation: mvFadeIn 1s ease 0.3s forwards;
    }
    .mv__svg-smear {
      opacity: 0;
      animation: mvFadeIn 1s ease 1s forwards;
    }
    @keyframes mvFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* 下部のキャッチコピー画像 */
    .mv__catchphrase {
      width: 90%;
      max-width: 360px;
      margin: 0 auto; /* 中央揃え */
      display: block;
    }


    .new-arrival {
      background-color: #EBE5D9; /* 背景のベージュ色 */
      padding: 50px 20px;
      color: #958170; /* 基本の茶色テキスト */
      text-align: center;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }

    .new-arrival__lead {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 20px;
      letter-spacing: 0.1em;
    }

    /* 指示にあった span のスタイリング */
    .new-arrival__lead span {
      display: inline-flex;
      align-items: center;
      margin: 0 5px;
    }

    .new-arrival__lead-logo {
      height: 2.6em; /* 周りのテキストの高さに合わせる */
      width: auto;
    }

    .new-arrival__title {
      margin-bottom: 30px;
    }

    .new-arrival__title-line {
      display: inline-block;
      background-color: #fff;
      padding: 4px 3px;
      font-size: 25px;
      font-weight: bold;
      letter-spacing: 0.05em;
      line-height: 1.2;
      margin-bottom: 13px;
    }

    .new-arrival__items {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      gap: 10px;
    }

    .new-arrival__item {
      width: 48%;
    }

    .new-arrival__item-image {
      width: 100%;
      margin-bottom: 10px;
    }

    .new-arrival__item-name {
      font-size: 12px;
      color: #a4988d;
      letter-spacing: 0.05em;
    }

    .new-arrival__info {
      margin-bottom: 30px;
    }

    .new-arrival__info-name {
      font-size: 19px;
      letter-spacing: 0.2em;
      margin-bottom: 0px;
    }

    .new-arrival__info-price {
      font-size: 26px;
      margin-top: -8px;
      margin-bottom: 7px;
      display: flex;
      align-items: baseline;
      justify-content: center;
    }

    .new-arrival__info-price-tax {
      font-size: 12px;
      margin-left: 5px;
    }

    .new-arrival__info-spec {
      display: inline-block;
      border: 1px solid #A78481;
      border-radius: 20px;
      padding: 1px 8px;
      font-size: 12px;
      color: #a4988d;
    }

    .new-arrival__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #958274;
      color: #fff;
      text-decoration: none;
      padding: 8px 30px;
      border-radius: 30px;
      font-size: 16px;
      letter-spacing: 0.1em;
      width: 80%;
      max-width: 280px;
      margin: 0 auto 40px;
      box-sizing: border-box;
    }

    .new-arrival__btn-icon {
      font-size: 12px;
      margin-right: 10px;
    }

    .new-arrival__colors {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .new-arrival__color {
      background-color: #fff;
      display: flex;
      align-items: stretch; /* 左の背景と右のテキストエリアの高さを揃える */
      position: relative;
    }

    .new-arrival__color-img-wrapper {
      width: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 15px;
      box-sizing: border-box;
    }

    .new-arrival__color-details {
      text-align: left;
      padding: 20px 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .new-arrival__color-name {
      font-size: 18px;
      font-weight: bold;
      color: #E7C4A8;
      margin-bottom: 5px;
      letter-spacing: 0.1em;
    }
    .new-arrival__color:nth-child(2) .new-arrival__color-name {
      color: #E3BFAD;
    }

    .new-arrival__color-desc {
      font-size: 14px;
      color: #897B6C;
      line-height: 1.5;
      letter-spacing: 0.05em;
    }

    .new-arrival__color-badge {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #DDC2B7;
      color: #fff;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      text-align: center;
      line-height: 1.2;
    }

    /* =========================================
       BEM: recommendブロック（おすすめセクション）
       ========================================= */
    .recommend {
      background-color: #e7c1b4;
      padding: 60px 20px 80px;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      font-family: "fot-tsukuardgothic-std", sans-serif;
      position: relative;
      overflow-x: clip;
    }
    .recommend__inner {
      position: relative;
      margin-top: 20px;
    }
    .recommend__tape {
      position: absolute;
      top: -71px;
      left: 50%;
      transform: translateX(-50%) perspective(800px) rotateY(-90deg);
      transform-origin: left center;
      width: 245px;
      z-index: 2;
      opacity: 0;
    }
    .recommend__paper {
      background-color: #fdf9e4;
      padding: 60px 25px 50px;
      transform: rotate(-2deg);
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .recommend__header {
      text-align: center;
      margin-bottom: 25px;
    }
    .recommend__subtitle {
      color: #958375;
      font-size: 16px;
      letter-spacing: 0.05em;
    }
    .recommend__title {
      color: #958375;
      font-size: 28px;
      font-weight: bold;
      margin-top: -12px;
    }
    .recommend__title-inner {
      position: relative;
      display: inline-block;
      padding-bottom: 18px;
    }
    .recommend__title-inner::after {
      content: '';
      position: absolute;
      bottom: -11px;
      left: 50%;
      transform: translateX(-50%) rotate(4deg);
      width: 111%;
      height: 58px;
      background-image: url('./img/underline.png');
      background-size: 100% auto;
      background-position: center bottom;
      background-repeat: no-repeat;
    }
    .recommend__triangle {
      width: 90px;
      height: 40px;
      background-color: #ece6d2;
      clip-path: polygon(50% 80%, 0% 0%, 100% 0%);
      margin: 0 auto 30px;
      filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='r'%3E%3CfeGaussianBlur stdDeviation='4'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0 0 1 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3C/svg%3E#r");
    }
    .recommend__list {
      list-style: none;
      width: 100%;
      margin: 0;
      padding-left: 0;
      border-top: 1px solid #c4b5a9;
    }
    .recommend__item {
      display: flex;
      align-items: flex-start;
      padding: 25px 0;
      border-bottom: 1px solid #c4b5a9;
    }
    .recommend__check {
      display: block;
      width: 22px;
      height: 22px;
      border: 2.5px solid #958375;
      border-radius: 3px;
      position: relative;
      flex-shrink: 0;
      margin-right: 15px;
      margin-top: 2px;
    }
    .recommend__check::after {
      content: '';
      position: absolute;
      top: -5px;
      left: 11px;
      width: 10px;
      height: 17px;
      border-right: 2px solid #958375;
      border-bottom: 2px solid #958375;
      transform: rotate(40deg);
    }
    .recommend__text {
      color: #958375;
      font-size: 17px;
      font-weight: bold;
      line-height: 1.7;
      letter-spacing: 0.05em;
    }
    .recommend__highlight {
      color: #DB9A88;
    }
    /* 右下の商品画像（切り替えアニメーション） */
    .recommend__product-wrapper {
      position: absolute;
      bottom: -80px;
      right: -10px;
      width: 160px;
      z-index: 10;
    }
    .recommend__product-wrapper img {
      width: 100%;
      display: block;
    }
    .recommend__product--open {
      position: absolute;
      top: 0;
      left: 0;
    }
    /* 閉じ: 表示 → 消える → 待機 → 消える → 繰り返し */
    .recommend__product--closed {
      animation: productClosed 4s linear infinite;
    }
    /* 開き: 待機 → 消える → 表示 → 消える → 繰り返し */
    .recommend__product--open {
      animation: productOpen 4s linear infinite;
    }
    @keyframes productClosed {
      0%        { opacity: 1; }
      37.5%     { opacity: 1; }  /* ~1.5s 表示 */
      43.75%    { opacity: 0; }  /* ~0.25s でフェードアウト */
      100%      { opacity: 0; }
    }
    @keyframes productOpen {
      0%        { opacity: 0; }
      50%       { opacity: 0; }
      56.25%    { opacity: 1; }  /* ~0.25s でフェードイン */
      87.5%     { opacity: 1; }  /* ~1.5s 表示 */
      93.75%    { opacity: 0; }  /* ~0.25s でフェードアウト */
      100%      { opacity: 0; }
    }

    /* =========================================
       BEM: pointsブロック（3つのポイント）
       ========================================= */
    .points {
      background-image: url('./img/point_background.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      font-family: "fot-tsukuardgothic-std", sans-serif;
      padding: 80px 20px 60px;
      position: relative;
    }
    /* 丸い人物画像 */
    .points__image-wrapper {
      width: 300px;
      height: 300px;
      margin: 0 auto 30px;
      overflow: hidden;
    }
    .points__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* ヘッダー */
    .points__header {
      text-align: center;
      margin-bottom: 35px;
    }
    .points__subtitle {
        font-size: 17.5px;
        font-weight: normal;
        color: #3a4a5c;
        letter-spacing: 0.1em;
        transform: translateY(10px);
    }
    .points__title {
      font-size: 28px;
      font-weight: bold;
      color: #3a4a5c;
      letter-spacing: 0.1em;
      margin-top: -23px;
      margin-bottom: -30px;
    }
    .points__title-num {
      font-size: 42px;
      font-weight: 900;
    }
    /* ポイントリスト */
    .points__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .points__item {
      display: flex;
      align-items: center;
      padding: 20px 15px;
      border-bottom: 1px solid #c8cdd3;
    }
    .points__item:first-child {
      border-top: 1px solid #c8cdd3;
    }
    /* 番号 */
    .points__number {
      font-size: 35px;
      font-weight: 400;
      color: #3a4a5c;
      margin-right: 8px;
      flex-shrink: 0;
      letter-spacing: 0.05em;
    }
    /* テキスト部分 */
    .points__text-wrapper {
      display: flex;
      flex-direction: column;
    }
    .points__text-sub {
      font-size: 12px;
      color: #3a4a5c;
      letter-spacing: 0.05em;
      margin-bottom: 3px;
    }
    .points__text-main {
      font-size: 20px;
      font-weight: bold;
      color: #3a4a5c;
      letter-spacing: 0.05em;
      display: inline;
      background-image: linear-gradient(transparent 50%, #fff 50%);
      padding-bottom: 2px;
      width: fit-content;
    }

    @media (max-width: 415px) {
      .points__text-main {
        font-size: 19px;
      }
    }
    @media (max-width: 400px) {
      .points__text-main {
        font-size: 17.3px;
      }
      .new-arrival__title-line {
        font-size: 21px;
      }
      .new-arrival__color-name {
        font-size: 14px;
      }
      .new-arrival__color-desc {
        font-size: 12px;
      }
    }

    /* =========================================
       BEM: point-detailブロック（各ポイント詳細）
       ========================================= */
    .point-detail {
      background-color: #EBE5D9;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      font-family: "fot-tsukuardgothic-std", sans-serif;
      padding: 50px 20px 40px;
      overflow-x: clip;
    }
    .point-detail__number {
      font-size: 51px;
      font-weight: 400;
      color: #6D6D6C;
      letter-spacing: 0.05em;
      margin-bottom: 15px;
      text-align: center;
    }
    .point-detail__subtitle {
      font-size: 18px;
      font-weight: 600;
      color: #6D6D6C;
      letter-spacing: 0.05em;
      margin-bottom: 5px;
      text-align: center;
    }
    .point-detail__title {
      font-size: 22px;
      font-weight: bold;
      color: #6D6D6C;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
      display: block;
      text-align: center;
    }
    .point-detail__title--lg {
      font-size: 29px;
      margin-top: -15px;
    }
    /* マーカー線（GSAP用） */
    .point-detail__marker {
      display: inline;
      background-image: linear-gradient(transparent 50%, #fff 50%);
      background-size: 0% 100%;
      background-repeat: no-repeat;
      padding-bottom: 2px;
      letter-spacing: 0;
    }
    .point-detail__marker.is-active {
      background-size: 100% 100%;
      transition: background-size 0.8s ease;
    }
    /* 説明テキスト */
    .point-detail__desc {
      font-size: 13px;
      color: #6D6D6C;
      line-height: 1.8;
      margin-bottom: 20px;
      margin-top: 20px;
      text-align: center;
    }
    /* 注釈テキスト */
    .point-detail__note {
      font-size: 10px;
      color: #C9C1B2;
      line-height: 1.6;
      margin-top: 15px;
    }
    .point-detail__note--right {
      display: flex;
      justify-content: flex-end;
    }
    /* 動画 */
    .point-detail__video-wrapper {
      position: relative;
      width: 100%;
      margin-bottom: 10px;
    }
    .point-detail__video {
      width: 100%;
      display: block;
    }
    .point-detail__video-placeholder {
      display: none;
      width: 100%;
      aspect-ratio: 16 / 9;
      background-color: #d9d0c5;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
    }
    .point-detail__video-placeholder p {
      color: #6D6D6C;
      font-size: 14px;
    }
    /* 動画が読み込めない場合placeholderを表示 */
    .point-detail__video-wrapper.is-error .point-detail__video {
      display: none;
    }
    .point-detail__video-wrapper.is-error .point-detail__video-placeholder {
      display: flex;
    }
    /* ビフォーアフター */
    .point-detail__ba {
      margin-top: 20px;
    }
    .point-detail__ba-labels {
      display: flex;
      justify-content: space-around;
    }
    .point-detail__ba-label {
      color: #ECBDB5;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.1em;
    }
    /* 画像 */
    .point-detail__image {
      width: 100%;
      margin-bottom: 10px;
    }
    /* point_5 + 商品画像の重なりエリア */
    .point-detail__overlap {
      position: relative;
      margin-top: 10px;
    }
    .point-detail__overlap .point-detail__image {
      width: 100%;
      margin-bottom: 0;
    }
    /* 商品画像 フワフワ浮遊（右下に重なる） */
    .point-detail__float-img {
      position: absolute;
      bottom: -70px;
      right: -10px;
      width: 50%;
      animation: floatUpDown 3s ease-in-out infinite;
    }
    @keyframes floatUpDown {
      0%, 100% { transform: translateX(-8px) translateY(0) rotate(10deg); }
      50% { transform: translateX(-8px) translateY(-10px) rotate(10deg); }
    }
    /* =========================================
       HOW TO USE セクション（コンシーラーLP流用）
       ========================================= */
    .htu-section {
      background-color: #E5DFD3;
      text-align: center;
      overflow: hidden;
      padding: 60px 0;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }
    .htu-section__container {
      max-width: 1000px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }
    .htu-section__title {
      color: #8C7D6F;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 29px;
      margin-bottom: 30px;
    }
    .htu-swiper {
      width: 100%;
      padding-bottom: 40px;
      overflow: visible;
    }
    .htu-section__slide {
      display: flex;
      align-items: center;
      justify-content: center;
      height: auto;
      touch-action: pan-y;
    }
    .htu-section__card {
      border: 1px solid #c4b5a9;
      border-radius: 120px 120px 0 0;
      background-color: #f7efea;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      box-sizing: border-box;
      max-width: 83%;
      min-height: 340px;
      padding: 30px 20px;
    }
    .htu-section__number {
      font-size: 32px;
      font-weight: 600;
      color: #948174;
      margin-bottom: 15px;
      display: block;
      letter-spacing: 0.01em;
      line-height: 1;
    }
    .htu-section__image-box {
      margin-bottom: 25px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 75%;
      height: 75%;
    }
    .htu-section__img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .htu-section__desc {
      color: #948174;
      line-height: 1.4;
      text-align: center;
      word-break: break-all;
      margin: 0;
      font-size: 15px;
    }
    .htu-section__arrow {
      display: none;
    }
    .htu-section__note {
      font-size: 12px;
      color: #bfb9a6;
      margin-top: 30px;
      margin-bottom: 25px;
    }
    .htu-swiper .swiper-pagination-bullet {
      background: #dcdcdc;
      opacity: 1;
      width: 8px;
      height: 8px;
    }
    .htu-swiper .swiper-pagination-bullet-active {
      background: #948174;
    }

    /* =========================================
       STAFF REVIEW セクション（コンシーラーLP流用）
       ========================================= */
    .new-staff-section {
      position: relative;
      background-color: #E5DFD3;
      padding: 60px 0 80px;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }
    .new-staff-section__container {
      max-width: 500px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
      text-align: center;
      box-sizing: border-box;
    }
    .new-staff-section__title {
      color: #8C7D6F;
      letter-spacing: 0.1em;
      font-weight: 700;
      font-size: 28px;
      margin-bottom: 20px;
    }
    .new-staff-section__desc {
      color: #8C7D6F;
      line-height: 1.7;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 40px;
    }
    /* Staff List */
    .staff-list {
      display: flex;
      flex-direction: column;
      gap: 60px;
      width: 100%;
    }
    .staff-card {
      width: 100%;
    }
    /* Profile Header */
    .staff-card__header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    .staff-card__icon-wrap {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .staff-card__icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .staff-card__info {
      text-align: left;
    }
    .staff-card__shop {
      font-size: 15px;
      color: #8C7D6F;
      line-height: 1.4;
      margin-bottom: 5px;
    }
    .staff-card__name-row {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      flex-wrap: wrap;
    }
    .staff-card__name {
      font-size: 24px;
      color: #8C7D6F;
      line-height: 1;
      letter-spacing: 0.05em;
    }
    .staff-card__insta {
      background-color: #8C7D6F;
      color: #fff;
      font-size: 13px;
      padding: 3px 10px;
      border-radius: 10px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    /* Bubble (full width, no video) */
    .staff-card__bubble {
      background-color: #fdf5f2;
      border: 1px solid #8C7D6F;
      border-radius: 10px;
      padding: 15px 12px;
      position: relative;
      text-align: left;
      display: flex;
      flex-direction: column;
    }
    .staff-card__bubble--full {
      width: 100%;
      height: auto;
      box-sizing: border-box;
      justify-content: flex-start;
      gap: 10px;
    }
    /* しっぽ（上向き） */
    .staff-card__bubble--full::after {
      content: "";
      position: absolute;
      top: -10px;
      left: 40px;
      bottom: auto;
      transform: none;
      border-style: solid;
      border-width: 0 8px 10px 8px;
      border-color: transparent transparent #8C7D6F transparent;
    }
    .staff-card__bubble-title {
      font-size: 20px;
      color: #8C7D6F;
      line-height: 1.4;
      margin-bottom: 8px;
      font-weight: 700;
    }
    .staff-card__bubble-line {
      width: 60%;
      height: 1px;
      background-color: #8C7D6F;
      margin-bottom: 8px;
      opacity: 0.5;
    }
    .staff-card__bubble-text {
      font-size: 15px;
      color: #8C7D6F;
      line-height: 1.6;
      margin-bottom: 10px;
      flex-grow: 1;
    }
    .staff-card__modal-btn {
      background-color: #f4b982;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 8px 40px;
      font-size: 14px;
      font-weight: 400;
      width: auto;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .staff-card__modal-btn:hover {
      opacity: 0.8;
    }
    .new-staff-section__note {
      font-size: 16px;
      color: #B8B0A5;
      margin-top: 40px;
      line-height: 1.8;
      text-align: center;
    }

    /* =========================================
       モーダル
       ========================================= */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 500px;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.5);
      align-items: center;
      justify-content: center;
      padding: 0;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }
    .modal.is-active {
      display: flex;
    }
    .modal-content {
      background-color: #f3eeea;
      max-width: 500px;
      border-radius: 0;
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: 4px solid #c1b5a9;
      padding: 30px 20px;
      width: 95%;
      max-height: 85vh;
      overflow-y: auto;
    }
    .close-btn {
      position: sticky;
      top: 0;
      float: right;
      font-size: 32px;
      color: #8C7D6F;
      cursor: pointer;
      z-index: 10;
      line-height: 1;
      margin-top: -5px;
      margin-right: -5px;
    }
    .modal-body {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: stretch;
    }
    .modal-left-col {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .modal-profile-area {
      display: flex;
      align-items: center;
      gap: 15px;
      padding-left: 10px;
      margin-bottom: 20px;
    }
    .modal-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
    }
    .modal-profile-text {
      text-align: left;
    }
    .modal-shop-name {
      font-size: 13px;
      color: #8C7D6F;
      line-height: 1.4;
      margin-bottom: 5px;
    }
    .modal-user-name {
      font-size: 28px;
      color: #8C7D6F;
      line-height: 1;
      margin-bottom: 5px;
    }
    .modal-insta-tag {
      display: inline-block;
      background-color: #8C7D6F;
      color: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
    }
    .modal-bubble {
      background-color: #fff;
      border-radius: 15px;
      padding: 30px;
      position: relative;
      flex-grow: 1;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .modal-bubble::after {
      content: "";
      position: absolute;
      top: -15px;
      left: 40px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 15px 15px 15px;
      border-color: transparent transparent #fff transparent;
    }
    .modal-title {
      font-size: 24px;
      color: #8C7D6F;
      margin-bottom: 10px;
    }
    .modal-stars {
      font-size: 18px;
      color: #8C7D6F;
      margin-bottom: 15px;
      letter-spacing: 2px;
    }
    .modal-line {
      width: 100%;
      height: 1px;
      background-color: #ddd;
      margin-bottom: 20px;
    }
    .modal-desc {
      font-size: 15px;
      color: #8C7D6F;
      line-height: 1.8;
    }

    /* =========================================
       STORE セクション（フッター）
       ========================================= */
    .store {
      background-color: #E7C1B4;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      padding: 60px 20px 50px;
      text-align: center;
      font-family: "fot-tsukuardgothic-std", sans-serif;
    }
    .store__title {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.15em;
      margin-bottom: 20px;
    }
    .store__desc {
      font-size: 17px;
      color: #fff;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    /* カード */
    .store__card {
      background-color: #EBE5D9;
      border-radius: 16px;
      padding: 30px 20px;
      margin-bottom: 40px;
    }
    .store__products {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .store__product {
      width: 45%;
      text-align: center;
    }
    .store__product-img {
      width: 100%;
      margin-bottom: 8px;
    }
    .store__product-name {
      font-size: 11px;
      color: #8A7B6E;
      letter-spacing: 0.05em;
    }
    .store__info-name {
      font-size: 22px;
      color: #8A7B6E;
      font-weight: 600;
      margin-bottom: -13px;
    }
    .store__info-price {
      font-size: 26px;
      color: #8A7B6E;
      display: flex;
      align-items: baseline;
      justify-content: center;
    }
    .store__info-price-tax {
      font-size: 12px;
      margin-left: 5px;
    }
    .store__info-spec {
      display: inline-block;
      border: 1px solid #AD8985;
      border-radius: 20px;
      padding: 1px 8px;
      font-size: 12px;
      color: #8A7B6E;
      margin-bottom: 20px;
    }
    .store__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #8A7B6E;
      color: #fff;
      text-decoration: none;
      padding: 8px 30px;
      border-radius: 30px;
      font-size: 15px;
      letter-spacing: 0.1em;
      width: 80%;
      max-width: 280px;
      margin: 0 auto;
      box-sizing: border-box;
    }
    .store__btn-icon {
      font-size: 11px;
      margin-right: 10px;
    }
    /* 3COINSロゴ */
    .store__logo {
      margin-bottom: 20px;
    }
    .store__logo a {
      display: inline-block;
    }
    .store__logo img {
      width: 200px;
      height: auto;
    }
    /* SNSアイコン */
    .store__sns {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
    }
    .store__sns a {
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      transition: opacity 0.3s;
    }
    .store__sns a:hover {
      opacity: 0.7;
    }

    /* =========================================
       追従バナー
       ========================================= */
    .cta-banner {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 500px;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .cta-banner.is-visible {
      opacity: 1;
      visibility: visible;
    }
    .cta-banner img {
      width: 100%;
      display: block;
    }

    /* =========================================
       PC用レイアウト（サイドバー非表示：モバイル）
       ========================================= */
    .pc-sidebar {
      display: none;
    }

    /* =========================================
       PC用レイアウト（min-width: 769px）
       ========================================= */
    @media (min-width: 769px) {
      body {
        background-image: url('./img/PClayout.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-color: #f4f2ed;
      }

      .pc-main {
        position: relative;
        max-width: 500px;
        margin: 0 15% 0 auto;
        min-height: 100vh;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
        overflow-x: hidden;
      }

      /* ロゴ：LP左下外側に固定 */
      .pc-sidebar {
        display: block;
        position: fixed;
        bottom: 40px;
        right: calc(15% + 520px);
        z-index: 100;
      }

      .pc-sidebar__logo {
        width: 200px;
      }

      /* 各セクションのmax-width/margin:auto解除 */
      .mv, .new-arrival, .recommend, .points,
      .point-detail, .htu-section, .new-staff-section, .store {
        max-width: none;
        margin: 0;
      }

      /* 追従バナーをLP位置に合わせる */
      .cta-banner {
        left: auto;
        right: 15%;
        transform: none;
      }

      /* モーダルはビューポート全体 */
      .modal {
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
      }
    }

    /* 小さいPC画面ではロゴ非表示 */
    @media (min-width: 769px) and (max-width: 959px) {
      .pc-sidebar {
        display: none;
      }
    }