/* Scss Document */
.text-link:hover {
  text-decoration: underline;
}

.img-parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.img-parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  transform: translateZ(0) !important;
}

.box-parallax {
  position: relative;
}

@media screen and (max-width: 767px) {
  .box-parallax .img-parallax-pc {
    position: relative;
  }
  .box-parallax .img-parallax-pc img {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.padd_wrap {
  padding-left: 8%;
  padding-right: 8%;
}

@media screen and (min-width: 768px) {
  .txt-vertical-pc {
    cursor: vertical-text;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
  }
  .txt-vertical-pc .int {
    writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -moz-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    display: inline-block;
    text-align: center;
    line-height: 1;
  }
  .txt-vertical-pc .txt-latin {
    direction: rtl;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
  }
  .txt-vertical-pc .txt-dot {
    cursor: vertical-text;
    direction: ltr;
    writing-mode: vertical-lr;
    -o-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -moz-writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
    line-height: 1;
    position: relative;
    left: -2px;
  }
  .none_hover {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
  .img-parallax-pc {
    clip: rect(0, auto, auto, 0);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
  }
  .img-parallax-pc img {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
    transform: translateZ(0) !important;
  }
}
.ham-img {
  cursor: pointer;
  position: fixed;
  z-index: 1001;
  top: 0px;
  right: 0px;
  width: 90px;
}
.ham-img img {
  width: 100%;
  height: auto;
}
.ham-img img.on {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  opacity: 0;
}
.ham-img.is-active img {
  opacity: 0;
}
.ham-img.is-active img.on {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .ham-img {
    width: 128px;
    top: 0;
    right: 0;
  }
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80px;
  height: 60px;
  padding: 0 0px;
  color: #fff;
  z-index: 9999;
}
.hamburger:before {
  content: "";
  width: 26px;
  border-top: 2px solid;
  position: absolute;
  top: 29px;
  left: 11px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  display: none;
}
.hamburger:after {
  content: "MENU";
  line-height: 1;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  text-align: center;
}
.hamburger span {
  height: 10px;
  width: 28px;
  position: relative;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  border-top: 2px solid;
  width: 100%;
  position: absolute;
  top: 0px;
  margin: 0 auto;
  display: block;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.hamburger span:after {
  top: auto;
  bottom: 0;
}
.hamburger.is-active:after {
  content: "CLOSE";
}
.hamburger.is-active:before {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .hamburger.is-active span {
    color: #fff;
    width: 44px;
  }
}
.hamburger.is-active span:before {
  transform: translate3d(0px, 3px, 0) rotate(45deg);
}
.hamburger.is-active span:after {
  transform: translate3d(0, -4px, 0) rotate(-45deg);
}
.hamburger.pc:after {
  bottom: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .hamburger {
    top: 31px;
    width: 108px;
    height: 113px;
    background-color: #060503;
    padding: 0 0 23px;
    opacity: 0;
    pointer-events: none;
  }
  .hamburger:after {
    bottom: 15px !important;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-size: 14px !important;
    font-style: normal;
    letter-spacing: 0.1em;
  }
  .hamburger:hover {
    opacity: 0.8 !important;
  }
  .hamburger span {
    width: 36px;
    height: 18px;
  }
  .hamburger.is-active {
    background-color: transparent;
    /*
          span {
            width: 46px;

            &:before {
              transform: translate3d(0px, 0px, 0) rotate(45deg);
            }

            &::after {
              transform: translate3d(0px, -14px, 0px) rotate(-45deg);
            }
          }
          */
  }
  .hamburger.is-active:after {
    bottom: 2px !important;
    font-weight: 400;
    font-style: normal;
    right: 12px;
    top:85px;
  }
  .hamburger.hamburger--spin .hamburger-inner:before, .hamburger.hamburger--spin .hamburger-inner:after {
    transform: none;
  }
  .hamburger.hamburger--spin .hamburger-inner {
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.22s;
  }
  .hamburger.hamburger--spin .hamburger-inner:before {
    transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
  }
  .hamburger.hamburger--spin .hamburger-inner:after {
    transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger.hamburger--spin.is-active .hamburger-inner {
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(225deg);
    width: 46px;
  }
  .hamburger .hamburger--spin.is-active .hamburger-inner:before {
    top: 0;
    transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
    opacity: 0;
  }
  .hamburger.hamburger--spin.is-active .hamburger-inner:after {
    bottom: 15px;
    right: 0px;
    transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transform: rotate(-90deg);
  }
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
}
.fc-form [class^=error] {
  position: static;
}

.f_cl1 {
  color: #92845a;
}

.txt_r {
  text-align: right;
}

i {
  font-style: normal;
}

/*
::-webkit-scrollbar {
width:4px;


}
::-webkit-scrollbar-thumb {
background:#999	;
}
::-webkit-scrollbar * {
background:rgba(0,0,0,0);
}
*/
.d-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brk-in {
  display: inline-block;
}

.box-shadown {
  box-shadow: 2px 5px 13px -5px rgba(0, 0, 0, 0.58);
  -webkit-box-shadow: 2px 5px 13px -5px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 2px 5px 13px -5px rgba(0, 0, 0, 0.58);
}

.img-shadown {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.35);
}

header .btn-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  z-index: 9;
  cursor: pointer;
}
header .btn-close:hover {
  opacity: 0.8;
}
header .btn-close img {
  width: 100%;
  height: auto;
}

section .padd_wrap {
  padding-left: 5%;
  padding-right: 5%;
}
section .wrap {
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  section .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.wrap > * {
  box-sizing: border-box;
}

main {
  position: relative;
}

.bnr-reserve {
  width: 65%;
  margin: 0 auto;
}
.bnr-reserve a {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
  background-color: #c40000;
  border: 1px solid #c40000;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 14px 0;
}
@media screen and (min-width: 768px) {
  .bnr-reserve a {
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .bnr-reserve a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 100%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
  .bnr-reserve a:hover {
    color: #000;
    border: 1px solid #000;
  }
  .bnr-reserve a:hover:before {
    transform: scale(2);
  }
}

#navigation {
  background: url("../img/shared/hd_bg_sp.jpg") repeat center 0/cover;
  color: #fff;
  text-align: center;
  font-weight: 400;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease 0s;
  box-sizing: border-box;
}
#navigation .group {
  padding: 10vw 5% 100px;
  position: relative;
}
#navigation .sub-logo {
  width: 40%;
  margin: 0 auto 5vw;
}
#navigation .bnr-reserve {
  margin: 10px auto 20px;
}
#navigation .tel {
  font-weight: 400;
  font-size: 13px;
  padding-bottom: 15px;
}
#navigation .tel span {
  font-size: 30px;
  font-weight: 400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
