@charset "UTF-8";
/* 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: 100%;
  height: 100%;
  padding: 0 0px 18px;
  color: #303930;
  z-index: 9999;
}
.hamburger:before {
  content: "";
  width: 38px;
  border-top: 2px solid;
  position: absolute;
  top: 23px;
  left: 16px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.hamburger:after {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  content: "MENU";
  line-height: 1;
  color: #303930;
  font-size: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  text-align: center;
}
.hamburger span {
  height: 22px;
  width: 38px;
  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 {
  width: 60px;
}
.hamburger.is-active:after {
  content: "CLOSE";
}
.hamburger.is-active:before {
  opacity: 0;
}
.hamburger.is-active span:before {
  transform: translate3d(0px, 9px, 0) rotate(45deg);
}
.hamburger.is-active span:after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}
.hamburger.pc:after {
  bottom: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .hamburger:before {
    width: 40px;
    top: 39px;
    left: 29px;
  }
  .hamburger:after {
    bottom: 18px;
    font-size: 15px;
  }
  .hamburger:hover:after{
    -webkit-animation: textAni2 0.6s linear;
    animation: textAni2 0.6s linear;
  }
  .hamburger:hover {
    opacity: 0.8 !important;
  }
  .hamburger span {
    width: 40px;
    height: 22px;
  }
  .hamburger.is-active {
    /*
    span {
      width: 46px;

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

      &::after {
        transform: translate3d(0px, -14px, 0px) rotate(-45deg);
      }
    }
    */
  }
}

@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: 90%;
  margin: 0 auto;
}
.bnr-reserve a {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #738064;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 14px 10px;
  gap: 6px;
}
.bnr-reserve a:before {
  content: "";
  background: url("../img/shared/ico_web.png") no-repeat center/100%;
  width: 20px;
  height: 20px;
}
.bnr-reserve a .fnt-garamond {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .bnr-reserve {
    margin: 0;
    width: 259px !important;
  }
  .bnr-reserve a {
    font-size: 18px;
    line-height: 30px;
    padding: 15px 0;
    gap: 10px;
    overflow: hidden;
  }
  .bnr-reserve a .fnt-garamond {
    font-size: 24px;
    padding-right: 3px;
  }
  .bnr-reserve a i {
    display: inline-block;
  }
  .bnr-reserve a:before {
    width: 21px;
    height: 22px;
  }
  .bnr-reserve a:hover i {
    -webkit-animation: textAni2 0.6s linear;
    animation: textAni2 0.6s linear;
  }
}

@keyframes smoke1 {
  0% {
    transform: translateY(0) scale(1) skew(1deg, 1deg);
  }
  100% {
    transform: translateY(20px) scale(1.01) skew(0deg, 0deg);
  }
}
.ext-link .bnr-shared {
  margin: 0 auto 15px;
}
.ext-link .bnr-shared:last-child {
  margin-bottom: 0;
}
.ext-link .bnr-shared a:after {
  width: 15px;
  background: url(../img/shared/ico1.png) no-repeat center/100%;
}
.ext-link.white .bnr-shared a:after {
  background: url(../img/shared/ico2.png) no-repeat center/100%;
}

.contact-shared .sns {
  justify-content: center;
      gap: 30px;
    margin-bottom: 18px;
    padding-top: 10px;
    align-items: center;
}
.contact-shared .sns li {
  width: 30px;
}
.contact-shared .sns img {
  width: 100%;
  height: auto;
}
  .contact-shared .sns li.line{
        line-height: 1.25;
    width: auto;
  }
  .contact-shared .sns li.line span{
        font-size: 130%;
    font-weight: 600;
  }
.contact-shared .link-contact {
  text-align: center;
  padding: 20px 0 40px;
}
.contact-shared .link-contact .bnr-reserve {
  width: 80%;
}
.contact-shared .link-contact .tel {
  margin-bottom: 20px;
  font-size: 14px;
}
.contact-shared .link-contact .tel .num {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.04em;
  font-size: 29px;
  font-weight: 500;
  gap: 5px;
}
.contact-shared .link-contact .tel .num:before {
  content: "";
  background: url(../img/shared/ico_tel.png) no-repeat center center/100%;
  width: 23px;
  height: 26px;
}
.contact-shared .link-contact .tel .note {
  letter-spacing: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .contact-shared .sns {
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 10px;
  }
  .contact-shared .sns li {
    width: 30px;
  }
  .contact-shared .sns img {
    width: 100%;
    height: auto;
  }
  .contact-shared .link-contact {
    padding: 20px 0 40px;
  }
  .contact-shared .link-contact .bnr-reserve {
    width: auto;
  }
  .contact-shared .link-contact .tel {
    margin-bottom: 20px;
    line-height: 30px;
  }
  .contact-shared .link-contact .tel .note {
    font-size: 13px;
  }
  .contact-shared .link-contact .tel .num:before {
    width: 20px;
    height: 21px;
  }
}

