/* =====================================================
base
===================================================== */

.p-lunch-dinner,
.p-lunch-dinner *,
.p-lunch-dinner *::before,
.p-lunch-dinner *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.p-lunch-dinner {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;

  background: linear-gradient(
    to bottom,
    #fef4d0 0%,
    #FFFFFF 45%,
    #DCDFF5 100%
  );
}

.p-lunch-dinner img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0;
}

/* =====================================================
layout
===================================================== */

.l-main {
  overflow: hidden;
}

/* =====================================================
project
===================================================== */

.p-lunch-dinner {
  padding: 0 20px 80px;
}

.p-lunch-dinner__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.p-lunch-dinner__mv {
  margin: 0 calc(50% - 50vw);
}

/* =====================================================
kirakira
===================================================== */

.p-lunch-dinner__kirakira {
  width: 100%;
  height: 58px;

  background-image: url("../img/kirakira.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 58px;
}

.p-lunch-dinner__top-kirakira {
  margin-top: 80px;
}

.p-lunch-dinner__bottom-kirakira {
  margin-top: 80px;
}

/* =====================================================
heading
===================================================== */

.p-lunch-dinner__heading {
  padding-top: 80px;
  text-align: center;
}

.p-lunch-dinner__title {
  position: relative;
  display: inline-block;

  margin: 0;

  padding-top: 94px;

  font-size: 32px;
  font-weight: 500;
  letter-spacing: .08em;
}

.p-lunch-dinner__title::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 100px;
  height: 100px;

  background-image: url("../img/spoonfolk.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  transform: translateX(-50%);
}

/* =====================================================
grid
===================================================== */

.p-lunch-dinner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  margin-top: 80px;
  align-items: stretch;
}

/* =====================================================
component card
===================================================== */

.c-shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 16px;
  border: 2px solid #2F2F2F;
  border-radius: 12px;
  background: #FFF;
  transition:
    border-color .3s ease;
}

/* =====================================================
header
===================================================== */

.c-shop-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-shop-card__floor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 6px;
  background: #50BBFF;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.c-shop-card__shop-name {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

/* =====================================================
section
===================================================== */

.c-shop-card__section {
  margin-top: 20px;
}

.c-shop-card__section:last-of-type {
  padding-bottom: 20px;
}

/* =====================================================
label
===================================================== */

.c-shop-card__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  width: 100%;
  height: 30px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.c-shop-card__label img {
  width: auto;
  height: 16px;
}

.c-shop-card__label--lunch {
  background: #FAEAB0;
  color: #E87800;
}

.c-shop-card__label--dinner {
  background: #D8DCF1;
  color: #0D447E;
}

.c-shop-card__label--common {
  background: #7E5D5F;
  color: #FFF;
}

/* =====================================================
image
===================================================== */
.c-shop-card__image {
  width: 100%;
  aspect-ratio: 390 / 260;
  margin-top: 12px;
  border-radius: 10px;
  background: #CFCFCF;
  overflow: hidden;
}

.c-shop-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =====================================================
body
===================================================== */

.c-shop-card__body {
  margin-top: 16px;
}

/* =====================================================
product
===================================================== */

.c-shop-card__product {
  margin: 0;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.c-shop-card__product--lunch {
  border-bottom: 1.5px dashed #E87800;
  color: #E87800;
}

.c-shop-card__product--dinner {
  border-bottom: 1.5px dashed #0D447E;
  color: #0D447E;
}

.c-shop-card__product--common {
  border-bottom: 1.5px dashed #7E5D5F;
  color: #7E5D5F;
}

/* =====================================================
price
===================================================== */

.c-shop-card__price {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.c-shop-card__price strong {
  font-weight: 700;
}

.c-shop-card__price span {
  font-size: 14px;
  font-weight: 400;
}

/* =====================================================
text
===================================================== */

.c-shop-card__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

/* =====================================================
button
===================================================== */

.c-shop-card__button {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: auto;

  padding: 0 28px;

  height: 60px;

  border-radius: 999px;

  background: linear-gradient(to right,
      #2B2B2B,
      #424242);

  color: #FFF;

  transition:
    background .3s ease;
  cursor: pointer;
}

.c-shop-card__button:hover {
  background: linear-gradient(to right,
      #505050,
      #666666);

  text-decoration: none;
}

.c-shop-card__button:hover .c-shop-card__button-icon {
  transform: translateX(4px);
}

.c-shop-card__button-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.c-shop-card__button-icon {
  display: flex;
  align-items: center;

  transition: transform .3s ease;
}

.c-shop-card__button-icon img {
  width: auto;
  height: 17px;
}

/* =====================================================
notes
===================================================== */

.p-lunch-dinner__notes {
  margin-top: 60px;
}

.p-lunch-dinner__notes p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
responsive
===================================================== */

@media screen and (max-width: 1024px) {

  .p-lunch-dinner__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (max-width: 767px) {

  .p-lunch-dinner {
    padding: 0 14px 40px;
  }

  /* kirakira */
  .p-lunch-dinner__kirakira {
  height: 32px;
  background-size: auto 38px;
  background-position: left center;
}

  .p-lunch-dinner__top-kirakira {
    margin-top: 40px;
  }

  .p-lunch-dinner__bottom-kirakira {
    margin-top: 40px;
  }

  /* heading */

  .p-lunch-dinner__heading {
    padding-top: 40px;
  }

  .p-lunch-dinner__title {
    padding-top: 90px;

    font-size: 24px;
  }

  .p-lunch-dinner__title::before {
    width: 80px;
    height: 80px;
  }

  /* grid */

  .p-lunch-dinner__grid {
    grid-template-columns: 1fr;

    gap: 24px;

    margin-top: 40px;
  }

  /* card */

  .c-shop-card {
    height: auto;
    padding: 20px 12px;
  }

  .c-shop-card__floor {
    font-size: 24px;
  }

  .c-shop-card__shop-name {
    font-size: 24px;
  }

  .c-shop-card__label {
    font-size: 16px;
  }

  .c-shop-card__label img {
    height: 14px;
  }

  .c-shop-card__product {
    font-size: 18px;
  }

  .c-shop-card__price {
    font-size: 14px;
  }

  .c-shop-card__price strong {
    font-size: 16px;
  }

  .c-shop-card__price span {
    font-size: 13px;
  }

  .c-shop-card__text {
    font-size: 14px;
  }

  .c-shop-card__button {
    height: 60px;
  }

  .c-shop-card__button-text {
    font-size: 16px;
  }

  /* notes */

  .p-lunch-dinner__notes {
    margin-top: 30px;
  }

  .p-lunch-dinner__notes p {
    font-size: 10px;
  }

}