/* =================================================
  Base（LP内スコープ）
================================================= */

/* SP時のパンくず上余白（ヘッダー被り回避） */
@media (max-width: 735px) {
  .st-bread {
    padding-top: 69px;
  }
}
@media (min-width: 736px) {
  .cart-renewal{
    max-width: 980px;
    margin: auto;
  }
  .st-bread {
    padding-bottom: 40px;
  }
  .cart-renewal .lp-img picture,
  .cart-renewal .lp-img img {
    width: auto;
  }
}
.cart-renewal .lp-img picture,
.cart-renewal .lp-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* wrap（LP用） */
.cart-renewal .wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}
/* =================================================
  ページ内アンカー
================================================= */

.cart-renewal .anchor-menu {
  width: min(900px, calc(100% - 32px));
  margin: 24px auto 50px;
  display: grid;
  gap: 12px;
}

.cart-renewal .anchor-item {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  background: #e8f3dd; /* 薄い緑 */
  text-decoration: none;
  height: 44px;
}

.cart-renewal .anchor-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #1f7a3a;
  text-align: center;
}

.cart-renewal .anchor-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #222;
}

/* 矢印（画像） */
.cart-renewal .anchor-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-renewal .anchor-arrow img {
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 50%;
}

/* hover（PCのみ） */
@media (hover: hover) {
  .cart-renewal .anchor-item:hover {
    filter: brightness(0.98);
  }
}

/* SP微調整 */
@media (max-width: 735px) {
  .cart-renewal .anchor-text {
    font-size: 15px;
  }
}

@media (min-width: 736px) {
  .cart-renewal .anchor-menu{
    width: 500px;
  }
}

/* =================================================
  スライダー見出し（スライダー上）
================================================= */

.cart-renewal .slider-heading {
  margin-top: 28px;     /* 上の余白は必要に応じて調整 */
  margin-bottom: 12px;  /* スライダーとの距離 */
  text-align: center;
}

.cart-renewal .slider-heading__ttl {
  margin: 0;
  font-weight: 800;
  color: #222;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-size: 20px;      /* SP基準 */
}

/* オレンジ装飾 */
.cart-renewal .slider-heading__lead {
  margin: 10px 0 0;
  font-weight: 800;
  color: #f07a00;       /* オレンジ（必要なら調整） */
  line-height: 1.2;
  font-size: 16px;
}

.cart-renewal .slider-heading__leadInner {
  position: relative;
  display: inline-block;
  padding: 0 12px;
}

/* ＼ ／ を擬似要素で付与 */
.cart-renewal .slider-heading__leadInner::before,
.cart-renewal .slider-heading__leadInner::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f07a00;
  font-weight: 900;
  line-height: 1;
}

.cart-renewal .slider-heading__leadInner::before {
  content: "＼";
  left: -10px;
}

.cart-renewal .slider-heading__leadInner::after {
  content: "／";
  right: -10px;
}

/* PC */
@media (min-width: 736px) {
  .cart-renewal .slider-heading {
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .cart-renewal .slider-heading__ttl {
    font-size: 26px;
  }

  .cart-renewal .slider-heading__lead {
    font-size: 18px;
  }
}

/* =================================================
  Slider
================================================= */

.cart-renewal .slider-block {
  padding: 0 0 40px;
  width: 100%;
}

/* 表示窓 */
.cart-renewal .slider {
  position: relative;       /* ナビ配置の基準 */
  overflow: hidden;
  /* overflow: visible; */
  border-radius: 12px;
  max-width: 980px;         /* 必要なら 1040px に */
  margin: 0 auto;
  background: #fff;
}

/* 横に流れるレール */
.cart-renewal .js-slider {
  display: flex;
  transition: transform 300ms ease;
  will-change: transform;
}

/* 常に1枚表示 */
.cart-renewal .slide {
  min-width: 80%;
  padding: 2%;
}

.cart-renewal .slide picture,
.cart-renewal .slide img {
  width: 100%;
  display: block;
}

/* 画像の選択/ドラッグのストレス軽減（任意だがおすすめ） */
.cart-renewal .slider,
.cart-renewal .slide img {
  -webkit-user-select: none;
  user-select: none;
}

@media (min-width: 736px) {
  .cart-renewal .slider-block {
    padding: 0 0 64px;
    width: 980px;
  }
  .cart-renewal .slide {
    min-width: 80%;
    padding: 0.5%;
  }
  .cart-renewal .slide img {
  -webkit-user-drag: none;
}
}

/* =================================================
  Slider Navigation（左右・縦中央）
================================================= */

/* slider全体に被せる */
.cart-renewal .slider-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;     /* ボタン以外はクリック無効 */
}

