/* common
---------------------------------------------------------------------------- */
/* p-recipe-detail
-------------------------------------- */
.p-recipe-detail {
  margin-block: 2rem 10rem;
}

.p-recipe-detail-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3.6rem;
  line-height: 1.3333333333;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #959fa8;
  margin-bottom: 3rem;
}

.p-recipe-detail-demo {
  border: 1px solid #959fa8;
  height: 30rem;
}
.p-recipe-detail-demo iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.p-recipe-detail-button {
  padding-top: 4rem;
}

@media screen and (max-width: 767px) {
  .p-recipe-detail {
    margin-block: 5.3333333333vw 13.3333333333vw;
  }
  .p-recipe-detail-ttl {
    font-size: 5.8666666667vw;
    padding-bottom: 1.3333333333vw;
    border-bottom: 0.5333333333vw solid #959fa8;
    margin-bottom: 5.3333333333vw;
  }
  .p-recipe-detail-demo {
    height: 80vw;
  }
  .p-recipe-detail-button {
    padding-top: 5.3333333333vw;
  }
}
/* p-recipe-detail-other
-------------------------------------- */
.p-recipe-detail-other {
  padding-block: 0rem 10rem;
}

.p-recipe-detail-other-inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media screen and (max-width: 767px) {
  .p-recipe-detail-other {
    padding-block: 0vw 13.3333333333vw;
  }
  .p-recipe-detail-other-inner {
    gap: 8vw;
  }
}
