.top-reservation {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
  background-color: #fff;
}

.top-reservation-box {
  background-color: #fff5fa;
  border: solid 2px #ff7a92;
}
@media only screen and (max-width: 768px) {
  .top-reservation-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .top-reservation-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 6rem;
  }
}
.top-reservation-box__content {
  display: grid;
}
@media only screen and (max-width: 768px) {
  .top-reservation-box__content {
    grid-template-columns: 60% 35%;
    grid-template-rows: auto auto;
    gap: 5%;
  }
}
@media only screen and (min-width: 769px) {
  .top-reservation-box__content {
    grid-template-columns: 120px auto;
    grid-template-rows: auto auto;
    gap: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .top-reservation-box__appImg {
    grid-area: 1/2/2/3;
  }
}
@media only screen and (min-width: 769px) {
  .top-reservation-box__appImg {
    grid-area: 1/1/3/2;
  }
}
@media only screen and (max-width: 768px) {
  .top-reservation-box__textImg {
    grid-area: 1/1/2/2;
  }
}
@media only screen and (min-width: 769px) {
  .top-reservation-box__textImg {
    grid-area: 1/2/2/3;
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .top-reservation-box__btnBox {
    grid-area: 2/1/3/3;
  }
}
@media only screen and (min-width: 769px) {
  .top-reservation-box__btnBox {
    grid-area: 2/2/3/3;
  }
}
.top-reservation-box__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff7a92;
  border-radius: 100vmax;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 768px) {
  .top-reservation-box__btn {
    padding: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .top-reservation-box__btn {
    padding: 1rem 2rem;
  }
}
.top-reservation-box__btn:hover {
  opacity: 0.8;
}
.top-reservation-box__btnIcon {
  width: 2rem;
}
.top-reservation-box__linkBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .top-reservation-box__linkBox {
    width: 30%;
  }
}
.top-reservation-box__link {
  display: block;
  transition-duration: 0.3s;
}
.top-reservation-box__link:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .top-reservation-box__qr {
    display: none;
  }
}
.top-reservation-box__appBtn {
  display: block;
  margin-top: 0.5rem;
}

.feature-flow {
  width: min(100%, 768px);
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .feature-flow {
    padding-bottom: 8rem;
  }
}
@media only screen and (min-width: 769px) {
  .feature-flow {
    padding-bottom: 12rem;
  }
}
.feature-flow__container {
  background-color: #ffeced;
  border-radius: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .feature-flow__container {
    padding: 3rem 3rem;
  }
}
@media only screen and (min-width: 769px) {
  .feature-flow__container {
    padding: 5rem;
  }
}
.feature-flow__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.feature-flow__heading::before, .feature-flow__heading::after {
  flex: 1;
  display: block;
  height: 2px;
  content: "";
  background-color: #ff7a92;
}
.feature-flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background-color: #fff;
  border-radius: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .feature-flow__list {
    margin-top: 3rem;
    padding: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .feature-flow__list {
    margin-top: 5rem;
    padding: 3rem 5rem;
  }
}
.feature-flow__listItem {
  padding: 1rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #eee;
  border-radius: 100vmax;
}

.feature-flowNote__head {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  margin-inline: auto;
  margin-top: 5rem;
  padding: 1rem 3rem;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #ff7a92;
  border-radius: 100vmax;
}
.feature-flowNote__body {
  transform: translateY(-2.5rem);
  padding: 5rem 2rem 3rem;
  font-size: 1.8rem;
  background-color: #fff;
  border: solid 2px #ff7a92;
  border-radius: 2rem;
}
@media only screen and (min-width: 769px) {
  .feature-flowNote__body {
    text-align: center;
  }
}/*# sourceMappingURL=addition.css.map */