@charset "UTF-8";
/* mediaquery
==========================================================*/
/* fontsize
==========================================================*/
/* icon
==========================================================*/
/*　dotted ------------------------------------------------

破線の間隔を調整
$color：色、$stripe:線幅、$spacing：破線の間隔, $height:高さ

==========================================================*/
/*　transition ------------------------------------------------

破線の間隔を調整
$speed：速度、$delay：開始時間

==========================================================*/
/* IEhack
==========================================================*/
/* RECIPE css *****************************************
*****************************************************************/
#recipe_list {
  background: #fff5f4 url(/jpn/consumer/products/health/recipe/images/bg_recipe.png) center -80px no-repeat;
}

#recipe_list .recipe_tit_box {
  margin-bottom: 40px;
  text-align: center;
}

#recipe_list .recipe_tit_box .txt_main {
  position: relative;
  display: inline-block;
}

#recipe_list .recipe_tit_box .txt_main p {
  display: inline-block;
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, #ffffff 70%);
  font-weight: 600;
}

#recipe_list .recipe_tit_box .txt_main p span {
  color: #fa6478;
}

.btn_suppon p {
  position: relative;
  max-width: 495px;
  margin: 40px auto 20px;
}

.btn_suppon span {
  display: block;
  position: relative;
}

.btn_suppon p::before {
  content: "";
  display: block;
  position: absolute;
  width: 192px;
  height: 100px;
  left: -90px;
  top: -14px;
  background: url(/jpn/consumer/products/health/recipe/images/icon_suppon.png) left top no-repeat;
  background-size: 130%;
  z-index: 50;
}

/* recipe_list */
.list_wrap .list_category,
.list_wrap .list_product {
  display: flex;
  flex-wrap: wrap;
}

.list_wrap .list_category a {
  position: relative;
  display: block;
  font-weight: bold;
}

.list_wrap .list_category a .tit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 3px 5px;
  color: #fff;
  border-radius: 0 0 20px 20px;
  text-align: center;
  z-index: 1;
}

.list_wrap .list_category li .img {
  position: relative;
  border-radius: 20px;
  transition: all .2s;
}

.list_wrap .list_category li .img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  transition: all .2s;
}

.list_wrap .list_category li:hover {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.list_wrap .list_category li:hover .img::after {
  background: rgba(0, 0, 0, 0.2);
  transition: all .2s;
}

.list_wrap .list_category li .img img,
.list_wrap .list_product li .img img {
  border-radius: 20px;
  width: 100%;
}

.list_wrap .list_product a {
  position: relative;
  display: block;
  font-weight: bold;
}

.list_wrap .list_product a .tit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 3px 5px;
  background: #f4f6f7;
  color: #222;
  border-radius: 0 0 20px 20px;
  text-align: center;
  z-index: 1;
}

.list_wrap .list_product a .img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all .2s;
}

.list_wrap .list_product a .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #e2e2e8;
  border-radius: 20px;
  z-index: 2;
}

.list_wrap .list_product a .img img {
  transition: all .2s;
}

.list_wrap .list_product a:hover .img img {
  transform: scale(1.1);
  border-radius: 20px;
  transition: all .2s;
}

#recipe_content_area .recipe_box {
  border-bottom: 1px dashed #ddd;
}

.recipe_box:nth-child(odd) h2 {
  color: #fa6478;
}

.recipe_box:nth-child(odd) h2 span {
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, #fff5f4 70%);
}

.recipe_box:nth-child(even) h2 {
  color: #f58200;
}

.recipe_box:nth-child(even) h2 span {
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, #feecd9 70%);
}

.recipe_img img {
  border-radius: 20px;
}

.recipe_detail h3 {
  display: inline-block;
  padding: 3px 10px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
}

.recipe_box:nth-child(odd) .recipe_detail h3 {
  background-color: #fa6478;
}

.recipe_box:nth-child(even) .recipe_detail h3 {
  background-color: #f58200;
}

.howto {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}

.howto li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.howto li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  color: #fff;
  display: block;
  float: left;
  line-height: 25px;
  margin-left: -30px;
  text-align: center;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  font-weight: bold;
}

.recipe_box:nth-child(odd) .howto li:before {
  background-color: #fa6478;
}

.recipe_box:nth-child(even) .howto li:before {
  background-color: #f58200;
}

