html {
  font-size: 16px;
}
@media screen and (max-width: 780px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 5px;
  }
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: 'Shippori Minch', serif;
  background-color: #9c580a6c;
}

/*------------------------------*/

header {
  width: 100%;
  display: flex;
  background-color: #7d4b1360;
}

.headerContents {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
}

.menu a {
  text-decoration: none;
  color: black;
  margin-right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.menu button {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  background: none;
  border: none;
  font-size: 3rem;
}

.menu a.active {
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}

.menu button.active {
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}

.humberger {
  /* width: 15rem; */
  top: 2rem;
  right: 1.5rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  transition: 0.5s;
  pointer-events: auto;
}

.humberger span {
  width: 3rem;
  height: 0.25rem;
  background-color: black;
}

.humberger.active {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
/*-----------------------------*/

.main {
  width: 100%;
}

/*---------------*/

.top-contents {
  margin-top: 5%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.top-contents p {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  line-height: 4rem;
  opacity: 0.7;
  opacity: 0;
  transition: 1s;
  transform: translateY(30%);
}

.top-contents p.show {
  opacity: 0.7;
  transform: translateY(0);
}

.top-contents img {
  opacity: 0;
  margin-top: 6%;
  transition: 1s;
  transform: translateY(30px);
}

.top-contents img.show {
  opacity: 1;
  transform: translateY(0);
}

/*-------------*/
.menu-contents {
  margin-top: 5rem;
}

.menu-contents h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  text-decoration: underline;
}

.menu-mainContents {
  width: 90%;
  margin: 0 auto;
  margin-top: 3rem;
}

label {
  width: 50%;
}

.menu-mainContents img {
  width: 100%;
  box-shadow: 0.3rem 0.3rem 1rem -0.3rem black;
  transition: 0.7s;
  opacity: 0;
  transform: translateY(30%);
  transition: 1s;
}

.menu-mainContents img.show {
  opacity: 1;
  transform: translateY(0);
}

.menu-mainContents img:hover {
  width: 100%;
  transform: translateY(-0.4rem);
  transition: 0.7s;
  cursor: pointer;
}

.menu-mainContents p {
  width: 50%;
  text-align: center;
  line-height: 2rem;
  opacity: 0;
  transform: translateY(30%);
  transition: 1s;
  margin: 0 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
}

.menu-mainContents p.show {
  opacity: 0.7;
  transform: translateY(0);
}

.menu-mainContents p a {
  display: inline-block;
  margin-top: 2rem;
  font-size: 3rem;
  text-decoration: underline;
  color: rgb(4, 21, 34);
  cursor: pointer;
}

.coffee {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.food {
  padding-top: 5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*-------------*/

.main-about {
  width: 100%;
  margin-top: 8rem;
  text-align: center;
}

.main-about h2 {
  font-size: 4rem;
  text-decoration: underline;
}

.aboutImg {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.aboutImg p {
  font-size: 2rem;
  text-decoration: underline;
}

.aboutImg img {
  width: 80%;
}

/*-----------*/

footer {
  width: 100%;
  background: antiquewhite;
  margin-top: 5rem;
}

footer p {
  margin: 0;
  font-size: 2rem;
  padding: 2.5rem 0;
  text-align: center;
}
