@charset "utf-8";
/*--------------------------------------------
  bw_free.css
  フリーページ関連のCSSです
--------------------------------------------*/

/* =====================================================
   ビーウェイブおすすめ商品（recommend)
===================================================== */
/*------------------------------------
  セクションタイトル
------------------------------------*/
#recommend-section h2 {
	margin: 2em 0;
}

/*------------------------------------
  コンテナ
------------------------------------*/
.recommend-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/*------------------------------------
  ブランドバー
------------------------------------*/
.recommend-brand-bar {
  width: 100%;
  background: #dcdcdc;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.2em;
  padding: 14px 0;
  margin-bottom: 40px;
}

/*------------------------------------
  どの CSS が干渉しても GRID を強制
------------------------------------*/
.recommend-list {
  display: grid !important;
  width: 100% !important;
  grid-auto-flow: row !important;
  gap: 20px;
}

/*------------------------------------
  PC（1024px〜）＝5列固定
------------------------------------*/
@media (min-width: 1024px) {
  .recommend-list {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

/*------------------------------------
  iPad（768〜1023px）＝3列固定
------------------------------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  .recommend-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/*------------------------------------
  スマホ（〜767px）＝2列固定
------------------------------------*/
@media (max-width: 767px) {
  .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 0 10px !important;
  }
}

/*------------------------------------
  商品カード（外部CSS無効化）
------------------------------------*/
.recommend-item {
  display: block !important;   /* aタグのdisplay干渉を抑止 */
  width: 100% !important;
  min-width: 0 !important;     /* ←最重要：これがないと1列化する */
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.recommend-list a{
  border:none;	
}

.recommend-list{
  margin-bottom: 40px;
}

.item-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  background: #dcdcdc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  max-width: 100% !important;
}

.item-info {
  margin-top: 10px;
}

.item-brand {
  font-size: 13px;
  font-weight: bold;
  margin: 10px 0 4px;
}

.item-title {
  font-size: 12px;
  line-height: 1.4;
}

/* =====================================================
   ご利用ガイド共通
===================================================== */

.guide-title {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
}

.guide-subtitle {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfdfdf; 
}

.bw-pageHeading {
  width: 100%;
  background: #f2f2f2;
  color: #000;
  padding: 14px 16px;
  box-sizing: border-box;
  margin: 24px 0;
}

.bw-pageHeading__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .bw-pageHeading {
    padding: 12px 14px;
    margin-bottom: 16px;
  }

  .bw-pageHeading__title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  section.userguide{
    width: 92% !important;
    max-width: 500px;
    margin: 0 auto !important;
  }
}

.free-shipping-banner {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 16px 0 12px;
  line-height: 1.4;
}

.free-strong {
  font-weight: 900;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .free-shipping-banner {
    font-size: 1.1rem;
  }

  .free-strong {
    font-size: 1.5em;
    letter-spacing: 0.03em;
  }
}

.table-wrap {
  max-width: 1200px;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.shipping-table-p {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.shipping-table-title {
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .shipping-table-title {
    text-align: left;
    font-size: 0.9rem;
  }
}

/* 表 */
.shipping-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.shipping-table th,
.shipping-table td {
  border: 1px solid #e6e6e6;
  padding: 12px;
  vertical-align: center;
}

.shipping-table thead th {
  background: #f7f7f7;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.shipping-table tbody th {
  background: #fcfcfc;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.shipping-table .num {
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.col-area { width: 34%; }
.col-free { width: 33%; }
.col-fee  { width: 33%; }

@media (max-width: 640px) {
  .table-wrap {
    max-width: 100%;
  }
  .shipping-table th,
  .shipping-table td {
    padding: 10px;
  }
}


.app-cta {
    background: #fff;
    padding: 56px 16px 48px;
  }

  .app-cta__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .app-cta__logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .app-cta__logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
  }

  .app-cta__text {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 2;
    color: #111;
    letter-spacing: 0.02em;
  }

  .app-cta__badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
  }

  .app-cta__badge {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
    transform: translateZ(0);
  }

  .app-cta__badge img {
    height: 100px;
    width: auto;
    display: block;
  }

  @media (max-width: 480px) {
    .app-cta {
      padding: 40px 14px 34px;
    }
    .app-cta__text {
      font-size: 16px;
      line-height: 1.9;
    }
    .app-cta__badge img {
      height: 90px;
    }
    .app-cta__badges {
      gap: 18px;
    }
  }

    /* 代引き手数料テーブル */
 .table-wrap {
    width: 100%;
    margin: 0 auto;
  }

  .shipping-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
  }

  .shipping-table th,
  .shipping-table td {
    width: 50%;
    border: 1px solid #cfcfcf;
    padding: 14px 12px;
    text-align: center;
    word-break: break-word;
    white-space: normal;
  }

  .shipping-table thead th {
    background: #f5f5f5;
    font-weight: 700;
  }

  .free {
    color: #d40000;
    font-weight: 800;
  }

  @media (max-width: 480px) {
    .shipping-table {
      font-size: 13px;
    }

    .shipping-table th,
    .shipping-table td {
      padding: 10px 6px;
    }
  }

  /* 振込先テーブル */
  .bank-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

