@charset "UTF-8";

.content-container {
  background: #f5efd8 url(../img/common/bg_paper.jpg) 0 0;
  width: 100%;
  overflow: hidden;
}

/* ==========================================================================
   localheader
   ======================================================================= */
@media all and (min-width: 768px) {
  .local-header__title {
    background: url(../img/recipe/local_header.png) 50% 0 no-repeat;
    background-size: cover;
  }
}

@media all and (max-width: 767px) {
  .local-header__title {
    background: url(../img/recipe/local_header_sp.png) 50% 0 no-repeat;
    background-size: 320px 64px;
  }
}

/* ==========================================================================
   hero
   ======================================================================= */

.hero {
  width: 100%;
  position: relative;
}

.hero__wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .hero__wrapper {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 60px 40px 35px 40px;
    max-width: 960px;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .hero__wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding: 18px 20px 35px 20px;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .section-recipe {
    padding-bottom: 60px;
  }
}

@media all and (max-width: 767px) {
  .section-recipe {
    padding-bottom: 60px;
  }
}



.recipe__title--rice,
.recipe__title--fish,
.recipe__title--meat,
.recipe__title--plus,
.recipe__title--yasai {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0px;
  line-height: 0px;
  display: block;
  height: 30px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {

  .recipe__title--rice,
  .recipe__title--fish,
  .recipe__title--meat,
  .recipe__title--plus,
  .recipe__title--yasai {
    height: 30px;
  }

  .recipe__title--rice {
    background: url(../img/recipe/rice_title.png) 50% 0 no-repeat;
    width: 145px;
  }

  .recipe__title--fish {
    background: url(../img/recipe/fish_title.png) 50% 0 no-repeat;
    width: 145px;
  }

  .recipe__title--meat {
    background: url(../img/recipe/meat_title.png) 50% 0 no-repeat;
    width: 145px;
  }

  .recipe__title--yasai {
    background: url(../img/recipe/yasai_title.png) 50% 0 no-repeat;
    width: 145px;
  }

  .recipe__title--plus {
    background: url(../img/recipe/plus_title.png) 50% 0 no-repeat;
    width: 145px;
  }
}

@media all and (max-width: 767px) {

  .recipe__title--rice,
  .recipe__title--fish,
  .recipe__title--meat {
    height: 20px;
  }

  .recipe__title--rice {
    background: url(../img/recipe/rice_title_sp.png) 50% 0 no-repeat;
    background-size: 101px 20px;
    width: 101px;
  }

  .recipe__title--fish {
    background: url(../img/recipe/fish_title_sp.png) 50% 0 no-repeat;
    background-size: 40px 20px;
    width: 40px;
  }

  .recipe__title--meat {
    background: url(../img/recipe/meat_title_sp.png) 50% 0 no-repeat;
    background-size: 39px 20px;
    width: 39px;
  }

  .recipe__title--yasai {
    background: url(../img/recipe/yasai_title_sp.png) 50% 0 no-repeat;
    background-size: 62.5px 20px;
    width: 62.5px;
  }

  .recipe__title--plus {
    background: url(../img/recipe/plus_title_sp.png) 50% 0 no-repeat;
    background-size: 70px 14px;
    width: 70px;
    height: 14px;
  }
}


.recipe__body::after {
  content: "";
  display: block;
  clear: both;
}

.recipe__item {
  float: left;
  background: #FFF;
  box-sizing: border-box;
}

.recipe__name {
  /* min-height: 3em; */
  text-align: center;
  font-weight: bold;
  color: #6a3906;
}

.recipe__item img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

@media all and (min-width: 768px) {
  .recipe__body {}

  .recipe__item {
    width: calc((100% - 41px) / 2);
    margin-right: 40px;
    margin-top: 20px;
    padding: 25px;
    border-radius: 14px;
  }

  .recipe__item:nth-child(2n) {
    margin-right: 0;
  }

  .recipe__item:nth-child(2n + 1) {
    clear: left;
  }

  .recipe__name {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .recipe__img {
    margin-bottom: 20px;
  }

  .recipe__btn {
    padding: 0 10px;
  }
}

@media all and (max-width: 767px) {
  .recipe__body {}

  .recipe__item {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-top: 20px;
    padding: 10px;
    border-radius: 14px;
  }

  .recipe__item:nth-child(2n) {
    margin-right: 0;
  }

  .recipe__item:nth-child(2n + 1) {
    clear: left;
  }

  .no-csscalc .recipe__item {
    width: 48%;
  }

  .recipe__name {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    /* min-height: 4.2em; */
  }

  .recipe__name.name-1l {
    min-height: 1.4em;
  }

  .recipe__name.name-2l {
    min-height: 2.8em;
  }

  .recipe__img {
    margin-bottom: 10px;
  }

  .recipe__btn .c-button__body {
    font-size: 12px;
    line-height: 12px;
  }

  .recipe__btn .c-button__body::after {
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #FFF;
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -4px;
  }
}

@media all and (max-width: 374px) {
  .c-button__body::after {
    display: none;
  }

  .recipe__btn .c-button__body {
    font-size: 11px;
    line-height: 11px;
  }
}

.recipe-plus__body::after {
  content: "";
  display: block;
  clear: both;
}

.recipe-plus__img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

@media all and (min-width: 768px) {
  .recipe-plus__body {
    width: 748px;
    margin: 20px auto 0 auto;
    background: #FFF;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 14px;
  }

  .recipe-plus__item {
    width: calc((100% - 33px) / 3);
    margin-right: 16px;
    float: left;
  }

  .recipe-plus__item:nth-child(3n) {
    margin-right: 0;
  }

  .recipe-plus__item:nth-child(3n + 1) {
    clear: left;
  }

  .recipe-plus__name {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #6a3906;
  }

  .recipe-plus__img {
    margin-bottom: 15px;
  }

  .recipe-plus__text-base {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    color: #6a3906;
  }

  .recipe-plus__text-base i {
    background: url(../img/recipe/plus_ico.png) 0 0 no-repeat;
    width: 26px;
    height: 34px;
    display: inline-block;
    vertical-align: -8px;
    margin-right: 5px;
  }

  .recipe-plus__text-ico {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    font-weight: bold;
    color: #6a3906;
  }

  .recipe-plus__text-plus {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    font-weight: bold;
    color: #6a3906;
  }

  .recipe-plus__footer {
    clear: both;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding-top: 40px;
    color: #6a3906;
  }

  .recipe-plus__footer strong {
    font-size: 28px;
    color: #e60012;
  }
}

@media all and (max-width: 767px) {
  .recipe-plus__body {
    background: #FFF;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 14px;
    margin-top: 20px;
  }

  .recipe-plus__item {
    max-width: 300px;
    margin: 0 auto 20px auto;
  }

  .recipe-plus__item::after {
    content: "";
    display: block;
    clear: both;
  }

  .recipe-plus__name {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #6a3906;
    float: right;
    width: 58%;
  }

  .recipe-plus__name span {
    padding-left: 10px;
  }

  .recipe-plus__img {
    float: left;
    width: 42%;
  }

  .recipe-plus__info {
    float: right;
    width: 58%;
  }

  .recipe-plus__text-base {
    font-size: 12px;
    line-height: 1.4;
    color: #6a3906;
    padding-left: 15px;
  }

  .recipe-plus__text-base i {
    background: url(../img/recipe/plus_ico.png) 0 0 no-repeat;
    background-size: 13px 17px;
    width: 13px;
    height: 17px;
    display: inline-block;
    vertical-align: -4px;
    margin-right: 5px;
  }

  .recipe-plus__text-ico {
    font-size: 9px;
    line-height: 1;
    font-weight: bold;
    color: #6a3906;
    padding-left: 33px;
  }

  .recipe-plus__text-plus {
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold;
    color: #6a3906;
    padding-left: 15px;
  }

  .recipe-plus__footer {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
    padding-top: 10px;
    color: #6a3906;
  }

  .recipe-plus__footer strong {
    font-size: 22px;
    color: #e60012;
  }
}


.char__01 {
  display: inline-block;
  position: absolute;
  -webkit-animation: rotate3 1.2s linear 0s infinite normal;
  animation: rotate3 1.2s linear 0s infinite normal;
}

@media all and (min-width: 768px) {
  .char__01 {
    background: url(../img/recipe/char_01.png) 0 0 no-repeat;
    background-size: cover;
    width: 17%;
    right: 0;
    margin-right: 22px;
    top: -12%;
  }

  .char__01::before {
    content: "";
    display: block;
    padding-top: 83.94%;
  }
}

@media all and (min-width: 1180px) {
  .char__01 {
    width: 26.56%;
    margin-right: -88px;
    top: -23.8%;
  }
}

@media all and (max-width: 767px) {
  .char__01 {
    background: url(../img/recipe/char_01_sp.png) 0 0 no-repeat;
    background-size: cover;
    width: 78px;
    height: 65px;
    right: 0;
    margin-right: -1%;
    top: -6%;
  }
}

.char__02 {
  display: inline-block;
  position: absolute;
  -webkit-animation: rotate3 1.4s linear .8s infinite normal;
  animation: rotate3 1.4s linear .8s infinite normal;
}

@media all and (min-width: 768px) {
  .char__02 {
    background: url(../img/recipe/char_02.png) 0 0 no-repeat;
    background-size: cover;
    width: 11%;
    left: 0;
    margin-left: 2%;
    top: -16.8%;
  }

  .char__02::before {
    content: "";
    display: block;
    padding-top: 128.1%;
  }
}

@media all and (min-width: 1180px) {
  .char__02 {
    width: 16.67%;
    margin-left: -10%;
    top: -22.8%;
  }
}

@media all and (max-width: 767px) {
  .char__02 {
    background: url(../img/recipe/char_02_sp.png) 0 0 no-repeat;
    background-size: cover;
    width: 49px;
    height: 62px;
    left: 0;
    margin-left: 1%;
    top: -6%;
  }
}

.char__03 {
  display: inline-block;
  position: absolute;
  -webkit-animation: rotate3 1.2s linear 0s infinite normal;
  animation: rotate3 1.2s linear 0s infinite normal;
}

@media all and (min-width: 768px) {
  .char__03 {
    background: url(../img/recipe/char_03.png) 0 0 no-repeat;
    background-size: cover;
    width: 10%;
    right: 0;
    margin-right: 28px;
    top: -4.4%;
  }

  .char__03::before {
    content: "";
    display: block;
    padding-top: 104.96%;
  }
}

@media all and (min-width: 1180px) {
  .char__03 {
    width: 14.69%;
    margin-right: -83px;
    top: -16.4%;
  }
}

@media all and (max-width: 767px) {
  .char__03 {
    background: url(../img/recipe/char_03_sp.png) 0 0 no-repeat;
    background-size: cover;
    width: 43px;
    height: 45px;
    right: 0;
    margin-right: 1%;
    top: -1%;
  }
}

.balloon {
  display: inline-block;
  position: absolute;
}

@media all and (min-width: 768px) {
  .balloon {
    background: url(../img/recipe/balloon.png) 0 0 no-repeat;
    background-size: cover;
    width: 122px;
    height: 122px;
    left: 50%;
    margin-left: -48.8%;
    top: -4%;
  }
}

@media all and (min-width: 980px) {
  .balloon {
    margin-left: -43.6%;
    top: -3.8%;
  }
}

@media all and (max-width: 767px) {
  .balloon {
    background: url(../img/recipe/balloon_sp.png) 0 0 no-repeat;
    background-size: cover;
    width: 14.32%;
    left: 50%;
    margin-left: -50%;
    top: -0.6%;
  }

  .balloon:before {
    content: "";
    display: block;
    margin-top: 100%;
  }
}

@media all and (max-width: 440px) {
  .balloon {
    background: url(../img/recipe/balloon_sp.png) 0 0 no-repeat;
    background-size: cover;
    width: 61px;
    height: 61px;
    left: 50%;
    margin-left: -49.5%;
    top: 2%;
  }
}

.recipe__body .recipe__g {
  float: left;
}

@media all and (min-width: 768px) {
  .recipe__g {
    width: calc((100% - 41px) / 2);
    margin-right: 40px;
  }

  .recipe__g:nth-child(2n) {
    margin-right: 0;
  }

  .recipe__g:nth-child(2n + 1) {
    clear: left;
  }

  .recipe__g .recipe__item {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    padding: 25px;
    border-radius: 14px;
    margin-top: 20px;
  }
}

@media all and (max-width: 767px) {
  .recipe__g {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-top: 20px;
  }

  .recipe__g:nth-child(2n) {
    margin-right: 0;
  }

  .recipe__g:nth-child(2n + 1) {
    clear: left;
  }

  .recipe__g .no-csscalc .recipe__g {
    width: 48%;
  }

  .recipe__g .recipe__item {
    width: 100%;
    padding: 10px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   MODAL
   ======================================================================= */

.modal-recipe-info__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media all and (min-width: 768px) {
  .modal-recipe-info::after {
    content: "";
    display: block;
    clear: both;
  }

  .modal-recipe-info__img {
    width: calc(50% - 10px);
    float: left;
  }

  .modal-recipe-info__body {
    width: calc(50% - 10px);
    float: right;
  }

  .modal-recipe-info__text {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media all and (max-width: 767px) {
  .modal-recipe-info__img {
    margin-bottom: 20px;
  }

  .modal-recipe-info__text {
    font-size: 13px;
    line-height: 1.6;
  }
}


.modal-recipe-materials {
  background: #fff4f4;
  border-radius: 10px;
}

.modal-recipe-materials:nth-child(n+2) {
  margin-top: 20px;
}

.modal-recipe-materials__header h4 {
  padding: 4px 10px;
  background: #e60012;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
}

.materials-list__text {
  overflow: hidden;
}

.materials-list__name {
  float: left;
}

.materials-list__quantity {
  float: right;
}

.materials-list__text--right {
  text-align: right;
}

.materials-list__text--right span {
  display: inline-block;
}

.materials-list__note--right {
  text-align: right;
}

@media all and (min-width: 768px) {
  .modal-recipe-materials__header {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .modal-recipe-materials__body {
    padding: 0 20px 20px 20px;
  }

  .modal-recipe-materials__header h4 {
    font-size: 12px;
    border-radius: 0 0 10px 10px;
  }

  .materials-list__item {
    padding: 10px 0 10px 0;
    border-bottom: #6a3906 1px solid;
    color: #323232;
  }

  .materials-list__text {
    font-size: 13px;
    line-height: 1.5;
    overflow: hidden;
  }

  .materials-list__name {
    float: left;
  }

  .materials-list__quantity {
    float: right;
  }

  .materials-list__text--right {
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
  }

  #fish02 .materials-list__text--right {
    text-align: right;
    font-size: 12px;
    line-height: 1.5;
  }

  .materials-list__text--right br {
    display: none;
  }

  .materials-list__note--right {
    font-size: 10px;
    line-height: 1.5;
  }
}

@media all and (max-width: 767px) {
  .modal-recipe-materials {
    margin-bottom: 20px;
  }

  .modal-recipe-materials__header {
    padding-left: 15px;
    margin-bottom: 10px;
  }

  .modal-recipe-materials__body {
    padding: 0 15px 15px 15px;
  }

  .modal-recipe-materials__header h4 {
    font-size: 11px;
    border-radius: 0 0 8px 8px;
  }

  .materials-list__item {
    padding: 7px 0 7px 0;
    border-bottom: #6a3906 1px solid;
    color: #323232;
  }

  .materials-list__text {
    font-size: 11px;
    line-height: 1.5;
    overflow: hidden;
  }

  .materials-list__name {
    float: left;
  }

  .materials-list__quantity {
    float: right;
    text-align: right;
  }

  .materials-list__text--right {
    text-align: right;
    font-size: 11px;
    line-height: 1.5;
  }

  #fish02 .materials-list__text--right {
    text-align: right;
    font-size: 10px;
    line-height: 1.5;
  }

  .materials-list__note--right {
    font-size: 10px;
    line-height: 1.5;
  }
}

.modal-recipe-steps__header {
  background: #6a3906;
  color: #fff;
  display: inline-block;
}

.modal-recipe-steps__num {
  display: block;
  float: left;
}

.modal-recipe-steps__text {
  display: block;
  margin-left: 1.25em;
}


@media all and (min-width: 768px) {
  .modal-recipe-steps {
    clear: both;
    padding-top: 20px;
  }

  .modal-recipe-steps__header {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .modal-recipe-steps__item {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
  }
}

@media all and (max-width: 767px) {
  .modal-recipe-steps {
    margin-top: 20px;
  }

  .modal-recipe-steps__header {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 5px;
  }

  .modal-recipe-steps__item {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 6px;
  }
}