@charset "utf-8";

@font-face {
  font-family: "DINPro-Bold";
  src: url("../fonts/DINPro-Bold.ttf") format("truetype");
  font-weight: 700;
}

.f_din {
  font-family: "DINPro-Bold";
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .pc_display {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .sp_display {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc_display_br {
    display: none !important;
  }
}

html,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a:link {
  color: black;
}
a:link:hover {
  color: #0083cb;
}
a:visited {
  color: inherit;
}

.bread_recipe_wrap {
  width: 100%;
  margin: 0 auto;
}

.sp_b {
  display: none !important;
}

.f_ser {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

#pc_header {
  padding: 0 calc(50vw - 600px);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}

#pc_header.active {
  opacity: 0.5;
}

#pc_header.active:hover {
  opacity: 1;
}

#pc_header.active.opacity {
  opacity: 0;
}

body {
  padding-top: 81px;
}

#pc_header .cont {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

#pc_header .cont .logo {
  display: block;
  width: 180px;
  padding: 15px 0;
}

#pc_header .cont .logo img {
  width: 100%;
}

#pc_header .header_nav {
  /* height: 100%; */
  display: flex;
  align-items: center;
}

#pc_header .header_nav .main_ul {
  display: flex;
  align-items: center;
  margin: 0;
  height: 100%;
}

#pc_header .header_nav .main_ul .main_li {
  position: relative;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pc_header .header_nav .main_ul .main_li .menu_name {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 700;
  color: #d70c18;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  transition: 0.3s;
  cursor: pointer;
}

#pc_header .header_nav .main_ul .main_li .menu_name .icon {
  width: 1.1em;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pc_header .header_nav .main_ul .main_li .menu_name .icon img {
  width: 100%;
  opacity: 1;
}

#pc_header .header_nav .main_ul .main_li .menu_name::before,
#pc_header .header_nav .main_ul .main_li .menu_name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #d70c18;
  transition: 0.3s;
  opacity: 0;
}

#pc_header .header_nav .main_ul .main_li .menu_name::before {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 8px;
  aspect-ratio: 1;
  bottom: 4px;
}

#pc_header .header_nav .main_ul .main_li .menu_name::after {
  width: 100%;
  height: 4px;
  bottom: 0;
}

#pc_header .header_nav .main_ul .main_li .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li .menu_name:hover::after {
  opacity: 1;
}

#pc_header .header_nav .main_ul .main_li:first-child .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li:nth-child(4) .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li:nth-last-child(1) .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li:nth-last-child(2) .menu_name:hover::before {
  opacity: 0;
}

#pc_header .header_nav .main_ul .main_li .sub_menu {
  width: 385px;
  position: absolute;
  padding: 10px 30px 10px;
  background-color: #d70c18;
  transform: translateY(100%);
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#pc_header .header_nav .main_ul .main_li .sub_menu .sub_menu_ttl {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul {
  margin: 14px 0 20px;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li {
  font-size: 14px;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li + li {
  margin-top: 0.8em;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li .sub_name {
  color: #fff;
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li .sub_name:hover {
  opacity: 0.7;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li .sub_name::before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #fff;
}

#main_footer {
  padding: 104px 0 35px;
  background-color: #fff;
}

#main_footer .cont {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 2px solid #ccc;
  padding-top: 30px;
}

#main_footer .cont ul {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
}

#main_footer .cont .top_box,
#main_footer .cont .bottom_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#main_footer .cont .top_box {
  margin-bottom: 40px;
}

#main_footer .cont .bottom_box .footer_logo {
  width: 280px;
  display: block;
}

#main_footer .cont .bottom_box .footer_logo img {
  width: 100%;
}

#main_footer .cont .top_box .link_area ul {
  gap: 14px;
}

#main_footer .cont .top_box .link_area ul li {
  font-size: 14px;
  margin-bottom: 0;
}

#main_footer .cont .top_box .link_area ul li + li {
  padding: 0 14px;
  border: 1px solid currentColor;
  border-top: none;
  border-bottom: none;
}

#main_footer .cont .top_box .link_area ul li:last-child {
  border: none;
  padding: 0;
}

#main_footer .cont .top_box .link_area ul li a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

#main_footer .cont .bottom_box .copy {
  font-size: 12px;
  text-align: right;
  margin-bottom: 0;
}

