@charset "utf-8";

/* ======================================
   MV セクション
====================================== */
.mv {
  width: 100%;
  overflow: hidden;
  background-color: #ff5500;
  text-align: center;
}

.mv picture img {
  width: 100%;
  /* max-width: 1200px; */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ======================================
   画像ボタン（シリーズ）
====================================== */
.img-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
  background: #EFE4CF;
  margin: 0 auto;
}

/* ▼ ボタン基本デザイン ▼ */
.img-row a {
  flex: 1;
  max-width: 320px;
  padding: 14px 0;
  border-radius: 8px;
  background: #B79A63;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: 0.2s ease;
  box-sizing: border-box;
}

/* ホバー */
.img-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
  background: #B79A63;
}

/* =========================
   SP：縦並び＋左右に余白
========================= */
@media screen and (max-width: 768px) {
  .img-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
  }

  .img-row a {
    width: calc(100% - 32px);
    max-width: 420px;
    font-size: 14px;
    padding: 12px 0;
  }
}


/* デフォルト（SP含む）では改行させない */
.pc-br {
  display: none;
}

/* PCだけ改行を有効にする */
@media screen and (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}

/* ======================================
   h1 見出し
====================================== */
.main-title {
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
               "MS 明朝", "MS Mincho", serif;
  background-color: #EFE4CF;
  color: #333333;
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.15em;
  padding: 18px 0;
  margin: 0;
}

/* ======================================
   h1 テキストセクション
====================================== */
.h1-text-section-wrapper {
  background-color: #EFE4CF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 25px;
}

.h1-text-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
}

.h1-text {
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
               "MS 明朝", "MS Mincho", serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  line-height: 2;
  color: #333333;
  text-align: center;
  margin: 0;
}

/* ============================
   LP専用 モノトーン見出し
   class衝突回避版
============================ */

.mono-hero-heading {
  width: 100%;
  text-align: center;
  margin: 80px auto 60px;
  padding: 0 20px;
  box-sizing: border-box;
}

.mono-hero-heading__title {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.04em;
}

.mono-hero-heading__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #777;
  margin-bottom: 14px;
  position: relative;
}

/* 下線 */
.mono-hero-heading__label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #bbb;
  margin: 10px auto 0;
}

/* SPでも見た目固定（余白のみ） */
@media (max-width: 768px) {
  .mono-hero-heading {
    margin: 60px auto 50px;
  }
}

/* =========================
   タブ全体
========================= */
.product-tabs {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 16px;
}

/* radio非表示 */
.product-tabs input[type="radio"] {
  display: none;
}

/* =========================
   タブナビ
========================= */
.product-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.product-tabs__nav label {
  padding: 10px 24px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #C4B899;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  color: #555;
  transition: all 0.2s ease;
}

/* アクティブタブ */
#tab-ladies:checked ~ .product-tabs__nav label[for="tab-ladies"],
#tab-mens:checked ~ .product-tabs__nav label[for="tab-mens"] {
  background: #C4B899;
  color: #fff;
  border-color: #C4B899;
}

/* =========================
   コンテンツ切り替え
========================= */
.product-tabs__content {
  display: none;
}

#tab-ladies:checked ~ .ladies,
#tab-mens:checked ~ .mens {
  display: block;
}

/* =========================
   商品リスト（PC：3列）
========================= */
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ★ PCは3列 */
  gap: 24px;
}

/* =========================
   商品カード
========================= */
.product-card {
  list-style: none;
}

.product-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card__link:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* 画像 */
.product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .product-card__image img {
    width: 92%;
    height: 92%;
    margin: 4%;
  }
}

/* 本文 */
.product-card__body {
  padding: 14px;
  text-align: center;
}

/* タグ全体 */
.product-card__tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 6px;
  margin-bottom: 6px;
  min-height: 44px;
}

/* 個別タグ */
.product-tag {
  background: #333;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 2px;
  white-space: nowrap;
}

/* メンズ */
.product-tag--mens {
  background: #1E3A5F;
  color: #fff;
}

/* レディース */
.product-tag--ladies {
  background: #C38EB4;
  color: #fff;
}

.product-card__name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin: 15px 0;
  min-height: 22px;
}

/* カラー・サイズ枠 */
.product-card__meta {
  background: #f2f2f2;
  padding: 8px 10px;
  margin-bottom: 10px;
}

/* カラー・サイズ（縦並び） */
.product-card__meta p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* 注意書き（span部分） */
.product-card__note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #888;
}

