#recipe .content-title{
  background-image: url('../img/recipe/bg_title.jpg');
}
@media screen and (max-width: 1023px){
  #recipe .content-title{
    background-image: url('../img/recipe/bg_title_tab.jpg');
  }
}
@media screen and (max-width: 767px) {
  #recipe .content-title{
    background-image: url('../img/recipe/bg_title_sp.jpg');
  }
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
#recipe .sec-recipe h2{
  margin-bottom: 20px;
}
#recipe .sec-recipe h2 span{
  position :relative;
  line-height: 1.2;
  padding-bottom: 8px;
}
#recipe .sec-recipe h2 span::after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--sub-color03);
  position: absolute;
  left: 0;
  bottom: 0;
}
#recipe .sec-recipe h2 + p{
  margin-bottom: 62px;
  font-size: 2.0rem;
}
@media (min-width:768px) and (max-width:1023px) {
  #recipe .sec-recipe h2 + p{
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
  #recipe .sec-recipe h2{
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #recipe .sec-recipe h2{
    margin-bottom: 10px;
  }
  #recipe .sec-recipe h2 > span{
    display: block;
    line-height: 1.4;
    font-size: 2.3rem;
  }
  #recipe .sec-recipe h2 + p{
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}
#recipe .link-arrow{
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--font-color-text);
  display: block;
}
.category-list{
  list-style: none;
  padding: 0; 
  margin: 0 0 45px!important;
  display: flex;
  gap: 25px;
}
.category-list li a{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.8px;
  color: var(--sub-color03);
  background-color: #fff;
}
.category-list li a:hover{
  color: var(--main-color);
  font-weight: 700;
}
.category-list li.lunch a:hover{
  color: #FFB657;
}
.category-list li.dinner a:hover{
  color: #F5DD43;
}
.category-list li.side a:hover{
  color: #ADD76C;
}
.category-list li.snack a:hover{
  color: #76D5DA;
}
.category-list li.sweets a:hover{
  color: #F79EB3;
}

@media screen and (min-width: 768px) {
  .category-list li:first-child{
    border-left: 1px solid var(--sub-color03);
    padding-left: 25px;
  }
  .category-list li{
    border-right: 1px solid var(--sub-color03);
    padding-right: 25px;
    line-height: 1;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .category-list li a{
    font-size: 1.7rem;
  }
  .category-list li:first-child{
    padding-left: 15px;
  }
  .category-list li{
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #recipe .link-arrow{
    line-height: 1;
    margin-bottom: 15px;
  }
  .category-list{
    flex-wrap: wrap;
    gap: 5px 9px;
    margin-bottom: 25px!important;
  }
  .category-list li{
    width: calc((100% - 27px) / 4);
  }
  .category-list li a{
    font-size: 1.1rem;
    border: 1px solid var(--sub-color03);
    border-radius: 20px;
    text-align: center;
    display: block;
    padding: 5px;
  }
}

#recipe .recipe-list{
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 70px 45px;
}
#recipe .recipe-list > li{
  width: calc(( 100% - 90px) / 3);
}
#recipe .recipe-list li .recipe-list_img{
  margin-bottom: 20px;
  transition: 0.5s;
  position: relative;
  transition: 0.8s;
}
#recipe .recipe-list li .recipe-list_img:hover img{
  opacity: 0.7;
}
#recipe .recipe-list li .recipe-list_img::after{
  content: '';
  position:absolute;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  transition: 0.8s;
  background: url('../img/recipe/view_recipe.png') no-repeat;
  background-position: center center;
  opacity: 0;
}
#recipe .recipe-list li .recipe-list_img:hover::after{
  opacity: 1;
}
#recipe .recipe-list li .recipe-list_img img{
  width: 100%;
  aspect-ratio: 225 / 157;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.5s;
}
#recipe .recipe-list li .flex-wrapper{
  gap: 10px;
  align-items: center;
  margin-bottom: 13px;
}

