.food{
  margin-top: 40px;
  position: relative;
}
.food-bg{
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.food-inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: column;
  max-width: 1100px;
  margin: 0 auto 0;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: content-box;
}

.food-theme-ttl{
  width: 100%;
  font-size: 30px;
  font-weight: 800;
  display: block;
  text-align: center;
  position: relative;
}
.food-theme-ttl::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  clip-path: polygon(
			0% 0%,
			calc(50% - 4.5em) 0%,
			calc(50% - 4.5em) 100%,
			0% 100%,
			0% 0%,

			100% 0%,
			calc(50% + 4.5em) 0%,
			calc(50% + 4.5em) 100%,
			100% 100%,
			100% 0%
		);
}
.food-theme-item{
  width: 100%;
  display: block;
}
.food-theme-item ul{
  display: flex;
  flex-flow: wrap;
  gap: 12px;
  row-gap: 20px;
  margin-top: 32px;
  padding: 0 0 28px;
  margin-bottom: 38px;
  border-bottom: 1px solid #000;
}
.food-theme-item ul li{
  display: block;
  width: calc(33.333% - 8px);
}
.food-theme-item ul li dt{
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-align: center;
  border: 1px solid #000;
  background-color: #f2eae0;
  padding: 4px;
  height: 3em;
  font-weight: 600;
}
.food-theme-item ul li dd{
  font-size: 12px;
  line-height: 1.5em;
  margin-top: 4px;
}


.food-card-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 32px;
}

.food-content-card{
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 431px) and (max-width: 834px) {
  .food-content-card{
    width: calc(50% - 16px);
  }
}
.food-content-deco{
  position: absolute;
  display: block;
  top: -14px;
  left: -14px;
  z-index: 2;
  height: 64px;
}


.food-content-card-inner{
  filter: drop-shadow(0 0 12px rgba(0,0,0,.15));
  transform: translateZ(0);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-sizing: border-box;
  height: 100%;
  text-decoration: none;
  display: block;
}
.food-content-card-img-wrapper{
  width: 100%;
  padding-top: 60.5%;
  position: relative;
}
.food-content-card-img-wrapper img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%,-50%);
}
.food-content-card-txt-wrapper{
  padding: 18px 16px 16px;
}

.food-content-card-tag{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 6px;

}
.food-content-card-tag li{
  font-size: 12px;
  border: 1px solid #000;
  background-color: #f2eae0;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  width: calc(50% - 6px);
  padding: 4px;
  box-sizing: border-box;
}
.food-content-card-tag.tag-item-3{
  flex-flow: nowrap;
}
.food-content-card-tag.tag-item-3 li{
  width: 33.333%;
}

.food-content-card-txt-wrapper h3{
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 800;
  margin: 0;
  font-weight: 600;
  text-align: center;
}
.food-content-card-txt-wrapper h3 span{
  font-size: 15px;
  font-weight: 800;
  line-height: 1em;
  margin: 8px 0 8px;
  display: block;
  font-weight: 600;
  text-align: center;
}

.food-content-card-txt-inner{
}


.food-content-card-txt-wrapper p{
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 10px;
  font-weight: 500;
  text-align: justify;
}
