@charset "UTF-8";
@import "destyle.css";
/*-------------------------------------
POPUP
-------------------------------------*/
.mfp-wrap {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.mfp-bg {
  transition: all 0.3s ease-out;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  background-color: #fff;
  background-color: #000;
  background-color: #d5c093;
}

.mfp-container {
  padding: 0;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.98;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-figure:after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mfp-figure.show:after {
  opacity: 1;
}

.mfp-img {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mfp-img.show {
  opacity: 1;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: 20px;
  top: 20px;
  color: #000;
}

.popupBox {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 80px;
}
.popupBox img {
  pointer-events: none;
}
.popupBox img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 250px);
  max-height: calc(100vh - 130px);
  max-height: calc(100vh - 210px);
  margin-bottom: 20px;
}
.popupBox .despArea {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  min-height: 70px;
}
.popupBox br {
  display: none;
}
.popupBox br.br {
  display: block;
}

.mfp-arrow-left:before {
  display: none;
}

.mfp-arrow-left:after {
  display: none;
}

.mfp-arrow-right:before {
  display: none;
}

.mfp-arrow-right:after {
  display: none;
}

button.mfp-arrow-left {
  background-image: url("../images/arr_left.png");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 25px center;
}

button.mfp-arrow-right {
  background-image: url("../images/arr_right.png");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: right 25px center;
}

.white-popup-block {
  animation: open 1s;
}

.mfp-removing {
  animation: close 1s;
}

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------------
MOTION
-------------------------------------*/
.fadeSimple {
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
.fadeSimple.active {
  opacity: 1;
}

.fade {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  top: 20px;
}
.fade.active {
  opacity: 1;
  top: 0;
}

.fadeFast {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  top: 20px;
}
.fadeFast.active {
  opacity: 1;
  top: 0;
}

.fadeLeft {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  left: -20px;
}
.fadeLeft.active {
  opacity: 1;
  left: 0;
}

.fadeRight {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  right: -20px;
}
.fadeRight.active {
  opacity: 1;
  right: 0;
}

.fadeDelay1 {
  transition-delay: 0s;
}

.fadeDelay2 {
  transition-delay: 0.2s;
}

.fadeDelay3 {
  transition-delay: 0.6s;
}

.fadeDelay4 {
  transition-delay: 0.9s;
}

.maskRight {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskRight.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.maskLeft {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskLeft.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.maskTop {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskTop.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.maskBottom {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskBottom.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

#button_container {
  position: fixed;
  top: 35px;
  left: 115px;
  width: 60px;
  height: 60px;
  z-index: 40;
  display: block;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}
#button_container.hide {
  visibility: none;
  opacity: 0;
}
#button_container.blackMode #toggle span {
  background-color: #fff;
}

#toggle {
  position: absolute;
  left: 14px;
  top: 21px;
  width: 34px;
  z-index: 300;
  transition: opacity 0.25s ease;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span.top {
  transform: translateY(8px) translateX(0) rotate(45deg);
}
#toggle.active span.middle {
  transform: translateY(26px) translateX(0) rotate(0);
}
#toggle.active span.bottom {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}
#toggle span {
  background-color: #44774f;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle span.middle {
  top: 8px;
  display: none;
}
#toggle span.bottom {
  top: 16px;
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  background-color: #f7f5f1;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#overlay.open {
  visibility: visible;
  opacity: 1;
}
#overlay.open #overlayBox {
  opacity: 1;
}
#overlay #overlayBox {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.25s;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#overlay #overlayBox .overlay-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  height: calc(100% - 130px);
  left: 0;
  top: 130px;
}

