/* =========================
   東京2026 メインビジュアル
========================= */
.tokyo2026-mv {
  text-align: center;
  margin: auto;
}

.tokyo2026-mv img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  .tokyo2026-mv img {
    max-width: 100%;
  }
}

/* =========================
   LP 全体共通ラッパー
========================= */
.lp-container {
  width: 100%;
}

/* =========================
   SP：全項目に左右余白
========================= */
@media screen and (max-width: 767px) {
  .lp-container {
    padding: 0 16px;
    box-sizing: border-box;
  }
}

.campaign-title {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0;
    padding: 0;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.campaign-title span{
    color: #FF6A14;
}

.campaign-anchor-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.campaign-anchor-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #FF6A14;
  text-decoration: none;
  border: 1px solid #FF6A14;
  border-radius: 999px;
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
}

.campaign-anchor-btn:hover {
  background-color: #FF6A14;
  color: #fff;
}

/* スマホ専用改行（デフォルト非表示） */
.sp-br { display: none; }

/* PCでは改行を有効 */
.pc-only-br {
  display: inline;
}

/* スマホでは改行を無効 */
@media screen and (max-width: 767px) {
  .pc-only-br {
    display: none;
  }
}


.tokyo-marathon-text {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.tokyo-marathon-text p {
    margin-bottom: 20px;
}

/* 横並びアンカーリンクボタン */
.tokyo-marathon-links {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 15px;
  display: flex;
  gap: 12px;
}

.tm-link-btn {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #111;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}

/* 押せる感 */
.tm-link-btn:hover {
  opacity: 0.85;
}

.tm-link-btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #000;
}

/* スマホでも横並び固定（念のため） */
/* @media (max-width: 768px) {
  .tm-link-btn {
    font-size: 14px;
    padding: 12px 6px;
  }
} */

/* スマホは縦一列 */
@media (max-width: 768px) {
  .tokyo-marathon-links {
    flex-direction: column;
  }

  .tm-link-btn {
    font-size: 14px;
    padding: 12px 6px;
  }
}

.campaign-overview-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 20px;
    color: #222;
}

.campaign-container {
    max-width: 1000px;
    margin: 15px auto;
    padding: 40px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.campaign-section {
    margin-bottom: 30px;
}

.campaign-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    border-left: 6px solid #FF6A14;
    padding-left: 10px;
    color: #222;
    font-weight: bold;
}

.campaign-section p,
.campaign-section ul li {
    margin: 5px 0 10px 0;
    line-height: 1.6;
}

