@charset "UTF-8";
.item-box {
  margin-bottom: 40px;
}
.item-box h4 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #d86624;
}
.item-box h4 {
  display: flex; /* 文字と線を横並びにする */
  align-items: center; /* 垂直方向の中央に揃える */
  gap: 15px; /* 文字と線の間の余白 */
}
.item-box h4::after {
  content: "";
  flex-grow: 1;
  border-top: 1px dotted #d86624; /* dottedをdashedに変えると破線になります */
}
ul.itemlist {
  margin-bottom: 10px;
}
.pickup {
  margin-top: 0px;
}
.pickup h4 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #d86624;
}
.pickup h4 {
  display: flex; /* 文字と線を横並びにする */
  align-items: center; /* 垂直方向の中央に揃える */
  gap: 15px; /* 文字と線の間の余白 */
}
.pickup h4::after {
  content: "";
  flex-grow: 1;
  border-top: 1px dotted #d86624; /* dottedをdashedに変えると破線になります */
}
.pickup h5 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}
.pickup p {
  line-height: 1.7;
}
.cooking td {
  vertical-align: top;
}
.cooking td p {
  font-size: 11px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 5px;
}
.cooking td a:hover {
  opacity: 0.6;
}
.cooking_b td {
  vertical-align: top;
}
.cooking_b td p {
  font-size: 11px;
  line-height: 1.6;
	margin-top: 3px;
}
.cooking_b td h5 {
  font-size: 13px;
  line-height: 1.4;
	margin-top: 3px;	
	margin-bottom: 0;
}
.cooking_b td img {
	margin-bottom: 5px;
}
.cooking_b td a:hover {
  opacity: 0.6;
}
.btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
  padding: 5px;
  border: 1px solid #d86624;
  border-radius: 9999px;
  background-color: #fff;
  color: #d86624;
  font-size: 11px;
}
.btn-link {
  text-decoration: none;
}
.btn-link:hover {
  background-color: #d86624;
  color: #fff;
}
/*.btn-link::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #d86624;
    border-right: 2px solid #d86624;
    content: '';
}*/