@charset "utf-8";

/* LP全体 */
.lp-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  color: #333;
}

/* デフォルトは非表示 */
.sp-br {
  display: none;
}

/* 初期状態（スマホ）では非表示 */
.pc-br {
  display: none;
}

/* PCだけ表示 */
@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}


/* MV */
.lp-mv {
  background: #090D16;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 30px 0;
}

/* 中身を整える箱 */
.lp-mv__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* テキスト */
.lp-mv__text {
  color: #fff;
  font-size: 24px;
  line-height: 1.8;
  margin: 0px auto 50px;
}

/* 上テキスト */
.lp-mv__text--top {
  font-weight: 600;
  margin: 0px auto;
}

/* 真ん中テキスト */
.lp-mv__text--center {
  position: relative;
  font-weight: 600;
  margin: 0 auto;
  display: inline-block;
  padding-bottom: 20px;
}

.lp-mv__text--center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: #F47920;
  transform: translateX(-50%);
}


/* 下テキスト */
.lp-mv__text--bottom {
  font-size: 15px;
}

/* 画像 */
.lp-mv__image img {
  width: 60%;
  height: auto;
  display: block;
  margin: 10px auto 0px;
}

.lp-mv__image2 img {
  width: 35%;
  height: auto;
  display: block;
  margin: 0px auto 10px;
}

/* デフォルト非表示 */
.lp-mv__scroll {
  display: none;
}

/* PCのみ */
@media screen and (min-width: 769px) {

  .lp-mv {
    position: relative;
    padding-bottom: 70px;
  }

  .lp-mv__scroll {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.2em;
    opacity: 0.8;
  }

  /* 文字ふわっと */
  .lp-mv__scroll span {
    display: inline-block;
    animation: scrollText 2s ease-in-out infinite;
  }

  /* 縦線 */
  .lp-mv__scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    background: #fff;
    margin: 10px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollText {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(6px); }
  }

  @keyframes scrollLine {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  }
}


@media screen and (max-width: 768px) {
  .lp-mv__image {
    padding: 0 16px;
  }

  .lp-mv__image img {
    width: 100%;
	margin: 10px auto;
  }
	
  .lp-mv__image2 img {
    width: 60%;
	margin: 0px auto;
}
}

/* =========================
   商品前お知らせ
========================= */

.product-notice {
  padding: 20px;
  text-align: center;
  margin: 10px auto;
}

.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;
  }

}

/* =========================
   アンカーボタンエリア
========================= */

/* ▼ デフォルト（＝スマホ） */
.lp-anchor-area {
  width: 100%;
  background: #090D16;
  padding: 0 0 30px;
}

/* 中身 */
.lp-anchor-buttons {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ボタン */
.lp-anchor-button {
  flex: 1;
  max-width: 350px;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #c4b899;
  background: #fff;
  color: #333;
  transition: all 0.2s ease;
}

/* hover */
.lp-anchor-button:hover {
  background: #c4b899;
  color: #fff;
}

/* ▼ PCだけぶち抜く */
@media (min-width: 769px) {
  .lp-anchor-area {
    position: relative;
    left: 50%;
    margin-left: calc(-50vw);
    width: 100vw;
  }
}

@media (max-width: 768px) {
	
  .lp-anchor-area {
    background: none;
    padding: 10px 0 15px;
  }

  .lp-anchor-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .lp-anchor-button {
    width: 100%;
    max-width: 100%;
  }
}

/* 見出し */
.lp-heading {
  text-align: center;
  margin: 80px 0 50px;
}

.lp-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* 下線風アクセント */
.lp-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #c5b99a, #a98c6f);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* キャンペーン概要全体 */
.lp-campaign-detail {
  background-color: #ffffff;
  padding: 45px 30px;
  border-radius: 16px;
  max-width: 820px;
  margin: 60px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  line-height: 1.8;
  transition: transform 0.3s ease;
}


/* 見出し */
.campaign-title {
  font-size: 20px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 30px;
  padding-left: 14px;
  position: relative;
}

/* 左側にアクセントライン */
.campaign-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, #ff7a00, #ffaa50);
  border-radius: 2px;
}


/* セクション間の余白を均等に */
.campaign-section {
  margin-bottom: 30px;
}
.campaign-section:last-child {
  margin-bottom: 0;
}

/* セクションラベル */
.campaign-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

/* 通常テキスト */
.campaign-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* 小さめ文字 */
.campaign-methods span {
  font-size: 0.85em;
  color: #ff0000;
  font-weight: 500;
}

/* 賞品リスト */
.campaign-prizes {
  list-style: none;
  margin: 0;
  padding: 24px;
  border: 1px solid #f0e3d8;
  border-radius: 10px;
}

.campaign-prizes li {
  padding: 14px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* 最初以外に薄いボーダー */
.campaign-prizes li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}



/* 応募方法 */
.campaign-methods {
  margin: 0;
  padding: 18px 22px;
  background-color: #f6f6f6;
  border-radius: 8px;
}

.campaign-methods li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.campaign-methods li:last-child {
  margin-bottom: 0;
}


/* li内リンク */
.campaign-prizes li a,
.campaign-methods li a {
  color: #ff7a00;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.campaign-prizes li a:hover,
.campaign-methods li a:hover {
  opacity: 0.7;
}

/* SP */
@media screen and (max-width: 768px) {
  .lp-campaign-detail {
    padding: 30px 18px;
    margin: 40px 15px;
  }
  .campaign-title {
    font-size: 16px;
  }
  .campaign-label,
  .campaign-text,
  .campaign-prizes li,
  .campaign-methods li {
    font-size: 13px;
  }
	
.lp-mv__text--top {
  font-size: 15px;
}

.lp-mv__text--bottom {
  font-size: 14px;
 }		
}

/* =========================
   タブ全体
========================= */
.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;
}

