/* Reset css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "游ゴシック体 Std R", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    sans-serif;
  color: #272929;
  line-height: 1.6;
  overflow-x: hidden;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

.font-syncopate {
  font-family: "Syncopate", sans-serif;
}
.font-std-d {
  font-family: "游ゴシック体 Std D", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    sans-serif;
}

/* ハンバーガーメニューモーダル */
.overlay {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
      0deg,
      rgba(143, 136, 129, 0.5),
      rgba(143, 136, 129, 0.5)
    ),
    rgba(255, 255, 255, 0.95);
  transition: top 0.5s ease;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay.open {
  top: 0;
}

.overlay-content {
  text-align: center;
  max-width: 730px;
  width: 90%;
  margin: 0 37.5px;
}

.overlay-contact p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1.1px;
  margin-bottom: 20px;
}

.overlay-contact a {
  background: #8f8881;
  border: none;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 15px 30px;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 16px;
  height: 60px;
  margin: 0 auto;
}

.overlay-contact button:hover {
  opacity: 0.8;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.3s;
}

.overlay-logo {
  margin-bottom: 50px;
  height: 37px;
}

.overlay-logo img {
  width: 250px;
  margin: 0 auto;
}

.overlay-list {
  list-style: none;
  margin-bottom: 50px;
}

.overlay-list li {
  height: 30px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 4px;
  margin: 0 auto 20px;
}

.overlay-list a {
  height: 23px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  font-weight: 500;
}

.overlay-list a:hover {
  opacity: 0.8;
}

.only-sp {
  display: block;
}

.only-pc {
  display: none;
}

@media screen and (min-width: 481px) {
  .overlay-close {
    top: 25px;
    right: 25px;
  }
}

@media screen and (min-width: 681px) {
  .overlay-list li {
    width: 340px;
  }
  .overlay-list a {
    font-size: 22px;
  }
  .only-sp {
    display: none;
  }

  .only-pc {
    display: block;
  }
}