ul.lineList {
  position: relative;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  text-align: center;
}
ul.lineList > li {
  position: relative;
  margin: 30px 0;
}
ul.lineList > li > a {
  font-size: 16px;
  color: #44774f;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  display: inline-block;
}
ul.lineList > li.sns > a {
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  background-image: url("../images/ico_instagram.png");
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  #button_container {
    top: 0;
    left: 10px;
    width: 50px;
    height: 50px;
  }
  #toggle {
    width: 22px;
    top: 21px;
  }
  #toggle.active span.top {
    transform: translateY(4px) translateX(0) rotate(45deg);
  }
  #toggle.active span.middle {
    transform: translateY(26px) translateX(0) rotate(0);
  }
  #toggle.active span.bottom {
    transform: translateY(-4px) translateX(0) rotate(-45deg);
  }
  #toggle span.middle {
    top: 4px;
    display: none;
  }
  #toggle span.bottom {
    top: 8px;
  }
  #overlay #overlayBox .overlay-menu {
    height: calc(100% - 50px);
    top: 50px;
  }
}
/* ------------------------------------------
MAIN
------------------------------------------ */
html.hidden,
body.hidden {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  background-color: #f7f5f1;
  color: #000;
  color: #44774f;
  position: relative;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.onlyPc {
  display: block;
}

.onlySp {
  display: none !important;
}

img {
  width: 100%;
}

/* GENERAL */
a:link,
a:visited {
  color: #44774f;
  text-decoration: none;
}

a:hover {
  color: #44774f;
  text-decoration: none;
}

a {
  outline: none;
}

html,
body {
  overscroll-behavior: none;
}

#wrapper {
  text-align: center;
}

.sec {
  padding: 120px 0 120px 0;
}

.contentBox {
  padding: 0 130px;
}

#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #f7f5f1;
  z-index: 100;
  overflow: hidden;
}
#loading .imgBoxAll {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  height: 100vh;
  margin-left: -2%;
  margin-right: -7%;
}
#loading .imgBoxAll .imgBox {
  width: 50%;
  height: 100vh;
  position: relative;
}
#loading .imgBoxAll .imgBox .imgBoxInner {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transition: all 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  will-change: transform;
}
#loading .imgBoxAll .imgBox .imgBoxInner.active {
  transform: translate(0, -50%);
  opacity: 1;
}
#loading .imgBoxAll .imgBox .imgBoxInner.active2 .img:nth-child(2n+1) {
  transform: translate(220%, 0%);
}
#loading .imgBoxAll .imgBox .imgBoxInner.active2 .img:nth-child(2n) {
  transform: translate(-220%, 0%);
}
#loading .imgBoxAll .imgBox .imgBoxInner .img {
  transform: translate(0%, 0%);
  width: 100%;
  margin-bottom: -6.5%;
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
#loading .imgBoxAll .imgBox .imgBoxInner img {
  width: 100%;
}
#loading .imgBoxAll .imgBox .imgBoxInnerLeft {
  transform: translate(0, 20%);
}
#loading .imgBoxAll .imgBox .imgBoxInnerRight {
  transform: translate(0, -120%);
}

header {
  padding: 43px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 30;
}
header h1.logo img {
  width: 190px;
  margin: 0 auto;
}

.comingBox {
  position: fixed;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}
.comingBox img {
  width: 200px;
  margin-bottom: 30px;
}

.imgSlider {
  margin-bottom: 0;
}
.imgSlider * {
  vertical-align: top;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  bottom: -60px;
  height: 3px;
}
.slick-dots li {
  width: 70px;
  height: 3px;
  margin: 0 3px;
  opacity: 0.4;
}
.slick-dots li.slick-active {
  opacity: 1;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: #517553;
}
.slick-dots li button::before {
  display: none;
}

.snsList {
  position: absolute;
  right: 110px;
  top: 40px;
}
.snsList li a {
  text-indent: -9999px;
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../images/ico_instagram.png");
  background-size: 23px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

h2.mainTtl {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  margin-bottom: 60px;
}

.secGreen {
  background-color: #44774f;
  background-color: #acb49d;
  color: #fff;
}

.secGreen2 {
  background-color: #acb49d;
  color: #fff;
}

.mainDesp {
  line-height: 2.6;
}
.mainDesp p {
  margin-bottom: 25px;
}
.mainDesp p:last-child {
  margin-bottom: 0;
}

a.disable {
  pointer-events: none;
}

.mainDespMb {
  margin-bottom: 40px;
}

a.linkBtn {
  margin-bottom: 20px;
  border: 1px solid #44774f;
  padding: 20px 0px;
  width: 200px;
  display: inline-block;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.linkBtn.miniBtn {
  padding: 15px 0;
}
a.linkBtn:hover {
  background-color: #44774f;
  color: #fff;
}
a.linkBtn span.tx {
  display: inline-block;
}
a.linkBtn span.mini {
  font-size: 10px;
  display: block;
  margin-top: -5px;
}

.secGreen a.linkBtn,
.secGreen2 a.linkBtn {
  color: #fff;
  border: 1px solid #fff;
}
.secGreen a.linkBtn:hover,
.secGreen2 a.linkBtn:hover {
  background-color: #fff;
  color: #44774f;
}

a.linkBtn.btnMb {
  margin-bottom: 10px;
}

#about {
  padding-bottom: 0;
}

#news {
  padding-bottom: 0;
}

