/*# sourceURL=shared/css/shared.css */


/*@ sourceURL=shared/css/shared.css */


/*@ sourceURL=shared/css/shared.css */


/*@ sourceURL=shared/css/shared.css */

@charset "UTF-8";

/* Scss Document */

html:not(.responsive) {
    min-width: 1100px;
    /* viewport */
}


/*=============================================
 * body
 *=============================================*/

body {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.18em;
    color: #000;
    font-family: 'Noto Serif JP', serif;
    background: url('../img/shared/bg_on.jpg');
    min-width: inherit;
    min-height: inherit;
    max-height: 100%;
    font-weight: 400;
}

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

.txt {
  text-align: justify;
}

@media screen and (min-width: 767px) {
    /* a:hover img {
        opacity: 0.8;
    } */
    body {
        font-size: 16px;
        line-height: 2.5;
    }
    img {
        width: auto;
    }
    .txt {
      text-align: left;
    }
}


/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/

.fnt-mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}


/*=============================================
 * .fnt - customs
 *=============================================*/

.fnt-serif {
    font-family: 'Noto Serif JP', serif;
}

.fnt-notosan {
    font-family: 'Noto Sans JP', sans-serif;
}

.fnt-playfair {
    font-family: 'Playfair Display', serif;
}

.fnt-roboto {
    font-family: 'Roboto', sans-serif;
}

.fnt-cinzel {
    font-family: 'Cinzel', serif;
}

.fnt-shippori {
    font-family: 'Shippori Mincho', serif;
}

.fnt-shipporib1 {
  font-family: 'Shippori Mincho B1', serif;
}

.fnt-caladea {
    font-family: 'Caladea', serif;
}

.fnt-jost {
  font-family: 'Jost', sans-serif;
}

.fnt-pathway {
    font-family: 'Pathway Gothic One', sans-serif;
}

.fnt-stick {
    font-family: stick, sans-serif;
    font-weight: 400;
}

.fnt-lora {
  font-family: 'Lora', serif;
}

.fnt-lusit {
  font-family: 'Lusitana', serif;
}

.fnt-cormorant {
  font-family: 'Cormorant Garamond', serif;
}

.fnt-yeseva {
  font-family: 'Yeseva One', cursive;
}

.fnt-secular {
  font-family: 'Secular One', sans-serif;
}

/*=============================================
 * <main>
 *=============================================*/

main {
    clear: both;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wrap {
    max-width: 1000px;
    width: auto;
    box-sizing: content-box;
    padding: 0 20px;
}

.slick-arrow:hover {
    opacity: 0.8;
}

.display-n {
  display: none;
}

.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s
}

@media (prefers-reduced-motion) {
  .animated {
      -webkit-animation: unset!important;
      -webkit-transition: none!important;
      animation: unset!important;
      transition: none!important
  }
}

