@charset "UTF-8";

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Rubik:wght@500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500&family=Noto+Sans+JP:wght@400;700&display=swap');


body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    color: #717171;
    position: relative;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    background-color: #fff;
}

img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

svg {
  width: 100%;
  height: auto;
}

.-pc {
    display: block;
}

.-sp {
    display: none;
}

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

    .-pc {
        display: none;
    }
    .-sp {
        display: block;
    }

}


/* btn */

.-backbtn {
  display: block;
  font-size: 28px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  line-height: 1.464;
  text-align: center;
  color: #D3B467;
  padding: 11px 0 8px;
  width: 36%;
  margin: 0 auto;
  border: 2px solid #D3B467;
}

@media screen and (min-width: 769px) {

  .-backbtn {
    letter-spacing: 0.02em;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
  }

  .-backbtn:hover {
    background-color: #D3B467;
    color: #fff;
  }

}

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

  .-backbtn {
    font-size: 24px;
    line-height: 1.458;
    padding: 12px 0 9px;
    width: 100%;
  }

}


/* footer */

.footer {
    background-color: #000;
}

.footer-wrapper {
    padding: 10px 0;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright-txt {
    font-size: 11px;
    color: #fff;
}

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

    .footer-wrapper {
        padding: 2.933vw 0;
    }
    
    .footer-copyright-txt {
        font-size: 10px;
    }

}

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

@-webkit-keyframes fadeInUpSmall {
    from {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
    -webkit-transform: translate3d(0, 15%, 0);
    -moz-transform: translate3d(0, 15%, 0);
    -ms-transform: translate3d(0, 15%, 0);
    -o-transform: translate3d(0, 15%, 0);
}
    to {
    opacity: 1;
    transform: none;
    }
    }
    @keyframes fadeInUpSmall {
    from {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
    -webkit-transform: translate3d(0, 15%, 0);
    -moz-transform: translate3d(0, 15%, 0);
    -ms-transform: translate3d(0, 15%, 0);
    -o-transform: translate3d(0, 15%, 0);
}
    to {
    opacity: 1;
    transform: none;
    }
}

.Blur {
  opacity: 1;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  animation-name: Blur;
}
  
@-webkit-keyframes Blur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes Blur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

@-webkit-keyframes fadeIn_bnr {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn_bnr {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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


@media screen and (min-width: 768px) {

  .fadeIn_bnr {
    animation-duration: 1.5s;
    animation-delay: 2.1s;
  }
}

/* nav */
.btn_drawer {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 52px;
  height: 52px;
  border: 1px solid #C3A75F;
  background-color: transparent;
  z-index: 1000;
  cursor: pointer;
}
.btn_drawer span {
  position: absolute;
  left: 10px;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #C3A75F;
  opacity: 1;
  transition: .25s;
}
.btn_drawer span:first-of-type {
  top: 13px;
}
.btn_drawer span:nth-of-type(2) {
  top: 24px;
}
.btn_drawer span:last-of-type {
  top: 36px;
}
.btn_drawer.open span:first-of-type {
  top: 24px;
  transform: rotate(225deg);
}
.btn_drawer.open span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.btn_drawer.open span:last-of-type {
  top: 24px;
  transform: rotate(-225deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: -101%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: .25s;
  overflow-y: auto;
}
.drawer.open {
  right: 0;
}
.drawer_inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 700px;
  padding: 60px 0;
  box-sizing: border-box;
}
.nav {
  /* position: absolute;
  top: 50%;
  left: 50%; */
  width: 94%;
  height: auto;
  margin: 0 auto;
  /* transform: translate(-50%, -50%); */
}
.drawer_item {
  display: block;
  width: 100%;
  line-height: 2em;
  font-family: 'Jost', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #C3A75F;
  text-align: center;
}
.drawer_item.large {
  line-height: 2em;
  font-size: 42px;
}

@media screen and (max-width: 768px) {
  .nav {
    padding-bottom: 30vw;
  }
  .drawer_inner {
    min-height: 100vh;
  }
  .drawer_item {
    line-height: 1.9em;
    font-size: 7.5vw;
  }
  .drawer_item.large {
    line-height: 1.9em;
    font-size: 8.75vw;
  }
}

/* news colorbox overwrite */
.newsModal #cboxLoadedContent {
  background-color: #fff;
}
.newsModal #cboxClose {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  background: url(../../common/img/icon_news_close.svg) center no-repeat;
  background-size: 100% auto;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  transition: 0.2s all;
  z-index: 200;
}

.news_modal {
  padding: 8%;
  /* background-color: #fff; */
}

@media screen and (max-width: 768px) {
  .newsModal #cboxLoadedContent {
    width: calc(100% - 8vw);
    height: calc(100vh - 8vw);
    margin: 4vw;
    box-sizing: border-box;
    background-color: transparent;
  }
  .newsModal #cboxClose {
    top: 6vw;
    right: 6vw;
    width: 40px;
    height: 40px;
  }
  .news_modal {
    min-height: calc(100vh - 8vw);
    padding: 60px 4vw 8vw;
    background-color: #fff;
  }
}