@charset "utf-8";
.main-view {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-view-side {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  width: 20vw;
  height: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: right;
}

.main-view-line {
  height: 80%;
  width: 50px;
  /* border-bottom: 1px solid #000; */
  border-left: 1px solid #000;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-end;
}

.vertical-h3 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.7rem;
  margin-bottom: 20px;
  margin-right: 4px;
  white-space: nowrap;
}
.vertical-content {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.border-line {
  margin: 10vh auto 15vh;
  max-width: 1000px;
  border-top: 1px solid #000;
  font-size: 1.3rem;
  text-align: center;
  position: relative;
}
.dinner-section h4,
.morning-section h4 {
  margin-bottom: 60px;
}
.food-dinner-box {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 50px;
}

.food-dinner-box {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.food-item-dinner:nth-child(3) {
  grid-column: 1 / 3;
  max-width: 70%;
  margin: 0 auto;
}

.food-item-dinner img {
  width: 100%;
  height: auto;
}

.food-item-dinner h5 {
  margin-top: 16px;
  font-size: 1.3rem;
  text-align: center;
}

.food-item-dinner p {
  margin-top: 12px;
  padding: 0 10px;
  font-size: 1rem;
  line-height: 1.75;
}
.item-dinner-bottom {
  margin-bottom: 50px;
}
.food-morning-box {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.food-morning-box {
  grid-template-columns: 1fr 1fr;
}
.food-item-morning img {
  width: 100%;
  height: auto;
}

.food-item-morning h5 {
  margin-top: 16px;
  font-size: 1.3rem;
  text-align: center;
}

.food-item-morning p {
  margin-top: 12px;
  padding: 0 10px;
  font-size: 1rem;
  line-height: 1.75;
}
.food-item-morning,
.food-item-dinner {
  position: relative;
}
.food-item-dinner p::before,
.food-item-morning p::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -5px;
  width: 1px;
  height: 30%;
  background-color: #bfa16f;
  box-shadow: 15px -15px 0 #767ec9;
}

/* 下の横線（2本） */
.food-item-dinner p::after,
.food-item-morning p::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -5px;
  width: 50%;
  height: 1px;
  background-color: #bfa16f;
  box-shadow: 15px -15px 0 #767ec9;
}
section {
  padding: 0 5vw 5vw;
  margin-bottom: 10vh;
}
h4 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}
.food-section-about {
  position: relative;
}
.food-about-box {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}
.food-about-box .food-about-note {
  flex: 1;
}
.about-box {
  margin-bottom: 30vh;
}
.food-about-box img {
  width: 50%;
  height: auto;
}

.food-img-position {
  position: absolute;
  width: 25%;
  top: 5%;
  right: 0;
}
.about-box-re {
  flex-direction: row-reverse;
}
.food-cake-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.food-section-cake img {
  width: 70%;
  height: auto;
  margin-top: 30px;
}

.food-cake-note {
  line-height: 1.8;
}
strong {
  color: #763dd8;
  font-size: 1.3rem;
}
.food-allergy-note {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main-view {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  .main-view-side {
    width: 30vw;
  }
  .vertical-content {
    font-size: 0.9rem;
  }
  .vertical-h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .food-dinner-box {
    grid-template-columns: 1fr;
  }

  .food-item-dinner {
    width: 100%;
    margin: 0 auto;
  }

  .food-item-dinner:nth-child(3) {
    max-width: 100% !important;
    grid-column: 1 / 2;
    margin: 0;
  }
  .food-morning-box {
    grid-template-columns: 1fr;
  }

  .food-item-morning {
    width: 100%;
    margin: 0 auto;
  }
  .food-item-dinner h5,
  .food-item-morning h5 {
    font-size: 1.2rem;
  }
  .food-item-dinner p,
  .food-item-morning p {
    font-size: 0.95rem;
  }
  .food-about-box {
    flex-direction: column-reverse;
  }
  .food-about-box img {
    width: 80%;
    height: auto;
  }
  .food-img-position {
    position: absolute;
    width: 45%;
    top: 5%;
    right: 0;
  }
  .food-cake-note p,
  .food-section-about p {
    padding: 0 10px;
    font-size: 0.95rem;
  }

  .food-section-cake img {
    width: 100%;
  }
  .item-dinner-bottom {
    margin-bottom: 0;
  }
  .food-allergy-note p {
    padding: 0 10px;
    font-size: 0.95rem;
  }
  strong {
    font-size: 1rem;
  }
  .dinner-section h4,
  .morning-section h4,
  h4 {
    margin-bottom: 30px;
  }
}