.highlight { color: #FF6A14; font-weight: bold; }
.highlight2 { color: #f00; font-weight: bold; }

.center-img {
  display: block;
  margin: 0 auto;
}

/* 注意事項ボックス */
.notice-accordion {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  padding: 0.5em 1em;
  /* margin-bottom: 1em; */
  font-family: "Yu Gothic","Meiryo",sans-serif;
  color: #222;
}

.notice-accordion summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  font-size: 1em;
  padding: 0.3em 0;
}

.notice-accordion summary::-webkit-details-marker {
  display: none;
}

.notice-accordion summary::after {
  content: "▼";
  float: right;
  font-size: 0.8em;
  color: #555;
}

.notice-accordion[open] summary::after {
  content: "▲";
}

.notice-content {
  margin-top: 0.5em;
  line-height: 1.6;
  color: #333;
}

.notice-content a {
  color: #000;
  text-decoration: underline;
}

.notice-content ul {
  padding-left: 1.2em;
  list-style: disc;
}

/* 動画ラッパー */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* 商品グリッド */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

.product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 10px;
    width: calc(50% - 10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s;
}

.product-item:hover { transform: translateY(-5px); }

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

.product-name {
    font-weight: bold;
    color: #333;
    min-height: 42px;
}

.product-color {
    background: #efefef;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 12px;
}

/* ラベルっぽくしたい場合（任意） */
.product-color span {
    font-weight: bold;
    color: #333;
}

.product-size {
    background: #efefef;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.product-size span {
    font-weight: bold;
    color: #333;
}

/* カラー・サイズ文字サイズ縮小 */
@media (max-width: 768px) {
  .product-color {
    font-size: 12px;
  }
	
  .product-size {
    font-size: 12px;
  }
}

/* カラー・サイズ横並び */
.product-meta {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    flex-wrap: nowrap;
}

.product-meta .product-color,
.product-meta .product-size {
    flex: 1;
    text-align: center;
    margin-top: 12px;
}

.product-price {
    color: #e60000;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
}

.product-buy-btn {
    display: inline-block;
    background-color: #000 !important;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: bold;
    transition: none;
}

.product-buy-btn:hover,
.product-buy-btn:active,
.product-buy-btn:focus {
    background-color: #000 !important;
    color: #fff !important;
}

/* 商品シリーズタイトルと説明 */
.product-series-title {
    font-size: 20px;
    font-weight: bold;
    margin: 80px 0 10px;
    color: #333;
    text-align: center;
}

.product-series-desc {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

/* PCのみタイトル2個を左右に並べる */
@media screen and (min-width: 768px) {
  .product-series-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .product-series-title-row .product-series-title {
    width: 48%;
  }
}

/* スマホ時：タイトル間の余白を狭くする */
@media screen and (max-width: 767px) {
  .product-series-title-row .product-series-title {
    margin: 30px 0 10px;
  }

  /* 2個目だけさらに詰めたい場合 */
  .product-series-title-row .product-series-title + .product-series-title {
    margin-top: 10px;
  }
}


.product-series-desc span {
    font-size: 0.85em;
}

/* 記事 */
.venex-articles {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Yu Gothic", sans-serif;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
}

.venex-title {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

.venex-text {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.venex-link {
  text-align: center;
  margin-bottom: 40px;
}

.venex-link a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #000;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease;
}

.venex-link a:hover {
  background-color: #000;
  color: #fff;
}

.venex-subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  border-left: 4px solid #000;
  padding-left: 8px;
}

.venex-article {
  margin-bottom: 20px;
}

.venex-article-title {
  font-weight: bold;
  margin-bottom: 6px;
  color: #000;
}

.venex-article a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.venex-article a:hover {
  background-color: #000;
  color: #fff;
}

/* コンポジットロゴ専用スタイル */
.composite-logo-wrapper {
    text-align: center;
    margin: 50px 0 200px;
}

.composite-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: inline-block;
    filter: grayscale(100%);
}

.campaign-end {
  text-align: center;
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
	
  border: 1px solid #ddd;
  max-width: 500px;
  margin: 50px auto;
}

.campaign-end__text {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 0;
}

/* ============================
   コンテンツブロック
============================ */
.content-block {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 見出し */
.content-block__title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 30px 0 16px;
  text-align: center;
}

/* 動画 */
.content-block__movie {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
}

/* サムネイル */
.content-block__thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← 縦長画像対応 */
  object-position: center;
  background-color: #000; /* 余白が出たとき用（不要なら消してOK） */
  cursor: pointer;
  z-index: 2;
}

/* 動画本体 */
.content-block__movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* テキスト */
.content-block__text {
  line-height: 1.8;
  color: #555;
}

/* PC */
@media screen and (min-width: 768px) {
  .content-block__movie {
    max-width: 720px;
    margin: 0 auto 20px;
  }
}

/* スマホ調整 */
@media(max-width:768px) {
    .sp-br { display: inline; }

    .product-series-title { font-size: 18px; margin: 60px 0 8px; }
    .product-series-desc { font-size: 14px; margin-bottom: 15px; }

    /* 商品グリッドをスマホで1列に */
    .product-item { width: 100% !important; }
}

@media screen and (max-width: 768px) {
    .campaign-title {
        font-size: 14px;
        line-height: 1.5;
        margin: 15px 10px;
        text-align: center;
    }
	
	.tokyo-marathon-text p {
    font-size: 12px; 
    }
}

@media screen and (max-width: 767px) {
    .campaign-title {
        font-size: 20px;
        line-height: 1.5;
        margin: 15px 10px;
        text-align: center;
    }
	
	.tokyo-marathon-text p {
    font-size: 16px; 
    }
}