body {
  margin: 0;
  font-family: 'Instrument Serif' , serif;
}
.btn {
  border-radius: 8px;
  padding: 12px 24px;
  border: none;
  background: #E6D27A;
  color: #333;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn:hover{
  background: #d4be5f;
  cursor: pointer;
}

section {
  padding: 60px 20px;
}

img {
  width: 100%;
  height: auto;
}

.reserve button {
  background: rgba(230, 210, 122, 0.4);
}
.reserve .btn:hover {
  background: rgba(230, 210, 122, 0.6);
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.logo {
  font-size: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 20px;
  height: 10px;
  padding: 5px;
  margin: 5px;
}

.hamburger {
  cursor: pointer;
  z-index: 100;
}

.hamburger span{
  display: block;
  background: #000000;
  width: 25px;
  height: 2px;
  margin: 5px 0 ;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: white;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.nav.active {
  right: 0;
}

.nav ul {
  list-style: none;
  text-align: center;
}

.nav li {
  margin: 20px 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 50;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
}

.hero {
  background: black;
  color: #D0A900;

  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-size: 12px;
}

.main-W {
  height: 40vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 30px;
}

.concept {
  max-width: 1190px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  gap: 20px;
}

.salon-section {
  width: 60%;
}

.concept img {
  max-width: 350px;
  max-height: auto;
  padding: 10px;
}

.concept p {
  color: #666;
}

.all-card {
  padding: 40px 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.menu {
  background-color: #fff;
}
.menu-p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #606060;
  padding: 2px;
}

.menu-card {
  background: white;
  width: 100%;
  box-sizing: border-box;/*width100%の中にpaddingなどを入れれるようにするコード*/
  min-height: 120px;
  padding: 16px;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  aspect-ratio: 2 / 1;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.recommend {
  border: 2px solid #DDCB6E;
  background: rgba(221, 203, 110, 0.1);
}

.reserve {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.reserve-gap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px;
}

.Business-Hours {
  color: #606060;
}

h1 {
  font-family: 'Instrument Serif',serif ;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  text-decoration: none;
}

.menu-h2 {
  margin-bottom: 30px;
  text-align: center;
  padding: 20px;
  margin: 5px;
}

.menu-card h3 {
  margin-bottom: 8px;
}

@media (max-width : 768px) {
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}

@media(max-width : 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  h1 {
    font-size: 18px;
    text-align: center;
  }

  .main-W {
    height: auto;
    font-size: 24px;
  }
}

@media (max-width : 768px) {
  .concept {
    flex-direction: column;
    text-align: center;
  }
  .salon-section {
    width: 100%;
  }
  .concept img {
    max-width: 100%;
  }
}
 @media (max-width : 768px) {
  .all-card {
    grid-template-columns: repeat(2,1fr);
  }
  .menu-card {
    aspect-ratio: auto;
  }
 }