.bank-table th,
.bank-table td {
  border: 1px solid #666;
  padding: 10px 14px;
  vertical-align: middle;
}

.bank-table th {
  width: 40%;
  background-color: #f5f5f5;
  text-align: left;
}

.bank-table td {
  width: 60%;
}

/* ========== Media Block (Image + Text) ========== */
.bw-mediaBlock {
  display: flex;
  gap: 24px;

  /* PC左右配置：文字上揃え */
  align-items: flex-start;

  width: 100%;
}

.bw-mediaBlock__media {
  flex: 0 0 auto;
  max-width: 100%;
}

.bw-mediaBlock__media img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bw-mediaBlock__body {
  flex: 1 1 auto;
  min-width: 0; /* 折り返し安定 */
}

/* PC：右に画像／左に文章 */
.bw-mediaBlock--reverse {
  flex-direction: row-reverse;
}

/* PC：上下（上に画像・下に文章） */
.bw-mediaBlock--stack {
  flex-direction: column;
}

/* PC：上下（上に文章・下に画像） */
.bw-mediaBlock--stackReverse {
  flex-direction: column-reverse;
}

@media (min-width: 769px) {
  .bw-mediaBlock:not(.bw-mediaBlock--stack):not(.bw-mediaBlock--stackReverse) {
    margin-bottom: 40px;
  }
  .bw-mediaBlock:not(.bw-mediaBlock--stack):not(.bw-mediaBlock--stackReverse):last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .bw-mediaBlock {
    flex-direction: column !important;
    gap: 16px;
  }

  .bw-mediaBlock--reverse,
  .bw-mediaBlock--stackReverse {
    flex-direction: column !important;
  }

  .bw-mediaBlock__media {
    width: 100%;
  }

  .bw-mediaBlock__media img {
    width: 100%;
    height: auto;
  }

  .bw-mediaBlock__body {
    width: 100%;
  }
}

/* 中央配置用 */
.guide-back {
  text-align: center;
  margin: 40px 0;
}

a.btn-outline {border-bottom:1px solid #ccc;}

/* 枠ボタン */
.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  background: #fff;
  transition: 0.2s ease;
}

/* ホバー */
.btn-outline:hover {
  background: #f5f5f5;
}



/* ========== Text Only Block (Text only) ========== */
.bw-textBlock {
  width: 100%;
}

.bw-textBlock__inner {
  width: 100%;
}

.bw-textBlock__inner > *:first-child {
  margin-top: 0;
}
.bw-textBlock__inner > *:last-child {
  margin-bottom: 0;
}

/* ===== テキストカラー ===== */

.text-black  { color: #000; }
.text-gray   { color: #777; }
.text-white  { color: #fff; }

.text-red    { color: #e60012; }
.text-blue   { color: #0073e6; }
.text-green  { color: #1e8e3e; }
.text-yellow { color: #f9ab00; }
.text-orange { color: #ff6f00; }
.text-purple { color: #6a1b9a; }

/* 基本下線 */
.text-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 色付き下線 */
.underline-red {
  text-decoration: underline;
  text-decoration-color: #e60012;
  text-underline-offset: 3px;
}

.underline-blue {
  text-decoration: underline;
  text-decoration-color: #0073e6;
  text-underline-offset: 3px;
}

.underline-green {
  text-decoration: underline;
  text-decoration-color: #1e8e3e;
  text-underline-offset: 3px;
}

.marker-yellow {
  background: linear-gradient(transparent 60%, #fff59d 60%);
}

.marker-green {
  background: linear-gradient(transparent 60%, #b9f6ca 60%);
}

.marker-blue {
  background: linear-gradient(transparent 60%, #bbdefb 60%);
}