#navigation .tel span:before {
  content: "";
  background: url("../img/shared/ico_tel.png") no-repeat center bottom/100%;
  width: 20px;
  height: 30px;
}
#navigation .sns {
  width: 30px;
  position: absolute;
  right: 7%;
  top: 154px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#navigation .sns a {
  display: block;
  width: 100%;
}
#navigation .tog-nav {
  position: relative;
  padding: 20px 0 0 25%;
}
#navigation .tog-nav li {
  text-align: left;
  margin-bottom: 10px;
}
#navigation .tog-nav li a {
  position: relative;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  position: relative;
}
#navigation .tog-nav li a:before {
  content: "";
  position: absolute;
  left: -26px;
  top: 19px;
  width: 70px;
  border-top: 1px solid;
  opacity: 0;
}
#navigation .tog-nav li a.active {
  padding-left: 52px;
}
#navigation .tog-nav li a.active:before {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #navigation .group {
    padding: 100px 0;
    position: relative;
  }
  #navigation .sub-logo {
    width: 222px;
    margin: 0;
    position: absolute;
    top: 91px;
    right: calc(50% + 181px);
  }
  #navigation .sub-logo img {
    width: 100%;
    height: auto;
  }
  #navigation .contact {
    display: flex;
    margin-left: calc(50% + 55px);
    gap: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1220px) {
  #navigation .contact {
    margin-left: 510px;
  }
}
@media screen and (min-width: 768px) {
  #navigation .bnr-reserve {
    margin: 8px 0 0;
    width: 207px;
  }
  #navigation .bnr-reserve a {
    border: none !important;
  }
  #navigation .tel {
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    padding: 0;
  }
  #navigation .tel span {
    padding: 5px 0 10px 0px;
    font-size: 33px;
    gap: 10px;
    letter-spacing: 0em;
  }
  #navigation .tel span:before {
    content: "";
    content: "";
    width: 24px;
    height: 30px;
    position: relative;
    top: 4px;
  }
  #navigation .sns {
    width: 40px;
    position: absolute;
    right: 35px;
    top: 332px;
    gap: 57px;
  }
  #navigation .sns img {
    width: 100%;
    height: auto;
  }
  #navigation .tog-nav {
    max-width: 1000px;
    margin: 0 auto;
    padding: 124px 0 0 164px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 420px;
    gap: 41px 0;
  }
  #navigation .tog-nav li {
    width: 436px;
    margin-bottom: 0px;
  }
  #navigation .tog-nav li a {
    font-size: 36px;
    font-weight: 400;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  #navigation .tog-nav li a:before {
    left: -47px;
    top: 34px;
    opacity: 1;
    width: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  #navigation .tog-nav li a.active, #navigation .tog-nav li a:hover {
    padding-left: 85px;
  }
  #navigation .tog-nav li a.active:before, #navigation .tog-nav li a:hover:before {
    width: 115px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1220px) {
  #navigation .tog-nav {
    padding-left: 114px;
  }
}