#contact {
  padding-bottom: 0;
}

.aboutImg {
  display: flex;
  padding-top: 120px;
}
.aboutImg img {
  width: 50%;
}

.office {
  padding-top: 40px;
}
.office img {
  width: 200px;
}

.access {
  padding-top: 20px;
}

footer {
  background: #fff;
  padding: 20px 0;
  position: relative;
}
footer #pagetop {
  position: absolute;
  right: 60px;
  top: 22px;
  text-indent: -9999px;
  display: block;
  text-align: left;
  width: 25px;
  height: 25px;
  display: block;
  background-color: #000;
  background-color: #44774f;
  background-image: url("../images/ico_pagetop.png");
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
footer #pagetop:hover {
  opacity: 0.6;
}
footer .copyright {
  font-size: 14px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .onlyPc {
    display: none !important;
  }
  .onlySp {
    display: block !important;
  }
  #loading {
    z-index: 100;
  }
  #loading .imgBoxAll {
    margin-left: -3%;
    margin-right: -12%;
  }
  #loading .imgBoxAll .imgBox .imgBoxInner.active3 {
    opacity: 1;
  }
  #loading .imgBoxAll .imgBox .imgBoxInner.active2 {
    transition: all 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #loading .imgBoxAll .imgBox .imgBoxInner.active2 .img:nth-child(2n+1) {
    transform: translate(120%, 0%);
  }
  #loading .imgBoxAll .imgBox .imgBoxInner.active2 .img:nth-child(2n) {
    transform: translate(-120%, 0%);
  }
  #loading .imgBoxAll .imgBox .imgBoxInnerLeft {
    transform: translate(0, 0);
    top: initial;
    bottom: 0;
  }
  #loading .imgBoxAll .imgBox .imgBoxInnerLeft .img {
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform;
    transition-delay: 0s;
    transform: translate(0, -120vh);
  }
  #loading .imgBoxAll .imgBox .imgBoxInnerLeft.active4 .img {
    transform: translate(0, 0vh);
  }
  #loading .imgBoxAll .imgBoxLeft {
    width: 100%;
  }
  #loading .imgBoxAll .imgBoxRight {
    display: none;
  }
  header {
    position: relative;
    padding: 15px 0 10px 0;
    background-color: #fff;
  }
  header h1.logo img {
    width: 80px;
  }
  header .snsList {
    right: 5px;
    top: -4px;
  }
  header .snsList li a {
    background-size: 18px auto;
  }
  .sec {
    padding: 70px 0 70px 0;
  }
  .contentBox {
    padding: 0 25px;
  }
  .slick-dots {
    bottom: 20px;
  }
  .slick-dots li {
    width: 35px;
  }
  .slick-dots li button {
    background-color: #fff;
  }
  h2.mainTtl {
    margin-bottom: 30px;
    line-height: 1;
  }
  h2.mainTtl2 {
    margin-bottom: 38px;
  }
  .mainDesp {
    font-size: 13px;
    line-height: 2.2;
  }
  .access {
    margin-bottom: 5px;
  }
  footer #pagetop {
    right: 20px;
  }
  #item {
    padding-bottom: 0;
  }
  #location {
    padding-bottom: 0;
  }
  .fadeDelay2 {
    transition-delay: 0s;
  }
  .aboutImg {
    display: block;
    padding-top: 60px;
  }
  .aboutImg img {
    width: 100%;
  }
  .aboutImgMt {
    padding-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */