@charset "UTF-8";
/*
list / detail
-----------------------------------------*/
.mainVisualLower .pageTitle {
  padding: 35px 0;
}
.mainVisualLower .pageTitle.detail {
  padding-bottom: 25px;
}
.mainVisualLower .mvInformation {
  font-size: 14px;
}
@media (min-width: 1000px) {
  .mainVisualLower .pageTitle {
    padding: 15px 0 30px;
  }
  .mainVisualLower .pageTitle.detail {
    padding: 25px 0 50px;
  }
  .mainVisualLower .mvInformation {
    font-size: 16px;
  }
}

/*
list
-----------------------------------------*/
/*
#search
---------------------------*/
#searchBox {
  margin: 40px 0;
}
#searchBox.bottom {
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid #ccc;
}
#searchBox .inputWrap {
  display: flex;
  align-items: stretch;
}
#searchBox .inputWrap input {
  font-size: 16px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
#searchBox .inputWrap button {
  font-size: 16px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
#searchBox .inputWrap input {
  width: calc(100% - 46px);
  padding: 12px 20px;
  border: 1px solid #C5C5C5;
}
#searchBox .inputWrap button {
  width: 46px;
  background-color: #000;
  color: #fff;
  border: none;
}
#searchBox .inputWrap button img {
  width: 20px;
  height: auto;
}
@media (min-width: 1000px) {
  #searchBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 60px;
  }
  #searchBox .inputWrap input {
    width: auto;
    min-width: 540px;
    padding: 12px 20px;
  }
  #searchBox .inputWrap button {
    width: 120px;
  }
  #searchBox .title span {
    position: relative;
    font-weight: 600;
    font-size: 20px;
    padding-left: 34px;
    margin-right: 20px;
  }
  #searchBox .title span:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/recipe/search-icon-red.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

.recipeBox a:hover img {
  transition: 0.5s;
  transform: scale(1.1);
}

.recipeImageBox {
  overflow: hidden;
}
.recipeImageBox img {
  transition: all 0.5s ease;
}

.attentionRecipe {
  margin-bottom: 15px;
}
.attentionRecipe .attentionRecipeImage {
  position: relative;
  height: 203px;
  overflow: hidden;
}
.attentionRecipe .attentionRecipeImage img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.attentionRecipe .listDetailBox {
  position: relative;
  background-color: #fff;
  text-align: center;
  margin: 0 10px;
  padding: 15px 20px 20px;
  z-index: 2;
}
.attentionRecipe .listDetailBox .note {
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: 163px;
  background-color: #fff;
  font-size: 14px;
  text-align: center;
  color: #CC0700;
  font-weight: 600;
  border: 1px solid #CC0700;
  border-radius: 50px;
  margin: auto;
  padding: 10px 15px;
}
.attentionRecipe .recipeDetail {
  padding-top: 25px;
}
.attentionRecipe .recipeDetail .recipeTitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 20px;
}
.attentionRecipe .recipeDetail .infoText {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 1000px) {
  .attentionRecipe {
    margin-bottom: 50px;
  }
  .attentionRecipe .attentionRecipeImage {
    position: relative;
    height: 406px;
    overflow: hidden;
  }
  .attentionRecipe .attentionRecipeImage img {
    left: 0;
    right: 0;
  }
  .attentionRecipe .listDetailBox {
    padding: 50px 0 30px;
    margin-left: 44px;
    margin-right: 44px;
  }
  .attentionRecipe .listDetailBox .note {
    font-size: 14px;
  }
  .attentionRecipe .recipeDetail {
    padding-top: 0;
  }
  .attentionRecipe .recipeDetail .recipeTitle {
    font-size: 24px;
    padding-bottom: 25px;
  }
  .attentionRecipe .recipeDetail .infoText {
    font-size: 16px;
    line-height: 2;
  }
}

.recipeList.type02 {
  display: flex;
  flex-wrap: wrap;
}
.recipeList.type02 .recipeBox {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  margin-bottom: 20px;
}
.recipeList.type02 .recipeBox + .recipeBox {
  padding-top: 0;
}
.recipeList.type02 .recipeBox:nth-of-type(even) {
  margin-right: 0;
}
.recipeList .recipeBox {
  text-align: center;
}
.recipeList .recipeBox .recipeTitle {
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
  padding-top: 12px;
}
.recipeList .recipeBox + .recipeBox {
  padding-top: 25px;
}
@media (min-width: 1000px) {
  .recipeList {
    display: flex;
    flex-wrap: wrap;
  }
  .recipeList.type02 .recipeBox {
    width: calc((100% - 60px) / 3);
    margin-right: 20px;
    margin-bottom: 40px;
  }
  .recipeList.type02 .recipeBox:nth-of-type(even) {
    margin-right: 20px;
  }
  .recipeList.type02 .recipeBox:nth-of-type(3n) {
    margin-right: 0;
  }
  .recipeList .recipeBox {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 40px;
  }
  .recipeList .recipeBox + .recipeBox {
    padding-top: 0;
  }
  .recipeList .recipeBox:nth-of-type(even) {
    margin-right: 0;
  }
  .recipeList .recipeBox .recipeTitle {
    font-size: 22px;
    padding-top: 20px;
  }
}