/* 価格（赤・太字・大きめ） */
.product-card__price {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

/* CTA */
.product-card__cta {
  display: inline-block;
  padding: 8px 20px;
  font-size: 15px;
  border: 3px solid #C4B899;
  border-radius: 30px;
  transition: background 0.2s ease, color 0.2s ease;
  min-width: 160px;
  text-align: center;
}

.product-card__link:hover .product-card__cta {
  background: #C4B899;
  color: #fff;
}

/* 画像エリア */
.product-card__image {
  position: relative;
}

/* 共通ラベル */
.product-card__label {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 4px;
  background: #333;
  color: #fff;
  z-index: 2;
}

/* スマホのみ */
@media screen and (max-width: 768px) {

  .product-card__image {
    padding: 16px;
    box-sizing: border-box;
  }

  .product-card__image img {
    width: 100%;
    height: auto;
    display: block;
  }

}


/* =========================
   商品前お知らせ
========================= */

.product-notice {
  padding: 20px;
  text-align: center;
}

.product-notice__text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F47920;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {

  .product-notice {
    padding: 18px 20px;
  }

  .product-notice__text {
    font-size: 1.4rem;
  }

}



/* =========================
   レスポンシブ（SP）
========================= */
@media screen and (max-width: 768px) {
  .product-list {
    grid-template-columns: 1fr; /* ← 1列に変更 */
    gap: 16px;
  }

  .product-tabs__nav {
    flex-wrap: wrap;
  }

  .product-card__name {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 15px;
  }

  .product-card__cta {
    min-width: auto;
    padding: 8px 16px;
  }
}

/* ======================================
   プロモーションバナー
====================================== */

.promo-banner {
  padding: 60px 20px;
}

.promo-banner__inner {
  max-width: 900px;
  margin: 0 auto;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover */
.promo-banner a:hover img {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.promo-banner__period {
  margin:  0px auto 10px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  letter-spacing: 0.05em;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .promo-banner__period {
    margin: 0 auto 6px;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }
}

/* ======================================
   注意事項
====================================== */
.notice-box {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border: 1px solid #E0DAD3;
}

.notice-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 18px;
  color: #3C3F42;
  text-align: center;
}

.notice-list {
  padding-left: 18px;
}

.notice-list li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ============================
   LP最下部バナー
============================ */
.lp-bottom-banner {
  width: 100%;
  padding: 40px 20px 100px;
  box-sizing: border-box;
}

/* タイトル */
.lp-bottom-banner__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

/* ============================
   PCのみ：バナーだけ横並び（中央寄せ）
============================ */
@media screen and (min-width: 768px) {
  .lp-bottom-banner {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 24px;
    row-gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* タイトルは単独・全幅 */
  .lp-bottom-banner__title {
    grid-column: 1 / -1;
    text-align: center;
  }

  /* <br> はPCでは不要 */
  .lp-bottom-banner br {
    display: none;
  }
}

.banner-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-sub {
  font-size: 16px;
}

.lp-bottom-banner__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #C5B99A;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  position: relative;
}

.lp-bottom-banner__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #B79A63;
  margin: 12px auto 0;
}

@media (max-width: 768px) {
  .lp-bottom-banner__title {
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
  }

  .lp-bottom-banner__title::after {
    width: 40px;
    margin-top: 8px;
  }
}

/* ============================
   スマホ対応
============================ */
@media (max-width: 768px) {
  .lp-bottom-banner {
    padding: 24px 20px 30px;
    margin-bottom: 90px;
  }

  .banner-title {
    font-size: 18px;
  }

  .banner-sub {
    font-size: 14px;
  }
}


/* ======================================
   SP（768px以下）
====================================== */
@media screen and (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
    line-height: 1.6;
    padding: 16px 10px;
  }

  .h1-text {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .item-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .item-block__title {
    font-size: 1.8rem;
  }

  .item-block__size {
    font-size: 1.6rem;
  }

  .item-block__items {
    font-size: 1.3rem;
  }

  .item-block__price {
    font-size: 1.8rem;
  }

  .item-block__buy-btn {
    max-width: 260px;
    font-size: 1.8rem;
  }

  .img-row {
    padding: 28px 0;
  }

  .img-row img {
    width: calc(50% - 4px);
    max-width: 50%;
  }

  .notice-box {
    width: calc(100% - 40px);
    margin: 40px auto;
    padding: 20px;
  }
}

/* ======================================
   SP（480px以下）
====================================== */
@media screen and (max-width: 480px) {
  .product-wrap {
    width: 95%;
    padding: 20px;
    margin-top: 20px;
  }

  .product-list li {
    font-size: 15px;
  }

  .item-block__title {
    font-size: 1.8rem;
  }

  .item-block__size {
    font-size: 1.6rem;
  }

  .item-block__items {
    font-size: 1.3rem;
  }

  .item-block__price {
    font-size: 1.8rem;
  }

  .item-block__buy-btn {
    font-size: 1.5rem;
  }
}

/* スマホだけ改行するbr */
.sp-br {
  display: none;
  /* PCでは非表示 */
}

@media (max-width: 768px) {
  .sp-br {
    display: block;
    /* SPでは改行として表示 */
  }
}