/* ==========================================================================
   POLA メルマガLP カスタムスタイル
   POLA共通CSS（common.css）の後に読み込む
   ========================================================================== */

/* SP限定改行 */
.u-br-sp { display: none; }
@media screen and (max-width: 768px) {
  .u-br-sp { display: block; }
}

/* --------------------------------------------------------------------------
   ベース上書き
   -------------------------------------------------------------------------- */

body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic',
               'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
               'メイリオ', Meiryo, 'Osaka', 'ＭＳ Ｐゴシック', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   ヘッダー（簡易）
   -------------------------------------------------------------------------- */

.lp-header {
  border-bottom: 1px solid #e5e5e5;
  background-color: #ffffff;
}

.lp-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 60px;
  display: flex;
  align-items: center;
}

.lp-header__logo {
  display: block;
  width: 80px;
  height: auto;
}

/* --------------------------------------------------------------------------
   FV（ファーストビュー）
   -------------------------------------------------------------------------- */

.fv {
  background-color: #000000;
}

/* バナー帯 */
.fv__badge {
  text-align: center;
  padding: 10px 16px;
  /*background-color: #003DA5;*/
  background-color:#f5f5f5;
}

.fv__badge-text {
  color: #000000;
  font-size: 15px;
  letter-spacing: 0.15em;
}

/* 2カラムレイアウト */
.fv__cols {
  display: flex;
}

.fv__col-img {
  flex: 0 0 60%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.fv__kv-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fv__col-body {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  color: #ffffff;
}

.fv__eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #bfbfbf;
  margin-bottom: 20px;
}

.fv__heading {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 24px;
}

.fv__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #bfbfbf;
  margin-bottom: 40px;
}

.fv__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fv__cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #ffffff;
  color: #000000;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 0;
  transition: background-color 0.2s;
  line-height: 1.4;
}

.fv__cta-btn:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #000000;
  text-decoration: none;
}

.fv__cta-note {
  font-size: 13px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   セクション共通
   -------------------------------------------------------------------------- */

.section-eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #000000;
  text-align: center;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 48px;
}

/* --------------------------------------------------------------------------
   今だけの特典
   -------------------------------------------------------------------------- */

.reason {
  padding: 40px 0;
}


.reason__inner {
  text-align: center;
}

/* 4カラムグリッド */
.reason__grid {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.reason__item {
  flex: 1;
  max-width: 280px;
  padding: 32px 20px;
  border-right: 1px solid #e5e5e5;
}

.reason__item:last-child {
  border-right: none;
}

.reason__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 16px;
}

.reason__value {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}

.reason__value-sub {
  font-size: 15px;
  color: #000000;
}

.reason__note {
  font-size: 13px;
  line-height: 2;
  color: #000000;
  text-align: left;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   対象商品
   -------------------------------------------------------------------------- */

.products {
  padding: 80px 0;
}

.products-brand {
  margin-bottom: 64px;
}

.products-brand:last-child {
  margin-bottom: 0;
}

.products-brand__lead {
  font-size: 15px;
  line-height: 1.8;
  margin-top: -24px;
  margin-bottom: 32px;
}


/* ブランドアンカーナビ（subscription LP準拠） */
.subscproducts-anchor {
  margin-bottom: 48px;
}

.subscproducts-anchor__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  color: #000000;
  padding: 10px 10px 10px 0;
}

.subscproducts-anchor__btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: 0.4s ease;
}

.subscproducts-anchor__btn:hover::before {
  transform: scaleX(1);
}

.subscproducts-anchor__btn:hover {
  text-decoration: none;
}

.subscproducts-anchor__btn img {
  width: 30px;
  flex-shrink: 0;
}

.subscproducts-anchor__btn span {
  display: block;
  flex: 1 1 auto;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.subscproducts-anchor__btn::after {
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-bottom: 1px solid #000000;
  border-left: 1px solid #000000;
  transform: translateY(-50%) rotate(-45deg);
}

.products-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 64px 0;
}

/* もっと見るボタン */
.products-more {
  text-align: center;
  margin-top: 40px;
}

.products-more--all {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #e5e5e5;
}

.products-more__btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.products-more__btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 特典バッジ（c-img-txt内に追加） */
.product-card__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 10px;
}

.product-card__badge--ok {
  background-color: #003DA5;
  color: #ffffff;
}

.product-card__badge--near {
  background-color: #e5e5e5;
  color: #003DA5;
}

@media (min-width: 769px) {
  .lg-2col-layout {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .lg-2col-layout > div {
    flex: 1;
    width:50%
  }
}

/* --------------------------------------------------------------------------
   サンプルセット紹介
   -------------------------------------------------------------------------- */

.gift {
  padding: 40px 0;
  background-color: #f5f5f5;
}

.gift__lead {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-top: -32px;
  margin-bottom: 40px;
}

.gift-sets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gift-card {
  background-color: #ffffff;
}

.gift-card__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.gift-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-card__body {
  padding: 24px;
}

.gift-card__set-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.gift-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #000000;
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
}

