.p-recipe {
  padding-bottom: 0;
}

.p-recipe:before {
  content: "";
  width: 160px;
  height: 406px;
  position: absolute;
  top: 153px;
  left: 0;
  background-image: url(../img/img_himitsu_ornament_1.svg);
  background-repeat: no-repeat;
}

.p-recipe:after {
  content: "";
  width: 207px;
  height: 180px;
  position: absolute;
  top: 127px;
  right: 0;
  background-image: url(../img/img_himitsu_ornament_2.svg);
  background-repeat: no-repeat;
}

.p-himitsu-fv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 32px;
  padding: 0 140px;
  margin-bottom: 64px;
}

.p-himitsu-fv-img {
  width: 100%;
}

.p-himitsu-fv-img-sp{
  display: none;
}

.p-himitsu-fv-text-container {}

.p-himitsu-fv-title {
  font-family: var(--font-Mincho);
  font-weight: 500;
  font-size: 60px;
  line-height: 78px;
  margin-bottom: 32px;
  color: #C0C0C0;
}

.p-himitsu-fv-sub-title {
  font-family: var(--font-en);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  color: #C0C0C0;
}

.p-himitsu-fv-text {
  font-family: var(--font-KakuGo);
  font-weight: 500;
  font-size: 19px;
  line-height: 2;
  color: #C0C0C0;
}

.p-himitsu-contents:before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 534;
  position: absolute;
  top: 181px;
  left: 0;
  z-index: -1;
  background-image: url(../img/img_himitsu_ornament_3.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.p-himitsu-contents:after {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 591;
  position: absolute;
  bottom: 164px;
  left: 0;
  z-index: -1;
  background-image: url(../img/img_himitsu_ornament_4.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}


.p-himitsu-contents {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 140px 130px 140px;
}

.p-himitsu-item {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: center;
}

.p-himitsu-item-reverse {
  grid-template-columns: 6fr 1fr 5fr;
}

.p-himitsu-item-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-himitsu-item-number {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: #C0C0C0;
}

.p-himitsu-item-title {
  font-family: var(--font-Mincho);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  color: #C0C0C0;
}

.p-himitsu-item-text {
  font-family: var(--font-KakuGo);
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  color: #C0C0C0;
}

.p-himitsu-item-img {
  width: 100%;
}



@media screen and (max-width: 768px) {
  .p-recipe:before {
    width: calc(100vw * 42 / 375);
    height: calc(100vw * 173 / 375);
    top: calc(100vw * 44 / 375);
    left: 0;
    background-image: url(../img/img_himitsu_ornament_sp_1.svg);
  }
  .p-recipe:after {
    width: calc(100vw * 79 / 375);
    height: calc(100vw * 103 / 375);
    top: calc(100vw * 60 / 375);
    right: 0;
    background-image: url(../img/img_himitsu_ornament_sp_2.svg);
  }
  
  .p-himitsu-fv {
    grid-gap: 0;
    padding: calc(100vw * 68 / 375) calc(100vw * 60 / 375) 0 calc(100vw * 60 / 375);
    margin-bottom: calc(100vw * 100 / 375);
    align-items: start;
  }

  .p-himitsu-fv-text-container{
    width: calc(100vw * 104 / 375);
  }

  .p-himitsu-fv-title {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: calc(100vw * 44 / 375);
    margin: calc(100vw * 30 / 375) 0 0 0;
    letter-spacing: calc(100vw * 8 / 375);
    width: 100%;
    line-height: calc(100vw * 50 /375);
  }

  .p-himitsu-fv-sub-title{
    display: none;
  }

  .p-himitsu-fv-text{
    display: none;
  }

  .p-himitsu-fv-img {
    display: none;
  }
  
  .p-himitsu-fv-img-sp{
    display: block;
    width: calc(100vw * 133 / 375);
  }




  .p-himitsu-contents{
    gap: 72px;
    padding: 0 20px 72px 20px;
  }
  .p-himitsu-item{
    display: flex;
    flex-direction: column-reverse;
  }
  .p-himitsu-item-reverse{
    flex-direction: column;
  }
  .p-himitsu-item-img{
    margin-bottom: 32px;
  }
  .p-himitsu-item-text-container{
    gap: 12px;
  }
  .p-himitsu-item-title{
    font-size: 26px;
  }

}