#main_footer .cont .top_box .sns_area ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

#main_footer .cont .top_box .sns_area ul li {
  margin-bottom: 0;
}

#main_footer .cont .top_box .sns_area ul li a {
  display: block;
  width: 35px;
  aspect-ratio: 1;
  transition: 0.3s;
}

#main_footer .cont .top_box .sns_area ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*小松作業エリアここから*/
#recipe_detail_title {
  background-color: #d70c18;
}
#recipe_detail_title h2 {
  color: white;
  width: 1200px;
  margin: 0 auto;
  font-size: 26px;
  padding: 12px 0;
  font-weight: 600;
}
#recipe {
  background-image: url(../../img/recipe-bg.png);
}
#recipe .recipe_wrapper,
#recipe .howtocook {
  width: 1200px;
  margin: 0 auto;
  padding-top: 56px;
  padding-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#recipe .recipe_wrapper .recipe_img {
  width: 48%;
  aspect-ratio: 298/194;
  border-radius: 0;
  background-color: white;
}
#recipe .recipe_wrapper .recipe_img img {
  width: 100%;
  padding: 16px;
  margin-right: 16px;
}
#recipe .recipe_wrapper .recipe_text {
  width: 48%;
}
#recipe .recipe_wrapper .recipe_text h3 {
  font-size: 34px;
  line-height: 50px;
  font-weight: 700;
  margin-top: 12px;
  padding-bottom: 20px;
  border-style: dashed;
  border-width: 0 0 2px 0;
  border-color: #aeaeae;
}
#recipe .recipe_wrapper .recipe_text .recipe_explain {
  font-size: 20px;
  line-height: 37px;
  margin-top: 24px;
  padding-bottom: 20px;
}
#recipe .recipe_wrapper .recipe_text .recipe_point::before {
  content: "";
  display: block;
  height: 56px;
  width: 35px;
  background-image: url(../../img/point.svg);
  background-position: top;
  background-repeat: no-repeat;
  margin-right: 8px;
}
#recipe .recipe_wrapper .recipe_text .recipe_point {
  display: flex;
  align-items: center;
  font-size: 20px;
  padding-bottom: 0px;
  font-weight: 500;
}
#recipe .recipe_wrapper .recipe_text .two-lines {
  /* align-items: baseline; */
}
#recipe .howtocook .material_box,
#recipe .howtocook .howtocook_box {
  width: 48%;
}
#recipe .howtocook .material_box .material_title,
#recipe .howtocook .howtocook_box .howtocook_title {
  border-radius: 16px 16px 0 0;
  color: white;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 0 10px 28px;
}
#recipe .howtocook .material_box .material_title {
  background-color: #ee8122;
}
#recipe .howtocook .material_box .material_wrapper,
#recipe .howtocook .howtocook_box .howtocook_wrapper {
  background-color: white;
  padding: 32px 40px 32px 36px;
  border-radius: 0 0 16px 16px;
  height: calc(100% - 57.3906px);
}
#recipe .howtocook .material_box .material_wrapper .material_items .material_group {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 500;
}
#recipe .howtocook .material_box .material_wrapper .material_items .material_group span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 70px);
  height: 1px;
  background-color: #dbdbdb;
  z-index: 1;
}
#recipe .howtocook .material_box .material_wrapper .material_items .material_group div {
  background-color: white;
  z-index: 2;
}
#recipe .howtocook .material_box .material_wrapper .material_items .material_group .material_item {
  padding-right: 20px;
}
#recipe
  .howtocook
  .material_box
  .material_wrapper
  .material_items
  .material_group
  .material_amount {
  padding-left: 14px;
}
#recipe .howtocook .howtocook_box .howtocook_title {
  background-color: #0083cb;
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li::before {
  width: 22px;
  height: 22px;
  background-color: #0083cb;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  line-height: 1.3em;
  text-align: center;
  font-size: 16px;
  margin-top: 0.3em;
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li:nth-child(1)::before {
  content: "1";
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li:nth-child(2)::before {
  content: "2";
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li:nth-child(3)::before {
  content: "3";
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li:nth-child(4)::before {
  content: "4";
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li:nth-child(5)::before {
  content: "5";
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li:nth-child(6)::before {
  content: "6";
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  padding: 8px 0;
}
#recipe .howtocook .howtocook_box .howtocook_wrapper ul li p {
  width: calc(100% - 48px);
}
.section_border,
.section_border img {
  width: 100%;
}
.bread_recipe_common_ttl_box .use_ttl {
  width: 100%;
  margin-left: 33px;
  font-size: 33px;
  padding-left: 8px;
  font-weight: 600;
  position: relative;
}
.bread_recipe_common_ttl_box .use_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #d70c18;
  left: 0px;
  transform: translateX(-100%);
  width: 38px;
  height: 5px;
}
#use_products {
  margin-top: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#use_products .bread_recipe_wrap {
  width: 100%;
}
#use_products .bread_recipe_wrap .use_products_wrap .use_product_item {
  /* max-width: 750px; */
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
#use_products .bread_recipe_wrap .use_products_wrap .use_product_item_img {
  width: 45%;
  padding-right: 32px;
}
#use_products .bread_recipe_wrap .use_products_wrap {
  margin-top: 24px;
}
#use_products .bread_recipe_wrap .use_products_wrap li {
  padding: 24px 0;
}
#use_products .bread_recipe_wrap .use_products_wrap li .use_product_text {
  width: 45%;
}
#use_products .bread_recipe_wrap .use_products_wrap li .use_product_title {
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}
#use_products .bread_recipe_wrap .use_products_wrap li a {
  position: relative;
  display: block;
  width: 80%;
  margin-top: 24px;
  /* height: 50%; */
  aspect-ratio: 4/1;
  background-color: #eb0000;
  box-shadow: 1px 3px 0px #940000;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.2s;
}
#use_products .bread_recipe_wrap .use_products_wrap li a p {
  position: absolute;
  display: block;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: white;
  text-align: center;
  margin: auto;
  font-size: 20px;
  line-height: 25px;
  white-space: nowrap;
}
#use_products .bread_recipe_wrap .use_products_wrap li a img {
  position: absolute;
  display: block;
  transform: translate(-50%, -50%);
  right: 5%;
  top: 50%;
  width: 16px;
  height: 16px;
}
#use_products .bread_recipe_wrap .use_products_wrap li a:active,
#use_products .bread_recipe_wrap .to_recipe_list:active {
  box-shadow: unset;
  transform: translate(2px, 3px);
}
#use_products .bread_recipe_wrap .to_recipe_list {
  position: relative;
  display: flex;
  justify-self: center;
  width: 411px;
  margin: 24px auto 0 auto;
  aspect-ratio: 411/95;
  background-color: #ee8122;
  box-shadow: 1px 3px 0px #c95e0b;
  border-radius: 10px;
  padding: 4px;
  transition: 0.2s;
}
#use_products .bread_recipe_wrap .to_recipe_list .btn_inside_bg {
  display: block;
  width: 85%;
  height: 100%;
  background-color: white;
  border-radius: 8px 0 0 8px;
}
#use_products .bread_recipe_wrap .to_recipe_list .btn_inside_bg p {
  color: #0083cb;
  font-size: 20px;
  line-height: 29px;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 8%;
  font-weight: 800;
}
#use_products .bread_recipe_wrap .to_recipe_list .btn_inside_bg img {
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  right: 5%;
  width: 18px;
  height: 18px;
}

