/* ----------------------------------
   キャンペーンページ PC表示スタイル
---------------------------------- */

body {
    font-family: "Yu Gothic","Meiryo","Helvetica Neue",Arial,sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.p-lp-tokyo2025__mv {
  position: relative;
  background-image: url(../img/tokyo2025.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 3.1/1;
  margin: 40px 0;
}

@media screen and (max-width: 767px) {
  .p-lp-tokyo2025__mv {
    width: 100%;                     /* 横幅いっぱい */
    height: auto;                    /* 高さを自動 */
    aspect-ratio: 1194 / 1190;       /* 画像比率を指定 */
    background-image: url(../img/tokyo2025_sp.jpg);
    background-size: contain;        /* 画像全体を表示 */
    background-position: center top; /* 上端から表示 */
    background-repeat: no-repeat;
  }
}

.campaign-title {
    font-size: 32px;          /* 少し大きめにしてインパクト */
    font-weight: 700;         /* 太字 */
    color: #FF6A14;
    margin: 30px 0;           /* 上下余白を広めに */
    padding: 0;               /* paddingは削除してすっきり */
    text-align: center;
    line-height: 1.4;         /* 行間を詰めすぎず、でもまとまり感 */
    letter-spacing: 0.5px;    /* 少し文字間を広げると読みやすい */
}


/* スマホ専用改行（デフォルト非表示） */
.sp-br { display: none; }

.tokyo-marathon-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.tokyo-marathon-text p {
    margin-bottom: 20px;
}

.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 {
  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;
    margin-bottom: 5px;
    color: #333;
    min-height: 42px;
}

.product-price {
    color: #e60000;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.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: 30px 0 10px;
    color: #444;
    text-align: center;
}

.product-series-desc {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

/* 記事 */
.venex-articles {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Yu Gothic", sans-serif;
  color: #222;
  line-height: 1.8;
  font-size: 14px;
}

.venex-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;  /* ← 上の余白を追加 */
  margin-bottom: 15px;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 8px;
}

.venex-text {
  text-align: center;
  margin-bottom: 25px;
  color: #444;
}

.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 30px;      /* 上下マージン調整 */
}

.composite-logo {
    max-width: 200px;         /* ロゴサイズ調整 */
    width: 100%;              /* 画面幅に応じて縮小 */
    height: auto;
    display: inline-block;
    filter: grayscale(100%);  /* モノトーン化 */
}

/* スマホ調整 */
@media(max-width:768px) {
    /* スマホ表示で改行を有効化 */
    .sp-br { display: inline; }

    .product-series-title { font-size: 18px; margin: 20px 0 8px; }
    .product-series-desc { font-size: 15px; margin-bottom: 15px; }

    /* 商品グリッドをスマホで1列に */
    .product-item { width: 100% !important; }


@media screen and (max-width: 767px) {
    .campaign-title {
        font-size: 18px;       /* PCより少し小さく */
        line-height: 1.5;      /* 行間も少し詰める */
        margin: 15px 10px;     /* 左右に少し余白 */
        text-align: center;
    }

}