/* ============================================================
PC
============================================================ */
@media print, screen and (min-width: 768px) {
  #recipe_list {
    padding: 70px 0 50px;
  }

  #recipe_list .recipe_tit_box {
    font-size: 42px;
    text-align: center;
  }

  #recipe_list .recipe_tit_box .txt_main {
    padding: 10px 90px;
  }

  #recipe_list .recipe_tit_box .txt_main::before,
  #recipe_list .recipe_tit_box .txt_main::after {
    content: "";
    display: block;
    width: 39px;
    height: 138px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  #recipe_list .recipe_tit_box .txt_main::before {
    left: 0;
    background: url(/jpn/consumer/products/health/recipe/images/icon_tit_left_pc.png) left top no-repeat;
  }

  #recipe_list .recipe_tit_box .txt_main::after {
    right: 0;
    background: url(/jpn/consumer/products/health/recipe/images/icon_tit_right_pc.png) left top no-repeat;
  }

  #recipe_list .list_category li {
    width: calc((100% - 120px) / 5);
    max-width: 211px;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  #recipe_list .list_category li:nth-child(5n) {
    margin-right: 0;
  }

  #recipe_content_area .recipe_box {
    padding: 60px 0;
  }

  #recipe_content_area .recipe_box:last-child {
    margin-bottom: 120px;
  }

  .recipe_box h2 {
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: bold;
  }

  .recipe_wrap_box {
    display: flex;
    justify-content: space-between;
  }

  .recipe_img {
    width: 49%;
    max-width: 588px;
  }

  .recipe_img img {
    max-width: 100%;
  }

  .recipe_detail {
    width: 49%;
    max-width: 530px;
  }

  .ingredients {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .ingredients dl {
    display: flex;
    justify-content: space-between;
    width: 48.5%;
    max-width: 250px;
    border-bottom: 1px solid #bebec8;
    font-size: 16px;
  }

  .ingredients dl dt,
  .ingredients dl dd {
    padding: 5px 0;
  }

  .ingredients dl dd {
    text-align: right;
  }
}
/* ============================================================
liquid
============================================================ */
/* ============================================================
SP
============================================================ */
@media screen and (max-width: 767px) {
  #recipe_list .recipe_tit_box .txt_main {
    font-size: 7vw;
  }

  .btn_suppon p::before {
    width: 74px;
    height: 70px;
    left: -10px;
    top: 12px;
    background: url(/jpn/consumer/products/health/recipe/images/icon_suppon.png) left top no-repeat;
    background-size: 130%;
    z-index: 50;
  }

  .btn_suppon p a {
    padding-left: 60px !important;
  }

  #recipe_list {
    padding: 50px 0 60px;
    background: #fff5f4 url(/jpn/consumer/products/health/recipe/images/bg_recipe.png) center -40px no-repeat;
    background-size: 160%;
  }

  .recipe_tit_box .txt_main {
    text-align: center;
  }

  #recipe_list .list_category {
    justify-content: space-between;
  }

  #recipe_list .list_category li {
    width: 48%;
    margin-bottom: 20px;
  }

  #recipe_content_area .recipe_box {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .recipe_box h2 {
    margin-bottom: 30px;
    font-size: 7vw;
    font-weight: bold;
  }

  .recipe_img {
    margin-bottom: 30px;
  }

  .sp_wrap_box {
    width: 80%;
    margin: 0 auto;
  }

  .ingredients {
    margin: 10px 0 30px;
  }

  .ingredients dl {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #bebec8;
    font-size: 16px;
  }

  .ingredients dl dt,
  .ingredients dl dd {
    padding: 5px 0;
  }

  .ingredients dl dd {
    text-align: right;
  }

  .howto li {
    margin-bottom: 10px;
  }
}
/* ============================================================
add_recipe_anchor
============================================================ */
#teacher_anchor {
  padding: 70px 0;
  background: #fef8e4 url(/jpn/consumer/products/health/recipe/images/bg_anchor_area.png) center -80px no-repeat;
  position: relative;
}
#teacher_anchor::before {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  top: -4px;
  left: 0;
  background: url(/jpn/consumer/products/health/recipe/images/line_dot.png) left center repeat-x;
}
#teacher_anchor .teacher_tit_box {
  font-size: 42px;
  text-align: center;
}
#teacher_anchor .teacher_tit_box .txt_main {
  line-height: 1.6;
}
#teacher_anchor .teacher_tit_box .txt_main p {
  display: inline-block;
  font-weight: 600;
  text-shadow: 3px 3px 0 #fff;
  letter-spacing: .1em;
  letter-spacing: .05em;
  line-height: 1;
}
#teacher_anchor .teacher_tit_box .txt_main p span {
  color: #f08800;
}
#teacher_anchor .teacher_box {
  display: flex;
  margin: 10px  auto 10px;
  align-items: center;
  position: relative;
  z-index: 5;
}
#teacher_anchor .teacher_box.right_img {
  flex-direction: row-reverse;
}
#teacher_anchor .teacher_box.right_img .text {
  margin-right: 45px;
}
#teacher_anchor .teacher_box.right_img .text::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 40px;
  transform: translateX(100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 32px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 2;
}
#teacher_anchor .teacher_box.right_img .text::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 45px;
  transform: translateX(100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 32px;
  border-color: transparent transparent transparent #fdeccd;
  z-index: -1;
}
#teacher_anchor .teacher_box.left_img {
  flex-direction: row;
}
#teacher_anchor .teacher_box.left_img .text {
  margin-left: 45px;
}
#teacher_anchor .teacher_box.left_img .text::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 43px;
  transform: translateX(-100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 32px 10px 0;
  border-color: transparent #fff transparent transparent;
  z-index: 2;
}
#teacher_anchor .teacher_box.left_img .text::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 45px;
  transform: translateX(-100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 32px 10px 0;
  border-color: transparent #fdeccd transparent transparent;
  z-index: -1;
}
#teacher_anchor .teacher_box .photo {
  flex: 1;
  max-width: 225px;
}
#teacher_anchor .teacher_box .photo img {
  max-width: 100%;
}
#teacher_anchor .teacher_box .text {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  flex: 2;
  max-width: 770px;
  box-shadow: 3px 3px 0 0 #fdeccd;
}
#teacher_anchor .teacher_box .text ul {
  padding: 30px 40px 26px;
  display: flex;
  flex-wrap: wrap;
}
#teacher_anchor .teacher_box .text ul li {
  margin-right: 57px;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  margin-top: 14px;
  line-height: 1.3;
  margin-bottom: 12px;
  padding-bottom: 14px;
}
#teacher_anchor .teacher_box .text ul li::after {
  position: absolute;
  top: 0;
  right: -27px;
  bottom: 0;
  margin: auto;
  content: "";
  height: 100%;
  width: 1.5px;
  background-color: #bebec8;
  transform: rotate(13deg);
}
#teacher_anchor .teacher_box .text ul li:last-child::after {
  display: none;
}
#teacher_anchor .teacher_box .text ul li a {
  color: #000;
  text-decoration: none;
}
#teacher_anchor .teacher_box .text ul li a:hover {
  color: #f08600;
}
#teacher_anchor .teacher_box .text ul li a span {
  position: relative;
}
#teacher_anchor .teacher_box .text ul li a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: rgba(240, 134, 0, 0.5);
  width: 100%;
  height: 3px;
}

@media screen and (max-width: 767px) {
  #teacher_anchor {
    padding: 50px 0;
    margin-bottom: 80px;
    background: #fef8e4 url(/jpn/consumer/products/health/recipe/images/bg_anchor_area.png) -61px -1% no-repeat;
    background-size: 110%;
    position: relative;
  }
  #teacher_anchor::before {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    top: -4px;
    left: 0;
    background: url(/jpn/consumer/products/health/recipe/images/line_dot.png) left center repeat-x;
  }
  #teacher_anchor .teacher_tit_box {
    font-size: 7vw;
    text-align: center;
  }
  #teacher_anchor .teacher_tit_box .txt_main {
    line-height: 1.6;
  }
  #teacher_anchor .teacher_tit_box .txt_main p {
    display: inline-block;
    font-weight: 600;
    text-shadow: 3px 3px 0 #fff;
    letter-spacing: .1em;
    letter-spacing: .05em;
    line-height: 1;
  }
  #teacher_anchor .teacher_tit_box .txt_main p span {
    color: #f08800;
  }
  #teacher_anchor .teacher_box {
    display: flex;
    flex-direction: column !important;
    margin: 50px  auto 0;
    align-items: center;
    position: relative;
    z-index: 5;
  }
  #teacher_anchor .teacher_box .text {
    margin-top: 45px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  #teacher_anchor .teacher_box .text::before {
    right: 0 !important;
    left: 0 !important;
    top: 3px !important;
    transform: translate(0, -100%) !important;
    border-width: 0 17px 28px 17px !important;
    border-color: transparent transparent #ffffff transparent !important;
    margin: 0 auto;
  }
  #teacher_anchor .teacher_box .text::after {
    right: 0 !important;
    left: 0 !important;
    top: 3px !important;
    transform: translate(2px, -100%) !important;
    border-width: 0 17px 28px 17px !important;
    border-color: transparent transparent #fdeccd transparent !important;
    margin: 0 auto;
  }
  #teacher_anchor .teacher_box .photo {
    flex: 1;
    max-width: 225px;
  }
  #teacher_anchor .teacher_box .photo img {
    max-width: 100%;
  }
  #teacher_anchor .teacher_box .text {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    flex: 2;
    max-width: 770px;
    box-shadow: 3px 3px 0 0 #fdeccd;
  }
  #teacher_anchor .teacher_box .text ul {
    padding: 30px 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
  #teacher_anchor .teacher_box .text ul li {
    margin-right: 0;
    text-align: center;
    width: 100%;
    text-align: center;
    font-size: 4.6vw;
    margin-top: 10px;
    line-height: 1.3;
    margin-bottom: 0;
    padding-bottom: 25px;
    text-align: center;
  }
  #teacher_anchor .teacher_box .text ul li::after {
    display: none;
  }
}


/* 追記｜すっぽんレシピ修正｜10月3日公開 */
.btn_suppon p::before {
    width: 247px;
    left: -135px;
    background: url(/jpn/consumer/products/health/recipe/images/icon_suppon_4cans.png) left top no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 767px) {
.btn_suppon p::before {
	width: 92px;
	height: 70px;
	left: -10px;
	top: 12px;
	background: url(/jpn/consumer/products/health/recipe/images/icon_suppon_4cans.png) left top no-repeat;
	background-size: 100%;
	z-index: 50;
}
#teacher_anchor .teacher_box .text ul li a span {
	border-bottom: 3px solid rgba(240, 134, 0, 0.5);
	line-height: 1.5;
}
#teacher_anchor .teacher_box .text ul li a span::after {
	display: none;
}
}