/*小松作業分ここまで*/

@media (hover) {
  #main_footer .cont .top_box .link_area ul li a:hover {
    opacity: 0.7;
  }

  #main_footer .cont .top_box .sns_area ul li a:hover {
    opacity: 0.7;
  }

  #top_catalog .cont .catalog_link:hover {
    transform: translateY(10px);
  }

  #bread_2recipe .campaign_slider a.item:hover .img img {
    transform: scale(1.08);
  }

  #other_recipe .recipe_slider .item:hover .img img {
    transform: scale(1.08);
  }

  #top_special_series .china_series .hit_box .link:hover::before,
  #top_special_series .china_series .pick_up_area .box .link:hover .text_area::before,
  #top_special_series .wildish_series .pick_up_area .box .link:hover .text_area::before,
  .common_produsts_btn_area .btn_box .link:hover::after,
  #himitsu_product_btn_sec .flex_box .btn:hover::after {
    transform: translateX(10px);
  }

  #top_special_series .china_series .text_link:hover,
  #top_special_series .wildish_series .text_link:hover,
  #top_official .cont .text_link:hover {
    opacity: 0.8;
  }

  #top_character .text_link:hover {
    opacity: 0.7;
  }

  #top_cm .video_btn_slider .video_btn:hover .img::before,
  .page_common_featured .video_btn:hover::before,
  #wildish_movie .video_btn:hover:before,
  #shinchukagai_movie .flex_box .video_btn:hover::before {
    opacity: 1;
  }

  #top_sns .cont .box .link:hover {
    opacity: 0.7;
  }

  #top_share .cont ul li .link:hover {
    opacity: 0.7;
  }

  .common_recipe_sec .recipe_list ul li .link:hover .img img {
    transform: scale(1.1);
  }

  .common_other_recipe_sec .other_recipe_list ul li .link:hover .img img {
    transform: scale(1.1);
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}

