@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
}

h3 {
  font-size: 25px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 100px 15px;
}

.wrap {
  max-width: 1100px;
  width: 100%;
}

.wrap > a {
  width: 100%;
  display: block;
}
.wrap > a > div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wrap > a img {
  max-width: 100%;
}
.wrap > h1 {
  text-align: center;
  padding: 50px 0 70px;
}

section {
  display: flex;
  width: 100%;
}
section > div {
  width: 50%;
}
.section-top {
  border-right: 1px #40c1c4 solid;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section .info-btn {
  display: none;
}
.section-top > h3 {
  padding-bottom: 40px;
  text-align: center;
}

.information {
  display: flex;
  flex-direction: column;
}
.information > div {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}
.information > div > p {
  padding-left: 20px;
  word-wrap: break-word;
}

.information .open-time {
  padding-bottom: 0;
  display: flex;
}

.information img {
  width: 25px;
}

.open-time > div:first-child {
  height: 100%;
}
.open-time-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: -15px;
  padding-top: 5px;
}
.open-time-wrap > div {
  display: flex;
  padding-bottom: 15px;
}
.open-time-wrap > div > p {
  padding-left: 20px;
}
.open-time-wrap div p:first-child {
  width: 108px;
}

.section-bottom > h3 {
  padding-bottom: 40px;
  text-align: center;
}

.order-link-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.order-link {
  width: 50%;
  display: flex;
  justify-content: center;
}
.order-link a {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.order-link a div:first-child {
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
}
.order-link a > div:last-child {
  display: flex;
  width: fit-content;
  border-radius: 20px;
  background-color: #333333;
  color: #fff;
  padding: 5px 20px;
  font-size: 16px;
  margin: 0 auto;
  justify-content: flex-start;
  transition: 0.2s ease-in-out all;
}

.order-link a:hover > div:last-child {
  background-color: #40c1c4;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .container {
    align-items: baseline;
  }
  .wrap h1 {
    font-size: 30px;
  }
  section {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: -60px;
  }
  section > div {
    padding: 60px 0;
    width: 100%;
  }
  .section-top {
    display: flex;
    justify-content: center;
    border-right: none;
    border-bottom: none;
  }

  .section-top {
    display: block;
  }
  .section-bottom {
    display: block;
  }
  .section-top {
    flex-direction: column;
    border-bottom: 1px #40c1c4 solid;
  }
  .section-top > h3 {
    text-align: center;
  }
  .info-btn {
    display: none;
  }
  .information {
    width: fit-content;
    margin: 0 auto;
  }
  .information > div:last-child {
    align-items: flex-start;
  }
  .order-link a {
    padding: 25px;
  }
  .order-link a div:first-child {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .order-link {
    width: 100%;
  }
}
