.intro .intro-catch {
  max-width: 1096px;
  margin-bottom: calc(8px * 4);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .intro .intro-catch {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .intro .intro-catch {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 520px) {
  .intro .intro-catch {
    max-width: 380px;
  }
}

.event {
  margin-bottom: calc(8px * 8);
}

@media screen and (max-width: 960px) {
  .event {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .event {
    margin-bottom: calc((8px * 8) * 0.5);
  }
}

.event .lately-meal-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media screen and (max-width: 960px) {
  .event .lately-meal-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .event .lately-meal-list {
    gap: 12px;
  }
}

@media screen and (max-width: 520px) {
  .event .lately-meal-list {
    margin: 0 0 16px;
  }
}

.event .lately-meal-list::before {
  position: absolute;
  top: 30%;
  left: 0;
  content: "";
  width: 100%;
  height: 24px;
  background: -webkit-gradient(linear, left top, right top, from(#22ACD5), to(#21D899));
  background: linear-gradient(to right, #22ACD5, #21D899);
  z-index: -1;
}

.event .lately-meal-list__item {
  padding: 12px 12px 24px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 4px rgba(147, 147, 147, 0.24);
  box-shadow: 0 0 4px rgba(147, 147, 147, 0.24);
  border-radius: 6px;
}

@media screen and (max-width: 960px) {
  .event .lately-meal-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
    padding: 12px;
  }
}

@media screen and (max-width: 768px) {
  .event .lately-meal-list__item {
    gap: 8px;
    padding: 8px 8px 16px;
  }
}

.event .lately-meal-list__item:nth-child(2) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@media screen and (max-width: 960px) {
  .event .lately-meal-list__item:nth-child(2) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.event .lately-meal-list__item:nth-child(3) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@media screen and (max-width: 960px) {
  .event .lately-meal-list__item:nth-child(3) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.event .lately-meal-list__item .lately-meal-vsl {
  margin: 0 0 8px;
  border-radius: 6px;
  aspect-ratio: 3 / 2;
}

@media screen and (max-width: 960px) {
  .event .lately-meal-list__item .lately-meal-vsl {
    margin: 0;
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .event .lately-meal-list__item .lately-meal-vsl {
    width: 208px;
  }
}

@media screen and (max-width: 520px) {
  .event .lately-meal-list__item .lately-meal-vsl {
    width: 100%;
  }
}

.event .lately-meal-list__item .lately-meal-vsl a {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  background: #e4f6fc;
  border-radius: 6px;
}

.event .lately-meal-list__item .lately-meal-vsl a img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.event .lately-meal-list__item .lately-meal-vsl a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.event .lately-meal-list__item .lately-meal-dtl .lately-meal-date {
  font-size: 1.5rem;
  color: #9F9F9F;
}

.kinds-content {
  max-width: 672px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 960px) {
  .kinds-content {
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .kinds-content {
    max-width: 520px;
    gap: 16px;
  }
}

@media screen and (max-width: 520px) {
  .kinds-content {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.kinds-content .kinds-col .kinds-ttl {
  position: relative;
  text-align: center;
  margin-bottom: calc(8px * 2);
  background: #eff8ff;
  padding: 4px;
  color: #22ACD5;
  border-radius: 6px;
  font-size: 2rem;
}

@media screen and (max-width: 960px) {
  .kinds-content .kinds-col .kinds-ttl {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .kinds-content .kinds-col .kinds-ttl {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 768px) {
  .kinds-content .kinds-col .kinds-ttl {
    font-size: 1.7rem;
  }
}

.kinds-content .kinds-col .kinds-ttl::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 6px;
  background: #eff8ff;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.kinds-content .kinds-col:nth-child(2) .kinds-ttl {
  background: #fff5db;
  color: #FCBD1D;
}

.kinds-content .kinds-col:nth-child(2) .kinds-ttl::before {
  background: #fff5db;
}

/*# sourceMappingURL=../../maps/pages/meal.css.map */
