:root {
  --main-red: #C13028;
  --main-brown: #231815;
}

@font-face {
  font-family: "M PLUS 1p";
  font-style: normal;
  font-weight: normal;
  src: url(/sp/ohgon/ohgon_recipe/font/MPLUS1p-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS 1p";
  font-style: bold;
  font-weight: bold;
  src: url(/sp/ohgon/ohgon_recipe/font/MPLUS1p-Bold.ttf) format("truetype");
}
.main_wrap {
  font-family: "M PLUS 1p";
}

.main_wrap a img:hover {
  opacity: 1;
}

.main_wrap a:hover {
  text-decoration: none;
}

.ttl_01 {
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
  border-bottom: solid 4px var(--main-red);
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 640px) {
  .ttl_01 {
    font-size: 24px;
    padding-bottom: 10px;
    border-width: 2px;
    line-height: 1.2;
  }
}
.ttl_01:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--main-red) transparent transparent transparent;
  border-width: 22px 14px 0 14px;
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 640px) {
  .ttl_01:before {
    border-width: 13px 8px 0 8px;
    bottom: -13px;
  }
}
.ttl_01:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 22px 14px 0 14px;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 640px) {
  .ttl_01:after {
    border-width: 10px 5px 0 5px;
    bottom: -10px;
  }
}
.ttl_01_wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .ttl_01_wrap {
    margin-bottom: 30px;
  }
}
.ttl_01 span {
  font-size: 28px;
  color: var(--main-red);
  font-weight: bold;
  position: relative;
}
@media (max-width: 640px) {
  .ttl_01 span {
    font-size: 20px;
  }
}
.ttl_01 span:before {
  content: "";
  display: block;
  width: 17px;
  height: 32px;
  background: url(/sp/ohgon/ohgon_recipe/img/label_l.svg) no-repeat center;
  position: absolute;
  left: -30px;
  top: 8px;
}
@media (max-width: 640px) {
  .ttl_01 span:before {
    width: 10px;
    height: 20px;
    left: -20px;
    top: 6px;
  }
}
.ttl_01 span:after {
  content: "";
  display: block;
  width: 17px;
  height: 32px;
  background: url(/sp/ohgon/ohgon_recipe/img/label_r.svg) no-repeat center;
  position: absolute;
  right: -21px;
  top: 8px;
}
@media (max-width: 640px) {
  .ttl_01 span:after {
    width: 10px;
    height: 20px;
    right: -10px;
    top: 6px;
  }
}

