/* ヒーローバナー背景 */
.kuchoufuku-hero {
  background-image: url("../images/kuchofuku/bg-kuchofuku.jpg");
  background-size: cover;
  background-position: center;
}

@media print, screen and (min-width: 960px) {
  .kuchoufuku-hero {
    background-image: url("../images/kuchofuku/bg-kuchofuku-desktop.jpg");
  }
}

/* セカンドビュー画像周り */
.kuchoufuku-second {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.kuchoufuku-second img {
  max-width: 100%;
  height: auto;
}

.kuchoufuku-lead__paragraph {
  font-size: 1.3rem;
  letter-spacing: .15em;
  line-height: 2em;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
}

@media print, screen and (min-width: 960px) {
  .kuchoufuku-lead__paragraph {
    font-size: 1.6rem;
  }
}

/* 丸い図形（ピックアップポイント） */
.kuchoufuku-lead__pickup-list:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 640px) {
  .kuchoufuku-lead__pickup-list:not(:first-child) {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.kuchoufuku-lead__pickup-list__item:not(:first-child) {
  margin-top: 16px;
}

@media screen and (min-width: 640px) {
  .kuchoufuku-lead__pickup-list__item:not(:first-child) {
    margin-top: 0;
    margin-left: 40px;
  }
}

@media print, screen and (min-width: 960px) {
  .kuchoufuku-lead__pickup-list__item:not(:first-child) {
    margin-left: 50px;
  }
}

.kuchoufuku-lead__pickup-list__item__shape {
  border-radius: 3px;
  background-color: #bae6fd; /* 水色ベースに変更 */
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (min-width: 640px) {
  .kuchoufuku-lead__pickup-list__item__shape {
    width: 173px;
    height: 173px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
}

.kuchoufuku-lead__pickup-list__item__shape__paragraph {
  font-size: 1.4rem;
  letter-spacing: .12em;
  line-height: 1.8em;
  font-weight: 700;
  color: #1e40af; /* 濃いブルーに変更 */
}

@media print, screen and (min-width: 960px) {
  .kuchoufuku-lead__pickup-list__item__shape__paragraph {
    font-size: 1.5rem;
    line-height: 1.75em;
  }
}

/* 特長セクションのレイアウト調整 */
.kuchoufuku-feature-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .kuchoufuku-feature-item {
    flex-direction: row;
    justify-content: space-between;
  }
  .kuchoufuku-feature-item--reverse {
    flex-direction: row-reverse;
  }
  .kuchoufuku-feature-item .figure {
    width: 45%;
  }
  .kuchoufuku-feature-text {
    width: 50%;
  }
}

/* ラインナップセクションの調整 */
.kuchoufuku-desc__list__item__box__text {
  margin-top: 15px;
}
.kuchoufuku-desc__list__item__box__text__paragraph:not(:last-child){
  margin-bottom: 6px;
}
.kuchoufuku-desc__list__item__box__text__paragraph:not(:first-child){
  margin-top: 6px;
}
.kuchoufuku-desc__list__item__box__text__price {
  font-weight: 700;
}


/* 使い方（ステップ）セクション */
.kuchoufuku-howto {
  background-color: #f8fafc; /* 少し明るいグレーブルー */
}
.kuchoufuku-howto__list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.kuchoufuku-howto__list__item {
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.kuchoufuku-howto__list__item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 5px;
}

.kuchoufuku-howto__list__item p {
  font-size: 16px;
  line-height: 1.6;
}

/* PCで4カラム横並び (やきいもは2カラムだったが、今回は4ステップなので4カラムに変更) */
@media screen and (min-width: 768px) {
  .kuchoufuku-howto__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .kuchoufuku-howto__list__item img {
    max-width: 100%;
  }
}