@charset "UTF-8";
.l-page-body a {
  color: #000;
}

.recipe-head__title {
  margin: 0;
  text-align: center;
}
.recipe-head__toc {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.recipe-head__toc__item {
  flex-basis: calc((100% - 40px) / 3);
}
.recipe-head__toc__item > a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 10px 10px 7px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.3;
  background: #cf633c;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
}
.recipe-head__toc__item > a:hover {
  opacity: 0.5;
}
.recipe-head__toc__item > a > span {
  font-size: 0.7272727273em;
}
.recipe-head__toc__item > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -8px;
  transition: all 0.3s;
}

.recipe-section {
  max-width: 1000px;
  margin: 100px auto 0;
}
.recipe-section__heading {
  margin: 0;
  font-size: 35px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.3;
  text-align: center;
  color: #cf633c;
}
.recipe-section__heading > span {
  font-size: 1.3714285714em;
}
.recipe-section__movie {
  text-align: center;
  margin: 40px 0 0;
  text-align: center;
}
.recipe-section__movie > iframe {
  width: 640px;
  height: 360px;
}

.recipe-comment {
  margin: 15px 0 0;
  padding: 25px;
  background: #fff6e9;
}
.recipe-comment__text {
  margin: auto;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #cf633c;
}
.recipe-comment__text--slash {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.recipe-comment__text--slash > span {
  flex: 1;
}
.recipe-comment__text--slash::before, .recipe-comment__text--slash::after {
  display: inline-block;
}
.recipe-comment__text--slash::before {
  content: "＼";
}
.recipe-comment__text--slash::after {
  content: "／";
}
.recipe-comment__ingredients {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.recipe-comment__ingredients__item {
  flex-basis: calc((100% - 30px) / 4);
  padding: 5px 5px 4px;
  background: #fff;
  font-size: 18px;
  text-align: center;
  color: #cf633c;
  font-weight: bold;
}

.recipe-links {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.recipe-links + .recipe-links {
  margin-top: 20px;
}
.recipe-links--large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.recipe-links__item {
  position: relative;
}
.recipe-links__item > a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
  opacity: 1;
}
.recipe-links__item > a:hover {
  opacity: 0.5;
}
.recipe-links__item__image {
  position: relative;
  text-align: center;
}
.recipe-links__item__movie-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 120px;
  height: 120px;
}
.recipe-links__item__time {
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 5px;
  padding: 0.4em 1.5em;
  background: #fff;
  line-height: 1.3;
  border-radius: 3px;
  font-size: 12px;
}
.recipe-links--large .recipe-links__item__time {
  right: 10px;
  bottom: 10px;
  font-size: 16px;
}

.recipe-links__item__time__label::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_time.png) no-repeat 0 0/contain;
  width: 15px;
  height: 15px;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}
.recipe-links--large .recipe-links__item__time__label::before {
  width: 20px;
  height: 20px;
}

.recipe-links__item__time__number {
  font-weight: bold;
  font-size: 16px;
}
.recipe-links__item__time__number > span {
  font-size: 0.75em;
}
.recipe-links--large .recipe-links__item__time__number {
  font-size: 22px;
}

.recipe-links__item__name {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 0;
  padding: 0 10px 0 0;
  text-decoration: underline;
  line-height: 1.4;
}
.recipe-links--large .recipe-links__item__name {
  font-size: 22px;
  padding-right: 15px;
}

.recipe-links__item__name::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  margin-top: -3px;
}
.recipe-links--large .recipe-links__item__name::after {
  width: 10px;
  height: 10px;
  border-top-width: 2px;
  border-right-width: 2px;
  margin-top: -6px;
}

.recipe-other {
  max-width: 1000px;
  margin: 70px auto 0;
  padding: 40px;
  background: #f9f2e8;
}
.recipe-other__heading {
  margin: 0;
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  line-height: 1.6;
  text-align: center;
}
.recipe-other__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.recipe-other__button {
  margin: 20px 0 0;
  text-align: center;
}
.recipe-other__button > a {
  position: relative;
  display: inline-block;
  min-width: 360px;
  max-width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  transition: opacity 0.3s;
  opacity: 1;
}
.recipe-other__button > a:hover {
  opacity: 0.5;
}
.recipe-other__button > a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  vertical-align: 0.15em;
}/*# sourceMappingURL=style.css.map */