@charset "UTF-8";

/* =========================================================
   content-70.css
   漬け物の種類と塩の分量
========================================================= */

.rd-section--salt-guide,
.rd-section--regional-pickles{
  background: #fffdf8;
}

.rd-salt-groups{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rd-salt-group{
  background: #ffffff;
  border: 1px solid #eadfcd;
  border-radius: 20px;
  padding: 20px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.rd-salt-group__head{
  margin-bottom: 16px;
}

.rd-salt-group__title{
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  color: #5f4a2f;
}

.rd-salt-cards{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

.rd-salt-card{
  background: #fff;
  border: 1px solid #efe5d5;
  border-radius: 18px;
  padding: 16px;
}

.rd-salt-card__title{
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.4;
  color: #2f2a22;
}

.rd-salt-card__meta{
  margin: 0;
}

.rd-salt-card__row{
  padding: 10px 0;
  border-top: 1px solid #f2ebdf;
}

.rd-salt-card__row:first-child{
  border-top: none;
  padding-top: 0;
}

.rd-salt-card__row dt{
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #8a7352;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.rd-salt-card__row dd{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #2f2a22;
}

.rd-salt-notes,
.rd-region-notes{
  margin-top: 18px;
}

.rd-bed-labels{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.rd-bed-labels__item{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4ecde;
  border: 1px solid #e6d8bf;
  font-size: 13px;
  line-height: 1.4;
  color: #5f4a2f;
  box-sizing: border-box;
}

.rd-region-cards{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

.rd-region-card{
  background: #fff;
  border: 1px solid #efe5d5;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.rd-region-card__title{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  color: #2f2a22;
}

.rd-region-card__list{
  margin: 0;
  padding-left: 1.2em;
}

.rd-region-card__list li{
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.8;
  color: #2f2a22;
}

.rd-region-card__list li:last-child{
  margin-bottom: 0;
}

@media screen and (min-width: 768px){
  .rd-salt-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-region-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1100px){
  .rd-region-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}