@charset "UTF-8";
/* CSS Document - order.css */

/* ===============================
   ヒーロー画像
   =============================== */
.hero {
  background-image: url("../img/order-img/order-top.jpg");
}


/* ===============================
   共通レイアウト設定
   =============================== */
/* 全体を最大900pxの幅で中央に寄せる */
.order, .delivery, .payment {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #622d18;
}

/* 見出しは常に中央寄せ */
.order h1, .delivery h1, .payment h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* ===============================
   ご注文について
   =============================== */
.order {
  text-align: center; /* 注文セクションはボタン中心なので中央寄せ */
}

.order > p {
  margin-bottom: 40px;
}

.order > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 40px;
}

.order > ul > li {
  padding-bottom: 30px;
  border-bottom: 1px solid #ef96bd;
}

.order > ul > li h2 {
  margin: 0 0 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.order .order-btn {
  display: inline-block;
  padding: 14px 22px;
  background: #ef96bd;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.25s ease;
  border: 1px solid #ef96bd;
  min-width: 240px;
  margin: 10px 0;
}

.order .order-btn:hover {
  background: #fff;
  color: #ef96bd !important;
  border-color: #ef96bd;
}

/* ===============================
   配達について（左寄せ・中央配置）
   =============================== */
.delivery {
  text-align: left; /* テキストの基本を左寄せに */
}

/* 枠を設けることで「中央にある左寄せの文章」を際立たせる */
.delivery-content {
  line-height: 2;
  font-size: 1rem;
  background: #fff5f8;
  padding: 30px;
  border-radius: 12px;
  border-left: 6px solid #ef96bd;
  margin: 0 auto;
}
.delivery h2{
	font-size: 1.2rem;
	font-weight: bold;
}

/* ===============================
   お支払い方法について（左寄せ・中央配置）
   =============================== */
.payment {
  text-align: left; /* テキストは左寄せ */
}

.payment > p {
  text-align: center; /* 「ご利用いただける決済方法」の1行だけ中央 */
  margin-bottom: 30px;
  font-weight: bold;
}

.payment ul {
  list-style: none;
  padding: 0;
}

.payment ul li {
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ef96bd;
}

.payment ul li:last-child {
  border-bottom: none;
}

.payment ul li h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.payment ul li h4::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ef96bd;
  border-radius: 2px;
  margin-right: 12px;
}

.payment img {
  max-height: 35px;
  width: auto;
  margin: 8px 15px 8px 0;
  vertical-align: middle;
  object-fit: contain;
}

/* ===============================
   レスポンシブ対応（スマホ）
   =============================== */
@media screen and (max-width: 700px) {
  .order, .delivery, .payment {
    padding: 40px 15px;
  }

  .order .order-btn {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 16px 0;
    font-size: 1.2rem;
  }

  .delivery-content {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
  }
	

  .payment img {
    max-height: 28px;
    margin-right: 10px;
  }
}