#navigation {
  color: #303930;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.7s ease 0s;
  box-sizing: border-box;
}
#navigation .group {
  background: url(../img/shared/hd_bg.jpg) no-repeat center 0/cover;
  padding: 10% 5% 110px;
  position: relative;
}
#navigation .tog-nav {
  position: relative;
  width: 94%;
  margin: 0 auto;
}
#navigation .tog-nav ul {
  padding: 0 5%;
}
#navigation .tog-nav ul:last-child {
  border-top: 1px solid #303930;
  padding-top: 20px;
  margin-top: 20px;
}
#navigation .tog-nav li {
  margin-bottom: 9px;
}
#navigation .tog-nav li a {
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 0.06em;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 10px;
}
#navigation .tog-nav li a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 12px;
  z-index: 1;
  background: #303930;
  opacity: 0;
}
#navigation .tog-nav li a span {
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 22px;
  width: 185px;
}
#navigation .tog-nav li a:hover:before, #navigation .tog-nav li a.active:before {
  opacity: 1;
}
#navigation .link-contact {
  border-top: 1px solid #b4a69f;
}
@media screen and (min-width: 768px) {
  #navigation {
    background: url(../img/shared/hd_bg_pc.jpg) no-repeat center 0/cover;
  }
  #navigation .group {
    background: none;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  #navigation .gr {
    position: relative;
    max-width: 1200px;
  }
  #navigation .sub_logo {
    position: absolute;
    width: 117px;
    right: calc(50% + 333px);
    top: 29px;
  }
  #navigation .sub_logo img {
    width: 100%;
    height: auto;
  }
  #navigation .tog-nav {
    max-width: 1000px;
    width: 100%;
    display: flex;
    /* justify-content: flex-end; */
    margin: 0 auto;
    gap: 72px;
    padding: 0 0 11px 282px;
  }
  #navigation .tog-nav ul {
    width: 360px;
    padding: 0;
  }
  #navigation .tog-nav ul:last-child {
    padding: 0;
    margin: 0;
    border: none;
  }
  #navigation .tog-nav li {
    margin-bottom: 22px;
  }
  #navigation .tog-nav li a {
    font-size: 16px;
    line-height: 21px;
  }
  #navigation .tog-nav li a span {
    font-size: 30px;
    line-height: 30px;
    width: 194px;
  }
  #navigation .link-contact {
    display: flex;
    justify-content: center;
    padding: 34px 0 24px 0;
    gap: 22px;
  }
  #navigation .contact-shared .sns {
  /*  display: none;*/
            width: 230px;
        justify-content: left;
        margin-left: 296px;
        gap: 45px;
  }
  #navigation .contact-shared .ext-link {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  #navigation .contact-shared .ext-link li {
    width: 294px;
    margin: 0;
  }
}