.gift-card__brand {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #000000;
  margin-bottom: 0;
}

.gift-card__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 16px 0;
}

.gift-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gift-card__items li {
  font-size: 13px;
  line-height: 2;
  color: #000000;
  padding-left: 14px;
  position: relative;
}

.gift-card__items li::before {
  content: "–";
  position: absolute;
  left: 0;
}

.gift-card__note {
  font-size: 13px;
  margin-top: 12px;
  color: #000000;
}

.gift__note {
  font-size: 13px;
  line-height: 2;
  margin-top: 32px;
  color: #000000;
}

/* c-heading-lv3 下罫線を削除 */
.products-brand .c-heading-lv3 {
  border-bottom: none;
}
.products-brand .c-heading-lv3::after {
  display: none;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list__item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-list__item:first-child {
  border-top: 1px solid #e5e5e5;
}

.faq-list__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
  color: #000000;
  gap: 16px;
}

.faq-list__btn::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-list__btn[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-list__a {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

/* --------------------------------------------------------------------------
   開催中のキャンペーン
   -------------------------------------------------------------------------- */

.campaigns {
}

.campaigns__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.campaigns__item a {
  display: block;
}

.campaigns__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   フッター（簡易）
   -------------------------------------------------------------------------- */

.lp-footer {
  background-color: #000000;
  padding: 32px 0;
  margin-top: 80px;
}

.lp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.lp-footer__copyright {
  font-size: 13px;
  color: #bfbfbf;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   レスポンシブ（中間：1080px以下）FVのみ縦積みに切り替え
   -------------------------------------------------------------------------- */

@media screen and (max-width: 1080px) {

  /* FV：縦積み */
  .fv__cols {
    flex-direction: column;
  }

  .fv__col-img {
    flex: none;
    width: 100%;
  }

  .fv__col-body {
    flex: none;
    padding: 48px 60px 56px;
  }

  .fv__cta-btn {
    max-width: 480px;
  }

}

/* --------------------------------------------------------------------------
   レスポンシブ（SP：768px以下）
   -------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {

  /* ヘッダー */
  .lp-header__inner {
    padding: 12px 20px;
  }

  /* FV */
  .fv__col-body {
    padding: 40px 20px 48px;
  }

  .fv__heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .fv__desc {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .fv__cta-btn {
    width: 100%;
    max-width: none;
    padding: 16px 24px;
  }

  /* セクション共通 */
  .section-heading {
    font-size: 20px;
    margin-bottom: 32px;
  }

  /* 今だけの特典 */
  .reason {
    padding: 48px 0 0 0;
  }

  .reason__grid {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .reason__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    padding: 20px 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid #d8d8d8;
    text-align: left;
  }

  .reason__item:last-child {
    border-right: none;
    border-bottom: 1px solid #d8d8d8;
  }

  .reason__label {
    flex: 0 0 85px;
    margin-bottom: 0;
    font-size: 13px;
  }

  .reason__value {
    font-size: 15px;
  }

  /* サンプルセット */
  .gift {
    padding: 48px 0;
  }

  .gift__lead {
    margin-bottom: 24px;
  }

  .gift-sets {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* 対象商品 */
  .products {
    padding: 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products-brand {
    margin-bottom: 48px;
  }

  /* FAQ */
  .faq {
    padding: 48px 0;
  }

  /* キャンペーン */
  .campaigns {
    padding: 48px 0;
  }

  .campaigns__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-list__btn {
    font-size: 15px;
    padding: 20px 0;
  }

  /* フッター */
  .lp-footer {
    margin-top: 48px;
    padding: 24px 0;
  }

  .lp-footer__inner {
    padding: 0 20px;
  }

}


.c-btn--cartin {
  margin-top:-20px;
}

/*追加CSS*/
.text_min{
  font-size: 12px;
}
.c-area-link__txt{
  min-height: 60px;
}
.gift-sets{
  gap: 0;
}
.c-grid__col{
  position: relative;
}
.c-btn--cartin{
  position: absolute;
  bottom: 0;
}
.product-card__badge{
  margin: 0 0 24px 0;
}
.c-img-txt{
  margin: 0;
}
.gift-card__set-label{
  display: block;
}
@media screen and (max-width: 780px) {
  .c-img_pr{
    margin-bottom: 16px;
  }
  .reason__grid .reason__item:first-child .reason__label{
    font-size: 20px;
  }
  .reason__grid .reason__item:first-child .reason__value{
    font-size: 20px;
  }
}

.product-card__badge--ok {
  background-color: #ffffff;
}

/*キャンペーン詳細・オファーの見え方*/
.reason__grid .reason__item:first-child{
  flex-direction: column;
}
.reason__grid .reason__item:first-child .reason__label{
  width: 100%;
  text-align: center;
  flex: 0 0 40px;
}
.reason__grid .reason__item:first-child .reason__value{
  text-align: center;
}

/*キャンペーン詳細・その他詳細は真ん中に*/
@media screen and (min-width: 780px){
  .reason__item{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.c-img-txt__txt{
  padding: 0 0 24px 0;
}


/*GWのみ*/


