@charset "UTF-8";

/* =========================================================
   content-120.css
   塩蔵漬け物
========================================================= */

.rd-hero__overlay{
  background:
    linear-gradient(to top, rgba(20, 28, 18, 0.78), rgba(20, 28, 18, 0.38)),
    linear-gradient(to right, rgba(22, 56, 30, 0.18), rgba(0, 0, 0, 0.00));
}

.rd-hero__eyebrow{
  letter-spacing: 0.08em;
}

.rd-summary__item{
  border-top: 4px solid #7aa64a;
}

.rd-section--intro .rd-prose,
.rd-section--closing .rd-prose{
  font-size: 1.04rem;
  line-height: 2;
}

.rd-section--taste-factors{
  background: linear-gradient(180deg, #f7fbf2 0%, #ffffff 100%);
}

.rd-factor-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rd-factor-card{
  background: #ffffff;
  border: 1px solid #dbe7cf;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.rd-factor-card__label{
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf6e1;
  color: #537332;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.rd-factor-card__title{
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.6;
  color: #23301a;
}

.rd-factor-card__body p{
  margin: 0;
  line-height: 1.95;
  color: #333333;
}

.rd-section--flavor-flow .rd-flow-card{
  border: 1px solid #d7e7c9;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(45, 74, 24, 0.06);
}

.rd-flow-card__title{
  color: #28401a;
}

.rd-flow-steps{
  counter-reset: rdflow;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.rd-flow-steps__item{
  position: relative;
  margin: 0 0 14px;
  padding: 14px 14px 14px 58px;
  border-radius: 16px;
  background: #f6faef;
  line-height: 1.8;
}

.rd-flow-steps__item:before{
  counter-increment: rdflow;
  content: counter(rdflow);
  position: absolute;
  left: 16px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7aa64a;
  color: #ffffff;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
  font-size: 14px;
}

.rd-panel{
  border: 1px solid #dce8cf;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.rd-prose--panel p{
  line-height: 1.95;
}

.rd-list--check li{
  line-height: 1.9;
}

.rd-section--closing .rd-closing{
  background: linear-gradient(180deg, #f6faef 0%, #ffffff 100%);
  border: 1px solid #dbe7cf;
}

.rd-cta{
  border: 1px solid #dbe7cf;
  background: #fbfdf8;
}

@media screen and (max-width: 900px){
  .rd-factor-cards{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media screen and (max-width: 767px){
  .rd-section--intro .rd-prose,
  .rd-section--closing .rd-prose{
    font-size: 0.98rem;
    line-height: 1.95;
  }

  .rd-factor-card{
    padding: 18px 16px;
    border-radius: 18px;
  }

  .rd-flow-steps__item{
    padding: 12px 12px 12px 50px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .rd-flow-steps__item:before{
    left: 14px;
    top: 11px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
  }
}