.navOpen .ft-bnr-fixed li:not(.ham) {
  opacity: 0;
  visibility: hidden;
}
.navOpen .ft-bnr-fixed li:not(.ham) a {
  pointer-events: none !important;
}
.navOpen #navigation {
  opacity: 1;
  pointer-events: auto;
}
header {
  background: url(../img/shared/key_bg_sp.jpg) no-repeat center 0/cover;
  position: relative;
  padding: 29vw 0 10vw;
}
header:after {
  content: "";
  background-color: #f9f5eb;
  position: absolute;
  right: 0;
  left: 20%;
  bottom: -15vw;
  height: 30vw;
  border-bottom-left-radius: 40vw;
  border-top-left-radius: 40vw;
  z-index: 2;
}
header h1 {
  font-size: 10px;
  text-align: left;
  color: #a2a9a3;
  position: absolute;
  top: 10px;
  left: 35%;
  right: 5%;
  z-index: 1;
  line-height: 1.6;
  display: flex;
  align-items: flex-end;
  height: 21vw;
}
header .logo {
  width: 26%;
  position: absolute;
  top: 5vw;
  left: 5%;
  z-index: 3;
}
header .logo img {
  width: 100%;
  height: auto;
}
header.ext:after {
  height: 48vw;
  bottom: -27vw;
}
@media screen and (min-width: 768px) {
  header {
    background: url(../img/shared/key_bg.jpg) no-repeat center 0/cover;
    padding: 132px 0 30px;
    height: 1194px;
  }
  header:after {
    left: auto;
    width: 523px;
    height: 371px;
    bottom: -80px;
    border-bottom-left-radius: 233px;
    border-top-left-radius: 233px;
  }
  header.ext:after {
    width: 597px;
    bottom: -75px;
    height: 468px;
  }
  header h1 {
    font-size: 13px;
    top: 0px;
    left: 220px;
    right: auto;
    width: 900px;
    z-index: 1;
    height: 119px;
  }
  header .logo {
    width: 157px;
    margin: 0;
    position: absolute;
    top: 37px;
    left: 40px;
    z-index: 9;
  }
  header .hd-pc .cont_top {
    position: absolute;
    top: 42px;
    right: 40px;
    z-index: 1;
    padding: 0;
  }
  header .hd-pc .cont_top .link-contact {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 22px;
  }
  header .hd-pc .cont_top .link-contact .tel {
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  header .hd-pc .cont_top {
    top: 32px;
  }
}
@media screen and (min-width: 768px) {
  header .hd-pc .cont_b {
    position: absolute;
    width: 344px;
    right: 76px;
    bottom: 0;
    z-index: 9;
  }
  header .hd-pc .cont_b.ext {
    /*bottom: 113px;*/
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  header .hd-pc .cont_b {
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  header .hd-pc .hd-r {
    position: absolute;
    top: 215px;
    width: 220px;
    right: 76px;
    z-index: 9;
  }
  header .hd-pc .hd-r .tog-nav li {
    margin: 0 -10px 18px 0;
  }
  header .hd-pc .hd-r .tog-nav li a {
    font-size: 13px;
    line-height: 17px;
    display: flex;
    align-items: center;
    position: relative;
  }
  header .hd-pc .hd-r .tog-nav li a:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 8px;
    z-index: 1;
    background: #303930;
    opacity: 0;
  }
  header .hd-pc .hd-r .tog-nav li a span {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.04em;
    width: 153px;
  }
  header .hd-pc .hd-r .tog-nav li a:hover:before, header .hd-pc .hd-r .tog-nav li a.active:before {
    opacity: 1;
  }
  header .hd-pc .hd-r .tog-nav ul:last-child {
    border-top: 1px solid #303930;
    padding-top: 36px;
    margin-top: 34px;
  }
  header .hd-pc .hd-r .sns {
    gap: 30px;
    padding: 14px 0 20px;
    justify-content: end;
            align-items: center;
  }
  header .hd-pc .hd-r .sns img {
    width: 30px;
    height: auto;
  }
  header .hd-pc .hd-r .sns li.line{
        line-height: 1.25;
  }
  header .hd-pc .hd-r .sns li.line span{
        font-size: 22px;
    font-weight: 600;
  }
  header .hd-pc .hd-r .sns li.line a:hover{
    color: #688d3e;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  header .hd-pc .hd-r {
    right: 20px;
  }
}

#key .photo {
  position: relative;
  height: 80vw;
  border-top-right-radius: 60vw;
  border-bottom-right-radius: 60vw;
}
#key h2 {
  color: #beb397;
  font-weight: 600;
  font-size: 22vw;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  margin: -10vw 5% 10vw;
  z-index: 3;
}
#key h2 span {
  font-size: 3.1vw;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: absolute;
  top: 31vw;
  left: 54vw;
  color: #303930;
}
@media screen and (min-width: 768px) {
  #key .photo {
    width: calc(50% + 395px);
    border-top-right-radius: 425px;
    border-bottom-right-radius: 425px;
    height: 850px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  #key .photo {
    width: calc(100% - 295px);
  }
}
@media screen and (min-width: 1341px) {
  #key .photo {
            width: calc(100% - 365px);
  }
}



@media screen and (min-width: 768px) {
  #key h2 {
    font-size: 128px;
    line-height: 116px;
    margin: -50px 0 0 87px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  #key h2 {
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  #key h2 span {
    font-size: 19px;
    top: 50%;
    left: 335px;
    line-height: 1;
    transform: translateY(-50%);
  }
  #key h2.ext {
    font-size: 152px;
    line-height: 137px;
    margin: -61px 0 0 87px;
  }
  #key h2.ext span {
    left: 383px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  #key h2.ext {
    margin-left: 20px;
    font-size: 132px;
  }
  #key h2.ext span {
    left: 323px;
  }
}

