@charset "UTF-8";

/* =========================================
   content-100.css
   漬け物が漬かる仕組み
========================================= */

.rd-hero__overlay{
  background:
    linear-gradient(to top, rgba(0,0,0,0.62), rgba(0,0,0,0.18));
}

.rd-hero__eyebrow{
  letter-spacing: 0.14em;
}

.rd-summary{
  background: #f7f4ea;
}

.rd-summary__item{
  border: 1px solid #e7dfc8;
  background: #fffdf7;
}

.rd-section--intro{
  background: #fffef9;
}

.rd-section--intro .rd-heading h2,
.rd-section--flavor-flow .rd-heading h2,
.rd-section .rd-heading h2,
.rd-section--closing .rd-heading h2{
  line-height: 1.45;
}

.rd-section--flavor-flow{
  background: #f8fbf5;
}

.rd-flow-card{
  border: 1px solid #d9e6d1;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.rd-flow-card__title{
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.4;
  color: #284b2e;
}

.rd-flow-steps{
  counter-reset: flow-step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rd-flow-steps__item{
  position: relative;
  padding: 16px 16px 16px 64px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #f3f8ef;
  line-height: 1.8;
  font-size: 16px;
}

.rd-flow-steps__item:before{
  counter-increment: flow-step;
  content: counter(flow-step);
  position: absolute;
  top: 14px;
  left: 16px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 999px;
  background: #6f9b4d;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}

.rd-section .rd-panel{
  border: 1px solid #e6e1d5;
  background: #fffdfa;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.rd-list--check li{
  line-height: 1.8;
}

.rd-section--taste-factors{
  background: #fffefb;
}

.rd-factor-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rd-factor-card{
  border: 1px solid #eadfce;
  background: linear-gradient(180deg, #fffdf9 0%, #fff7ec 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.rd-factor-card__label{
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e6f0da;
  color: #476132;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.rd-factor-card__title{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.45;
}

.rd-factor-card__body p{
  margin: 0;
  line-height: 1.9;
}

.rd-section--closing .rd-closing{
  background:
    linear-gradient(180deg, #faf7ef 0%, #f2f6ea 100%);
  border: 1px solid #e2dccd;
}

.rd-section--cta .rd-cta{
  border: 1px solid #ded8ca;
  background: #fffdfa;
}

/* スマホ最適化 */
@media screen and (max-width: 767px){

  .rd-flow-card__title{
    font-size: 20px;
  }

  .rd-flow-steps__item{
    padding: 14px 14px 14px 56px;
    font-size: 15px;
    line-height: 1.75;
  }

  .rd-flow-steps__item:before{
    top: 13px;
    left: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .rd-factor-cards{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rd-factor-card__title{
    font-size: 18px;
  }
}