.recipe-category{
  display:flex;
  gap: 5px;
}
.recipe-category li{
  padding: 5px 10px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 1.5px;
  border-radius: 5px;
  background-color: #FAEC8E;
  display: flex;
  align-items: center;
}
.recipe-category li.lunch{
  background-color: #FFB657;
}
.recipe-category li.dinner{
  background-color: #FAEC8E;
}
.recipe-category li.side{
  background-color: #C0DF91;
}
.recipe-category li.snack{
  background-color: #A5DFE2;
}
.recipe-category li.sweets{
  background-color: #FFC7D4;
}
.cooking-time{
  border: 1px solid var(--sub-color03);
  border-radius: 5px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
}
.cooking-time img{
  margin-right: 5px;
}
.cooking-num{
  font-family: var(--font-family-number);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: sub;
  color: var(--sub-color03);
}
.cooking-unit{
  font-size: 1.1rem;
  color: var(--sub-color03);
  font-weight: 400;
}
#recipe .recipe-list .recipe-title{
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.6px;
}
.recipe-tag{
  display:flex;
  gap: 10px;
  align-items: center;
}
.recipe-tag a{
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.4px;
  color: var(--sub-color03);
  padding-bottom: 3px;
}
.recipe-tag a:hover{
  border-bottom: 1px solid var(--font-color-text);
  font-weight: 700;
}
@media (min-width:768px) and (max-width:1023px) {
  #recipe .recipe-list{
    gap: 40px;
  }
  #recipe .recipe-list > li{
    display: flex;
    width:100%;
    gap: 20px;
  }
  #recipe .recipe-list li .flex-wrapper{
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #recipe .recipe-list li .flex-wrapper .recipe-category{
    width: 100%;
  }
  #recipe .recipe-list li a:has(.recipe-list_img){
    width: 55%;
  }
  #recipe .recipe-list .recipe-title{
    margin-bottom: 10px;
  }
  .recipe-list_textarea{
    flex: 1;
  }
  #recipe .recipe-list li .recipe-list_img{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .recipe-category{
    gap: 3px;
  }
  .recipe-category li{
    font-size: 1.1rem;
  }
  .cooking-num{
    font-size: 1.7rem;
  }
  .cooking-unit{
    font-size: 1.0rem;
  }
  #recipe .recipe-list{
    gap: 30px;
  }
  #recipe .recipe-list > li{
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #recipe .recipe-list li .recipe-list_img{
    margin-bottom: 15px;
  }
  #recipe .recipe-list .recipe-title{
    font-size: 1.6rem;
  }
  #recipe .recipe-list li .flex-wrapper{
    gap: 4px;
  }
  
}
#single  #left-text{
  display: none;
}
#single article .post-header{
  margin-bottom: 30px;
}
#single article .post-header .recipe-no{
  margin-bottom :13px;
  line-height: 0.8;
  padding-bottom: 8px;
}
#single article .post-header .recipe-no span{
  color: var(--main-color);
  font-family: var(--font-family-en);
  font-size: 3.0rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  position: relative;
}
#single article .post-header .recipe-no span::after{
  content: '';
  background: var(--main-color);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#single article .post-header{
  padding-bottom: 0;
}
#single article .post-header h1{
  margin-bottom: 13px;
  font-size: 3.1rem;
  line-height: 1.5;
}
#single article .post-header .flex-wrapper{
  gap: 30px;
}
#single article .post-header .recipe-tag a{
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.4px;
}