/* pagination */
.pagination {
  padding: 40px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li {
  position: relative;
  margin: 0 min(2vw, 5px);
}
.pagination li a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li.no {
  padding: 0 min(2vw, 15px);
}
.pagination li.no a {
  width: 25px;
  height: 25px;
}
.pagination li.no:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #000;
  z-index: -1;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.pagination li.no a {
  line-height: 1;
  font-size: 14px;
}
.pagination li.active.no:before {
  opacity: 1;
}
.pagination li.active a {
  color: #fff;
}
.pagination li.active a:hover {
  cursor: default;
}
.pagination li:hover {
  cursor: pointer;
}
.pagination li:hover.no:before {
  opacity: 1;
}
.pagination li:hover a {
  color: #fff;
}
.pagination li.next, .pagination li.prev {
  display: flex;
  transition: all 0.3s ease-out;
  margin-left: min(2vw, 33px);
}
.pagination li.next a, .pagination li.prev a {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #000;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
.pagination li.next a:after, .pagination li.prev a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 6px;
  width: 6px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #000;
  transition: all 0.3s ease-out;
}
.pagination li.next:hover:not(.disabled) a, .pagination li.prev:hover:not(.disabled) a {
  cursor: pointer;
  color: #000;
  background: #000;
  border: 1px solid #000;
  opacity: 1;
}
.pagination li.next:hover:not(.disabled) a:after, .pagination li.prev:hover:not(.disabled) a:after {
  background-color: #fff;
}
.pagination li.next.disabled a, .pagination li.prev.disabled a {
  opacity: 0.3;
  transition: none;
}
.pagination li.prev {
  margin-left: 0;
  margin-right: min(2vw, 33px);
}
.pagination li.prev a:after {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media (min-width: 1000px) {
  .pagination {
    padding: 30px 0 0;
  }
  .pagination li {
    margin: 0 min(2vw, 10px);
  }
  .pagination li.no {
    padding: 0 min(4vw, 15px);
  }
  .pagination li.no a {
    width: 33px;
    height: 33px;
  }
  .pagination li.no:before {
    width: 33px;
    height: 33px;
  }
  .pagination li.next, .pagination li.prev {
    display: flex;
    transition: all 0.3s ease-out;
    margin-left: min(2vw, 33px);
  }
  .pagination li.next a, .pagination li.prev a {
    width: 56px;
    height: 56px;
  }
  .pagination li.next a:after, .pagination li.prev a:after {
    height: 10px;
    width: 10px;
  }
}

/*
detail
-----------------------------------------*/
.recipeTopDetail {
  padding: 15px 0 22px;
}
.recipeTopDetail + .note {
  font-size: 10px;
  text-align: center;
}
.recipeTopDetail .recipeInfo {
  font-weight: 600;
  line-height: 1.75;
  padding-bottom: 30px;
}
.recipeTopDetail .recipeTopIconWrap {
  display: flex;
  justify-content: center;
  padding: 0 7%;
}
.recipeTopDetail .recipeTopIconWrap .recipeTopIconBox {
  width: 33.3333333333%;
  padding: 0 0 10px;
  text-align: center;
  border-right: 1px solid #BDBDBD;
}
.recipeTopDetail .recipeTopIconWrap .recipeTopIconBox:first-of-type {
  border-left: 1px solid #BDBDBD;
}
.recipeTopDetail .recipeTopIconWrap .recipeTopIconBox .icon img {
  width: 40px;
}
.recipeTopDetail .recipeTopIconWrap dt {
  font-weight: 600;
  font-size: 12px;
}
.recipeTopDetail .recipeTopIconWrap dd {
  font-size: 22px;
  font-weight: 600;
  font-family: "Roboto", serif;
  padding-top: 10px;
}
.recipeTopDetail .recipeTopIconWrap dd span {
  font-family: "Nunito", serif;
  font-size: 10px;
}
@media (min-width: 1000px) {
  .recipeTopDetail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 30px;
  }
  .recipeTopDetail.centerType {
    justify-content: center;
  }
  .recipeTopDetail.centerType .recipeInfo {
    text-align: center;
  }
  .recipeTopDetail + .note {
    font-size: 12px;
    text-align: right;
  }
  .recipeTopDetail .recipeInfo {
    font-size: 22px;
    line-height: 2.45;
    padding-bottom: 0;
  }
  .recipeTopDetail .recipeTopIconWrap {
    justify-content: flex-end;
    padding: 0;
  }
  .recipeTopDetail .recipeTopIconWrap .recipeTopIconBox {
    width: 126px;
  }
  .recipeTopDetail .recipeTopIconWrap dt {
    font-size: 14px;
  }
  .recipeTopDetail .recipeTopIconWrap dd {
    font-size: 24px;
    padding-top: 15px;
  }
}

.recipeMaterialWrap {
  margin: 40px 0 0;
}
.recipeMaterialWrap .recipeMaterialBox {
  background-color: #F8F8F8;
  padding: 25px;
}
.recipeMaterialWrap .recipeMaterialBox + .recipeMaterialBox {
  margin-top: 20px;
}
.recipeMaterialWrap .recipeMaterialTitle {
  font-weight: 600;
  padding-bottom: 10px;
}
.recipeMaterialWrap .materialList li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}
.recipeMaterialWrap .materialList dl {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.recipeMaterialWrap .materialList .material-a {
  position: relative;
  padding-left: 20px;
}
.recipeMaterialWrap .materialList .material-a:after {
  content: "a";
  display: block;
  width: 20px;
  position: absolute;
  left: 0;
  top: 13px;
}
.recipeMaterialWrap .materialList .material-b {
  position: relative;
  padding-left: 20px;
}
.recipeMaterialWrap .materialList .material-b:after {
  content: "b";
  display: block;
  width: 20px;
  position: absolute;
  left: 0;
  top: 13px;
}
@media (min-width: 1000px) {
  .recipeMaterialWrap {
    display: flex;
    margin: 25px 0 60px;
  }
  .recipeMaterialWrap .recipeMaterialBox {
    width: calc((100% - 20px) / 2);
    padding: 30px 20px;
  }
  .recipeMaterialWrap .recipeMaterialBox + .recipeMaterialBox {
    margin: 0 0 0 20px;
  }
  .recipeMaterialWrap .recipeMaterialTitle {
    padding-bottom: 15px;
  }
  .recipeMaterialWrap .materialList li {
    padding: 12px 0;
  }
  .recipeMaterialWrap .materialList .material-a:after,
  .recipeMaterialWrap .materialList .material-b:after {
    top: 15px;
  }
}

.recipeExplanation .recipeExplanationDetail {
  position: relative;
  padding-left: 50px;
  padding-bottom: 35px;
  margin: 35px 0;
  border-bottom: 1px solid #CCCCCC;
}
.recipeExplanation .recipeExplanationDetail:last-of-type {
  margin-bottom: 0;
}
.recipeExplanation .recipeExplanationDetail:before {
  contet: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 5px 9px;
  border: 1px solid #000;
  border-radius: 4px;
}
.recipeExplanation .recipeExplanationDetail.preparation {
  padding-left: 80px;
}
.recipeExplanation .recipeExplanationDetail.preparation:before {
  font-size: 14px;
  content: "下準備";
  padding: 10px 12px;
}
.recipeExplanation .recipeExplanationDetail.point {
  padding-left: 0;
}
.recipeExplanation .recipeExplanationDetail.point:before {
  content: none;
}
.recipeExplanation .recipeExplanationDetail.point .pointText {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  padding: 10px 12px;
  border: 1px solid #000;
  border-radius: 4px;
  margin-right: 10px;
}
.recipeExplanation .recipeExplanationDetail.detail01:before {
  content: "1";
}
.recipeExplanation .recipeExplanationDetail.detail02:before {
  content: "2";
}
.recipeExplanation .recipeExplanationDetail.detail03:before {
  content: "3";
}
.recipeExplanation .recipeExplanationDetail.detail04:before {
  content: "4";
}
.recipeExplanation .recipeExplanationDetail.detail05:before {
  content: "5";
}
.recipeExplanation .recipeExplanationDetail.detail06:before {
  content: "6";
}
.recipeExplanation .recipeExplanationDetail.detail07:before {
  content: "7";
}
.recipeExplanation .recipeExplanationDetail.detail08:before {
  content: "8";
}
.recipeExplanation .recipeExplanationDetail.detail09:before {
  content: "9";
}
.recipeExplanation .recipeExplanationDetail.detail010:before {
  content: "10";
}
.recipeExplanation .recipeExplanationDetail > p {
  display: inline-block;
  line-height: 1.8;
}
.recipeExplanation .recipeExplanationDetail > p .em {
  color: #CC0700;
  font-weight: 600;
  padding-right: 1em;
}
@media (min-width: 1000px) {
  .recipeExplanation .recipeExplanationDetail {
    padding-bottom: 40px;
    margin: 40px 0;
  }
}

.recipeDetailBottom > div {
  text-align: center;
  padding: 55px 0 65px;
}
.recipeDetailBottom > div + div {
  border-top: 1px solid #ccc;
  padding: 55px 0 40px;
}
.recipeDetailBottom .relatedProductsSlide .slick-prev,
.recipeDetailBottom .relatedProductsSlide .slick-next {
  top: 42.5%;
  width: 58px;
  height: 58px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #E0DDD9;
  cursor: pointer;
  transition: all 0.3sease-out;
  z-index: 2;
}
.recipeDetailBottom .relatedProductsSlide .slick-prev {
  left: -3%;
}
.recipeDetailBottom .relatedProductsSlide .slick-next {
  right: -3%;
}
.recipeDetailBottom .relatedProductsSlide .slick-prev:before,
.recipeDetailBottom .relatedProductsSlide .slick-next:before {
  height: 12px;
  width: 12px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #000;
  content: "";
  display: block;
  margin: auto;
}
.recipeDetailBottom .relatedProductsSlide .slick-prev:before {
  transform: scale(-1, 1);
}
.recipeDetailBottom .relatedProduct {
  margin: 0 5px;
}
.recipeDetailBottom .productDetail {
  text-align: left;
  font-size: 12px;
  padding-top: 15px;
}
.recipeDetailBottom .productDetail .name {
  padding-bottom: 10px;
}
.recipeDetailBottom .innerTitle {
  font-size: 20px;
  line-height: 1.4;
  padding-bottom: 30px;
}
.recipeDetailBottom .innerTitle span {
  position: relative;
  font-weight: 600;
  padding-left: 30px;
}
.recipeDetailBottom .innerTitle span:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../img/recipe/search-icon-red.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.recipeDetailBottom .innerTitle.check span:after {
  background-image: url(../img/recipe/check-icon.svg);
  width: 24px;
  height: 24px;
}
.recipeDetailBottom .info {
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 30px;
}
.recipeDetailBottom .searchBoxWrap {
  border-top: 1px solid #ccc;
}
.recipeDetailBottom.searchList {
  padding: 100px 0 0;
}
@media (min-width: 1000px) {
  .recipeDetailBottom {
    padding: 50px 0 0;
  }
  .recipeDetailBottom .innerTitle {
    font-size: 22px;
    padding-bottom: 30px;
  }
  .recipeDetailBottom .innerTitle span {
    padding-left: 50px;
  }
  .recipeDetailBottom .innerTitle span:after {
    width: 28px;
    height: 28px;
  }
  .recipeDetailBottom .innerTitle.check span:after {
    width: 28px;
    height: 28px;
  }
  .recipeDetailBottom .relatedProductsInner {
    padding-top: 30px;
  }
  .recipeDetailBottom .relatedProduct {
    margin: 0 10px;
  }
  .recipeDetailBottom .productDetail {
    padding: 15px 8px 0;
  }
  .recipeDetailBottom .productDetail .name {
    padding-bottom: 10px;
  }
  .recipeDetailBottom .relatedProductsSlide .slick-prev {
    left: -2%;
  }
  .recipeDetailBottom .relatedProductsSlide .slick-next {
    right: -2%;
  }
  .recipeDetailBottom.searchList {
    padding: 150px 0 0;
  }
}

.moreSearch #searchBox {
  margin: 0;
}
@media (min-width: 1000px) {
  .moreSearch #searchBox {
    display: block;
  }
  .moreSearch #searchBox .inputWrap {
    display: block;
  }
  .moreSearch #searchBox .inputWrap input {
    width: 100%;
    min-width: inherit;
  }
  .moreSearch #searchBox .inputWrap button {
    height: 44px;
    margin-top: 36px;
  }
}