.cart-renewal .nav-btn {
  position: absolute;
  top: 50%;                 /* ★ 54%ではなく50% */
  transform: translateY(-50%);
  pointer-events: auto;
  z-index: 2;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  color: #fff;

  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-renewal .nav-btn::before {
  content: "‹";
  display: block;
  font-size: 40px;
  line-height: 1;
  color: #fff;

  transform: translateY(-3px);
}
/* 右矢印だけ差し替え */
.cart-renewal .js-next::before {
  content: "›";
}

.cart-renewal .nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* 左右位置（SP） */
.cart-renewal .js-prev {
  left: 8px;
}

.cart-renewal .js-next {
  right: 8px;
}

@media (min-width: 736px) {
  .cart-renewal .js-prev {
    left: 66px;
  }
  .cart-renewal .js-next {
    right: 66px;
  }
}

/* =================================================
  Slider Dots
================================================= */

.cart-renewal .dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.cart-renewal .dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 3px solid #707070;
  cursor: pointer;
  opacity: 1;
  /* background: #333; */
}


.cart-renewal .dots button.is-active {
  opacity: 1;
  background: #1f7a3a;
  border: none;
}

/* =========================
  Notice box（SP / PC）
========================= */

.cart-renewal .notice-box {
  width: min(900px, calc(100% - 80px));
  margin: 18px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;

  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* アイコン（画像） */
.cart-renewal .notice-box__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.cart-renewal .notice-box__icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.cart-renewal .notice-box__text {
  margin: 0;
  color: #BF2626;
  font-size: 14px;
  /* line-height: 1.7; */
  letter-spacing: 0.01em;
}

.cart-renewal .notice-box__sub {
  display: inline-block;
  margin-top: 6px;
}

.cart-renewal .notice-box__text a {
  color: #BF2626;
  text-decoration: underline;
}

/* =========================
  PC
========================= */
@media (min-width: 736px) {
  .cart-renewal .notice-box {
    /* padding: 18px 22px; */
    /* justify-content: center; */
    /* text-align: justify; */
    width: 500px;
    box-sizing: border-box;
    padding: 22px;
    gap: 12px;
  }

  .cart-renewal .notice-box__icon {
    margin-top: 0;
    width: 24px;
    height: 24px;
  }

  .cart-renewal .notice-box__text {
    font-size: 14.5px;
    letter-spacing: 0.1rem;
    /* max-width: 760px; */
  }
}


/* =================================================
  FAQ（details / summary）
================================================= */

.cart-renewal .faq-block {
  padding: 36px 0 60px;
}

.cart-renewal .faq-ttl {
  font-size: 24px;
  line-height: 1.5;
  margin: 16px 8px;
  text-align: center;
  font-weight: 600;
}

/* 1項目＝カード */
.cart-renewal .faq-item {
  /* border: 1px solid #dcdcdc; */
  border-radius: 12px;
  background: #F8F6EC;
  padding: 0;              /* summaryで余白を持つ */
  margin-top: 12px;
  overflow: hidden;        /* 角丸を綺麗に */
}

/* summary行 */
.cart-renewal .faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 16px 56px 16px 16px; /* 右にアイコン分の余白 */
  font-weight: 600;
  line-height: 1.5;
  font-size: 14px;
}

/* 標準のマーカー非表示 */
.cart-renewal .faq-item summary::-webkit-details-marker {
  display: none;
}

/* 右端の丸アイコン（画像版） */
.cart-renewal .faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);

  width: 24px;
  height: 24px;

  background-image: url("../img/common/open-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 開いたら画像に切り替え */
.cart-renewal .faq-item[open] summary::after {
  background-image: url("../img/common/close-btn.svg");
}


/* 回答 */
.cart-renewal .faq-a {
  padding: 0 33px 16px 16px;
  margin-top: 0;
  line-height: 1.7;
  color: #333;
  font-weight: 400;
  font-size: 14px;
}

@media (min-width: 736px) {
  .cart-renewal .faq-block{
    width: 500px;
  }
}


  .cart-renewal .inq-block{
    padding: 0 0 50px 0;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
  }
@media (min-width: 736px) {
  .cart-renewal .inq-block{
    text-align: center;
  }
}


/* =================================================
  PC調整
================================================= */

@media (min-width: 736px) {
  .cart-renewal .faq-ttl {
    font-size: 24px;
  }
}
