/* だだちゃ豆ページ 追加CSS
   既存の素朴な雰囲気を残しつつ、注意書き・送料・注文欄だけを読みやすく整えるためのCSSです。 */

/* 共通 */
.dada-request-box,
.dada-promise-box,
.dada-shipping-box,
.dada-order-box,
.dada-boil-box {
  box-sizing: border-box;
  max-width: 880px;
  margin: 18px auto 32px;
  font-size: 16px;
  line-height: 1.75;
}

.dada-request-box {
  background: #fffdf3;
  border: 1px solid #e7dfb7;
  border-left: 6px solid #7ca53a;
  padding: 14px 18px;
}

.dada-request-lead {
  margin: 0;
}



/* だだちゃ豆の美味しいゆで方 */
.dada-boil-box {
  background: #fffef8;
  border: 1px solid #d9e2be;
  border-radius: 8px;
  padding: 18px;
}

.dada-boil-lead {
  background: #f7faef;
  border: 1px solid #dce7c5;
  border-left: 6px solid #7ca53a;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.dada-boil-lead-title {
  color: #315c16;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.dada-boil-lead p {
  margin: 0;
}

.dada-boil-point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}

.dada-boil-point {
  background: #fff4d8;
  border: 1px solid #ead5a1;
  border-radius: 6px;
  color: #4e3a10;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
  text-align: center;
}

.dada-boil-point span {
  color: #b0381f;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.dada-boil-steps {
  display: grid;
  gap: 14px;
}

.dada-boil-step {
  background: #fff;
  border: 1px solid #e1e8d1;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 16px;
  overflow: hidden;
  padding: 12px;
}

.dada-boil-step.dada-boil-important {
  background: #fffdf4;
  border-color: #eadfba;
}

.dada-boil-step.dada-boil-finish {
  background: #f8fbef;
  border-color: #cdddad;
}

.dada-boil-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.dada-boil-text {
  align-self: center;
}

.dada-boil-step-title {
  align-items: center;
  color: #315c16;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  gap: 9px;
  line-height: 1.45;
  margin-bottom: 6px;
}

.dada-boil-num {
  align-items: center;
  background: #6e8f2c;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 30px;
  font-size: 17px;
  height: 30px;
  justify-content: center;
  line-height: 1;
  width: 30px;
}

.dada-boil-step p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.dada-boil-sub {
  color: #555;
  margin-top: 6px !important;
}

.dada-boil-text a {
  color: #0b6b00;
  font-weight: bold;
  text-decoration: underline;
}

/* お申し込みのお約束 */
.dada-promise-box {
  background: #fffef8;
  border: 1px solid #d9e2be;
  border-radius: 8px;
  overflow: hidden;
}

.dada-promise-title {
  background: #6e8f2c;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: .03em;
  padding: 13px 18px;
}

.dada-promise-list {
  padding: 8px 16px 16px;
}

.dada-promise-item {
  position: relative;
  border-bottom: 1px solid #e7ead8;
  padding: 14px 8px 13px 34px;
}

.dada-promise-item:last-child {
  border-bottom: none;
}

.dada-promise-item:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7ca53a;
  box-shadow: 0 0 0 4px #edf4dc;
}

.dada-promise-item.dada-important:before {
  background: #c45135;
  box-shadow: 0 0 0 4px #f8e7df;
}

.dada-promise-head {
  color: #315c16;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 4px;
}

.dada-promise-text {
  color: #333;
}

/* 送料 */
.dada-shipping-box {
  background: #f8fbef;
  border: 1px solid #dce7c5;
  border-radius: 8px;
  padding: 18px;
}

.dada-shipping-main-note,
.dada-order-alert {
  background: #fff4d8;
  border: 1px solid #ead5a1;
  color: #5c3b00;
  font-weight: bold;
  text-align: center;
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.dada-shipping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0 16px;
}

.dada-shipping-item {
  background: #fff;
  border: 1px solid #dfe7ce;
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
}

.dada-shipping-item .region {
  color: #44651e;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.35;
}

.dada-shipping-item .price {
  color: #b0381f;
  font-weight: bold;
  font-size: 18px;
  margin-top: 4px;
}

