<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&amp;display=swap");
html {
  scroll-padding-top: 77px; /* 固定ヘッダの高さ分 */
}
.recipe {
  font-family: Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
.recipe__header {
  display: flex;
}
@media (max-width: 767.98px) {
  .recipe__header {
    flex-direction: column;
  }
}
.recipe__header--title {
  margin-right: 20px;

  flex: 0 0 190px;
}
@media (max-width: 767.98px) {
  .recipe__header--title {
    margin: 20px 0;
    text-align: center;

    flex: auto;
  }
}
.recipe__header--theme h3 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.recipe__header--theme h3 b {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .recipe__header--theme {
    display: flex;
    justify-content: space-around;
  }
  .recipe__header--theme h3 {
    border: none;
    text-align: center;

    flex: 0 0 30%;
  }
  .recipe__header--theme h3 b {
    display: inline-block;
    margin: 5px 0 0 0;
  }
  .recipe__header--theme--comment {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7142857143;
  }
}
.recipe__header--theme--inner {
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7142857143;
}
.recipe__header--theme--photo {
  flex: 0 0 150px;
}
.recipe__header--search {
  flex: 0 0 320px;
}
@media (max-width: 767.98px) {
  .recipe__header--search {
    display: none;
  }
}
.recipe__contents--wrapper:nth-child(2n) .recipe__contents--inner {
  justify-content: flex-end;
  background-position: left;
}
.recipe__contents--title {
  margin: 15px;
  padding: 15px 0;
  border-top: 2px solid #7A6A56;
  border-bottom: 2px solid #7A6A56;
  background: none;
  color: #7A6A56;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4166666667;
}
.recipe__contents--header {
  display: flex;
}
.recipe__contents--header--photo {
  flex: 0 0 150px;
}
.recipe__contents--header--photo img {
  width: 120px;
  height: 150px;
  border-radius: 50%;

  object-fit: cover;
}
.recipe__contents--header--title p {
  margin: 0;
}
.recipe__contents--inner {
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: rgba(255, 255, 255, .5);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;

  background-blend-mode: lighten;
}
@media (max-width: 767.98px) {
  .recipe__contents--inner {
    flex-direction: column;
  }
}

.recipe__contents--photo {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  opacity: .3;
}
.recipe__contents--photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .recipe__contents--photo {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    opacity: 1;
  }
}
.recipe__contents--movie {
  margin: 15px auto;
}
@media (max-width: 767.98px) {
  .recipe__contents--movie {
    position: relative;
    width: 90%;
    padding-top: 56.25%;
  }
  .recipe__contents--movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
.recipe__contents--list {
  margin-top: 15px;
}
.recipe__contents--list--title {
  padding: 5px 0;
  border: 1px solid #00A291;
  color: #00A291;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3333333333;
}
.recipe__contents--menu {
  position: relative;
}

@media (max-width: 767.98px) {
  .recipe__contents--header {
    display: none;
  }
}

.recipe__contents--menu .flex .col50 {
  padding: 0 10px;
}
.recipe__contents--menu p {
  font-weight: normal;
}
.recipe_youtube {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  margin-top: 20px;
  padding-bottom: 56.25%;
}
.recipe_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.eiyouso ul {
  padding: 0;
}
.eiyouso li {
  list-style: none;
  font-weight: normal;
}
.eiyouso li:first-letter {
  color: #22AC38;
}
ul.recipe_howto {
  margin-bottom: 2em;
  padding: 0;
  counter-reset: number;
}
.recipe_howto li {
  list-style: none;
  position: relative;
  padding: .5em 0em 0em 3.3em;
  border-bottom: 1px solid #C9CACA;
  font-weight: normal;
  text-align: left;
  line-height: 1.5em;
}
.recipe_howto li:before {
  content: counter(number);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7A6A56;
  color: white;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  counter-increment: number;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
table.recipe_item {
  border-collapse: collapse;
  margin-top: 10px;
  ;
}
table.recipe_item {
  width: 100%;
}
.recipe_item tr {
  border-bottom: 1px solid #C9CACA;
}
.recipe_item th {
  padding: 5px 0;
  font-weight: normal;
  text-align: left;
}
.recipe_item td {
  padding: 5px 0;
  font-weight: normal;
  text-align: right;
}
.recipe_person {
  color: #555;
}
.recipe_memo {
  position: relative;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 20px;
  background: #7A6A56;
  color: #FFF;
}
.recipe_memo p {
  color: #FFF;
}
.recipe_memo h4 {
  position: absolute;
  top: -13px;
  left: 50%;
  width: auto;
  text-shadow: 2px  2px 1px #7A6A56,
  -2px  2px 1px #7A6A56,
  2px -2px 1px #7A6A56,
  -2px -2px 1px #7A6A56,
  2px  0px 1px #7A6A56,
  0px  2px 1px #7A6A56,
  -2px  0px 1px #7A6A56,
  0px -2px 1px #7A6A56;
  font-size: 22px;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.col66 {
  margin-left: 1%;
}
@media (max-width: 767.98px) {
  .recipe_memo h4 {
    position: absolute;
    top: -12px;
    font-size: 19px;
  }
}
@media (max-width: 767.98px) {
  .col33,
  .col50,
  .col66 {
    width: 100%;
  }
  .col66 {
    margin-left: 0;
  }
}
</pre></body></html>