@charset "Shift_JIS";

/* --------------------------------------------------------------------

	rice page

--------------------------------------------------------------------- */

/* ▼ お米の選び方ガイド */
.riceGuideSection {
  background-color: #f8f4e6;
  border: 2px solid #c9a063;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.rice-guide-header {
 display: flex;
  align-items: center; 
  justify-content: center;
  gap: 8px;

}
.rice-guide-header img {
  width: 45px;
  height: auto;
  vertical-align: middle;
margin: 0 0 20px;
}
.rice-guide-title {
  font-size: 28px;
  font-weight: bold;
  color: #3c2f2f;
}
.rice-guide-list {
  list-style: disc;
  padding-left: 40px;
  font-size: 20px;
  line-height: 2;
  color: #333;
}
.highlight {
  color: #c03;
  font-weight: bold;
}
.rice-note {
  display: block;
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}
.rice-guide-link-area {
  text-align: center;
  margin: 30px 0;
font-size: 20px;
}

/* ▼ トップバナー */
.rice-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ▼ お米紹介 */
.riceIntro {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 30px auto;
}
.riceIntroTitle {
  font-size: 36px;
  font-weight: bold;
  color: #3c2f2f;
  margin-bottom: 20px;
}
.riceIntroText {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* ▼ 特価販売 */
.riceSale {
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
}
.riceSaleArea {
  padding: 30px 20px;
}
.riceSaleItem {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.riceSaleImage, .riceSaleItemImage {
  flex: 0 0 40%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
}
.riceSaleImage img, .riceSaleItemImage img {
  width: 100%;
  height: auto;
  display: block;
}
.riceSaleDetail {
  flex: 1;
  text-align: left;
}
.riceSaleTitle {
  font-size: 24px;
  font-weight: bold;
  color: #3c2f2f;
  margin-bottom: 12px;
}
.riceSaleDetail p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}
.normalPrice {
  color: #404040;
  font-size: 18px;
}
.superPrice {
  font-size: 30px;
  font-weight: bold;
  color: #C03;
}
.taxPrice {
  font-size: 15px;
  color: #404040;
}
.riceSaleBtn {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.riceSaleBtn a {
  flex: 1;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
}
.btnDetail {
  background-color: #734321;
}
.btnCart {
  background-color: #C03;
}

/* ▼ 健康志向セクション */
.healthSection {
  background-color: #f8f4e6;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
}
.healthContent {
  display: flex;
  align-items: center;
  gap: 20px;
}
.healthImage {
  width: 350px;
  border-radius: 6px;
}
.healthText {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ▼ メリットセクション */
.riceBenefitSection {
  background-color: #f8f4e6;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
  text-align: center;
}
.benefit-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
}
.benefit-items .item img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}
.benefit-items .item p {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.5;
  color: #3c2f2f;
  text-align: center;
}

/* ▼ ボタン */
#specialBtn {
  display: inline-block;
  width: 300px;
  background-color: #d4af37;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 16px 0;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
#specialBtn:hover {
  background-color: #b38b4d;
  transform: scale(1.05);
}
#btnArea {
  text-align: center;
  margin: 30px 0;
}

/* ▼ セクションタイトル */
.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #3c2f2f;
  text-align: center;
  margin: 40px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #c9a063;
  margin: 0 20px;
}

/* ▼ ページ背景 */
#rice_page {
  background-color: #f8f4e6;
  padding: 20px;
}

/* ▼ レスポンシブ対応 */
@media (max-width:736px) {
  .riceIntro {
    padding: 25px 15px;
    margin: 20px auto;
  }
  .riceIntroTitle {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .riceIntroText {
    font-size: 16px;
    line-height: 1.6;
  }
  .riceSaleItem {
    flex-direction: row; /* 横並びに変更 */
    align-items: flex-start;
  }
  .riceSaleImage, .riceSaleItemImage {
    flex: 0 0 30%;
    max-width: 120px;
  }
  .riceSaleDetail {
    flex: 1;
    padding-left: 10px;
  }
  .healthContent {
    flex-direction: row;
    align-items: flex-start;
  }
  .healthImage {
    flex: 0 0 30%;
    max-width: 120px;
  }
  .healthTextArea {
    flex: 1;
    padding-left: 10px;
    text-align: left;
  }
  .benefit-items {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .benefit-items .item img {
    width: 80px;
  }
  .benefit-items .item p {
    font-size: 18px;
    line-height: 1.4;
  }
  .rice-guide-title {
    font-size: 24px;
  }
  .rice-guide-list {
    font-size: 18px;
    line-height: 1.8;
  }
}
