.food{
  margin-top: 55px;
  position: relative;
}
.food-bg{
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.food-inner{
  max-width: 1100px;
  margin: 0 auto 0;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}

.food-theme-ttl{
  width: 100%;
  font-size: 38px;
  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% - 8em) 0%,
			calc(50% - 8em) 100%,
			0% 100%,
			0% 0%,

			100% 0%,
			calc(50% + 8em) 0%,
			calc(50% + 8em) 100%,
			100% 100%,
			100% 0%
		);
}
.food-theme-item{
  width: 100%;
  display: block;
}
.food-theme-item ul{
  display: flex;
  flex-flow: wrap;
  gap: 26px;
  margin-top: 32px;
  padding: 0 40px 28px;
  margin-bottom: 68px;
  border-bottom: 1px solid #000;
}
.food-theme-item ul li{
  display: block;
  width: calc(16.666% - 21.666px);
}
.food-theme-item ul li dt{
  font-size: 12px;
  display: block;
  line-height: 1;
  text-align: center;
  border: 1px solid #000;
  background-color: #f2eae0;
  padding: 4px;
  font-weight: 600;
}
.food-theme-item ul li dd{
  font-size: 12px;
  line-height: 1.75em;
  margin-top: 6px;
}


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

.food-content-card{
  width: calc(33.333% - 26px);
  position: relative;
  box-sizing: border-box;
}
.food-content-deco{
  position: absolute;
  display: block;
  top: -24px;
  left: -6px;
  z-index: 2;
  height: 62px;
}
.food-content-card a.hover_ok{
  transition: 0.3s;
  top: 0;
}
.food-content-card a.hover_ok:hover {
  top: -4px;
}

.food-content-card-inner{
  filter: drop-shadow(0 0 12px rgba(0,0,0,.15));
  transform: translateZ(0);
  border-radius: 26px;
  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: 20px 20px 24px;
}
.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: 24px;
  font-weight: 800;
  line-height: 1.25em;
  margin: 16px 0 0;
  font-weight: 600;
  text-align: center;
}
.food-content-card-txt-wrapper h3 span{
  font-size: 16px;
  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: 16px;
  font-weight: 500;
  text-align: justify;
}
