@charset "UTF-8";
/* CSS Document */
.p-mainVisualTalk .p-mainVisualTalk__backgroundImage {
  aspect-ratio: 1366 / 723;
  margin-top: 100px;
}
/* ベース */
.year-list {
  list-style: none;
  padding: 0;
  /* margin: 2rem auto; */
  max-width: 100%; /* 中央寄せ幅を制御 */
}
.year-list li {
  display: grid;
  grid-template-columns: 1fr auto; /* 左：年度テキスト、右：ボタン */
  align-items: center; /* 縦センター */
  gap: 20px; /* 左右の距離調整 */
  margin-bottom: 1rem;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.7em;
}
.year-label {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  font-weight: bold;
  padding-right: 3.3674963397vw;
  padding-left: 2.196193265vw;
}

@media screen and (max-width:768px) {
	.year-label {
	  font-size: 14px;
	}
}
/* ボタン */
/* ボタン */
.year-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #666;
  border-radius: 6px;
  background: #f8f8f8;
  color: #333;
  text-decoration: none;
  line-height: 1;
   border:#e2e2e2 5px solid;
   transition: background-color 1s ease,
              color 1s ease,
              border-color 1s ease; 
}
@media screen and (max-width:768px) {
	.year-btn {
	  font-size: 14px;
	}
}

.year-btn .badge {
  font-size: 9px;
  background: #686868;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.year-btn:hover{
  background-color:#f7f7f7;
  border:#afafaf 5px solid;
}
/* 2カラムはそのまま、横方向の伸びを止める */
.year-list > li {
  display: flex;
  align-items: center;
  column-gap: 24px;
  justify-content: space-between;
}
/* リンク自体も“中身サイズ”に固定 */
.year-list a.year-btn {
  justify-self: start; /* 念のため明示 */
  display: inline-flex; /* 既に指定済みならOK */
  width: auto; /* テーマが width:100% 当ててたら打ち消す */
}
/* れしぴ */


            .p-recipe-categories {
              margin-bottom: 4.39238653vw;
            }
            .p-recipe-categories__list {
              display: flex;
              justify-content: space-between;
              align-items: center;
            }
            .p-recipe-categories__item {
              width: 15.6%;
              padding: 1.5% 0;
              text-align: center;
              font-size: 1vw;
              font-weight: 600;
              cursor: pointer;
              font-family: Montserrat, sans-serif;
              line-height: 1;
              background-color: #fff;
              border: 1px solid #333;
              transition: all 0.3s ease;
            }
            /* .p-recipe-categories__item-all {
              background-color: #b9b9b9;
            }
            .p-recipe-categories__item-healthy,
            .p-recipe-categories__item-healthy-en,
            .p-recipe-categories__item-healthy-zh {
              background-color: #9efcdf;
            }
            .p-recipe-categories__item-quick,
            .p-recipe-categories__item-quick-en,
            .p-recipe-categories__item-quick-zh {
              background-color: #a1c7fa;
            }
            .p-recipe-categories__item-holiday-and-event,
            .p-recipe-categories__item-holiday-and-event-en,
            .p-recipe-categories__item-holiday-and-event-zh {
              background-color: #f2a580;
            }
            .p-recipe-categories__item-main-dishes,
            .p-recipe-categories__item-main-dishes-en,
            .p-recipe-categories__item-main-dishes-zh {
              background-color: #f4bbe7;
            }
            .p-recipe-categories__item-desserts,
            .p-recipe-categories__item-desserts-en,
            .p-recipe-categories__item-desserts-zh {
              background-color: #d4fef2;
            } */
            
            /* アクティブ状態のスタイル */
            .p-recipe-categories__item.active {
              background-color: #b9b9b9;
              border: 1px solid #b9b9b9;
            }
            
            /* レシピカードのトランジション */
            .p-recipeCard {
              transition: opacity 0.3s ease, display 0.3s ease;
            }

            @media screen and (max-width: 768px) {
              .p-recipe-categories__list {
                flex-wrap: wrap;
              }
              .p-recipe-categories__item {
                width: 48%;
                margin-bottom: 3%;
                padding: 3.5% 0;
                font-size: 3vw;
              }
            }



