@charset "UTF-8";

/* =========================================
   Base Styles
   ========================================= */
:root {
  --bg-color: #B6DEC6;
  /* 全体のミントグリーン */
  --text-main: #111;
  /* 本文 */
  --text-title: #1E2C52;
  /* セクションタイトル等の濃紺 */
  --btn-purple: #4C3D87;
  /* 詳細ボタンの紫 */


  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* ↓これを追加：縮小時の画質を良くする設定 */
  image-rendering: -webkit-optimize-contrast;
  /* Chrome, Safari用 */
  backface-visibility: hidden;
  /* ちらつき防止のおまじない */
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* スマホのみ表示用ユーティリティ */
.sp-only {
  display: block;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* =========================================
   Layout & Modules
   ========================================= */
.contents {
  padding-bottom: 100px;
}

/* MV */
.mv h1 {
  margin: 0;
}

.mv img {
  width: 100%;
}

/* PCのみ: 幅1200pxで中央寄せ */
@media (min-width: 769px) {
  .mv {
    width: 1200px;
    margin: 0 auto;
  }
}

/* Lead */
.lead {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  line-height: 2;
}

@media (min-width: 769px) {
  .lead {
    font-size: 20px;
    padding: 60px 0;
  }
}

/* Navi */
.navi {
  padding: 20px 0 80px;
  text-align: center;
}


@media (min-width: 769px) {
  .navi {
    padding: 20px 0 180px;
    text-align: center;
  }
}

.navi__inner {
  display: flex;
  justify-content: center;
  gap: 5px;
  /* SP gap */
}

.navi__btn {
  background: #000;
  color: #fff;
  border-radius: 50px;
  /* ★修正: 左右55pxの余白をやめて、横幅(46%)で指定する */
  padding: 12px 0 18px 0;
  width: 46%;
  /* 画面の半分弱を使う */
  min-width: auto;
  /* 固定幅リミットを解除 */

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

.navi__text {
  font-weight: 700;
  font-size: calc(24 / 375 * 100vw);
  /* SP font */
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.2;
  margin-top: 2px;
  /* SPは縦並び */
  /* ★修正: 絶対に改行させない */
  white-space: nowrap;
}

.navi__text small {
  /* ★修正: これも伸縮させる (375pxのとき14px) */
  font-size: calc(14 / 375 * 100vw);
  font-weight: 400;
}

@media (min-width: 769px) {
  .navi__inner {
    gap: 15px;
  }

  .navi__btn {
    width: auto;
    padding: 12px 80px;
  }

  .navi__text {
    font-size: 33px;
    flex-direction: row;
    /* PCは横並び */
    gap: 5px;
  }

  .navi__text small {
    font-size: 18px;
  }
}

/* Section Header */
.section {
  margin-bottom: 60px;
}

.section__header {
  text-align: center;
  margin-bottom: 30px;
}

.section__title {
  color: var(--text-title);
  font-family: var(--font-en);
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 49px;
  /* SP指定反映 */
  line-height: 1;
}

.section__sub {
  color: #fff;
  font-size: 22px;
  /* SP指定反映 */
  line-height: 1.5;
  font-weight: 700;
}

@media (min-width: 769px) {
  .section__header {
    margin-bottom: 60px;
  }

  .section__title {
    font-size: 80px;
    margin-bottom: 15px;
  }

  .section__sub {
    font-size: 30px;
    letter-spacing: 0.05em;
  }
}


/* =========================================
   Item Card (PC vs SP)
   ========================================= */
.item {
  /* ★SP: 345px幅固定で中央配置 (ご要望反映) */
  width: calc(100% - 30px);
  /* 常に画面幅から30px引いたサイズ */
  margin: 0 auto 50px;
}

@media (min-width: 769px) {
  .item {
    width: 585px;
    /* PC: 585px固定 */
    max-width: none;
    margin-bottom: 100px;
  }
}


/* Slider */
.splide {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0;
}

.splide__arrow {
  background: #fff !important;
  opacity: 0.5 !important;
}

.splide__arrow svg {
  fill: #333;
}


/* Item Text Info */
.item__body {
  text-align: left;
  color: var(--text-main);
}

.item__name {
  color: var(--text-title);
  font-weight: 800;
  margin: 0 0 5px;
  font-size: 32px;
  /* SP指定反映 */
  line-height: 1.3;
  padding: 0;
}

@media (min-width: 769px) {
  .item__name {
    font-size: 36px;
  }
}

.item__tag {
  display: block;
  font-size: 19px;
  /* SP指定反映 */
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  margin-top: 5px;
}

@media (min-width: 769px) {
  .item__tag {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
  }
}

.item__catch {
  font-weight: 700;
  font-size: 20px;
  /* SP指定反映 */
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .item__catch {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.item__points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 16px;
  /* SP指定反映 */
}

.item__points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* チェックアイコン */
.item__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("/img/feature/m-denim-260114/icon_check.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (min-width: 769px) {
  .item__points {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .item__points li {
    margin-bottom: 30px;
  }
}


/* Actions */
.item__actions {
  display: flex;
  flex-direction: column;
  /* SP縦 */
  align-items: flex-start;
  gap: 35px;
  /* SP指定反映 */
  border-top: none;
  padding-top: 10px;
}

@media (min-width: 769px) {
  .item__actions {
    flex-direction: row;
    /* PC横 */
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
  }
}

/* Colors */
.item__colors {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  /* SP指定反映 */
  color: #666;
  font-family: var(--font-en);
}

.color-circle {
  display: inline-block;
  width: 27px;
  /* SP指定反映 */
  height: 27px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
  .item__colors {
    gap: 8px;
  }

  /* PCも同じサイズ指定でしたので維持 */
  .color-circle {
    width: 27px;
    height: 27px;
  }
}

/* Button */
.btn-detail {
  background-color: var(--btn-purple);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  border-radius: 50px;

  /* SP: 全幅 */
  width: 100%;
  height: 54px;
  font-size: 22px;
}

@media (min-width: 769px) {
  .btn-detail {
    /* PC: 固定幅 (指定反映) */
    width: 250px;
    height: 46px;
    font-size: 15px;
  }
}

.btn-detail:hover {
  background-color: #382c66;
  opacity: 0.9;
}


/* Footer Buttons */
.footer-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px auto;

  /* ① ボタン全体の横幅リミット */
  /* 今は600pxですが、もっと広げたいなら 100% や 800px に */
  max-width: 800px;

  padding: 0 10px;
  flex-direction: column;
}

.btn-outline {
  width: 100%;
  /* 横幅いっぱいに広がる設定 */
  border: 1px solid #111;
  background: #fff;
  border-radius: 50px;

  /* ② ボタンの高さ (SP) */
  /* padding: 15px; を消して、heightを指定すると確実です */
  height: 80px;
  /* ←ここをお好みの高さ（50px〜70pxくらい）に */

  text-align: center;
  font-size: calc(16 / 375 * 100vw);
  font-weight: 700;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .footer-btns {
    margin: 80px auto;
    gap: 30px;
    /* PCでの最大幅を変えたい場合はここに追記 */
    /* max-width: 800px; */
    flex-direction: row;
  }

  .btn-outline {
    font-size: 16px;

    /* ③ ボタンの高さ (PC) */
    height: 80px;
    /* ←ここをお好みの高さに */
    padding: 0 20px;
    width: auto;
    flex: 1;
  }
}

/* To Top */
.totop {
  text-align: center;
  margin-top: 40px;
}

.totop a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.totop .material-symbols-outlined {
  font-size: 18px;
}

/* PC表示時、邪魔している要素も含めて強制的に背景色を変える */
@media (min-width: 769px) {

  html,
  body,
  .contents {
    background-color: #B6DEC6 !important;
    background-image: none !important;
    /* 背景画像が邪魔している場合用 */
  }
}