/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NIKEパーク VII / VIII 比較ページ専用CSS
   すべてのスタイルは .park-lp 配下にスコープされています
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.entry-header {
  display: none;
}

/* ━━ 変数 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp {
  --pk-green:        #3DC47E;
  --pk-green-dark:  #2aa368;
  --pk-green-light: #EBF9F2;
  --pk-text:        #333333;
  --pk-text-sub:    #555558;
  --pk-text-muted:  #888888;
  --pk-bg-white:    #FFFFFF;
  --pk-bg-green:    #EBF9F2;
  --pk-red:         #e53935;
}

/* ━━ リセット ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp * {
  box-sizing: border-box;
}

.park-lp h1,
.park-lp h2,
.park-lp h3,
.park-lp h4,
.park-lp h5,
.park-lp p,
.park-lp ul,
.park-lp li {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--pk-text);
}

.park-lp a {
  text-decoration: none;
  color: inherit;
}

.park-lp img {
  display: block;
  height: auto;
}

/* ━━ 共通レイアウト ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-inner {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.park-lp .pk-sec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--pk-bg-white);
}

.park-lp .pk-sec--green {
  background: var(--pk-bg-green);
}

/* ━━ セクション見出し ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-sec-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  width: 100%;
  background-color: var(--pk-green);
  padding: 11px 18px 11px 22px;
  margin-bottom: 28px;
  border-radius: 4px;
  border-left: 6px solid rgba(255, 255, 255, 0.55);
  border-top: none;
  border-right: none;
  border-bottom: none;
  box-shadow: none;
  letter-spacing: 0.02em;
}

/* ━━ ヒーロー（トップ画像＋ナビ） ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-hero {
  background-color: var(--pk-green);
  padding: 36px 20px 24px;
  text-align: center;
}

.park-lp .pk-hero__img {
  width: 100%;
  max-width: 952px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  line-height: 0;
}

/* ━━ ナビチップ（ヒーロー内） ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 680px;
}

.park-lp .pk-nav__item {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 6等分で横幅を統一 */
  flex: 1 1 calc(16.666% - 8px);
  max-width: calc(16.666% - 8px);
}

.park-lp .pk-nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 8px;
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
  transition: background-color 0.18s, border-color 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.park-lp .pk-nav__item a:hover {
  background-color: rgba(255, 255, 255, 0.45);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.park-lp strong {
  font-weight: 700;
  color: var(--pk-text);
}

/* ━━ テキストボックス（白背景セクション用：薄緑ボックス） ━━━━━━━━━━━ */
.park-lp .pk-textbox {
  background-color: var(--pk-bg-green);
  border: 1.5px solid #A8DEC0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 0;
  margin-bottom: 0;
}

/* ━━ テキストボックス（薄緑背景セクション用：白ボックス） ━━━━━━━━━━━ */
.park-lp .pk-textbox--white {
  background-color: #ffffff;
  border: 1.5px solid #CCCCCC;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 0;
  margin-bottom: 0;
}

.park-lp .pk-textbox p,
.park-lp .pk-textbox--white p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--pk-text-sub);
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}

/* テキストボックスが複数ある場合の間隔 */
.park-lp .pk-textbox + .pk-textbox,
.park-lp .pk-textbox--white + .pk-textbox--white,
.park-lp .pk-textbox + .pk-warning,
.park-lp .pk-textbox--white + .pk-warning {
  margin-top: 16px;
}

/* ━━ 各セクション 画像 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-sec-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border: none;
  outline: none;
  box-shadow: none;
}

/* ━━ 注意ボックス ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-warning {
  display: block;
  background-color: #FFF8E1;
  border: 1px solid #FFD54F;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
}

.park-lp .pk-warning__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  color: #5D4037;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}

/* ━━ 商品詳細グリッド ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.park-lp .pk-products {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  width: 100% !important;
  writing-mode: horizontal-tb !important;
}

.park-lp .pk-product {
  width: calc(50% - 12px) !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  float: none !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.park-lp .pk-product__img-link {
  display: block !important;
  line-height: 0 !important;
  width: 100% !important;
  text-align: center !important;
}

.park-lp .pk-product__img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.park-lp .pk-product__name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--pk-text) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  margin-top: 10px !important;
  margin-bottom: 6px !important;
  line-height: 1.45 !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  word-break: break-all !important;
  text-align: center !important;
}

.park-lp .pk-product__price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--pk-text) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.park-lp .pk-product__price-off {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--pk-red) !important;
  margin-right: 4px !important;
  writing-mode: horizontal-tb !important;
}

.park-lp .pk-product__price-tax {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--pk-text-muted) !important;
  margin-left: 2px !important;
  writing-mode: horizontal-tb !important;
}

.park-lp .pk-product__order {
  font-size: 12px !important;
  color: var(--pk-text-muted) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  text-align: center !important;
}

.park-lp .pk-product__btn {
  display: block !important;
  width: 100% !important;
  padding: 10px 12px !important;
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: "Noto Sans JP", sans-serif !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  line-height: 1.3 !important;
  min-height: 44px !important;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s !important;
  text-decoration: none !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  word-break: keep-all !important;
  box-sizing: border-box !important;
}

.park-lp .pk-product__btn--outline {
  background-color: #ffffff !important;
  color: #2aa368 !important;
  border: 2px solid #3DC47E !important;
  margin-bottom: 8px !important;
}

.park-lp .pk-product__btn--outline:hover {
  background-color: #EBF9F2 !important;
  color: #2aa368 !important;
  text-decoration: none !important;
}

.park-lp .pk-product__btn--fill {
  background-color: #3DC47E !important;
  color: #ffffff !important;
  border: 2px solid #3DC47E !important;
}

.park-lp .pk-product__btn--fill:hover {
  background-color: #2aa368 !important;
  border-color: #2aa368 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ━━ レスポンシブ（スマホ） ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media screen and (max-width: 736px) {
  .park-lp .pk-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .park-lp .pk-hero {
    padding: 24px 16px 20px;
  }

  .park-lp .pk-sec-title {
    font-size: 17px;
    padding: 10px 14px 10px 18px;
    border-left-width: 5px;
    margin-bottom: 20px;
  }

  /* スマホ：ナビチップは2列 */
  .park-lp .pk-nav__item {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .park-lp .pk-nav__item a {
    font-size: 12px;
    height: 36px;
  }

  .park-lp .pk-textbox,
  .park-lp .pk-textbox--white {
    padding: 16px 18px;
  }

  .park-lp .pk-textbox p,
  .park-lp .pk-textbox--white p {
    font-size: 13px;
  }

  .park-lp .pk-warning__text {
    font-size: 12px;
  }

  .park-lp .pk-products {
    gap: 14px !important;
  }

  .park-lp .pk-product {
    width: calc(50% - 7px) !important;
  }

  .park-lp .pk-product__name {
    font-size: 12px !important;
  }

  .park-lp .pk-product__price {
    font-size: 13px !important;
  }

  .park-lp .pk-product__btn {
    font-size: 11px !important;
    padding: 8px 6px !important;
    min-height: 40px !important;
  }
}