@media screen and (min-width: 1200px) {
  #bread_2recipe .slick-track {
    width: 100% !important;
    display: flex;
    justify-content: center;
    transform: translate3d(0, 0px, 0px) !important;
  }

  #bread_2recipe .campaign_slider .item {
    float: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 80px !important;
  }

  body.top_body {
    min-width: 1390px;
  }

  .sp_b {
    display: block !important;
  }

  .pc_b {
    display: none !important;
  }

  header#sp_header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    height: 80px;
  }

  header#sp_header .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 140px;
  }

  header#sp_header .logo img {
    width: 100%;
  }

  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 13px;
    top: 18px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #d70c18;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 100vmax;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */

  /* sideの場合,popup1の場合ここから */
  .hamburger.active span:nth-child(1) {
    top: 22px;
    left: 6px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 100;
    top: 80px;
    left: 0;
    color: #000;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: flex-start;
    background: #fff;
    overflow: scroll;
    padding: 0 20px;
    flex-direction: column;
  }

  nav.globalMenuSp > ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp > ul > li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
    margin-bottom: 0;
  }

  nav.globalMenuSp > ul > li .main_name {
    border-bottom: 1px dashed #d70c18;
  }

  nav.globalMenuSp > ul > li:first-child .main_name {
    border-top: 1px solid #d70c18;
  }

  nav.globalMenuSp > ul > li .main_name {
    display: block;
    color: #d70c18;
    padding: 1em 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
  }

  nav.globalMenuSp > ul > li .main_name.blank {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav.globalMenuSp > ul > li .main_name.blank::after {
    content: "";
    background-image: url(../img/icon_link.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 1.2em;
    aspect-ratio: 1;
  }

  nav.globalMenuSp > ul > li .main_name.switchHat {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  nav.globalMenuSp > ul > li .main_name.switchHat .circle {
    display: block;
    border-radius: 50%;
    width: 1.3em;
    aspect-ratio: 1;
    background-color: #d70c18;
    position: relative;
  }

  nav.globalMenuSp > ul > li .main_name.switchHat .circle::before,
  nav.globalMenuSp > ul > li .main_name.switchHat .circle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60%;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
  }

  nav.globalMenuSp > ul > li .main_name.switchHat .circle::before {
    transform: rotate(90deg);
  }

  nav.globalMenuSp > ul > li .main_name.switchHat.nowOpen .circle::before {
    transform: rotate(0deg);
  }

  nav.globalMenuSp.active {
    transform: translateX(0%);
  }

  nav.globalMenuSp .sub_menu {
    padding: 0;
  }

  nav.globalMenuSp .sub_menu > ul {
    margin: 20px 0;
  }

  nav.globalMenuSp .sub_menu .sub_menu_ttl {
    margin-bottom: 0;
    font-weight: 700;
    color: #d70c18;
    font-size: 15px;
    margin: 20px 0 1em;
  }

  nav.globalMenuSp .sub_menu > ul li {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
  }

  nav.globalMenuSp .sub_menu > ul li a {
    color: #d70c18;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }

  nav.globalMenuSp .sub_menu > ul li a::before {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #d70c18;
  }

  nav.globalMenuSp .sub_menu > ul li + li {
    margin-top: 3.4vw;
  }

  .globalmenu_logo {
    width: 200px;
    margin-top: 40px;
  }
  .bread_recipe_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #pageBody {
    padding-top: 0 !important;
  }

  body {
    font-size: 3.6vw;
  }

  body.top_body {
    min-width: unset;
  }

  .bread_recipe_wrap {
    /* max-width: 90vw; */
  }

  header#sp_header .logo img {
    width: 100%;
  }

  nav.globalMenuSp {
    padding: 0 5vw 9vw;
  }

  nav.globalMenuSp > ul > li .main_name {
    font-size: 4vw;
  }

  nav.globalMenuSp .sub_menu > ul {
    margin: 4vw 0;
  }

  nav.globalMenuSp .sub_menu .sub_menu_ttl {
    font-size: 3.4vw;
    margin: 4vw 0 1em;
  }

  nav.globalMenuSp .sub_menu > ul li {
    font-size: 3.4vw;
  }

  nav.globalMenuSp .sub_menu > ul li + li {
    margin-top: 3.4vw;
  }

  .globalmenu_logo {
    width: 40vw;
    margin-top: 10vw;
  }

  /*小松作業エリアここから*/
  #recipe_detail_title h2 {
    width: 100%;
    font-size: calc(44vw / 7.5);
    text-align: center;
  }
  #recipe .recipe_wrapper {
    width: 88%;
  }
  #recipe .recipe_wrapper .recipe_img {
    width: 100%;
  }
  #recipe .recipe_wrapper .recipe_text {
    width: 100%;
  }
  #recipe .recipe_wrapper .recipe_text h3 {
    font-size: calc(40vw / 7.5);
    line-height: calc(60vw / 7.5);
    padding-bottom: 12px;
  }
  #recipe .recipe_wrapper .recipe_text .recipe_explain {
    font-size: calc(25vw / 7.5);
    line-height: calc(46vw / 7.5);
    margin-top: 16px;
    padding-bottom: 12px;
  }
  #recipe .recipe_wrapper .recipe_text .recipe_point::before {
    height: calc(84vw / 7.5);
    width: calc(53vw / 7.5);
  }
  #recipe .recipe_wrapper .recipe_text .recipe_point {
    font-size: calc(25vw / 7.5);
    line-height: calc(46vw / 7.5);
    margin-top: 12px;
    padding: 0;
  }
  #recipe .recipe_wrapper .recipe_text .two-lines {
    /* align-items: baseline; */
    margin-top: 0;
  }
  #recipe .howtocook {
    width: 88%;
    padding-top: 0;
    padding-bottom: 0;
  }
  #recipe .howtocook .material_box,
  #recipe .howtocook .howtocook_box {
    width: 100%;
    margin-bottom: 24px;
  }
  #recipe .howtocook .material_box .material_title,
  #recipe .howtocook .howtocook_box .howtocook_title {
    font-size: calc(25vw / 7.5);
  }
  #recipe .howtocook .material_box .material_wrapper,
  #recipe .howtocook .howtocook_box .howtocook_wrapper {
    padding: 16px 24px 40px;
    border-radius: 0 0 16px 16px;
  }
  #recipe .howtocook .material_box .material_wrapper .material_items .material_group {
    padding: calc(8vw / 7.5) 0;
    font-size: calc(24vw / 7.5);
  }
  #recipe
    .howtocook
    .material_box
    .material_wrapper
    .material_items
    .material_group
    .material_item {
    padding-right: 8px;
  }
  #recipe
    .howtocook
    .material_box
    .material_wrapper
    .material_items
    .material_group
    .material_amount {
    padding-left: 8px;
  }
  #recipe .howtocook .howtocook_box .howtocook_wrapper ul li::before {
    width: calc(27vw / 7.5);
    height: calc(27vw / 7.5);
    line-height: 1.25em;
    margin-top: 0.25em;
    font-size: calc(20vw / 7.5);
  }
  #recipe .howtocook .howtocook_box .howtocook_wrapper ul li {
    font-size: calc(24vw / 7.5);
    line-height: calc(34vw / 7.5);
  }
  #recipe .howtocook .howtocook_box .howtocook_wrapper ul li p {
    width: calc(100% - 42vw / 7.5);
  }
  .bread_recipe_common_ttl_box .use_ttl {
    width: 100%;
    margin-left: calc(45vw / 7.5);
    font-size: calc(45vw / 7.5);
    padding-left: 8px;
    font-weight: 600;
    position: relative;
  }
  .bread_recipe_common_ttl_box .use_ttl::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    background-color: #d70c18;
    left: 0px;
    transform: translateX(-100%);
    width: 38px;
    height: 5px;
  }
  #use_products .bread_recipe_wrap .use_products_wrap .use_product_item {
    /* max-width: 750px; */
    width: 88%;
    flex-wrap: wrap;
    justify-content: center;
  }
  #use_products .bread_recipe_wrap .use_products_wrap .use_product_item_img {
    width: 60%;
    padding-right: 0;
  }
  #use_products .bread_recipe_wrap .use_products_wrap li .use_product_text {
    width: 100%;
  }
  #use_products .bread_recipe_wrap .use_products_wrap li .use_product_title {
    margin-top: 16px;
    font-size: calc(25vw / 7.5);
    text-align: center;
  }
  #use_products .bread_recipe_wrap .use_products_wrap li a {
    width: 60%;
    margin: 24px auto 0;
    /* height: 50%; */
    aspect-ratio: 400/118;
    border-radius: 5px;
  }
  #use_products .bread_recipe_wrap .use_products_wrap li a p {
    left: 45%;
    font-size: calc(24vw / 7.5);
    line-height: calc(36vw / 7.5);
    width: 100%;
  }
  #use_products .bread_recipe_wrap .use_products_wrap li a img {
    width: calc(24vw / 7.5);
    height: calc(24vw / 7.5);
  }
  #use_products .bread_recipe_wrap .to_recipe_list {
    width: 90%;
    aspect-ratio: 675/156.326;
    margin: 24px auto 0;
    padding: 3px;
  }
  #use_products .bread_recipe_wrap .to_recipe_list .btn_inside_bg p {
    font-size: min(20px, calc(28vw / 7.5));
    line-height: min(29px, calc(36vw / 7.5));
  }
  /*小松作業分ここまで*/

  .common_page_mv .common_page_main_ttl_area {
    padding: 7vw 0;
  }

  .common_page_mv .common_page_main_ttl_area .page_main_ttl {
    font-size: 6.5vw;
  }

  .common_page_main_text_area {
    padding: 8vw 0;
    overflow: hidden;
  }

  .common_page_main_text_area .bread_recipe_wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 5vw;
  }

  .common_page_main_text_area .scroll_box {
    margin: 0;
    flex-shrink: 0;
    width: 8vw;
  }

  .common_page_main_text_area .scroll_box .text {
    right: 0;
    transform: translateX(0) rotate(-90deg);
    font-size: 3vw;
  }

  .common_page_main_text_area .scroll_box .bar {
    width: 3px;
    height: 18vw;
  }

  .common_page_main_text_area .scroll_box .bar::after {
    height: 8vw;
  }

  .common_page_main_text_area .page_main_text {
    font-size: 3.5vw;
    flex-grow: 1;
    display: block;
    letter-spacing: 0;
  }

  .common_recipe_sec {
    padding-top: 12vw;
    padding-bottom: 10vw;
  }

  .common_recipe_sec .bread_recipe_common_ttl_box {
    margin-bottom: 8vw;
  }

  .common_recipe_sec .recipe_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }

  .common_recipe_sec .recipe_list ul li .link {
    display: block;
  }

  .common_recipe_sec .recipe_list ul li .link .img {
    margin-bottom: 4vw;
  }

  .common_recipe_sec .recipe_list ul li .link .recipe_name {
    font-size: 3.8vw;
  }

  .common_other_recipe_sec {
    padding: 20vw 0;
  }

  .common_other_recipe_sec .bread_recipe_common_ttl_box {
    margin-bottom: 8vw;
  }

  .common_other_recipe_sec .other_recipe_list ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8vw;
  }

  .common_other_recipe_sec .other_recipe_list ul li .link {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
  }

  .common_other_recipe_sec .other_recipe_list ul li .link .img {
    width: 100%;
    height: 50vw;
    overflow: hidden;
  }

  .common_other_recipe_sec .other_recipe_list ul li .link .text_area {
    gap: 5vw;
    padding: 4vw;
  }

  .common_other_recipe_sec .other_recipe_list ul li .link .text_area::after {
    width: 3.5vw;
  }

  .common_other_recipe_sec .other_recipe_list ul li .link .text_area .recipe_ttl {
    font-size: 4vw;
  }
}

meta[property="og:type"] {
  content: "website";
}