.sec_video {
  padding: 50px 0 220px;
  background-color: #FFFAE8;
}
@media (max-width: 640px) {
  .sec_video {
    padding: 45px 25px 70px;
  }
}
.sec_video_inner {
  max-width: 1020px;
  margin: 0 auto;
}
.sec_video .ttl_01:after {
  border-color: #FFFAE8 transparent transparent transparent;
}
.sec_video_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.sec_video_list li {
  width: calc(50% - 20px);
}
@media (max-width: 640px) {
  .sec_video_list li {
    width: 100%;
  }
}
.sec_video_list_ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0 25px;
}
@media (max-width: 640px) {
  .sec_video_list_ttl {
    font-size: 16px;
  }
}
.sec_video_img {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.sec_video_img:after {
  background: url(/sp/ohgon/img/btn_play_cm.png) no-repeat 0 0/contain;
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec_video_img:hover {
  opacity: 0.8;
}
.sec_video_recipe {
  border: solid 2px var(--main-brown);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}
.sec_video_recipe_img {
  width: 145px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 640px) {
  .sec_video_recipe_img {
    width: 127px;
  }
}
.sec_video_recipe_txt {
  width: calc(100% - 145px);
  padding: 10px 15px;
  background-color: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .sec_video_recipe_txt {
    width: calc(100% - 127px);
    padding: 10px;
  }
}
.sec_video_recipe_label {
  font-size: 12px;
  color: var(--main-brown);
  font-weight: bold;
  background: #FEE149;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 640px) {
  .sec_video_recipe_label {
    height: 24px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
}
.sec_video_recipe_label:before {
  content: "";
  display: block;
  width: 19px;
  height: 12px;
  background: url(/sp/ohgon/ohgon_recipe/img/balloon_y.svg) no-repeat center/contain;
  position: absolute;
  bottom: -8px;
  left: 28px;
}
@media (max-width: 640px) {
  .sec_video_recipe_label:before {
    bottom: -6px;
    left: 16px;
  }
}
.sec_video_recipe_ttl {
  font-size: 18px;
  font-weight: bold;
  padding-right: 25px;
  background: url(/sp/ohgon/ohgon_recipe/img/ico_link.svg) no-repeat right top 4px/18px 18px;
}
@media (max-width: 640px) {
  .sec_video_recipe_ttl {
    font-size: 14px;
  }
}
.sec_video_recipe:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--main-brown);
  border-radius: 10px;
  position: absolute;
  top: 6px;
  right: -6px;
  transition: all 0.3s ease;
  z-index: -1;
}
@media (min-width: 641px) {
  .sec_video_recipe:hover {
    transform: translate(6px, 6px);
  }
  .sec_video_recipe:hover:before {
    transform: translate(-6px, -6px);
  }
  .sec_video_recipe:hover .sec_video_recipe_txt {
    background-color: #FFF6C4;
  }
}

.sec_mv img {
  width: 100%;
}

.sec_recipe {
  background: var(--main-red);
  padding: 80px 0;
  position: relative;
}
@media (max-width: 640px) {
  .sec_recipe {
    padding: 45px 10px 50px;
  }
}
.sec_recipe_character_wrap {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1600px;
}
.sec_recipe_character01 {
  width: 199px;
  height: auto;
  position: absolute;
  top: -192px;
  left: 0;
}
@media (max-width: 640px) {
  .sec_recipe_character01 {
    width: 122px;
    top: -117px;
    left: auto;
    right: calc(50% + 10px);
  }
}
.sec_recipe_character02 {
  width: 190px;
  height: auto;
  position: absolute;
  top: -193px;
  right: 0;
}
@media (max-width: 640px) {
  .sec_recipe_character02 {
    width: 116px;
    top: -118px;
    right: auto;
    left: calc(50% + 10px);
  }
}
@media (max-width: 640px) {
  .sec_recipe_over {
    /* padding-top: 100px; */
    background-color: #FFFAE8;
  }
}
.sec_recipe_wrap {
  padding: 80px 0;
  max-width: 1600px;
  width: calc(100% - 40px);
  margin: 0 auto;
  background: #fff;
  border-radius: 40px;
}
@media (max-width: 640px) {
  .sec_recipe_wrap {
    max-width: 100%;
    width: 100%;
    padding: 40px 18px 50px;
    border-radius: 20px;
  }
}
.sec_recipe_inner {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media (max-width: 640px) {
  .sec_recipe_inner {
    width: 100%;
    max-width: 100%;
  }
}
.sec_recipe_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 70px;
}
@media (min-width: 641px) {
  .sec_recipe_nav.only-sp {
    display: none;
  }
}
@media (max-width: 640px) {
  .sec_recipe_nav {
    gap: 0;
    position: relative;
    margin: 0;
    width: 100%;
  }
  .sec_recipe_nav.only-pc {
    display: none;
  }
  .sec_recipe_nav._fix {
    position: fixed;
    top: 46px;
    left: 0;
    z-index: 5;
  }
}
.sec_recipe_nav > li {
  width: calc((100% - 40px) / 3);
  position: relative;
}
@media (max-width: 640px) {
  .sec_recipe_nav > li {
    width: 33.3333333333%;
    text-align: center;
    position: static;
    background: none;
  }
  .sec_recipe_nav > li + li .sec_recipe_nav_txt:before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 18px);
    position: absolute;
    left: 0;
    top: 9px;
    background-color: #fff;
  }
}
.sec_recipe_nav_txt {
  width: 100%;
  background: var(--main-brown) url(/sp/ohgon/ohgon_recipe/img/ico_anc.svg) no-repeat center right 15px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  height: 80px;
  padding-left: 30px;
  padding-right: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 640px) {
  .sec_recipe_nav_txt {
    border-radius: 0;
    font-size: 14px;
    padding: 0;
    position: relative;
    background: var(--main-brown) url(/sp/ohgon/ohgon_recipe/img/ico_anc.svg) no-repeat center bottom 6px/15px 15px;
    position: relative;
    height: 80px;
    padding: 5px 10px 25px;
    width: 100%;
  }
}
.sec_recipe_nav_inner {
  width: 100%;
  background: #fff;
  position: absolute;
  top: 80px;
  left: 0;
  border: solid 1px var(--main-brown);
  z-index: 1;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
@media (max-width: 640px) {
  .sec_recipe_nav_inner {
    opacity: 1;
    visibility: visible;
    display: none;
  }
}
.sec_recipe_nav_inner > li {
  font-size: 16px;
  font-weight: bold;
  background: url(/sp/ohgon/ohgon_recipe/img/ico_arr.svg) no-repeat center right 15px;
}
.sec_recipe_nav_inner > li + li {
  border-top: solid 1px var(--main-brown);
}
.sec_recipe_nav_inner > li a {
  display: block;
  padding: 15px 26px 15px 15px;
}
.sec_recipe_nav > li._active .sec_recipe_nav_txt {
  background: #C13028 url(/sp/ohgon/ohgon_recipe/img/ico_anc02.svg) no-repeat center right 15px;
}
@media (max-width: 640px) {
  .sec_recipe_nav > li._active .sec_recipe_nav_txt {
    background: #C13028 url(/sp/ohgon/ohgon_recipe/img/ico_anc02.svg) no-repeat center bottom 6px/15px 15px;
  }
}
.sec_recipe_nav > li._active .sec_recipe_nav_inner {
  display: block;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 641px) {
  .sec_recipe_nav > li._active .sec_recipe_nav_inner li:hover {
    background-color: #FFF6C4;
  }
}
.sec_recipe_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.sec_recipe_list > li {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 640px) {
  .sec_recipe_list > li {
    width: 100%;
  }
}
.sec_recipe_link {
  display: block;
  height: 100%;
  border-radius: 10px;
  border: solid 3px var(--main-brown);
  position: relative;
  overflow: inherit;
  z-index: 1;
}
.sec_recipe_link:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--main-brown);
  border-radius: 10px;
  position: absolute;
  top: 6px;
  right: -6px;
  transition: all 0.3s ease;
  z-index: -1;
}
@media (min-width: 641px) {
  .sec_recipe_link:hover {
    transform: translate(6px, 6px);
  }
  .sec_recipe_link:hover:before {
    transform: translate(-6px, -6px);
  }
}
.sec_recipe_link_inner {
  position: relative;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  background: #fff url(/sp/ohgon/ohgon_recipe/img/ico_link.svg) no-repeat right 15px bottom 20px/18px 18px;
}
.sec_recipe_ex {
  padding: 16px 16px 45px;
}
.sec_recipe_ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.sec_recipe_txt {
  font-size: 16px;
  font-family: "Noto Sans Japanese";
  margin-top: 8px;
}
@media (min-width: 641px) {
  .sec_recipe_link:hover .sec_recipe_link_inner {
    background-color: #FFF6C4;
  }
}
.sec_recipe_add {
  text-align: center;
  width: 100px;
  margin: 40px auto 0;
}
.sec_recipe_add img {
  width: 60px;
  height: 60px;
  display: none;
  margin: 0 auto;
}
.sec_recipe_add_txt {
  font-weight: bold;
  font-size: 18px;
  margin-top: 8px;
}
.sec_recipe_add:hover {
  opacity: 0.5;
}
.sec_recipe_add_loading {
  border: 4px solid #E5EDFF;
  border-left-color: #505050;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spinner1 1.2s linear infinite;
  margin: 0 auto;
}
.sec_recipe_add._more {
  cursor: pointer;
}
.sec_recipe_add._more .sec_recipe_add_loading {
  display: none;
}
.sec_recipe_add._more img {
  display: block;
}

@keyframes spinner1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */