*{
  padding: 0;
   margin: 0;
}

a{
  color: black;
  text-decoration: none;
}

header{
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 30px;
   position: relative;
   background-color: beige;
}

.header-top {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
  width: 100%;
}

.header-info {
  display: flex; 
  flex-direction: column;
  align-items: flex-end;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  position: absolute;
  top: 20px;
  right: 40px;
}

.hours-group { 
    display: block; 
    margin-bottom: 10px;
}

.business-hours, .holiday {
   margin: 0; 
    font-size: clamp(16px, 1.6vw, 20px); 
}

.btn-reserve {
    display: inline-block; 
    padding: 8px 20px;  
    text-align: center; 
    text-decoration: none; 
    background-color: #5D4037; 
    color: #fff; 
    border-radius: 5px;
    margin-top: 5px; 
    margin-right: 30px;
    font-size: 20px;
    font-weight: 500; 
    white-space: nowrap;
}

.hours-group {
    margin-bottom: 5px; 
}

.btn-reserve:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}

header h1{
   font-family: "Playfair Display", serif;
   font-size: clamp(32px, 4vw, 63px); 
   font-weight: 500;
   font-style: normal;
   margin-bottom: 30px;
}

header nav ul{
   display: flex;
   list-style-type: none;
   justify-content: space-between;
   margin: 0;
   padding: 0;
   width: 100%;
   max-width: 1200px;
}

header nav li{
   padding: 0 40px;
   font-family: "Playfair Display", serif;
   font-weight: 500;
   font-style: normal;
   font-size: clamp(16px, 1.6vw, 20px); 
}

body{
   margin: 0;
}

.slideshow{
   position: relative;
   width: 100%;
   height:50vh;
   overflow: hidden;
   background: #fff;
}

.slideshow img{
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: contain;
   background-color: #fff;
   opacity: 0;
   animation: fade 25s infinite;
}

.slideshow img:nth-child(1){animation-delay: 0s;}
.slideshow img:nth-child(2){animation-delay: 5s;}
.slideshow img:nth-child(3){animation-delay: 10s;}
.slideshow img:nth-child(4){animation-delay: 15s;}
.slideshow img:nth-child(5){animation-delay: 20s;}

@keyframes fade{
    0%{opacity: 0;}
    4%{opacity: 1;}
    16%{opacity: 1;}
    20%{opacity: 0;}
    100%{opacity: 0;}
}

.ABOUTUS{
    text-align: center;
    padding: 30px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.ABOUTUS h2{
    font-size: 36px;
    margin-bottom: 30px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
}

.MENU{
    text-align: center;
    padding: 30px;
    background-color: beige;
}

.MENU h2{
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
}

.MENU p{
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
}

aside{
    text-align: center;
    padding: 30px;
}

aside h2{
    font-size: 36px;
    margin-bottom: 20px;
}

.ACCESS{
    background-color: #fff;
    padding: 5px;
    text-align: center;
}

.ACCESS h2{
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
}

.access-container {
    display: flex;
    gap: 30px; 
    align-items: flex-start;
}

.access-container iframe {
    width: 50%; 
    height: 400px; 
}

.access-details {
    padding-left: 15px;
}

.access-details p {
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left; 
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
}

.sp-break {
    display: none;
}

@media (max-width: 900px) { 
   .access-container {
      flex-direction: column; 
       gap: 15px; 
    }

    .access-container iframe {
        width: 100% ;
         height: auto; 
    }
}

footer{
    text-align: center;
    padding: 30px;
    background-color: beige;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 959px) {
   .access-container {
     flex-direction: column; 
     gap: 15px; 
     }

    .access-container iframe {
      width: 100% ; 
      height: 400px; 
    }
}

@media (max-width: 559px) {
    header {
         padding: 20px 10px; 
         align-items: center;
    }

    .header-top {
     flex-direction: column; 
      align-items: center; 
    }

    header h1 {
    margin-bottom: 15px;
    position: static; 
     }

    .header-info {
      width: 100%;
      position: static;
      display: flex; 
      flex-direction: row; 
      justify-content: space-between; 
      align-items: center; 
      font-size: 20px; 
      padding: 5px 0;
      margin-bottom: 15px;
    }

    .hours-group {
      margin-bottom: 0;
      margin-left: 20px;
    }
  
    .business-hours, .holiday {
     margin: 0;
    }

    .btn-reserve {
     padding: 6px 12px; 
     font-size: 14px;
     margin-top: 0;
     }

     header nav ul {
     flex-wrap: wrap; 
     justify-content: space-around; 
    }
   
    header nav li {
    padding: 5px 10px;
    font-size: 14px;
    }
    
    header nav li a {
    white-space: nowrap;
    }

   .access-container {
    flex-direction: column; 
    gap: 15px; 
    }

  .access-container iframe {
    width: 100% ; 
    height: 400px;
    }

   .sp-break {
     display: block;
    }
}