@charset "utf-8";

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Meiryo", sans-serif;
}

#main {
  display: flex;
  /* align-items: flex-end; */
}

#visual {
  width: 50vw;
  height: 700px;
  flex-wrap: wrap;
}

#visual img {
  max-width: 100%;
}

#text_area {
  font-size: 1rem;
  width: 55vw;
  margin-top: 40px;
  margin-left: 50px;
  margin-right: 40px;
}

h2 {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 1rem;
}

#ingredient {
  margin-top: 3rem;
}

dl {
  display: flex;
  flex-wrap: wrap;
}

dt, dd {
  padding: 5px 0 5px 0;
  border-bottom: 1px dotted #555555;
}

dt {
  width: 85%;
}

dd {
  width: 15%;
  margin: 0;
  text-align: right;
}

#order {
  margin-top: 3rem;
}

#order ol {
  padding-left: 1em;
}

#order ol li {
  padding: 5px 0 5px 0;
  border-bottom: 1px dotted #555555;
}

#button {
  margin-top: 60px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

#button a {
  display: inline-block;
  color: black;
  padding: 15px 60px;
  border: 1px solid #000;
  text-decoration: none;
}

footer {
  font-size: 0.8rem;
  text-align: center;
}

footer ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

footer ul li a {
  color: #000;
  padding: 15px;
}

#copy {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 834px) {
  #main {
    flex-wrap: wrap;
  }

  #visual {
    width: 100%;
    height: auto;
  }

  #text_area {
    font-size: 1rem;
    width: 100%;
    margin-top: 40px;
    margin-left: 30px;
    margin-right: 30px;
  }

  #button {
    margin-top: 80px;
  }

}