@charset "utf-8";

/* リセットCSS */
*,
::before,
::after {
  padding: 0;
  margin: 0, auto;
  box-sizing: border-box;
  list-style: none;
  font-size: 15px;
  color: #000;
  letter-spacing: 1px;
  line-height: 2.5em;
  font-family: "Shippori Mincho";
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  background-color: #F1E9DE;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ヘッダーここから */
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #fff;
  width: 100%;
  height: 77px;
  display: flex;
  justify-content: space-between;
  font-family: "Shippori Mincho";
  align-items: end;
}

.header-logo {
  width: 200px;
  margin-bottom: 5px;
}

#sns-sp,
.header-logo2 {
  display: none;
}

header nav ul li {
  display: inline-block;
  margin-bottom: 10px;
  width: auto;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header nav {
  display: flex;
  width: 100%;
  justify-content: right;
}

nav img {
  width: 20px;
}

.tel {
  text-align: end;
  font-size: 20px;
  margin: 0 10px 10px 30px;
}

.tel span {
  font-size: 13px;
  margin-right: 10px;
}

.tel p {
  font-size: 12px;
}

/* 予約ボタン */

.reservation-button-box {
  z-index: 10;
}

.reservation-button {
  width: 210px;
  height: auto;
  border-radius: 30px;
  background-color: #C8BD58;
  padding: 8px 16px;
  position: fixed;
  right: 40px;
  bottom: 30px;
  font-family: inter;
  z-index: 10000;
  box-shadow: 1px 2px 6px #565656;
}

.reservation-button a span:first-child {
  font-size: 22px;
  font-family: "Shippori Mincho";
}

.reservation-button a {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: center;
}


/* フッターここから */
footer {
  background-image: url(../img/index/footer.png);
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  text-shadow: 1px 1px 8px #313131;
}

.footer {
  display: flex;
  margin-top: 80px;
  justify-content: flex-start;
}

footer .footer-info .name,
footer .footer-info .name span,
footer .footer-info .address div,
footer .footer-info .address address,
footer .footer-info .address span,
footer .sns {
  font-family: "Shippori Mincho";
  color: #fff;
}

.footer-logo {
  margin: 35px;
  width: min(250px, 30%);
  text-shadow: 1px 4px 9px #000;filter:drop-shadow(2px 2px 5px #000);
}

.sns img {
  width: 28px;
}

.copy {
  font-family: "Shippori Mincho";
  color: #fff;
  margin: 0 auto;
  padding-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 10px #000;
}

.footer-info {
  width: 40%;
  margin: 110px 0 0 50px;
  align-items: center;
}

.footer-info .name {
  font-size: 19px;
}

.footer-info .name span {
  margin-left: 18px;
  letter-spacing: 2px;
  font-size: 38px;
  vertical-align: middle;
}

.address {
  margin: 30px 0 0 30px;
  display: flex;
}

.footer-info .address address {
  font-size: 19px;
}

.address-right {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

.address a {
  font-size: 20px;
  margin-top: 8px;
}

.address span {
  margin: 7px 0 0 5px;
  font-size: 14px;
}

.sns {
  display: flex;
  margin: 160px 10px 0 20px;
  filter:drop-shadow(1px 1px 10px #000);
}

.sns a {
  margin-left: 10px;
  vertical-align: bottom;
}

.top-button {
  width: 60px;
  height: 50px;
  background-color: #434D60;
  position: absolute;
  top: -70px;
  right: 10px;
  text-align: center;
}

.top-button a span {
  position: relative;
  display: inline-block;
  width: 29.8px;
  height: 13.4px;
  margin-top: 17px;
}

.top-button a span::before,
.top-button a span::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 20px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% 1px;
}

.top-button a span::before {
  transform: rotate(50.5deg);
}

.top-button a span::after {
  transform: rotate(-50.5deg);
}


@media screen and (max-width: 1000px) {

  .header {
    background-color: inherit;
    height: fit-content;
  }

  .header-logo {
    display: none;
  }
  .header-logo2 {
    display: block;
    width: min(180px, 30%);
    margin-top: 10px;
    z-index: 100000;
    filter:drop-shadow(1px 1px 7px #aaa);
  }

  nav img {
    width: 20px;
  }

  nav {
    flex-direction: column;
    position: fixed;
    top: -150%;
    right: 0;
    z-index: 100;
    height: 100vh;
    background-color: #00000099;
    transition: all 0.7s;
    text-shadow: 1px 1px 7px #aaa;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    margin-top: 220px;
    gap: 30px;
    font-size: 20px;
  }

  header nav ul li {
    display: inline-block;
    margin-bottom: 10px;
    width: auto;
    color: #fff;
  }


  .tel {
    text-align: center;
    font-size: 20px;
    margin: 30px auto 0;
    color: #fff;
    line-height: 1.5;
  }

  .tel span {
    display: block;
    font-size: 13px;
    margin-right: 0;
    color: #fff;
  }

  .tel p {
    font-size: 12px;
    color: #fff;
  }

  #sns-icon {
    display: none;
  }

  #sns-sp {
    display: block;
    width: auto;
    position: fixed;
    top: 15px;
    right: 85px;
    z-index: 999;
  }

  #sns-sp img {
 width: 25px;
 filter:drop-shadow(1px 1px 4px #aaa);
  }

  .toggle {
    position: fixed;
    right:20px;
    top: 20px;
    z-index: 10000000000012;
  }

  .toggle span {
    width: 50px;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: all 0.3s;
    box-shadow: 1px 1px 7px #aaa;
  }

  .toggle span:nth-of-type(2) {
    margin-top: 10px;
    width: 40px;
    margin-left: 10px;
  }

  #open:checked~.toggle span:nth-of-type(1) {
    rotate: 25deg;
    margin-top: 6px;
  }

  #open:checked~.toggle span:nth-of-type(2) {
    rotate: -25deg;
    margin:-2px 0 0 0;
    width: 50px;
  }

  #open:checked~nav {
    top: 0;
  }

  /* 予約ボタン */
.reservation-button-box {
  width: 100%;
  position: fixed;
  bottom: 15px;
  right: 0;
}
.reservation-button {
  width: 220px;
  height: auto;
  margin: 0 auto;
  padding: 5px 16px;
  position: initial;
  z-index: 999999;
}

.reservation-button a span:first-child {
  font-size: 20px;
}

.reservation-button a {
  line-height: 1.2;
}
/* フッターここから */
.footer {
  flex-direction: column;
  margin-top: 80px;
  justify-content: center;
}

.footer-logo {
  margin: 50px auto 15px;
  width: min(200px, 60%);
}

.copy {
  font-family: "Shippori Mincho";
  font-size: 14px;
  padding-bottom: 15px;
}

.footer-info {
  width: 90%;
  margin: 0 auto 30px;
  align-items: center;
  text-align: center;
}

.footer-info .name {
  font-size: 14px;
}

.footer-info .name span {
  font-size: 28px;
}

.address {
  width: 100%;
  margin: 40px auto 30px;
  display: flex;
  justify-content: center;
}

.address div {
  width: fit-content;
}

.footer-info .address address {
  width: auto;
  font-size: 16px;
}

.address-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: left 5px;
}

.address-right span {
  text-align: start;
}

.address a {
  font-size: 20px;
  margin-top: 8px;
  text-align: start;
  margin-left: 0px;
}

.address span {
  margin: 7px 0 0 5px;
  font-size: 14px;
  margin-left: 0px;
}

.sns {
  width: 200px;
  margin: 10px auto 40px;
  flex-wrap: wrap;
  justify-content: center;
  gap:10px;
}

.sns a {
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
}

}