@-webkit-keyframes fadeIn {
  0% {
      opacity: 0
  }
  to {
      opacity: 1
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0
  }
  to {
      opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInLeft {
  0% {
      -webkit-transform: translate3d(-100%, 0, 0);
      opacity: 0;
      transform: translate3d(-100%, 0, 0)
  }
  to {
      -webkit-transform: translateZ(0);
      opacity: 1;
      transform: translateZ(0)
  }
}

@keyframes fadeInLeft {
  0% {
      -webkit-transform: translate3d(-100%, 0, 0);
      opacity: 0;
      transform: translate3d(-100%, 0, 0)
  }
  to {
      -webkit-transform: translateZ(0);
      opacity: 1;
      transform: translateZ(0)
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}


/*=============================================
 * <header>
 *=============================================*/

header {
    position: relative;
    box-sizing: border-box;
}

@media screen and (min-width: 1040px) {
    .wrap {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    header {
        box-sizing: border-box;
        height: auto;
    }
}

.nav-fixed {
    position: absolute;
    opacity: 0;
    z-index: 111;
    visibility: hidden;
}

.nav-fixed.fixed {
    position: fixed;
    top: 0;
    opacity: 1;
    visibility: visible;
}


/*=============================================
 * key
 *=============================================*/


/*=============================================
 * <section>
 *=============================================*/


/*=============================================
 * <footer>
 *=============================================*/

iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    footer {
        z-index: 30;
    }
    address {}
    [class*="heightLine-pc"] {
        height: auto!important;
    }
}

footer .cookies_link a {
    display: inline-block;
}

footer .cookies_link a:hover {
    text-decoration: underline;
}

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


/*=============================================
 * .socialbuttons
 *=============================================*/


/*====================== ft-fixed ====================== */


/*=============================================
 * copyright
 *=============================================*/

.btn_fixed {
    position: fixed;
    right: 0;
    top: 187px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: ease 0.3s;
}

.has-nav .btn_fixed {
    opacity: 1;
    pointer-events: visible;
}

@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
    [class*="heightLine-sp"] {
      height: auto!important;
    }
}

#pagetop {
    bottom: 20px;
    right: 20px;
}

@media screen and (max-width: 767px) {
    #pagetop {
        width: 40px;
        bottom: 85px;
        right: 2%;
    }
}

.menu-toggle {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100% !important;
    top: 0px;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    height: 100%;
    color: #000;
    z-index: 999;
    padding: 50px 0 150px;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -webkit-overflow-scrolling: touch;
    /* white-space: nowrap; */
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

.navOpen #menu-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
}

.navOpen #menu-toggle li {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.hamburger {
    position: fixed;
    top: 0;
    z-index: 100;
    right: 0;
    border-radius: 0;
    text-align: center;
    z-index: 9999;
    width: 60px;
    padding: 8px 8px 8px 8px;
    padding: 0;
}

.has-nav .hamburger {
    opacity: 1;
    visibility: visible;
}

.hamburger .off {
    position: absolute;
    top: 0;
    right: 17px;
    z-index: 2;
    opacity: 0!important;
}

.navOpen .hamburger img {
    opacity: 0;
}

.navOpen .hamburger .off {
    opacity: 1!important;
}

.navOpen .hamburger .on {
  opacity: 0;
}

.hamburger:after {
    font-size: 11px;
    content: 'MENU';
    display: block;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin: -4px 0 0;
    color: #fff;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    letter-spacing: 0;
    display: none;
}

.navOpen .hamburger:after {
    content: 'CLOSE';
    display: none;
}

.navOpen .hamburger {
  background: transparent;
}

.navOpen .hamburger-inner::before,
.navOpen .hamburger-inner::after,
.navOpen .hamburger-inner {
    border-radius: 0;
    height: 1px;
    width: 40px;
    /* background: #000; */
}

body.navOpen,
body.navOpen *,
body.navOpen *:hover,
body.navOpen *:focus,
body.navOpen *:active {
    /*    cursor: none !important;*/
    touch-action: none !important;
    pointer-events: none !important;
}

body.navOpen .hamburger,
body.navOpen #menu-toggle,
body.navOpen #menu-toggle * {
    touch-action: auto !important;
    pointer-events: visible !important;
}

body.navOpen,
body.navOpen *,
body.navOpen *:hover,
body.navOpen *:focus,
body.navOpen *:active {
    /*    cursor: none !important;*/
    touch-action: none !important;
    pointer-events: none !important;
}

body.navOpen .hamburger,
body.navOpen #navigation,
body.navOpen #navigation * {
    touch-action: auto !important;
    pointer-events: visible !important;
}

.navOpen {
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: none !important;
    pointer-events: none !important;
}

.hamburger-box {
    /* height: 30px; */
}

.dis_flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

button {
    border: none;
    cursor: pointer;
}