footer {
  background-color: #fff;
  padding: 22vw 5% 70px;
  text-align: center;
  overflow: hidden;
}
footer .wrap {
  padding: 0 5% 140px;
}
footer .video  {
  margin-bottom: 10vw;
  position: relative;
  overflow: hidden;
  height: 68vw;
  pointer-events: none;
} 
footer .video iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 69.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
  footer #ft-yt{
    height: 300px;
  }
footer .ft-link {
  background-color: #2c2a24;
  color: #fff;
  margin-bottom: 10vw;
}
footer .ft-link dd {
  padding: 10% 0%;
}
footer .ft-link dt {
  background: url(../img/shared/bg1.jpg) repeat center 0;
  color: #bdb692;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14vw;
  padding: 10% 0%;
}
footer .shopinfo .logo {
  width: 30%;
  margin: 0 auto;
}
footer .shopinfo .logo img {
  width: 100%;
  height: auto;
}
footer .shopinfo .contact-shared .link-contact {
  border: none;
}
footer .shopinfo .tbl-info {
  text-align: left;
}
footer .shopinfo .tbl-info .ico_map:hover {
  text-decoration: underline;
}
footer .shopinfo .tbl-info .ico_map img {
  width: 12px;
  height: auto;
  margin: 0 2px 0 1px;
  position: relative;
  top: -1px;
}
footer .shopinfo .tbl-info .tit {
  text-align: center;
}
footer .shopinfo .tbl-info p {
  font-size: 13px;
  padding-bottom: 15px;
}
footer .ft-group {
  border-top: 1px solid #afa19a;
  margin: 5vw 2% 0;
  padding: 10vw 2%;
}
footer .ft-group .banner {
  gap: 4vw 0;
  padding-top: 30px;
}
footer .ft-group .banner li {
  width: 46%;
}
footer .ft-bottom {
  border-top: 1px solid #afa19a;
  padding: 30px 0;
  font-size: 14px;
}
footer .socialbuttons {
  padding: 20px 0;
}
footer address {
  letter-spacing: 0;
  font-size: 12px;
  margin: 40px -20px 0;
}
footer .cookies_link a::after {
  content: "";
  background: url(../img/shared/ico1.png) no-repeat center/100%;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 8px;
}
footer .cookies_link a:hover {
  text-decoration: underline;
}
footer .btn-copy::after {
  content: "";
  background: url(../img/shared/ico1.png) no-repeat center/100%;
  width: 15px;
  height: 15px;
  display: inline-block;
}
footer .btn-copy a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 135px 40px 0px;
  }


  footer .video  {
width: 650px;
margin: 0 auto;
    height: 365px;
  } 
  footer .video iframe {
    width: 130%;
    height: 493px;
    min-height: 110px;
    min-width: 100%;
  }

  footer #ft-yt{
