.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
  /* 上方面の順序 */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(166, 166, 166, 0.5) 20%,
    rgba(115, 115, 115, 1) 100%
  );
}

.site-logo {
  margin-left: 50px;
  padding-top: 5px;
  filter: drop-shadow(1px 1px 1px rgb(0 0 0 / .3));
}

.site-catch {
  font-size: 10px;
  color: var(--main-color2);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.site-logo_img {
  /* width: 114px; */
  padding-top: 8px;
}

.g-nav_list {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.g-nav_list_item a {
  color: var(--main-color2);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.sns-nav_list {
  display: flex;
}

.menu-btn {
  display: none;
  filter: drop-shadow(1px 1px 1px #000);
}
.menu-line {
  background: #fff;
  display: block;
  height: 2px;
  width: 30px;
  position: absolute;
  top: 35%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s;
}
.menu-line:nth-child(2) {
  top: 50%;
}
.menu-line:nth-child(3) {
  top: 65%;
}
.menu-btn.active .menu-line {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.active .menu-line:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}

.sns-nav_list_item {
  position: relative;
}

.sns-nav_list_item.insta {
  width: 130px;
  height: 75px;
  border-radius: 0 0 0 30px;
  left: 30px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  transition: 1s;
}

.sns-nav_list_item.insta::before {
  content: "";
  background: url(../images/Instagram_Glyph_White.svg) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  top: 50%;
  left: 40%;
  translate: -50% -50%;
  pointer-events: none;
}

.sns-nav_list_item.insta a {
  color: transparent;
  line-height: 0;
  font-size: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 30px;
}

.sns-nav_list_item.insta a:hover {
  background: linear-gradient(45deg, #ff8a3d, #e1306c, #9b35db, #5b6df0);
  transition: 0.4s;
}

.sns-nav_list_item.line {
  width: 190px;
  height: 75px;
  border-radius: 0 0 0 30px;
  background: #00b900;
  font-weight: bold;
  font-size: var(--fs14);
  text-align: center;
  line-height: 1.6;
  transition: 1s;
}

.sns-nav_list_item.line::before {
  content: "";
  background: url(../images/line_132.png) center/ cover;
  width: 44px;
  height: 44px;
  display: block;
  position: absolute;
  top: 50%;
  left: 10%;
  translate: 0 -50%;
  pointer-events: none;
}

.sns-nav_list_item.line a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  padding-left: 35px;
  border-radius: 0 0 0 30px;
}

.sns-nav_list_item.line a:hover {
  background: #048b3b;
  transition: 0.4s;
}

.toTop {
  background-color: var(--main-color1);
  color: var(--main-color2);
  width: 60px;
  height: 60px;
  border-radius: 4px;
  border: none;
  text-align: center;
  font-size: var(--fs12);
  cursor: pointer;
  position: fixed;
  right: 16px;
  bottom: 16px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s;
  z-index: 1000;
}
.toTop.show {
  opacity: 1;
  transform: none;
}
.toTop:hover {
  border-radius: 10px;
  transform: scale(0.8);
}

.footer {
  color: var(--main-color2);
  background-image: url(../images/bg-footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0 0 0;
}

.footer .inner {
  padding: 0 60px;
  margin-bottom: 80px;
}

.footer_logo {
  width: 180px;
  margin: 0 auto 80px;
}
.footer_logo img{
  width: 100%;
  height: 100%;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  /* padding: 0 200px 60px 200px; */
}

.footer_access {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  padding-right: 80px;
  border-right: solid 1px;
}

.footer_access_text {
  font-size: 12px;
}

.footer_reserve {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  padding: 20px 0 20px 80px;
  text-align: center;
}

.footer_reserve_btn {
  display: inline-block;
  padding: 14px 14px 14px 3em;
  background-color: #06c755;
  position: relative;
  box-sizing: border-box;
}
.footer_reserve_btn:hover {
  border-radius: 8px;
  transform: scale(0.95);
}
.footer_reserve_btn::before {
  content: "";
  background: url(../images/line_132.png) center/ cover;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  translate: 0 -50%;
  pointer-events: none;
}

.footer_tel-number {
  font-size: var(--fs40);
  font-family: "Shippori Mincho", serif;
}

.copy {
  width: 100%;
  background-color: #402e2e;
  color: var(--main-color2);
  text-align: center;
}

small {
  display: inline-block;
  padding: 1em 0;
  font-weight: 400;
}

@media (max-width: 767px) {
  .header {
    z-index: 9999;
  }
  .sns-nav_list {
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  .sns-nav_list_item.insta {
    width: 50%;
    height: 60px;
    border-radius: 0;
    left: 0;
    text-align: center;
  }

  .sns-nav_list_item.insta::before {
    top: 50%;
    left: 14%;
  }

  .sns-nav_list_item.insta a {
    color: #fff;
    line-height: 60px;
    font-size: var(--fs14);
    border-radius: 0;
  }

  .sns-nav_list_item.line {
    width: 50%;
    height: 60px;
    border-radius: 0;
    line-height: 1.3;
  }
  .sns-nav_list_item.line a {
    border-radius: 0;
  }

  .menu-btn {
    display: block;
    position: fixed;
    right: 10px;
    z-index: 10000;
    cursor: pointer;
    width: 60px;
    height: 60px;
  }

  .site-logo {
    position: fixed;
    z-index: 10000;
    height: 100px;
    margin-left: 20px;
  }
  .g-nav {
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: url(../images/bg-section.png);
    padding-top: 100px;
    transition:
      opacity 0.3s ease-in-out,
      visibility 0.3s ease-in-out;
  }
  .g-nav.show {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .g-nav_list {
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
    padding: 0 40px;
  }
  .g-nav_list_item {
    border-bottom: 1px solid #fff;
    height: 70px;
    line-height: 70px;
    position: relative;
  }
  .g-nav_list_item::before {
    content: ">";
    color: #fff;
    display: block;
    position: absolute;
    right: 13px;
    top: 3px;
  }
  .g-nav_list_item::after {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    right: 0;
    top: 20px;
  }

  .g-nav_list_item a {
    color: var(--main-color2);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    display: block;
  }
  .g-nav_list_item a:hover {
    opacity: 0.7;
  }
  .toTop {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 100px;
  }
  .footer_logo {
    width: 200px;
    margin: 0 auto 50px;
  }
  .footer_logo img {
    width: 100%;
  }
  .footer_inner {
    flex-direction: column;
    align-items: center;
  }
  .footer .inner {
    padding: 0 20px;
    margin-bottom: 80px;
  }
  .footer_access {
    width: 100%;
    padding-right: 0;
    border-right: none;
    margin-bottom: 80px;
  }
  .footer_reserve {
    width: 100%;
    padding: 0;
    gap: 30px;
    text-align: center;
  }
}