.slick-arrow {
    font-size: 0;
    width: 33px;
    height: 56px;
    line-height: 0;
    position: absolute;
    z-index: 7;
    top: 24vw;
    background: transparent;
    color: #548b2e;
    outline: none;
}

.slick-arrow.slick-prev {
    background: url("../img/shared/left.jpg") no-repeat center/100% auto;

}

.slick-arrow.slick-next {
    background: url("../img/shared/right.jpg") no-repeat center/100% auto;
}

@media screen and (max-width: 480px) {
    .slick-arrow {
        width: 22px;
        height: 22px;
    }
}

.slick-dots {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    z-index: 5;
    position: absolute;
    right: 37px;
    bottom: 90px;
}

.slick-dots li {
    /* width: 18px; */
    /* height: 18px; */
    margin: 0 3px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    /* display: flex; */
    /* background: #aa0909; */
    /* border-radius: 50%; */
    cursor: pointer;
    /* border: 1px solid #c92e36; */
}

.slick-dots li button {
    width: 20px;
    height: 28px;
    /* line-height: 0; */
    font-size: 15px;
    font-weight: 700;
    background: url('../img/shared/dot_bg.jpg');
}

.slick-dots li.slick-active button{
  opacity: 0.5;
}
.only-pc {
  display: none;
}
@media only screen and (min-width: 1300px) {
  .only-pc {
    display: block;
  }
}
@media only screen and (min-width: 1300px) {
    .slick-dots li:hover button{
      opacity: 0.5;
    }
    
}

@media only screen and (min-width: 1000px) {
    .dis_flex_pc {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
    }
}

.txt-center {
    text-align: center;
}

.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;
}

@media only screen and (min-width: 768px) {
  .slick-dots li button {
    width: 28px;
    height: 40px;
    font-size: 20px;
}
.slick-dots li {
  margin: 0 6.5px;
}
    .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-normal-pc .int {
        height: 1.1em;
    }
    .txt-vertical-x>* {
        writing-mode: rl-tb;
        -o-writing-mode: vertical-tb;
        -ms-writing-mode: vertical-tb;
        -ms-writing-mode: rl-tb;
        -moz-writing-mode: vertical-tb;
        -webkit-writing-mode: vertical-tb;
        transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        display: inline-block;
        white-space: nowrap;
        word-wrap: break-word;
        width: 1px;
        line-height: 1;
    }
    .txt-vertical-pc .txt-latin {
        cursor: vertical-text;
        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;
        letter-spacing: .25em;
    }
}

@media only screen and (max-width: 768px) {
    .txt-vertical-sp {
        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-sp .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-normal-sp .int {
        height: 1.1em;
    }
    .txt-vertical-x>* {
        writing-mode: rl-tb;
        -o-writing-mode: vertical-tb;
        -ms-writing-mode: vertical-tb;
        -ms-writing-mode: rl-tb;
        -moz-writing-mode: vertical-tb;
        -webkit-writing-mode: vertical-tb;
        transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        display: inline-block;
        white-space: nowrap;
        word-wrap: break-word;
        width: 1px;
        line-height: 1;
    }
    .txt-vertical-sp .txt-latin {
        cursor: vertical-text;
        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;
        letter-spacing: .25em;
    }
}


/* CSS for IE */

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    #ft-fixed .btn-link.btn-shop a::before {
        -ms-writing-mode: lr-tb;
    }
}
.ipad {
  display: none;
}
@media screen and (max-width: 1250px) {
  .ipad {
    display: block;
  }
}
@media screen and (min-width: 768px) {
    .bg-parallax-pc {
        position: relative;
        z-index: 0;
    }
    .img-parallax-pc {
        clip: rect(0, auto, auto, 0);
        margin-bottom: 0;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .img-parallax-pc img {
        width: 100% !important;
        height: 100vh !important;
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 0;
        margin: 0;
        object-fit: cover;
        z-index: 1;
        transform: translateZ(0);
    }
    @media screen and (-ms-high-contrast: active),
    (-ms-high-contrast: none) {
        .img-parallax-pc img {
            height: auto;
            object-fit: unset;
            top: 50%;
            transform: translateY(-50%) !important;
        }
    }
}

.bg-parallax {
    position: relative;
    z-index: 0;
}

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

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

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .img-parallax img {
        height: auto!important;
        object-fit: unset;
        top: 50%;
        transform: translateY(-50%) !important;
    }
}