.p-recipeCard {
  position: relative;
}
.p-recipeCard__categories {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  gap: 5px;
  text-decoration: none;
  width: 86%;
}
.p-recipeCard__category {
  /* padding: 4px 8px;
      font-size: 10px; */
  width: 48%;
  padding: 2.6% 0;
  font-size: 1.0vw;
  font-weight: 600;
  color: #fff;
  /* border-radius: 3px; */
  font-family: Montserrat, sans-serif;
  line-height: 1;
  text-align: center;
  /* min-width: 60px; */
  background-color: #ffffffbe !important;
  color: #333;
   border: none !important; 
}
/* .p-recipeCard__category--healthy,
    .p-recipeCard__category--healthy-en,
    .p-recipeCard__category--healthy-zh {
      background-color: #9efcdf;
      color: #333;
    }
    .p-recipeCard__category--quick,
    .p-recipeCard__category--quick-en,
    .p-recipeCard__category--quick-zh {
      background-color: #a1c7fa;
      color: #333;
    }
    .p-recipeCard__category--holiday-and-event,
    .p-recipeCard__category--holiday-and-event-en,
    .p-recipeCard__category--holiday-and-event-zh {
      background-color: #f2a580;
      color: #333;
    }
    .p-recipeCard__category--main-dishes,
    .p-recipeCard__category--main-dishes-en,
    .p-recipeCard__category--main-dishes-zh {
      background-color: #f4bbe7;
      color: #333;
    }
    .p-recipeCard__category--desserts,
    .p-recipeCard__category--desserts-en,
    .p-recipeCard__category--desserts-zh {
      background-color: #d4fef2;
      color: #333;
    } */
/* その他のカテゴリー用のデフォルトスタイル */
.p-recipeCard__category:not([class*="--healthy"]):not([class*="--quick"]):not([class*="--holiday-and-event"]):not([class*="--main-dishes"]):not([class*="--desserts"]) {
  background-color: #b9b9b9;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-recipeCard__category {
    font-size: 3.2vw;
  }
  .p-recipe-categories {
    margin-bottom: 4.39238653vw;
  }
  .p-recipe-categories__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-recipe-categories__item {
    width: 15.6%;
    padding: 1.5% 0;
    text-align: center;
    font-size: 1vw;
    font-weight: 600;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    line-height: 1;
    background-color: #ffffffa7;
    /* border: 1px solid #333; */
    transition: all 0.3s ease;
  }
  /* .p-recipe-categories__item-all {
              background-color: #b9b9b9;
            }
            .p-recipe-categories__item-healthy,
            .p-recipe-categories__item-healthy-en,
            .p-recipe-categories__item-healthy-zh {
              background-color: #9efcdf;
            }
            .p-recipe-categories__item-quick,
            .p-recipe-categories__item-quick-en,
            .p-recipe-categories__item-quick-zh {
              background-color: #a1c7fa;
            }
            .p-recipe-categories__item-holiday-and-event,
            .p-recipe-categories__item-holiday-and-event-en,
            .p-recipe-categories__item-holiday-and-event-zh {
              background-color: #f2a580;
            }
            .p-recipe-categories__item-main-dishes,
            .p-recipe-categories__item-main-dishes-en,
            .p-recipe-categories__item-main-dishes-zh {
              background-color: #f4bbe7;
            }
            .p-recipe-categories__item-desserts,
            .p-recipe-categories__item-desserts-en,
            .p-recipe-categories__item-desserts-zh {
              background-color: #d4fef2;
            } */
}
  /* アクティブ状態のスタイル */
  .p-recipe-categories__item.active {
    background-color: #b9b9b9;
    border: 1px solid #b9b9b9;
  }
  /* レシピカードのトランジション */
  .p-recipeCard {
    transition: opacity 0.3s ease, display 0.3s ease;
  }
  @media screen and (max-width: 768px) {
    .p-recipe-categories__list {
      flex-wrap: wrap;
    }
    .p-recipe-categories__item {
      width: 48%;
      margin-bottom: 3%;
      padding: 3.5% 0;
      font-size: 3vw;
    }
  }

  .recipe-bnr img {
    margin: 0 auto;
  }
  .pc-only {
    display: block
  }
  .sp-only {
    display: none
  }
  @media only screen and (max-width: 768px) {
    .pc-only {
      display: none
    }
    .sp-only {
      display: block
    }
  }




  .p-mainVisualRecipe .p-mainVisualRecipe__backgroundImage {
    
    top: 50px !important;

  }