/* =========================
   タブなし商品セクション
========================= */

.product-simple__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.product-simple__item {
  flex: 0 0 420px;
}

/* =========================
   SP対応（1列）
========================= */
@media screen and (max-width: 768px) {

  .product-simple__list {
    flex-direction: column;
    align-items: stretch; /* ← centerじゃなくてstretch */
    gap: 20px;
  }

  .product-simple__item {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}


/* =========================
   動画セクション
========================= */

.lp-video {
  background: #090D16; /* 好きな色に */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 0;
}

/* 中身 */
.lp-video__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #fff;
}

/* 見出し */
.lp-video__heading {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* 動画レスポンシブ対応 */
.lp-video__movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  margin-bottom: 30px;
}

.lp-video__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 下テキスト */
.lp-video__caption {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
}


/* 注意事項 */
  .notice-box {
    border: 1px solid #000;
    padding: 20px 30px;
    width: fit-content;
    max-width: 100%;
    margin: 50px auto 80px;
  }
  .notice-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
  }
  .notice-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.5em;
    margin: 0;
  }
  .notice-list li {
    margin: 6px 0;
    line-height: 1.6;
  }

/* =========================
   LP最下部 CTA
========================= */

.lp-cta {
  background: #EA5514;
  color: #fff;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 80px 0;
}

.lp-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 見出し */
.lp-cta__heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* テキスト */
.lp-cta__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ボタンエリア */
.lp-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ボタン共通 */
.lp-cta__btn {
  display: inline-block;
  padding: 16px 32px;
  background: #fff;
  color: #EA5514 !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.3s;
}

/* 2つ目ボタン（白枠タイプ） */
.lp-cta__btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}

/* ホバー */
.lp-cta__btn:hover {
  opacity: 0.85;
}

/* =========================
   キャッチコピーセクション
========================= */

.catch-section {
  background: #ffffff;
  padding: 100px 20px 80px;
  text-align: center;
}

.catch-inner {
  max-width: 900px;
  margin: 0 auto;
}

.catch-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {

  .catch-section {
   padding: 0 15px 60px;
  }

  .catch-title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}


/* =========================
   全体
========================= */

.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.feature-subtitle {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #F47920;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/* =========================
   レイアウト
========================= */

.feature-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* =========================
   左カラム
========================= */

.feature-left {
  flex: 3;
  display: flex;
  flex-direction: column;
}

/* =========================
   メインボックス
========================= */

.feature-main-box {
  background: #090D16;
  padding: 30px;
  border-radius: 10px;
}

.feature-box-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.feature-box-text {
  font-size: 1.6rem;
  margin-bottom: 0;
  line-height: 1.8;
  color: #cccccc;
}

/* =========================
   下の3カード
========================= */

.feature-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.feature-item-text h4 {
  margin: 0 0 5px;
  font-size: 1.4rem;
}

.feature-item-text p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* =========================
   右側ボックス
========================= */

.feature-side-box {
  flex: 7;
}

.feature-long-text {
  line-height: 1.9;
  margin-bottom: 20px;
}

.feature-hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.feature-note {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.6;
}

/* =========================
   SP対応
========================= */

@media (max-width: 768px) {
  .feature-layout {
    flex-direction: column;
  }

  .feature-side-box {
    width: 100%;
  }
}

/* =========================
   全体
========================= */

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* =========================
   レイアウト
========================= */

.about-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* =========================
   左：画像
========================= */

.about-image {
  flex: 5;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* =========================
   右：テキスト
========================= */

.about-content {
  flex: 5;
}

.about-subtitle {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #F47920;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1.5rem;
  line-height: 1.9;
}

/* =========================
   SP対応
========================= */

@media (max-width: 768px) {

  .about-layout {
    flex-direction: column;
    gap: 40px;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

}


/* SP */

@media screen and (max-width: 768px) {

  .lp-cta {
    padding: 60px 0;
  }

  .lp-cta__heading {
    font-size: 22px;
  }

  .lp-cta__text {
    font-size: 14px;
  }

  .lp-cta__buttons {
    flex-direction: column;
    gap: 16px;
  }

  .lp-cta__btn {
    width: 100%;
  }
}


/* スマホのみ */
@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;
  }
}

/* =========================
   レスポンシブ（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;
  }
 }

/* SP対応 */
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }

  .lp-title {
    font-size: 20px;
  }
  .lp-campaign-title {
    font-size: 18px;
  }
  .lp-products__grid {
    flex-direction: column;
  }
  .product-card {
    width: 100%;
  }
	
  .lp-small-text span {
    font-size: 0.8em;
  }
	
  .lp-campaign-detail {
    padding: 20px 15px;
  }
  .campaign-title {
    font-size: 20px;
  }
  .campaign-label {
    font-size: 15px;
  }
  .campaign-text,
  .campaign-prizes li,
  .campaign-methods li {
    font-size: 14px;
  }
	
  .lp-video {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 70px 0;
  }

  .lp-video__inner {
    padding: 0 20px;
  }

  .lp-video__heading {
    margin-bottom: 30px;
  }

  .lp-video__caption {
    margin-top: 10px;
  }

@media screen and (max-width: 768px) {
  .lp-video {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
	
  .notice-box {
    max-width: 90%;
    padding: 16px;
    margin: 40px auto 90px;
    box-sizing: border-box;
  }
  .notice-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .notice-list {
    margin: 0;
    padding-left: 1.2em;
    list-style-position: outside;
  }
  .notice-list li {
    font-size: 14px;
    line-height: 1.7;
    margin: 8px 0;
  }
	
html, body {
  overflow-x: hidden;
}
}	