@charset "utf-8";
/* 商品別シングル */

.header_lower {
    justify-content: center;
}

.lpmv{
margin: 75px auto 70px;
text-align: center;
}

.itemdescription {
    margin: var(--large-space) auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.itemdescription .imgbox{
}


.itemdescription .textbox{
font-size: 34px;
width: 60%;
font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
margin-top: -0.2em; 
}

.gallerybox .sozai {
  display: flex;
  justify-content: center;   /* 中央寄せ */
  align-items: flex-start;   /* 上端を揃える */
  gap: 20px;                 /* 画像の間隔 */
  list-style: none;          /* liの点を消す */
  padding: 0;
  margin: 0;
}

.gallerybox .sozai li {
  flex: 1 1 auto;   /* 可変で均等配置。固定幅にしたい場合は width: 30%; に */
  text-align: center;
}

.notebox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px; /* 左右の余白 */
  margin-top: 70px;
}

.note-left {
  flex:3;
  padding-right: 0.5em;
  color: #764f00;
  font-size: 30px;
  border-right: 2px solid #764f00;
}

.note-right {
  flex: 2;
  padding-left: 15px;
  color: #764f00;
  font-size: 25px;
}

.note-right .caution {
  color: #c50018;
  font-size: 22px;
}

.allergyArea{
text-align: center;
margin-top: 70px;
}

.buttonArea {
  text-align: center;   /* 全体中央寄せ */
  margin: 70px 0 0;
}

/* 購入ボタン */
.buttonArea .btn-buy {
  display: inline-block;
  background-color: #f39800; /* オレンジ色 */
  color: #fff;
  font-size: 38px;
  text-decoration: none;
  padding: 20px 55px;
}

.buttonArea .btn-buy span {
  font-size: 28px;
}


/* 戻るボタン */
.buttonArea .btn-back {
  display: inline-block;
  margin-top: 50px;
  background-color: #eee;
  color: #333;
  font-size: 33px;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
}



footer {
    background: var(--main-color);
    color: var(--black);
}

@media (max-width: 599px){
.itemdescription {
    display: block;
}
.itemdescription .imgbox img{
    margin-bottom: 1.5em;
}
.itemdescription .textbox{
width: 100%;
}

.gallerybox .sozai {
  display: block;
}

.gallerybox .sozai li{
margin-bottom: 1em;
}

.notebox {
  display: block;
}

.note-left {
  width: 100%;
  border-bottom: 2px solid #764f00;
  border-right: none;
  padding-bottom: 0.8em;
}

.note-right {
width: 100%;
padding-top: 0.8em;
padding-left: 0;
}

}