.nav-fixed {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
}


/*====================== ft-fixed ====================== */

#ft-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background: url('../img/shared/bg.jpg');
    z-index: 99;
    display: flex;
    height:10vh;
}
footer:after {
  content: '';
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 36px;
  z-index: 5;
}
#ft-fixed {
  padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
}

#index #ft-fixed {
  padding-bottom: 0;
}
#index footer:after {
  display: none;
}
/* iPhone X */

@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #index.has-nav footer:after {
        content: '';
        position: fixed;
        bottom: 0px;
        left: 0;
        right: 0;
        height: 36px;
        z-index: 5;
    }
    #index #ft-fixed {
        padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
    }
}


/* iPhone XR */

@media only screen and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  #index.has-nav footer:after {
    content: '';
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 36px;
    z-index: 5;
}
#index #ft-fixed {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
}
}

.navOpen #ft-fixed {
    z-index: 0;
}

.has-nav #ft-fixed {
    opacity: 1;
    visibility: visible;
}

.toggle-sp .toggle-link:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    content: '\f13a';
    font-size: 13px;
    display: block;
    margin-top: 10px;
}

.toggle-sp .toggle-main {
    display: none;
}

.toggle-sp.active .toggle-main {
    display: block;
}

.toggle-sp.active .toggle-link:after {
    content: '\f139';
}

.img-ob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100%!important;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
    .toggle-sp .toggle-link:after {
        display: none;
    }
    .toggle-sp .toggle-link {
        cursor: auto;
    }
    .toggle-sp .toggle-main {
        display: block!important;
        height: auto!important;
    }
    .img-ob-pc {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%!important;
      height: 100%!important;
      -o-object-fit: cover;
         object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
  .img-ob-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .tabs-switch-pc .tab-content > div {
    display: block!important;
  }
}

/*=============================================
 * desgin
 *=============================================*/

 #header {
  position: relative;
  color: #fff;
}
#header h1 {
  position: absolute;
  top: 20px;
  left: 4%;
  right: 100px;
  font-size: 10px;
  z-index: 2;
  line-height: 1.5;
}
#header .sns {
  position: absolute;
  z-index: 2;
  top: 73vw;
  left: 3%;
}
#header .sns .txt-vertical {
  font-size: 14px;
  line-height: 1.5;
  width: 21px;
  margin-bottom: 15px;
}
#header .sns .txt-vertical span {
  letter-spacing: 0.2em;
}
#header .logo {
  position: absolute;
  z-index: 2;
  top: 75vw;
  width: 42%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#key {
  height: 160vw;
}

.hamburger {
  right: 10px;
  top: 20px;
  width: 54px;
}
.hamburger img {
  display: block;
}
.hamburger .act {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.has-nav .hamburger .act {
  opacity: 1;
}

.navOpen .hamburger {
  opacity: 0;
  visibility: hidden;
}

#menu-toggle {
  background: url("../img/index/bg6.jpg");
  padding: 80px 0 100px;
  color: #fff;
}
#menu-toggle .ham-close {
  position: absolute;
  z-index: 2;
  width: 35px;
  top: 30px;
  right: 15px;
  cursor: pointer;
}
#menu-toggle .flex {
  max-width: 715px;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#menu-toggle .flex .nav li + li {
  margin-top: 20px;
}
#menu-toggle .flex .nav li a {
  display: block;
  font-size: 35px;
  line-height: 1.5;
  color: #a19691;
  text-decoration: none;
}
#menu-toggle .flex .nav li a small {
  display: block;
  font-size: 16px;
}
#menu-toggle .flex .nav li a.active {
  color: #fff;
}
#menu-toggle .btn-insta {
  text-align: center;
  margin: 50px auto 40px;
  width: 35px;
}
#menu-toggle .btn-pop {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 598px;
}
#menu-toggle .btn-pop a {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  padding: 15px 0;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid rgba(136, 130, 126, 0.5);
}