.dada-shipping-notes {
  background: #fff;
  border-radius: 6px;
  padding: 12px 16px;
}

.dada-shipping-notes p {
  position: relative;
  margin: 6px 0;
  padding-left: 1.2em;
}

.dada-shipping-notes p:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #6e8f2c;
  font-weight: bold;
}

/* 注文欄 */
.dada-order-box {
  background: #f7faef;
  border: 1px solid #d8e5c1;
  border-radius: 8px;
  padding: 18px;
}

.dada-order-alert-bottom {
  margin-top: 18px;
  margin-bottom: 0;
}

.dada-product-list {
  display: grid;
  gap: 16px;
}

.dada-product-card {
  background: #fff;
  border: 1px solid #dbe5ca;
  border-radius: 8px;
  overflow: hidden;
}

.dada-product-card.dada-recommend {
  border-color: #b7c97c;
  box-shadow: 0 2px 10px rgba(90, 120, 35, .12);
}

.dada-product-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #6e8f2c;
  color: #fff;
  padding: 12px 16px;
  font-weight: bold;
}

.dada-recommend .dada-product-header {
  background: #557914;
}

.dada-product-badge {
  display: inline-block;
  background: rgba(255,255,255,.95);
  color: #557914;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.dada-product-name {
  font-size: 18px;
}

.dada-product-body {
  padding: 16px;
}

.dada-product-description {
  margin: 0 0 14px;
}

.dada-product-info {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 10px;
  margin-bottom: 14px;
}

.dada-info-item {
  background: #fffdf4;
  border: 1px solid #eadfba;
  border-radius: 6px;
  padding: 10px 12px;
}

.dada-info-label {
  display: block;
  color: #6b5a21;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 3px;
}

.dada-info-main {
  display: block;
  color: #b0381f;
  font-weight: bold;
  font-size: 17px;
}

.dada-info-note {
  display: block;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

.dada-price,
.dada-price .category-kakaku {
  color: #b0381f;
  font-size: 20px;
  font-weight: bold;
}

.dada-cart-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dada-cart-option {
  background: #f9fbf2;
  border: 1px solid #dfe8cf;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.dada-delivery-label {
  display: block;
  color: #555;
  font-size: 13px;
}

.dada-delivery-option {
  display: block;
  color: #315c16;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 6px;
}

.dada-order-box input[type="text"] {
  max-width: 46px;
  padding: 5px 4px;
  border: 1px solid #bbb;
  border-radius: 3px;
  text-align: center;
}

.dada-order-box input[type="submit"] {
  -webkit-appearance: none;
  background: #b43a22;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 7px 12px;
  margin-top: 6px;
}

.dada-order-box input[type="submit"]:hover {
  background: #97301d;
}

/* 酒屋の塩 */
.dada-salt-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
}

.dada-salt-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.dada-salt-cart {
  text-align: left;
}

/* スマホ */
@media screen and (max-width: 700px) {
  .dada-request-box,
  .dada-promise-box,
  .dada-shipping-box,
  .dada-order-box {
    margin: 16px 0 26px;
    font-size: 15px;
  }

  .dada-promise-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .dada-promise-list {
    padding: 6px 12px 12px;
  }

  .dada-promise-head {
    font-size: 16px;
  }

  .dada-shipping-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dada-product-info,
  .dada-cart-options,
  .dada-salt-body {
    grid-template-columns: 1fr;
  }

  .dada-product-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .dada-product-name {
    font-size: 17px;
  }

  .dada-cart-option,
  .dada-salt-cart {
    text-align: center;
  }

  .dada-salt-image {
    max-width: 220px;
    margin: 0 auto;
  }
}


@media screen and (max-width: 700px) {
  .dada-boil-box {
    margin: 16px 0 26px;
    padding: 14px;
    font-size: 15px;
  }

  .dada-boil-lead-title {
    font-size: 17px;
  }

  .dada-boil-point-grid,
  .dada-boil-step {
    grid-template-columns: 1fr;
  }

  .dada-boil-step {
    gap: 10px;
    padding: 10px;
  }

  .dada-boil-photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .dada-boil-step-title {
    font-size: 17px;
  }

  .dada-boil-step p {
    font-size: 15px;
  }
}