.navOpen .hamburger.pc {
  display: flex !important;
}
.navOpen .ft-bnr-fixed {
  display: none;
}
.navOpen #navigation {
  opacity: 1;
  pointer-events: auto;
}
.navOpen #navigation .group {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .navOpen .ft-bnr-fixed li:not(:last-child) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

header {
  position: relative;
}
header h1 {
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 5%;
  width: 75%;
  top: 30vw;
}
header .logo {
  width: 42%;
  position: absolute;
  top: 5vw;
  left: 5vw;
  z-index: 2;
}
header .logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  header {
    position: relative;
  }
  header h1 {
    color: #48433a;
    text-align: right;
    font-size: 13px;
    line-height: 44px;
    left: 42px;
    right: 45px;
    z-index: 9;
    top: 0px;
    width: auto;
    height: auto;
  }
  header .logo {
    width: 223px;
    left: 50px;
    position: absolute;
    top: 92px;
    left: 92px;
    margin: 0;
  }
  header .hd-pc {
    color: #fff;
    position: absolute;
    top: 66px;
    right: 85px;
    z-index: 9;
  }
  header .hd-pc .sns {
    width: 28px;
    position: absolute;
    right: -24px;
    top: 367px;
    z-index: 9;
  }
  header .hd-pc .sns a {
    display: block;
    margin-bottom: 30px;
  }
  header .hd-pc .sns img {
    width: 100%;
    height: auto;
  }
  header .hd-pc .tog-nav {
    position: absolute;
    height: 150px;
    top: 102px;
    right: 8px;
    writing-mode: vertical-lr;
    -o-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -moz-writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
  }
  header .hd-pc .tog-nav li {
    text-align: left;
    margin: 0 0 0 4px;
  }
  header .hd-pc .tog-nav li a {
    display: inline-block;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.1em;
    padding: 4px 0;
    z-index: 1;
    position: relative;
  }
  header .hd-pc .tog-nav li a:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 0%;
    background-color: #262521;
    z-index: -1;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  header .hd-pc .tog-nav li a:hover:before, header .hd-pc .tog-nav li a.active:before {
    height: 100%;
  }
  header .hd-pc .tog-nav li.shop {
    margin-left: 24px;
    position: relative;
  }
  header .hd-pc .tog-nav li.shop:before {
    content: "";
    position: absolute;
    border-left: 1px solid #fff;
    top: 7px;
    height: 74px;
    left: -16px;
  }
  header .hd-pc .contact {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 35px;
  }
  header .hd-pc .contact .tel {
    font-weight: 400;
    font-size: 15px;
    padding: 0px 0 0;
  }
  header .hd-pc .contact .tel span {
    gap: 5px;
    display: flex;
    justify-content: flex-start;
    font-size: 33px;
    letter-spacing: 0;
    gap: 7px;
    padding: 4px 0 0;
  }
  header .hd-pc .contact .tel span:before {
    content: "";
    background: url("../img/shared/ico_tel.png") no-repeat center 0/100%;
    display: inline-block;
    width: 21px;
    height: 30px;
    position: relative;
    top: 4px;
  }
  header .hd-pc .bnr-reserve {
    width: 207px;
    margin: 8px 0 0;
  }
  header .hd-pc .bnr-reserve a {
    padding: 15px 0;
    font-size: 15px;
    border: none !important;
  }
}

