*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
     margin: 0;
  min-height: 100vh;
   background-image: url(images/cafe_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   background-attachment: fixed;
}
header{
  width: 200px;
  height: 70px;
}
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: .5s;
  z-index: 1000;
}
.open nav {
  right: 0;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  width: 190px;
  padding: 20px;
  position: relative;
  margin: 0;
}
nav .inner ul li a {
  display: block;
  height: 0;
  padding: 25px;
  text-decoration: none;
  overflow: hidden;
}
nav ul li#about a{
  background-image: url(images/nav4.jpg);
}
nav ul li#menu a{
  background-image: url(images/nav2.jpg);
}
nav ul li#access a{
  background-image: url(images/nav3.jpg);
}
nav ul li#contact a{
  background-image: url(images/nav1.jpg);
}
nav .inner ul li a:hover {
   background-position: 0 -50px;
}
@media screen and (max-width: 767px) {
  nav {
    right: -240px;
    width: 240px;
  }
}
@keyframes equalizer01 {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
@keyframes equalizer02 {
  0% {
    width: 30%;
  }
  10% {
    width: 20%;
  }
  20% {
    width: 40%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 20%;
  }
  50% {
    width: 30%;
  }
  60% {
    width: 20%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 40%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 30%;
  }
}
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 30px;
  transform: translate(0, 0);
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.open .toggle_btn {
  right: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 5px;
  width: 60px;
  animation: equalizer01 7000ms infinite;
}
.toggle_btn span:nth-child(2) {
  top: 15px;
  width: 30px;
  animation: equalizer02 5000ms infinite;
  animation-delay: 0.33s;
}
.toggle_btn span:nth-child(3) {
  top: 25px;
  width: 20px;
  animation: equalizer02 5000ms infinite;
}
.open .toggle_btn span {
  background-color: #fff;
  width: 30px;
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  animation: unset;
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
  animation: unset;
}
.open .toggle_btn span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  animation: unset;
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    right: 260px;
  }
}
#mask {
  display: none;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
  transition: all .5s;
}
.container {
  position: relative;
  width: 1900px;
  height: 900px;
  overflow: hidden;
  font-family: hot-reishorkk, sans-serif;
}
.set{
  width: 1900px;
  height: 700px;
  text-align: center;
  font-family: hot-reishorkk, sans-serif;
   display: flex;
  justify-content: center;
}

.img {
  position: absolute;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.left {
  width: 500px;
  height: 710px;
  position:absolute;
  left: 180px;
  top: 120px;
  z-index: 1;
  animation-delay: 3s;
  animation-name: fadeInLeft;
}

.right {
  width: 530px;
  position: absolute;
  right:100px;
  top: 5px;
  z-index:1;
  animation-delay: 4s;
  animation-name: fadeInRight;
}

.text {
  position: absolute;
  writing-mode: vertical-rl;
  font-size:64px;
  line-height: 1;
  color: #000;
  z-index: 1;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.text1 {
  font-size: 64px;
  line-height: 1.8;
  color: #000;
  z-index: 1;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.text span {
  color: rgb(203, 46, 39);
}
.red span{
  color:rgb(203, 46, 39);
}
.blue span{
  color:rgb(56, 145, 186);
}
.main {
  left: 55%;
  top: -10px;
  font-size: 60px;
   animation-delay: 2s;
  animation-name: fadeInDown;
}
.main1{

  font-size: 70px;
}

.sub {
  left: 45%;
  top: 40px;
  font-size: 55px;
  animation-delay: 3s;
  animation-name: fadeInUp;
}
.sub1{
  font-size: 70px;
}

.fade {
  opacity: 0;
  will-change: opacity, transform;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 3.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeInDown 3.5s ease forwards;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInRight 5s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInLeft 6s ease forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero, .final-text {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.step, .final-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.step.show, .final-text.show {
    opacity: 1;
}
.final-text {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  z-index: 2;
  transition: opacity 1s ease;
}
footer {
  position: fixed;
  bottom: 10px;
  right: 100px;
  z-index: 100;
}
footer p {
  margin: 0;
  font-size: 20px;
}

section h1 {
  font-size: 60px;
}
section h2{
  font-size: 50px;
}
section h3{
  font-size: 50px;
  padding-bottom: 30px;
}
section img{
  float: left;
  width: 300px;
  height: auto;
}
.hero-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.hero::after {
  content: "";
  display: block;
  clear: both;
}
section p{
  text-align: left;
  font-size: 25px;
  margin-top: 10px;
}
article h1{
  font-size: 40px;
  padding-top: 20px;
}
article p{
  padding: 10px;
  font-size: 20px;
}
article ul li{
  font-size: 17px;
}
.contact-inner {
  position: absolute;
  top: 100px;
  left: 600px;
  width: 700px;
  font-family: hot-reishorkk, sans-serif;
  font-size: 20px;
}
.contact-inner h1{
  margin-bottom: 40px;
  font-size: 50px;
}
.contact-inner p{
  margin-bottom: 10px;
}

.contact-form {
  position: static;
  top: 80px;
  right: 20%;
  margin-top: 40px;
  width: 100%;
  font-family: hot-reishorkk, sans-serif;
}
.row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  margin-bottom: 18px;
}
label {
  width: 250px;
  font-size:20px;
}
input,
textarea {
  flex: 1;
  border: 2px solid #333;
  padding: 10px ;
  background: transparent;
}
textarea {
  height: 300px;
}
.row.textarea {
  align-items: flex-start;
}
.buttons {
  position: absolute;
  left: 500px;
  display: flex;
  gap: 30px;
  margin-top: 10px;
}
button {
  padding: 10px 15px;
}
textarea {
	width: 500px;
	height: 250px;
	overflow-y: scroll;
}
ul {
  margin: 0;
  padding-left: 0;
}
.topics {
   display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1900px;
}
.topics h2{
  margin-bottom: 100px;
}
.topics p{
  padding: 20px;
  font-size: 35px;
}
.access-text {
  flex: 1;
}
.access-map iframe {
  width: 700px;
  height: 550px;
  border: 0;
   display: block;
}

.menu-wrap {
  display: flex;
  width: 100%;
  min-height: 100vh;
  font-family: hot-reishorkk, sans-serif;
}
.menu-wrap .menu {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
}
.menu-wrap h1 {
  margin: 0 0 24px 0;
  font-size: 42px;
}
.menu-wrap .cold-menu h1 {
  margin-bottom: 20px;
}
.menu-wrap .cold-menu ul{
  margin-left: 50px;
  line-height: 1.8;
  font-size: 30px;
}
.menu-wrap .hot-menu h1 {
  margin-left: 300px;
  margin-bottom: 40px;
}
.menu-wrap .hot-menu ul{
  margin-left: 350px;
  line-height: 2.5;
  font-size: 30px;
}
.menu-wrap img {
  margin-top: 24px;
  width: 300px;
  height: auto;
  display: block;
}