#footer {
  background: url("../img/shared/bg4.jpg");
  color: #fff;
  padding: 5vw 0 100px;
}
#footer .group1 {
  padding: 0 4% 12vw;
}
#footer .group1 .right {
  padding-top: 10vw;
}
#footer .group1 .right .top {
  margin-bottom: 10vw;
  text-align: center;
}
#footer .group1 .right .top .logo {
  margin: 0 29% 7vw;
}
#footer .group1 .right .top .group-tel {
  display: inline-block;
}
#footer .group1 .right .top .group-tel .tel a {
  text-decoration: none;
  display: inline-block;
  text-align: left;
}
#footer .group1 .right .top .group-tel .tel small {
  display: block;
  font-size: 4vw;
  margin-bottom: 6px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#footer .group1 .right .top .group-tel .tel span {
  margin-left: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 7.5vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}
#footer .group1 .right .top .group-tel .tel span::before {
  content: '';
  background: url("../img/shared/icon_tel2.png") no-repeat center/100% auto;
  width: 7.5vw;
  height: 8vw;
  margin-right: 3%;
}
#footer .group1 .right .top .group-tel .btn-link2 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 3vw;
}
#footer .group1 .right .top .group-tel .btn-link2 a {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  padding: 15.5px 0 15.5px 26px;
  background: #fff;
  color: #000;
  overflow: hidden;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
#footer .group1 .right .top .group-tel .btn-link2 a:after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/shared/f_icon.png") no-repeat center/100% auto;
  width: 24px;
  height: 23px;
  left: 20px;
}
#footer .group1 .right .top .group-tel .btn-link2 a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/shared/bg2.jpg");
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
#footer .group1 .right .top .group-tel .btn-link2 a:hover {
  color: #fff;
}
#footer .group1 .right .top .group-tel .btn-link2 a:hover::before {
  -webkit-transform: scale(2);
          transform: scale(2);
}
#footer .group1 .right .top .group-tel .btn-link2 a:hover:after {
  background-image: url("../img/shared/f_icon_on.png");
}
#footer .group1 .right dl {
  line-height: 1.875;
  letter-spacing: 0;
}
#footer .group1 .right dl + dl {
  margin-top: 20px;
}
#footer .group1 .right dl dt {
  letter-spacing: 0.18em;
}
#footer .group1 .right dl dd {
  padding: 0 0 0 25px;
  margin-right: -5%;
}
#footer .group2 {
  border-top: 2px solid rgba(69, 62, 59, 0.5);
  padding: 7vw 0 0;
}
#footer .group2 .inner {
  text-align: center;
}
#footer .group2 .inner .left {
  margin-bottom: 25px;
}
#footer .group2 .inner .left address, #footer .group2 .inner .left .cookies-link {
  font-size: 12px;
  line-height: 1.5;
  color: #d9d7d0;
}
#footer .group2 .inner .left address {
  margin-bottom: 10px;
}
#footer .group2 .inner #socialbuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#ft-fixed {
  background: #831616;
  color: #fff;
  border-top: 1px solid #973a3a;
}
#ft-fixed p, #ft-fixed a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#ft-fixed p {
  width: 18%;
}
#ft-fixed .btn {
  width: 46%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #973a3a;
}
#ft-fixed .btn a {
  font-weight: 300;
  letter-spacing: 0;
  font-size: 13px;
  padding: 13px 0;
}
#ft-fixed .btn a img {
  width: 20px;
  margin-right: 10px;
}
#ft-fixed .tel img, #ft-fixed .map img, #ft-fixed .pagetop img {
  width: 14px;
}
#ft-fixed .map, #ft-fixed .pagetop {
  border-left: 1px solid #973a3a;
}