width: 650px;
margin: 0 auto;
    height: 365px;
  }




  footer .tog-nav {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    position: absolute;
    left: 20px;
    top: 52px;
    display: flex;
    width: 480px;
    gap: 0px 19px;
    justify-content: flex-start;
  }
  footer .tog-nav li a {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.04em;
  }
  footer .tog-nav li a:hover {
    opacity: 0.7;
    text-decoration: underline;
  }
  footer .wrap {
    padding: 0 0 140px;
  }
  footer .ft-link {
    margin-bottom: 90px;
    display: flex;
    justify-content: space-between;
  }
  footer .ft-link dd {
    padding: 38px 20px 38px;
    width: 50%;
  }
  footer .ft-link dd ul {
    width: 344px;
    margin: 0 auto;
  }
  footer .ft-link dd ul li:first-child {
    margin-bottom: 15px;
  }
  footer .ft-link dt {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 77px;
    padding: 0;
  }
  footer .shopinfo {
    max-width: 1046px;
    margin: 0 auto 54px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .shopinfo .lead {
    width: 490px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .shopinfo .logo {
    width: 158px;
    margin: 0;
  }
  footer .shopinfo .contact-shared .link-contact {
    width: 259px;
    padding: 0 0;
  }
  footer .shopinfo .contact-shared .link-contact .tel {
    margin-bottom: 25px;
  }
  footer .shopinfo .contact-shared .link-contact .bnr-reserve {
    width: 100%;
  }
  footer .shopinfo .tbl-info {
    width: 529px;
    padding: 17px 0 0;
    margin-right: -50px;
  }
  footer .shopinfo .tbl-info .tit {
    text-align: left;
    padding-bottom: 40px;
  }
  footer .shopinfo .tbl-info p {
    font-size: 15px;
    line-height: 26px;
    padding-bottom: 26px;
  }
  footer .ft-group {
    max-width: 1200px;
    margin: 35px auto 20px;
    padding: 45px 0 40px;
  }
  footer .ft-group .ext-link {
    justify-content: center;
    gap: 13px;
    padding-bottom: 60px;
  }
  footer .ft-group .ext-link li {
    margin: 0;
    width: 285px;
  }
  footer .ft-group .ext-link li a{
   font-size: 16px;
    letter-spacing: 0;
  }
  footer .ft-group .banner {
    justify-content: center;
    gap: 30px;
    padding-top: 0px;
  }
  footer .ft-group .banner li {
    width: auto;
  }
  footer .ft-bottom {
    position: relative;
    max-width: 1420px;
    margin: 0 auto -2px;
    padding: 49px 23px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 15px;
    gap: 0px 0;
  }
  footer .socialbuttons {
    padding: 0px 0 0px;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    left: 20px;
    top: 171px;
  }
  footer address {
    margin: 35px 0 0;
    font-size: 15px;
    letter-spacing: 0.04em;
  }
}

.pagetop {
  position: static;
  width: 100px;
  margin: 0 auto;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: auto;
  }
  .pagetop:hover {
    opacity: 0.8 !important;
  }
}

/*
#belt {

  position: fixed;
  height: 90px;z-index: 999;
}
*/
/*========layout pc===========*/
@media screen and (min-width: 768px) {
  /*

    #belt {

      position: fixed;
      height: 95px;
      z-index: 999;
      top: 0;
      left: 0;
      right: 0;
      height: 95px;
      background-color: rgba(0, 0, 0, 0.55);
      opacity: 0;
      pointer-events: none;


      &.fixed {
        opacity: 1;
        pointer-events: auto;
      }
    }

  */
  body {
    font-size: 17px;
    line-height: 39px;
    text-align: left;
  }
  section .padd_wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .has-nav .hamburger {
    opacity: 1;
    pointer-events: auto;
  }
  .has-nav .ft-bnr-fixed {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .has-nav .btn-menu-fixed {
    opacity: 1;
    visibility: visible;
    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;
  margin-bottom: 40px;
  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: 0px;
    margin-bottom: 60px;
  }
  .remodal-close img {
    width: auto;
  }
  .remodal-close:hover {
    opacity: 0.8;
  }
}
.remodal-close.cancel {
  position: relative;
  margin: 0 auto;
}

.remodal-cancel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  gap: 10px;
}
.remodal-cancel img {
  width: 10px;
  height: 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: 47px;
    font-size: 24px;
  }
  .remodal-cancel img {
    width: auto;
  }
}

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

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

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 768px) {
  .has-nav .hamburger {
    opacity: 1;
    visibility: visible;
  }
}
.ft-bnr-fixed {
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  font-size: 11px;
  letter-spacing: 0em;
}
.ft-bnr-fixed .fnt-garamond {
  font-size: 14px;
}
.ft-bnr-fixed li {
  background: #738064;
  border-right: 1px solid #fff;
  width: calc((100% - 70px) / 3);
  position: relative;
}
.ft-bnr-fixed li .hamburger {
  position: relative;
  margin: 0 auto;
}
.ft-bnr-fixed li:first-child {
  background: #a39572;
  font-size: 10px;
}
.ft-bnr-fixed li.ham {
  width: 70px;
  border: none;
  background: #fff;
  color: #303930;
}
.ft-bnr-fixed li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 65px;
  color: #fff;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.ft-bnr-fixed li a img {
  width: auto;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .ft-bnr-fixed {
    width: 516px;
    left: auto;
    right: 0;
    bottom: auto !important;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    gap: 1px;
    justify-content: space-between;
  }
  .ft-bnr-fixed li {
    border: none;
    width: 138px;
  }
  .ft-bnr-fixed li img {
    height: 26px;
  }
  .ft-bnr-fixed li a {
    justify-content: flex-start;
    gap: 6px;
    height: 98px;
    padding: 16px 0 0;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
  }
  .ft-bnr-fixed li.shop a {
    gap: 15px;
  }
  .ft-bnr-fixed li.shop a img {
    width: 26px;
    height: auto;
  }
  .ft-bnr-fixed li:nth-child(2) img {
    height: 28px;
  }
  .ft-bnr-fixed li:nth-child(2) a {
    font-size: 0;
  }
  .ft-bnr-fixed li:nth-child(2) a::after {
    content: "042-512-5251";
    font-size: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: 62px;
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  .ft-bnr-fixed li:nth-child(3) a {
    padding: 21px 0 0 0;
    gap: 12px;
  }
  .ft-bnr-fixed li:nth-child(3) a .fnt-garamond {
    font-size: 24px;
  }
  .ft-bnr-fixed li.ham {
    width: 98px;
    height: 98px;
  }
}