#single article .post-main{
  padding: 0;
}
#single article .post-main .container{
  display: flex;
  gap: 60px;
}
#single article .post-main .main-block{
  width: 70%;
  max-width: 910px;
}
#single article .post-main .main-block .recipe-img img{
  border-radius: 20px 20px 0 0;
}
#single article .post-main .main-block .recipe-comment{
  background-color: var(--sub-color01);
  padding: 35px 30px;
  border-radius: 0 0 20px 20px;
  margin-bottom: 60px;
}
#single article .post-main .main-block .recipe-comment_title{
  color: var(--main-color);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 0.8;
  font-family: var(--font-family-en);
  margin-bottom: 20px;
  letter-spacing: 0.56px;
}
#single article .post-main .main-block .procedure-block .procedure-title{
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-bottom: 2px dotted var(--sub-color03);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
#single article .post-main .main-block .procedure-block .preparation-title{
  margin-bottom: 15px;
}
#single article .post-main .main-block .procedure-block .preparation-title span{
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1.8px;
  border: 1px solid var(--main-color);
  border-radius: 26px;
  padding: 8px 30px;
  margin-bottom: 15px;
}
#single article .post-main .main-block .procedure-block .preparation-block{
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
#single article .post-main .main-block .procedure-block .flex-wrapper{
  justify-content: space-between;
}
#single article .post-main .main-block .procedure-block .preparation-text{
  line-height: 2;
}
#single article .post-main .main-block .procedure-block img{
  max-width: 255px;
  border-radius: 10px;
}
#single article .post-main .main-block .procedure-block ul li{
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  gap: 22px;
}
#single article .post-main .main-block .procedure-block ul li:last-child{
  border-bottom: 2px dotted var(--sub-color03);
  padding-bottom: 45px;
  margin-bottom: 120px;
}
#single article .post-main .main-block .procedure-block ul li .procedure-no{
  color: var(--main-color);
  font-family: var(--font-family-en);
  font-size: 6.0rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 4.8px;
  width: 40px;
  text-align: center;
}
#single article .post-main .main-block .procedure-block ul li .procedure-text{
  line-height: 2;
  letter-spacing: 1.6px;
  flex: 1;
  padding-left: 23px; 
}
#single article .post-main .pc-side{
  flex: 1;
}
#single article .recipe-sub{
  display: flex;
  gap: 4px 18px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 30px;
}
#single article .cooking-time{
  background-color: var(--sub-color03);
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
}
#single article .cooking-time .cooking-num{
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}
#single article .cooking-time .cooking-num .time-no{
  font-size: 2.8rem;
  font-weight: 700;
  margin-left: 10px;
}
#single article .cooking-time .cooking-num .cooking-unit{
  color: #fff;
  font-size: 1.3rem;
}
#single article .cooking-cal .cooking-num{
  font-size: 3.3rem;;
}
#single article .cooking-cal .cooking-unit{
  margin-left: 2px;
}
#single article .cooking-weight{
  color: var(--sub-color03);
}
#single article .calorie_weight{
  font-size: 1.4rem;
  color: var(--sub-color03);
}
#single article .cooking-subtext{
  width: 100%;
  color: var(--sub-color03);
}
#single article .ingredient-block{
  letter-spacing: 1.12px;
  padding-bottom: 20px;
  margin-bottom: 70px;
  border-bottom: 2px dotted var(--sub-color03);
}
#single article .ingredient-block .ingredient-title{
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-bottom: 2px dotted var(--sub-color03);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
#single article .ingredient-block .ingredient-title .serving{
  font-size: 1.4rem;
  font-weight: 400;
}
#single article .ingredient-block ul li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  padding: 7px 0;
}
#single article .ingredient-block ul li:last-child{
  border-bottom: 0;
}
#single article .point-block{
  border: 1px solid var(--main-color);
  border-radius: 20px;
  padding: 53px 32px 35px;
  position: relative;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 35px;
}
#single article .point-block img{
  position: absolute;
  left: -20px;
  top: -30px;
}
#single article .sns-block{
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}
#single article .sns-block .link-arrow{
  font-size: 2.0rem;
}
#single article .sns-block .link-arrow img{
  width: 20px;
}
#single article .sns-block .sns-wrapper{
  display: flex;
  gap: 25px;
}
#single article .sns-block .sns-wrapper #link-copy1:hover,
#single article .sns-block .sns-wrapper #link-copy2:hover,
#single article .sns-block .sns-wrapper #link-copy3:hover{
  cursor: pointer;
}
#single article .sns-block .sns-wrapper > li{
  position: relative;
}
#single article .sns-block .sns-wrapper > li p{
  opacity: 0;
  font-size: 1.0rem;
  position: absolute;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
  transition: 0.8s;
  color: var(--font-color-heading);
}
#single article .sns-block .sns-wrapper > li:hover p{
  opacity: 1;
  color: var(--font-color-heading);
}
#single article .sns-block .sns-wrapper > li:hover svg .hover{
  fill: var(--font-color-heading);
}
#single article .post-footer{
  padding: 0 0 90px;
}
#single article .post-footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#single article .post-footer .flex-wrapper{
  gap: 30px;
  align-items: center;
  margin-bottom: 170px;
}
#single article .post-footer .sns-wrapper{
  display: flex;
  gap: 25px;
  align-items: center;
}
#single article .post-footer .category-list{
  justify-content: center;
  padding-left: 25px;
  margin-bottom: 40px;
}
#single article .post-footer .category-list li{
  line-height: 1;
}
#single article .post-footer .btn_back-list{
  color: var(--sub-color03);
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1;
  padding: 12px 35px;
  border: 1px solid var(--sub-color03);
  border-radius: 44px;
  background-color: #fff;
}
#single article .post-footer .btn_back-list:hover{
  color: var(--main-color);
  border-color: var(--main-color);
}
@media screen and (max-width:1024px) {
  #single article .post-header .recipe-tag a{
    font-size: 1.5rem;
  }  
  #single article .post-main .main-block{
    width: 100%;
  }
  #single article .sns-block .sns-wrapper > li p{
    display: none;
  }
  #single article .post-footer .category-list{
    padding: 0;
  }
  #single article .point-block img{
    top: -30px;
    bottom: -31px;
    width: 60px;
  }
}
@media (min-width: 768px) and (max-width:1024px) {
  #single article .post-main .main-block .pc-hidden:has(.ingredient-block){
    display: flex!important;
    gap: 45px;
  }
  #single article .post-header{
    margin-bottom: 50px;
    padding-top: 60px;
  }
  #single article .post-header h1{
    margin-bottom: 12px;
  }
  #single article .post-header .flex-wrapper{
    margin-bottom: 50px;
  }
  #single article .post-header .recipe-no{
    margin-bottom: 13px;
  }
  #single article .recipe-sub{
    margin-bottom: 20px;
  }
  #single article .ingredient-block{
    width: 55%;
  }
  #single article .point-area{
    flex: 1;
  }
  #single article .point-block{
    padding: 35px 20px 28px;
  }
  #single article .point-block{
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 25px;
  }
  #single article .sns-block{
    gap: 12.5px;
  }
  #single article .sns-block .link-arrow{
    font-size: 1.4rem;
    line-height: 1;
  }
  #single article .sns-block .link-arrow img{
    width: 15px;
    height: 15px;
  }
  #single article .sns-block svg{
    width: 27px;
    height: 27px;
  }
  #single article .sns-block .sns-wrapper{
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  #single article .post-header .recipe-tag a{
    font-size: 1.4rem;
  }  
  #single article .post-header h1{
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
  #single article .post-header .recipe-no span{
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  #single article .post-header .recipe-no span::after{
    bottom: -3px;
  }
  #single article .post-header .flex-wrapper{
    flex-direction: column;
    gap:10px;
  }

  #single article .recipe-sub{
    margin-bottom: 10px;
  }
  #single article .cooking-time{
    font-size: 1.3rem;
  }
  #single article .cooking-time .cooking-num .time-no{
    font-size: 2.5rem;
  }
  #single article .post-main .main-block .recipe-comment{
    padding: 20px;
  }
  #single article .ingredient-block .ingredient-title{
    font-size: 1.8rem;
  }
  #single article .point-block{
    padding: 35px 20px 28px 20px;
  }
  #single article .point-block img{
    width: 68px;
    height: auto;
    left: -12px;
  }
  #single article .post-main .main-block .procedure-block .procedure-title{
    font-size: 1.8rem;
  }
  #single article .post-main .main-block .procedure-block .preparation-title span{
    font-size: 1.6rem;
    padding: 8px 20px;
  }
  #single article .post-main .main-block .procedure-block .flex-wrapper{
    flex-direction: column;
    gap: 0;
  }
  #single article .post-main .main-block .procedure-block ul li .procedure-no{
    font-size: 5.0rem;
  }
  #single article .post-main .main-block .procedure-block ul li .procedure-text{
    padding-left: 0;
  }
  #single article .post-main .main-block .procedure-block ul li:last-child{
    margin-bottom: 20px;
  }
  #single article .sns-block{
    align-items: flex-start;
    gap: 15px;
  }
  #single article .sns-block .sns-wrapper{
    gap: 12px;
    margin-bottom: 84px;
  }
  #single article .sns-block .sns-wrapper svg{
    width: 27px;
    height: 27px;  
  }
  #single article .post-footer .link-arrow{
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--font-color-text);
  }
  #single article .post-footer .link-arrow img{
    width: 16px;
  }
  #single article .post-footer .category-list{
    padding: 0;
    flex-wrap: wrap;
    gap: 5px 9px;
    justify-content: flex-start;
    margin-bottom: 55px!important;
  }
  #single article .sns-block .link-arrow{
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--font-color-text);
  }
  #single article .sns-block .link-arrow img{
    width: 16px;
  }
  #single article{
    background: url('../img/recipe/back_shape_sp.png') no-repeat;
    background-position: bottom -120px center;
    background-size: contain;
  }
}
#recipe .recipe-tag_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 47px;
}
#recipe .recipe-tag_wrapper .category-list{
  margin: 0!important;
}
#recipe .recipe-tag_wrapper .recipe-tag{
  gap: 7px;
}
#recipe .recipe-tag_wrapper .recipe-tag li{
  font-size: 1.3rem;
}
#recipe .recipe-tag_wrapper .recipe-tag .tag-name{
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
}
@media (min-width: 768px) and (max-width:1024px) {
  #recipe .recipe-tag_wrapper{
    flex-wrap: wrap;
  }
  #recipe .recipe-tag_wrapper .category-list{
    margin-bottom: 30px!important;
  }
  #recipe .recipe-tag_wrapper .recipe-tag{
    width: 100%;
    justify-content: flex-end;
  }
  #recipe .recipe-tag_wrapper .recipe-tag .tag-name{
    font-size: 1.6rem;
    letter-spacing: 0.16em;
  }
}
@media screen and (max-width: 767px) {
  #recipe .recipe-tag_wrapper{
    flex-wrap: wrap;
  }
  #recipe .recipe-tag_wrapper .category-list{
    margin-bottom: 25px!important;
  }
  #recipe .recipe-tag_wrapper .recipe-tag{
    width: 100%;
  }
  #recipe .recipe-tag_wrapper .recipe-tag .tag-name{
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
  #recipe .recipe-tag_wrapper .recipe-tag li{
    font-size: 1.2rem;
  }
  #recipe .recipe-tag_wrapper{
    margin-bottom: 30px;
  }
  #single .breadcrumbs.pc-hidden{
    background: var(--sub-color01);
  }
}