@charset "utf-8";
.eye-lip-care {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
  .swiper {
    overflow: visible;
  }

  /* スライダーエリア全体（左右の矢印を配置するための基準） */
  .product-slider-area {
    position: relative;
    width: 100%;
    padding: calc(40 / 750 * 100%) calc(50 / 750 * 100%);
    background-color: #fdeef0;
  }

  .swiper-slide {
    height: auto;
  }

  /* カードのデザイン */
  .product-card {
    background: #fff;
    border: 1px solid #bfbfbf; /* 薄いグレーの枠線 */
    text-align: left;
    height: 100%; /* 高さを揃える */
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding-bottom: 20px;
  }

  /* 商品画像エリア */
  .card-img {
    text-align: center;
  }
  .card-img img {
    max-width: 100%;
    height: auto;
  }

  .card-txtbox {
    padding: 0 0.6em;
    flex-grow: 1; /* ボタンを下揃えにするために伸ばす */
    display: flex;
    gap: 14px;
    flex-direction: column;
  }

  .card-txt {
    font-size: clamp(11px, calc(22 / 750 * 100vw), 22px);
    line-height: 1.5;
    font-weight: 500;
    color: #eb6877;
  }

  .card-title {
    font-size: clamp(11px, calc(20 / 750 * 100vw), 20px);
    line-height: 1.5;
    font-weight: 600;
    color: #59493f;
  }

  .card-memo {
    font-size: clamp(11px, calc(16 / 750 * 100vw), 16px);
    line-height: 1.4;
    font-weight: 300;
    color: #59493f;
  }

  /* ボタンのデザイン */
  .card-btn {
    font-size: clamp(11px, calc(22 / 750 * 100vw), 24px);
    display: block;
    width: 84%;
    margin: 0 auto;
    background-color: #eb717c; /* 画像に近いピンク色 */
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    position: relative;
    transition: opacity 0.3s;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
  }
  .card-btn:hover {
    opacity: 0.8;
  }
  /* ボタンの右矢印 */
  .card-btn::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -4px;
  }

  /* --- Swiper ナビゲーション（左右の矢印）のカスタム --- */
  .custom-prev,
  .custom-next {
    width: 50px;
    height: 80px;
    font-size: 0;
  }

  @media screen and (max-width: 767px) {
    .custom-prev,
    .custom-next {
      width: calc(50 / 750 * 100vw);
      height: calc(80 / 750 * 100vw);
      font-size: 0;
    }
  }

  .custom-prev:after,
  .custom-next:after {
    display: none;
  }

  /* 位置調整（スライダーの外側に出す） */
  .custom-prev {
    left: 0px;
    background: url(../../../../images/static/eye-lip-care/2026/arr-prev.png);
    background-size: cover;
  }
  .custom-next {
    right: 0px;
    background: url(../../../../images/static/eye-lip-care/2026/arr-next.png);
    background-size: cover;
  }
}