footer {
  background: url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
  padding: 22vw 0% 60px;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-align: center;
}
footer .wrap {
  padding: 0 5% 40px;
}
footer .tog-nav {
  flex-direction: column;
  height: 160px;
  margin-bottom: 30px;
}
footer .tog-nav li {
  text-align: left;
  margin-bottom: 10px;
  padding-left: 15px;
}
footer .tog-nav li a {
  position: relative;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
footer .tog-nav li a:before {
  content: "";
  position: absolute;
  left: -26px;
  top: 19px;
  width: 37px;
  border-top: 1px solid;
  opacity: 0;
}
footer .tog-nav li a.active {
  padding-left: 25px;
}
footer .tog-nav li a.active:before {
  opacity: 1;
}
footer .logo {
  width: 55%;
  margin: 0 auto;
}
footer .bnr-reserve {
  margin: 0 auto;
}
footer .tel {
  font-weight: 400;
  font-size: 12px;
  padding: 20px 0 20px;
}
footer .tel span {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
footer .tel span:before {
  content: "";
  background: url("../img/shared/ico_tel.png") no-repeat center bottom/100%;
  width: 20px;
  height: 30px;
}
footer .sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10vw 0 15vw;
}
footer .sns img {
  width: 36px;
  height: auto;
}
footer .tbl-info img {
  width: 14px;
  height: auto;
  margin: 0 5px;
  position: relative;
  top: -2px;
}
footer .socialbuttons {
  padding: 40px 0 30px;
}
footer address {
  letter-spacing: 0.13em;
}
footer .cookies_link a:hover {
  text-decoration: underline;
}
footer .ft-end {
  color: #a8a39b;
}
footer .btn-copy {
  color: #a8a39b;
  padding: 20px 0 0;
}
footer .btn-copy span {
  letter-spacing: 0;
}
footer .btn-copy:before {
  content: "";
  background: url(../img/shared/copy.png) no-repeat center/100%;
  width: 16px;
  height: 18px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 89px 20px 0;
    font-size: 14px;
    line-height: 26px;
    text-align: left;
  }
  footer .wrap {
    padding: 0 0 135px 71px;
    max-width: 1200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  footer .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  footer .tog-nav {
    position: absolute;
    top: 26px;
    right: 87px;
    display: block;
    height: auto;
    margin-bottom: 0;
    writing-mode: vertical-lr;
    -o-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -moz-writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
  }
  footer .tog-nav li {
    text-align: left;
    margin: 0 0 0 10px;
    padding-left: 0;
  }
  footer .tog-nav li a {
    display: inline-block;
    font-size: 16px;
    line-height: 17px;
    padding: 4px 0 !important;
    z-index: 1;
    position: relative;
  }
  footer .tog-nav li a:before {
    border: none;
    top: 0;
    width: 100%;
    left: 0;
    height: 0;
    background-color: #43382c;
    z-index: -1;
    opacity: 1;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  footer .tog-nav li a.active:before, footer .tog-nav li a:hover:before {
    height: 100%;
  }
  footer .tog-nav li.shop {
    margin-left: 24px;
    position: relative;
  }
  footer .tog-nav li.shop:before {
    content: "";
    position: absolute;
    border-left: 1px solid #706d6a;
    top: 7px;
    height: 74px;
    left: -16px;
  }
  footer .logo {
    width: 186px;
    margin: 0 0 11px;
  }
  footer .logo img {
    width: 100%;
    height: auto;
  }
  footer .tit {
    font-size: 11px;
    text-align: center;
    width: 240px;
    margin: 0 0 55px -22px;
    line-height: 22px;
  }
  footer .contact {
    width: 260px;
    position: absolute;
    top: 11px;
    left: 360px;
  }
  footer .bnr-reserve {
    margin: 0;
    width: 212px;
  }
  footer .bnr-reserve a {
    padding: 16px 0 16px 0;
    font-size: 15px;
  }
  footer .tel {
    font-size: 13px;
    padding: 0px 0 20px;
  }
  footer .tel span {
    justify-content: flex-start;
    font-size: 32px;
    letter-spacing: 0;
    gap: 5px;
    padding: 12px 0 0;
  }
  footer .tel span:before {
    width: 20px;
    height: 30px;
    position: relative;
    top: 3px;
  }
  footer .sns {
    position: absolute;
    top: 34px;
    right: 13px;
    width: 27px;
    gap: 34px;
    padding: 0;
    flex-wrap: wrap;
  }
  footer .sns img {
    width: 100%;
  }
  footer .socialbuttons {
    padding: 29px 0 0;
    justify-content: flex-end;
  }
  footer address {
    letter-spacing: 0.13em;
  }
  footer .ft-end {
    font-size: 13px;
    display: flex;
    gap: 10px;
    padding: 90px 0 0;
  }
  footer .ft-r {
    position: absolute;
    right: -7px;
    bottom: 136px;
    text-align: right;
  }
  footer .btn-copy {
    padding: 0px 0 0;
  }
  footer .btn-copy a:hover {
    text-decoration: underline;
  }
  footer .btn-copy span {
    font-size: 12px;
  }
  footer .btn-copy:before {
    width: 16px;
    height: 18px;
  }
}

#key {
  position: relative;
}
#key .photo {
  height: calc(100vh - 60px);
}
#key .tit {
  width: 22%;
  position: absolute;
  left: 5%;
  bottom: 5vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #key {
    clip-path: inset(44px 30px -200px 30px);
  }
  #key .photo {
    height: 896px;
  }
  #key .tit {
    width: auto;
    bottom: 0;
    left: 145px;
  }
}