.btn-link a,.btn-link span {
  display: block;
  font-size: 16px;
  border: 2px solid #000;
  text-align: center;
  line-height: 2;
  padding: 14px 0;
  position: relative;
  letter-spacing: 0.2em;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
  text-decoration: none;
  z-index: 1;
}
.btn-link a::before,.btn-link span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.btn-link a:after,.btn-link span:after  {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background: url("../img/shared/arrow3.png") no-repeat center/100% auto;
  width: 6px;
  height: 9px;
}
.btn-link a:hover,.btn-link span:hover {
  color: #fff;
}
.btn-link a:hover::before ,.btn-link span:hover::before {
  -webkit-transform: scale(2);
          transform: scale(2);
}
.btn-link a:hover:after,.btn-link span:hover:after {
  background-image: url("../img/shared/arrow3_on.png");
}

@media screen and (min-width: 768px) {
  .btn-link a,.btn-link span {
    font-size: 20px;
    border: 3px solid #000;
    padding: 18.5px 0;
  }
  .btn-link a:after,.btn-link span:after {
    right: 41px;
    width: 8px;
    height: 11px;
  }

  #header h1 {
    position: absolute;
    top: 38px;
    left: 41px;
    right: auto;
    font-size: 13px;
  }
  #header .sns {
    top: 421px;
    left: 18px;
  }
  #header .logo {
    top: 407px;
    width: auto;
  }
  #header .right {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 0;
  }
  #header .right .tel {
    margin-right: 40px;
    margin-bottom: 86px;
  }
  #header .right .tel a {
    text-decoration: none;
  }
  #header .right .tel small {
    font-size: 14px;
    display: inline-block;
    margin-right: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  #header .right .tel span {
    display: inline-block;
    font-weight: 600;
    font-size: 27px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  #header .right .tel span::before {
    content: '';
    display: inline-block;
    background: url("../img/shared/icon_tel.png") no-repeat center/100% auto;
    width: 19px;
    height: 22px;
    vertical-align: middle;
    margin-right: 7px;
  }
  #header .right .nav {
    width: 284px;
    margin-left: auto;
  }
  #header .right .nav li + li {
    margin-top: 10px;
  }
  #header .right .nav li a {
    border-bottom: 2px solid transparent;
    line-height: 1.8;
    padding-left: 15px;
    color: #a19691;
    letter-spacing: 0.05em;
    font-size: 27px;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: block;
    text-decoration: none;
  }
  #header .right .nav li a small {
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 13.5px;
    margin-left: 14px;
    letter-spacing: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #header .right .nav li a.active, #header .right .nav li a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }
  #header .right .nav li a.active small, #header .right .nav li a:hover small {
    opacity: 1;
  }

  #key {
    height: 965px;
  }
  #key .slide {
    height: 965px;
  }
  #key .slide .img {
    height: 965px;
  }
  #key .slide .img.img1 {
    background: url("../img/index/key1.jpg") no-repeat center/cover;
  }
  #key .slide .img.img2 {
    background: url("../img/index/key2.jpg") no-repeat center/cover;
  }
  #key .slide .img.img3 {
    background: url("../img/index/key3.jpg") no-repeat center/cover;
  }

  .hamburger {
    opacity: 0;
    right: 37px;
    top: 50px;
    height: 22px;
    width: 64px;
    visibility: hidden;
  }
  .has-nav .hamburger:hover {
    opacity: 0.8;
  }

  .has-nav2 .hamburger {
    opacity: 1;
    visibility: visible;
  }

  .has-nav .btn-fixed {
    visibility: visible;
    opacity: 1;
  }

  .btn-fixed {
    position: fixed;
    z-index: 10;
    right: 0;
    top: 100px;
    width: 200px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    visibility: hidden;
  }
  .btn-fixed a {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #c0b8b8;
    padding: 36px 0 30px;
    background: url("../img/shared/bg2.jpg");
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }
  .btn-fixed a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1c140f;
    border-radius: 100%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  .btn-fixed a:hover::before {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  .btn-fixed a span {
    display: block;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
  }
  .btn-fixed a span::before {
    content: '';
    display: block;
    background: url("../img/shared/icon.png") no-repeat center/auto 100%;
    height: 27px;
    margin-bottom: 29px;
  }

  #menu-toggle {
    padding: 170px 0 100px;
  }
  #menu-toggle .ham-close {
    top: 54px;
    width: auto;
    right: 45px;
  }
  #menu-toggle .ham-close:hover {
    opacity: 0.8;
  }
  #menu-toggle .flex .nav li a {
    font-size: 60px;
  }
  #menu-toggle .flex .nav li a small {
    font-size: 18px;
  }
  #menu-toggle .flex .nav li a:hover {
    color: #fff;
  }
  #menu-toggle .btn-insta {
    margin: 75px 0 62px;
    width: auto;
  }
  #menu-toggle .btn-pop {
    margin: 0 auto;
    padding: 0;
    max-width: 598px;
  }
  #menu-toggle .btn-pop a {
    font-size: 18px;
    padding: 21px 0;
    letter-spacing: 0.2em;
  }
  #menu-toggle .btn-pop a:hover {
    opacity: 0.8;
  }

  #footer {
    background: url("../img/shared/bg4.jpg");
    color: #fff;
    padding: 90px 0 100px;
  }
  #footer .group1 {
    max-width: 1376px;
    margin: 0 auto 118px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer .group1 .img {
    max-width: 456px;
    width: calc(100% - 750px);
  }
  #footer .group1 .right {
    width: 800px;
    padding-top: 39px;
    margin-left: 40px;
  }
  #footer .group1 .right .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 92px;
    text-align: left;
  }
  #footer .group1 .right .top .logo {
    margin: 0;
  }
  #footer .group1 .right .top .group-tel {
    display: block;
    margin-left: 72px;
  }
  #footer .group1 .right .top .group-tel .tel small {
    font-size: 20px;
    margin-bottom: 6px;
  }
  #footer .group1 .right .top .group-tel .tel span {
    margin-left: 2px;
    font-size: 39px;
  }
  #footer .group1 .right .top .group-tel .tel span::before {
    width: 27px;
    height: 32px;
    margin-right: 15px;
  }
  #footer .group1 .right .top .group-tel .btn-link2 {
    width: 258px;
    margin-right: auto;
    margin-left: 12px;
    margin-top: 17px;
  }
  #footer .group1 .right .top .group-tel .btn-link2:after {
    left: 30px;
  }
  #footer .group1 .right .top .group-tel .btn-link2 a {
    font-size: 15px;
    padding: 15.5px 0 15.5px 26px;
  }
  #footer .group1 .right dl {
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #footer .group1 .right dl + dl {
    margin-top: 30px;
  }
  #footer .group1 .right dl dt {
    width: 190px;
    letter-spacing: 0.18em;
  }
  #footer .group1 .right dl dd {
    width: calc(100% - 190px);
    padding: 0;
    margin-right: 0;
  }
  #footer .group2 {
    padding: 52px 0 0;
  }
  #footer .group2 .inner {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  #footer .group2 .inner .left {
    margin-bottom: 0;
  }
  #footer .group2 .inner #socialbuttons {
    margin-right: 40px;
  }
  .hamburger:hover img {
    opacity: 0.8!important;
}
}
@media screen and (min-width: 1500px) {
  .btn-fixed {
    width: 241px;
  }

  #footer .group1 .right {
    margin-left: 83px;
  }
}
