/*------------------------------------------
MV
------------------------------------------*/
.mv {
  width: 100%;
  overflow: hidden;
  max-height: 600px;

  img {
    width: 100%;
    min-height: 100%;
    max-height: 600px;
    display: block;
    object-fit: cover;
  }
}

.list {
  font-size: 1.3rem;

  li {
    line-height: 2.5;
    padding-left: 32px;
    position: relative;

    &::after {
      content: "";
      width: 27px;
      height: 27px;
      background-image: url(../images/meal/ico.png);
      background-size: contain;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }

    @media screen and (max-width: 896px) {
      padding-left: 18px;

      &::after {
        width: 15px;
        height: 15px;
      }
    }
  }

  @media screen and (max-width: 896px) {
    font-size: 1.2rem;
  }
}

.inr {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.txt {
  line-height: 1.7em;

  @media screen and (max-width: 896px) {
    line-height: 1.3em;
  }
}

.chef-box {
  padding-top: 90px;
  padding-bottom: 60px;

  h2 {
    font-size: 1.8rem;
  }

  &.bg_w {
    background-color: #ffffff;
  }

  .t-grey {
    color: #888;
  }

  @media screen and (max-width: 896px) {
    padding-top: 30px;
  }
}

.chef-box-inr {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 20px auto 80px;

  &:last-child {
    margin-bottom: 0;
  }

  @media screen and (max-width: 896px) {
    flex-direction: column;
    gap: 0;
  }
}

.chef-box-inr-in {
  width: 48%;

  >p {
    font-size: 1.5rem;
    color: #aaa;
    margin-top: 10px;
  }

  img {
    width: 100%;
    object-fit: cover;
  }

  @media screen and (max-width: 896px) {
    width: 100%;
    margin-bottom: 20px;

    img {
      height: auto;
    }
  }
}

.chef_flex {
  display: flex;
  justify-content: center;
  align-items: center;

  @media screen and (max-width: 896px) {
    padding: 15px;
  }
}

.chef_text {
  width: 85%;

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    border-bottom: 2px solid #0073a1;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px;
    font-size: 1.1rem;

    li {
      position: relative;
      padding-left: 1.8em;
      margin-bottom: 10px;
      border-bottom: 1px dashed #ddd;
      padding-bottom: 5px;
    }
  }

  p {
    font-size: 1.5rem;
    color: #666;
    margin-top: 15px;

    span {
      display: inline-block;
    }
  }

  &.menu {
    width: 60%;
    margin: 0 auto;
  }

  @media screen and (max-width: 896px) {
    width: 95%;
  }
}

.chef-info p span {
  display: inline-block;
}

.pop-box {
  padding-bottom: 140px;

  .img-list li {
    width: 24%;
    max-width: 400px;

    @media screen and (max-width: 896px) {
      width: 49.5%;
      margin-bottom: 5px;
      max-width: none;
    }
  }

  @media screen and (max-width: 896px) {
    padding-bottom: 70px;
  }
}

.meal_gal,
.meal_gal_img {
  height: 200px;
  object-fit: cover;
  width: 100%;

  @media screen and (max-width: 896px) {
    height: 150px;
  }
}

/* Table */
table {
  width: 70%;
  margin: 0 auto;

  th,
  td {
    border-bottom: 1px dotted #ccc;
    padding: 10px;
  }

  th {
    width: 40%;
  }

  td {
    width: 60%;
  }

  @media screen and (max-width: 896px) {
    width: 96%;
    font-size: 14px;

    th {
      width: 22%;
    }

    td {
      width: 78%;
    }
  }
}

/* Chef Info */
.chef-info .inr {
  display: flex;
  width: calc(100% - 100px);
  padding: 50px;
  border: 1px solid #eee;

  .chef-info-img {
    width: 28%;

    img {
      width: 100%;
      box-shadow: 2px 2px 2px #888;
    }
  }

  @media screen and (max-width: 896px) {
    flex-direction: column;
    width: calc(100% - 40px);
    padding: 20px;

    .chef-info-img {
      width: 100%;
    }
  }
}

/* Page Title */
.page-title {
  @media screen and (min-width: 768px) {
    h1 {
      color: #fff;
      text-shadow: black 1px 1px 4px, black -1px 1px 4px, black 1px -1px 4px, black -1px -1px 4px;
      position: absolute;
      font-size: 50px;
      top: 200px;
      left: 50%;
      transform: translateX(-50%);
      letter-spacing: 6px;
    }

    h2 {
      color: #fff;
      text-shadow: black 1px 1px 8px, black -1px 1px 8px, black 1px -1px 8px, black -1px -1px 8px;
      position: absolute;
      font-size: 22px;
      top: 300px;
      left: 50%;
      transform: translateX(-50%);
    }

    p {
      color: #fff;
      text-shadow: black 1px 1px 10px, black -1px 1px 10px, black 1px -1px 10px, black -1px -1px 10px;
      position: absolute;
      font-size: 16px;
      top: 340px;
      left: 50%;
      transform: translateX(-50%);
      line-height: 1.8;
    }
  }

  @media screen and (max-width: 896px) {
    h1 {
      font-size: 28px;
      top: 100px;
    }

    h2 {
      font-size: 16px;
      margin-top: 20px;
    }

    p {
      font-size: 14px;
    }
  }
}

.chef-box-inr-in p {
  padding: 1rem;
}