@media screen and (max-width: 767px) {
  .pagetop {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: auto;
    position: fixed;
    right: 10px;
    bottom: 20px;
  }
  .pagetop:hover {
    opacity: 0.8 !important;
  }
}

/*
#belt {

  position: fixed;
  height: 90px;z-index: 999;
}
*/
/*========layout pc===========*/
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 30px;
  }
  section .padd_wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .has-nav .hamburger {
    opacity: 1;
    pointer-events: auto;
  }
}

/*content*/
.remodal.ext {
  vertical-align: top;
}

.remodal-close {
  background: url(../img/shared/close.png) no-repeat center 0/100%;
  position: sticky;
  margin-left: auto;
  width: 30px;
  height: 30px;
  top: 0px;
  right: 0px;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.remodal-close img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .remodal-close {
    width: 62px;
    height: 62px;
    margin-right: 10px;
  }
  .remodal-close img {
    width: auto;
  }
  .remodal-close:hover {
    opacity: 0.8;
  }
}
.remodal-close.cancel {
  position: relative;
  margin: 0 auto;
}

.remodal-cancel {
  padding: 0px;
  color: #000;
  line-height: 1.4;
  font-size: 10px;
  cursor: pointer;
}
.remodal-cancel img {
  display: block;
  width: 30px;
  height: auto;
  margin: 0 auto;
}
.remodal-cancel span {
  font-size: 30px;
}
.remodal-cancel:hover {
  opacity: 0.7 !important;
}
@media screen and (min-width: 768px) {
  .remodal-cancel {
    width: auto;
    margin-top: 23px;
    font-size: 14px;
  }
  .remodal-cancel img {
    width: auto;
  }
}