.shareBox {
  text-align: center;
}
.shareBox .shareInnerBox {
  display: inline-block;
  margin-top: 8px;
  background-color: #F2F2F2;
  padding: 20px 35px;
  border-radius: 50px;
}
.shareBox .shareInnerBox > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shareBox .shareInnerBox > div > div + div {
  margin-left: 25px;
}
.shareBox .shareInnerBox .icon {
  width: 45px;
}
.shareBox .ballon img {
  width: 130px;
}
@media (min-width: 1000px) {
  .shareBox {
    position: fixed;
    right: 0;
    top: 275px;
  }
  .shareBox .shareInnerBox {
    margin-top: 25px;
    padding: 22px 28px 22px 23px;
    border-radius: 35px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .shareBox .shareInnerBox > div {
    display: block;
  }
  .shareBox .shareInnerBox > div > div + div {
    margin-left: 0;
    margin-top: 20px;
  }
  .shareBox .shareInnerBox .icon {
    width: 34px;
  }
  .shareBox .ballon img {
    width: 66px;
  }
}

.serachResultBox {
  padding: 50px 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.serachResultBox .keyword {
  padding-bottom: 15px;
}
.serachResultBox .keyword p {
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  padding-left: 18px;
}
.serachResultBox .keyword p:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  border: 0px;
  border-top: solid 1px #CC0700;
  border-right: solid 1px #CC0700;
  transform: rotate(45deg);
  z-index: 1;
}
.serachResultBox .resultCount {
  text-align: right;
}
.serachResultBox .resultCount p {
  font-size: 14px;
}
.serachResultBox .resultCount p .count {
  font-size: 30px;
}
.serachResultBox .resultCount p .count span {
  font-size: 18px;
  display: inline-block;
  padding-left: 0.25em;
}
@media (min-width: 769px) {
  .serachResultBox {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 95px 0 30px;
    margin-bottom: 40px;
  }
  .serachResultBox .keyword {
    padding-bottom: 0;
  }
  .serachResultBox .keyword p {
    font-size: 20px;
    padding-left: 24px;
  }
  .serachResultBox .keyword p:after {
    width: 12px;
    height: 12px;
  }
  .serachResultBox .resultCount {
    text-align: right;
  }
  .serachResultBox .resultCount p {
    font-size: 14px;
  }
  .serachResultBox .resultCount p .count {
    font-size: 40px;
  }
  .serachResultBox .resultCount p .count span {
    font-size: 20px;
  }
}

.titleheader {
  text-align: center;
  background-image: url(../img/recipe/titleheader_01-sp.jpg);
  background-position: center center;
  background-size: cover;
  padding: 60px 20px 0;
}
.titleheader .titleheaderInner {
  position: relative;
  background-color: #fff;
  padding: 50px 0 0;
}
.titleheader .headerTitle {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}
.titleheader .headerTitle + p {
  font-size: 14px;
}
.titleheader .ballonIcon {
  width: 106px;
  position: absolute;
  top: -67px;
  left: -12px;
}
@media (min-width: 769px) {
  .titleheader {
    padding-top: 105px;
    background-image: url(../img/recipe/titleheader_01.jpg);
  }
  .titleheader .titleheaderInner {
    width: 560px;
    margin: 0 auto;
    padding: 60px 0 20px;
  }
  .titleheader .headerTitle {
    font-size: 22px;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding-bottom: 30px;
  }
  .titleheader .headerTitle + p {
    font-size: 16px;
  }
  .titleheader .ballonIcon {
    width: auto;
    position: absolute;
    top: -57px;
    left: -60px;
  }
}

.arrangementRecipe {
  padding-top: 30px;
}
.arrangementRecipe .recipeList {
  margin-top: 30px;
}
.arrangementRecipe .recipeList .recipeTitle {
  font-size: 14px;
  padding-top: 10px;
}
.arrangementRecipe .recipeList .recipeTitle span {
  font-weight: 500;
  vertical-align: middle;
}
.arrangementRecipe .recipeList .recipeTitle .recipeInnerTitle {
  font-size: 14px;
  display: inline-block;
  padding: 10px;
  margin-left: 5px;
  border: 1px solid #000;
}
@media (min-width: 769px) {
  .arrangementRecipe {
    padding-top: 70px;
  }
  .arrangementRecipe .recipeList {
    margin-top: 76px;
  }
  .arrangementRecipe .recipeList .recipeTitle {
    font-size: 18px;
  }
  .arrangementRecipe .recipeList .recipeTitle .recipeInnerTitle {
    font-size: 22px;
    padding: 14px 20px;
    margin-left: 10px;
  }
}

.commitmentRecipe {
  margin-top: 40px;
}
.commitmentRecipe .titleheader {
  background-image: url(../img/recipe/titleheader_02-sp.jpg);
  margin-bottom: 20px;
}
.commitmentRecipe .titleheader .ballonIcon {
  top: -67px;
  left: auto;
  right: -12px;
}
@media (min-width: 769px) {
  .commitmentRecipe {
    margin-top: 60px;
  }
  .commitmentRecipe .titleheader {
    background-image: url(../img/recipe/titleheader_02.jpg);
    margin-bottom: 55px;
  }
  .commitmentRecipe .titleheader .ballonIcon {
    top: -57px;
    left: auto;
    right: -60px;
  }
}

/*# sourceMappingURL=recipe.css.map */