* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #2f3333;
  font-family: 'Noto Sans JP', sans-serif;
}
.container {
  width: 1000px;
  padding: 100px 0;
  margin: 0 auto;
}
.pics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h2 {
  margin-bottom: 50px;
  font-size: 1.8rem;
  text-align: center;
}
h2 span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
  font-size: 5rem;
  font-family: 'Allura', sans-serif;
  color:#8e9998; 
}

/* ヘッダー */
header {
  padding: 10px 200px 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d4e4e3;
}
header h1 {
  font-family: 'Allura', sans-serif;
}
header nav ul {
  display: flex;
  column-gap: 50px;
}
header .btn {
  display: none;
}
header .btn img {
  vertical-align: middle;
}
header .btn #close {
  display: none;
}

.overlay {
  display: none;
  width: 100%;
  height: 500px;
  padding: 30px;
  background-color: #ffffff;
  position: fixed;
  top: 48.8px;
  z-index: 2;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.overlay ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

/* メインビジュアル */
#mainVisual {
  height: 800px;
  background-image: url(../img/mv_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#mainVisual .textArea {
  width: 600px;
  padding: 40px 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(47, 51, 51, 0.7);
  color: #ffffff;
}
#mainVisual .textArea h2 {
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-family: 'ShipporiMincho', sans-serif;
}
#mainVisual .textArea h2 {
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-family: 'ShipporiMincho', sans-serif;
}
#mainVisual .textArea p {
  font-size: 1.8rem;
  line-height: 2;
}

/* こだわり */
#point h3 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}
#point .pics {
  width: 400px;
  box-shadow: 10px 10px 0px #d4e4e3;
}

/* メニュー */
#menu {
  background-color: #d4e4e3;
}
#menu .d-flex {
  width: 800px;
  margin: 0 auto;
}
#menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

/* 店舗情報 */
#address dl {
  width: 450px;
}
#address dd {
  margin-bottom: 10px;
}
#address iframe {
  width: 500px;
  aspect-ratio: 4 / 3;
}
/* フッター */
footer {
  background-color: #5f6666;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
}
footer .container {
  padding: 20px 0;
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }
  .d-flex {
    justify-content: center;
    column-gap: 20px;
  }
  /* ヘッダー */
  header {
    padding-right: 100px;
  }

  /* メニュー */
  #menu .d-flex {
    width: 100%;
    column-gap: 50px;
  }

  /* 店舗情報 */
  #address .d-flex {
    align-items: flex-start;
  }
  #address iframe {
    width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 90%;
    padding: 50px 0;
  }
  .d-flex {
    flex-direction: column;
    row-gap: 30px;
  }
  h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  h2 span {
    font-size: 4rem;
  }
  /* ヘッダー */
  header {
    padding-right: 10px;
  }
  header nav ul li {
    display: none;
  }
  header .btn {
    display: block;
  }

  /* メインビジュアル */
  #mainVisual {
    height: 500px;
  }
  #mainVisual .textArea {
    width:  85%;

  }
  #mainVisual .textArea h2 {
    margin-bottom: 20px;
    font-size: 2.8rem;
    line-height: 1.5em;
  }
  #mainVisual .textArea p {
    font-size: 1.6rem;
  }

  /* こだわり */
  #point h3 {
    margin-bottom: 20px;
  }
  #point .pics {
    width: 350px;
  }

  /* メニュー */
  #menu .d-flex {
    width: 100%;
    align-items: flex-start;
  }
  #menu ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }

  /* 店舗情報 */
  #address dl {
    width: 100%;
  }
  #address dd {
    margin-bottom: 5px;
  }
  #address iframe {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .brSP {
    display: none;
  }
}