.bnr-shared.cancel {
  margin: 0 auto;
  max-width: 383px;
}
.bnr-shared.cancel a {
  cursor: pointer;
}
.bnr-shared.cancel a:before {
  background: url(../img/index/close.png) no-repeat center/100%;
  width: 28px;
}

.remodal-wrapper {
  padding: 10px 0;
}
.remodal-wrapper,
.remodal-wrapper-ext {
  text-align: center;
}

.remodal {
  max-width: 1200px;
  box-sizing: border-box;
  padding: 20px 0px 50px;
}
@media screen and (min-width: 768px) {
  .remodal {
    padding: 30px 0px 0;
  }
}

.remodal-overlay {
  background: url(../img/shared/bd_bg.jpg) repeat center 0;
}

@media screen and (min-width: 768px) {
  .has-nav .hamburger {
    opacity: 1;
    visibility: visible;
  }
}
.ft-bnr-fixed {
  background: url("../img/shared/bg1.jpg") repeat center 0;
  color: #fff;
  border-top: 1px solid #392f25;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  font-size: 10px;
}
.ft-bnr-fixed img {
  width: 20px;
  height: auto;
}
.ft-bnr-fixed li {
  width: calc(100% - 120px);
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
.ft-bnr-fixed li .hamburger {
  position: relative;
  padding-bottom: 12px;
}
.ft-bnr-fixed li:not(:last-child):before {
  border-right: 1px solid #392f25;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.ft-bnr-fixed li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.ft-bnr-fixed li a img {
  width: auto;
  height: 21px;
}

@keyframes mymove {
  0% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}
.fade_photo[style*=visible] img {
  animation-name: mymove;
  animation-duration: 0.3s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
}

@keyframes textshow {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes textshow1 {
  0% {
    clip-path: inset(0% 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes btn-link {
  0% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateX(-10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
@keyframes lineAni {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49% {
    clip-path: inset(0 0% 0 100%);
  }
  51% {
    clip-path: inset(0 100% 0% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes textAni {
  0% {
    transform: translateY(0%);
  }
  48% {
    opacity: 1;
  }
  49% {
    transform: translateY(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(100%);
  }
  99% {
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes arrowLoop {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.bg1 {
  background: url(../img/shared/bg1.jpg) repeat center 0;
  color: #fff;
}

.bg2 {
  background: url(../img/shared/bg2.jpg) repeat center 0;
  color: #fff;
}

.btn-shared {
  width: 80%;
  margin: 0 auto;
}
.btn-shared a {
  display: flex;
  border: 1px solid #000;
  background-color: #000000;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  gap: 15px;
  line-height: 50px;
  font-size: 15px;
}
.btn-shared a.ico:before {
  content: "";
  background: url("../img/shared/ico_map.png") no-repeat center/100%;
  width: 14px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .btn-shared {
    width: 220px;
    margin: 0;
  }
  .btn-shared a {
    gap: 15px;
    padding: 0;
    letter-spacing: 0.1em;
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    transition-property: color;
    transition-duration: 0.3s;
  }
  .btn-shared a:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 100%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
  .btn-shared a:hover {
    color: #000;
  }
  .btn-shared a:hover::after {
    transform: scale(2);
  }
  .btn-shared a:hover.ico:before {
    background: url("../img/shared/ico_map1.png") no-repeat center/100%;
  }
}

.bnr-shared {
  width: 90%;
  margin: 10vw auto 0;
}
.bnr-shared a {
  text-align: center;
  display: block;
  position: relative;
  padding: 10px 0;
}
.bnr-shared a:before {
  content: "";
  border-top: 3px solid;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
.bnr-shared a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 6px;
  width: 11px;
  height: 23px;
  border-left: 3px solid;
  border-right: 3px solid;
  transform: skewX(37deg);
}
.bnr-shared a span {
  letter-spacing: 0;
  font-weight: 500;
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .bnr-shared {
    width: 306px;
    margin: 0;
  }
  .bnr-shared a {
    text-align: left;
    padding: 0 0 18px 24px;
  }
  .bnr-shared a:before {
    border-top: 3px solid;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .bnr-shared a::after {
    width: 14px;
    height: 32px;
    right: 9px;
    border-left: 3px solid;
    border-right: 3px solid;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .bnr-shared a span {
    font-size: 30px;
  }
  .bnr-shared a:hover:before {
    right: -29px;
  }
  .bnr-shared a:hover:after {
    right: -20px;
  }
}

.btn-popup {
  width: 90%;
  margin: 0 auto;
  position: relative;
  color: #fff;
}
.btn-popup .arow {
  width: 53px;
  border-bottom: 2px solid;
  position: absolute;
  right: -10px;
  top: 35px;
  line-height: 1;
}
.btn-popup .arow:before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 4px;
  width: 7px;
  height: 14px;
  border-left: 2px solid;
  border-right: 2px solid;
  transform: skewX(37deg);
}
.btn-popup a {
  text-align: center;
  display: block;
  position: relative;
  padding: 18px 0;
  background: url("../img/menu/bnr_bg.jpg") repeat center;
  color: #fff;
  font-size: 17px;
  border: 1px solid #815b3c;
}
@media screen and (min-width: 768px) {
  .btn-popup {
    max-width: 1066px;
    margin: 0 auto;
  }
  .btn-popup .arow {
    width: 125px;
    right: -18px;
    top: 64px;
    border-bottom: 3px solid;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .btn-popup .arow:before {
    bottom: -3px;
    right: 8px;
    width: 12px;
    height: 27px;
    border-left: 3px solid;
    border-right: 3px solid;
    transform: skewX(39deg);
  }
  .btn-popup:hover .arow {
    right: -40px;
  }
  .btn-popup a {
    font-size: 30px;
    padding: 26px 22px 27px 0;
    line-height: 60px;
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
  }
  .btn-popup a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #905708;
    border-radius: 100%;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }
  .btn-popup a:hover:before {
    transform: scale(2);
  }
}

.popup-shared {
  background: #fff;
  padding: 10vw 5%;
  margin-top: 5vw;
}
.popup-shared h2 {
  font-weight: 700;
  font-size: 6vw;
  line-height: 1.4;
  padding-bottom: 5vw;
}
.popup-shared h2.ext {
  padding-bottom: 10vw;
}
.popup-shared .col {
  width: 100%;
}
.popup-shared .note {
  padding-bottom: 30px;
}
.popup-shared .menu-shared.ext {
  padding-top: 10vw;
}
.popup-shared .menu-shared.none .menu-list {
  margin-bottom: 0;
}
.popup-shared .menu-list {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 20px;
}
.popup-shared .menu-list h3 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid;
  padding: 0 10px 10px;
  margin-bottom: 10px;
  position: relative;
}
.popup-shared .menu-list h3:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  border-top: 2px solid;
}
.popup-shared .menu-list ul {
  border-bottom: 2px dotted #b9aaaf;
  padding: 10px 0;
}
.popup-shared .menu-list ul li {
  text-align: left;
}
.popup-shared .menu-list dl {
  padding: 11px 0;
  text-align: left;
  background: url(../img/shared/dot.png) repeat-x 0 bottom;
}
.popup-shared .menu-list dl:after {
  content: "." !important;
  clear: both !important;
  display: block !important;
  height: 0 !important;
  visibility: hidden !important;
}
.popup-shared .menu-list dl dt {
  float: left;
}
.popup-shared .menu-list dl dd {
  float: right;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .popup-shared {
    padding: 74px 20px 100px;
    margin-top: 20px;
  }
  .popup-shared h2 {
    font-size: 40px;
    padding-bottom: 17px;
  }
  .popup-shared h2.ext {
    padding-bottom: 45px;
  }
  .popup-shared .col {
    width: 300px;
  }
  .popup-shared .note {
    padding-bottom: 75px;
  }
  .popup-shared .menu-shared.ext {
    padding-top: 30px;
  }
  .popup-shared .menu-list {
    margin-bottom: 45px;
    font-size: 14px;
  }
  .popup-shared .menu-list h3 {
    font-size: 18px;
    padding: 0 10px 14px;
    margin-bottom: 10px;
  }
  .popup-shared .menu-list ul {
    padding: 10px 0;
  }
}/*# sourceMappingURL=header.css.map */