@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 textAni2 {
  0% {
    opacity: 0.12
  }
  75% {
    opacity: 0.5
  }
  100% {
    opacity: 1
  }
}
@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: #000;
}

.bnr-shared {
  width: 80vw;
  margin: 0 auto;
}
.bnr-shared a {
  display: block;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  border: 1px solid #b2b5b1;
  padding: 10px 30px;
  border-radius: 40px;
  position: relative;
  font-size: 16px;
  text-align: left;
  overflow: hidden;
}
.bnr-shared a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  width: 22px;
  background: url(../img/shared/arow.png) no-repeat center/100%;
}
@media screen and (min-width: 768px) {
  .bnr-shared {
    width: auto;
    margin: 0;
  }
  .bnr-shared a {
    font-size: 18px;
    line-height: 30px;
    padding: 14px 51px;
    overflow: hidden;
  }
  .bnr-shared a::after {
    width: 32px;
    right: 44px;
  }
  .bnr-shared a > span, .bnr-shared a i span {
    position: relative;
    display: inline-block;
  }
  .bnr-shared a:hover > span, .bnr-shared a:hover i span {
    -webkit-animation: textAni2 0.6s linear;
    animation: textAni2 0.6s linear;
  }
  .bnr-shared a:hover::after {
    -webkit-animation: lineAni 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: lineAni 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .ft-bnr-fixed li a:hover > i,
  #navigation .tog-nav li a:hover,
  header .hd-pc .hd-r .tog-nav li a:hover,
  #news .more a:hover,
  header .hd-pc .hd-r .sns li.line a:hover{
    -webkit-animation: textAni2 0.6s linear;
    animation: textAni2 0.6s linear;
  }
}/*# sourceMappingURL=header.css.map */





.bnr-dog {
  width: 80%;
  margin: 0 auto;
}
.bnr-dog a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #beb398;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
     padding: 12px 10px 10px;
    gap: 10px;
    text-align: center;
    line-height: 1.1;
}
.bnr-dog a:before {
  content: "";
  background: url("../img/shared/i-dog.png") no-repeat center/100%;
  width: 31px;
  height: 25px;
}
.bnr-dog a .fnt-garamond {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: block;
}
.contact-shared .bnr-dog-ul{
  margin-bottom: 22px;
}

  footer .ft-group .ext-link li.bnr-dog{
        width: 80vw;
    margin: 0 auto 15px;
}
  footer .ft-group .ext-link li.bnr-dog a{
        font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 13px;
    padding: 9px 10px 7px;
}
@media screen and (min-width: 768px) {
.contact-shared .bnr-dog-ul{
          display: flex;
        justify-content: right;
        margin-top: -89px;
          margin-right: 19px;
  }
  .hd-r .bnr-dog-ul{
        position: absolute;
        right: 0;
        bottom: -61px;
  }
  .bnr-dog {
            margin: 0;
        width: 295px !important;
  }
  .bnr-dog a {
    font-size: 13px;
    line-height: 1.1;
    padding: 13px 0 11px;
    gap: 10px;
    overflow: hidden;
  }
  .bnr-dog a .fnt-garamond {
    font-size: 24px;
    padding-right: 0;
  }
  .bnr-dog a i {
    display: inline-block;
  }
  .bnr-dog a:before {
  width: 31px;
  height: 25px;
  }
  .bnr-dog a:hover i {
    -webkit-animation: textAni2 0.6s linear;
    animation: textAni2 0.6s linear;
  }
  footer .ft-group .ext-link li.bnr-dog{
            width: 285px !important;
    margin: 0;
  }
  footer .ft-group .ext-link li.bnr-dog a{
    font-size: 13px;
    padding: 12px 0 10px;
  }
  footer .ft-group .ext-link li.bnr-dog a .fnt-garamond {
    font-size: 22px;
  }
}





