@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: 0;
  right: 0;
  width: 52px;
  height: 52px;
  z-index: 20000;
  display: block;
  background-color: black;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: visible;
  opacity: 1;
  cursor: pointer;
  display: none;
}

#toggle {
  position: absolute;
  left: 10px;
  top: 18.5px;
  width: 32px;
  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: #fff;
  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;
  border: 4px solid #000;
  z-index: 20;
  background-color: #fff;
  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% - 60px);
  left: 0;
  top: 60px;
}

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;
  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 {
    display: block;
  }
}
/* ------------------------------------------
MAIN
------------------------------------------ */
html.hidden,
body.hidden {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  background-color: #fff;
  color: #000;
  position: relative;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.8;
  font-feature-settings: "palt";
}

.noLink {
  pointer-events: none;
}

.onlyPc {
  display: block;
}

.onlySp {
  display: none !important;
}

img {
  width: 100%;
}

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

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

a {
  outline: none;
}

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

.contentBox {
  padding: 0 40px;
}

header {
  padding: 100px 40px 15px 40px;
}
header .logo {
  margin-bottom: 20px;
}
header .logo img {
  width: 140px;
}
header .copy {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 90, "wght" 650;
  font-size: 14px;
  line-height: 130%;
}

footer {
  padding: 100px 40px 15px 40px;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 90, "wght" 650;
  font-size: 12px;
}

.secTtl {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 90, "wght" 650;
  font-size: 14px;
  margin-bottom: 7px;
}

.contactList {
  display: flex;
  gap: 5px;
  align-items: center;
}
.contactList li a {
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -9999px;
}
.contactList li.instagram {
  background-image: url(../images/ico_instagram.png);
  background-repeat: no-repeat;
  background-size: 25px auto;
}
.contactList li.line {
  background-image: url(../images/ico_line.png);
  background-repeat: no-repeat;
  background-size: 28px auto;
}
.contactList li.mail {
  background-image: url(../images/ico_mail.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  margin-top: 3px;
}

.addressList {
  display: flex;
  gap: 40px;
  margin-bottom: 14px;
}

a.btn {
  color: #fff;
  background-color: #000;
  padding: 4px 25px;
  display: inline-block;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 90, "wght" 650;
  font-size: 13px;
  border-radius: 100px;
}

.map {
  margin-top: 70px;
}
.map iframe {
  height: 400px;
  max-width: 100%;
}

.tx {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 95, "wght" 450;
  font-size: 12px;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .onlyPc {
    display: none !important;
  }
  .onlySp {
    display: block !important;
  }
  .mainVisual {
    position: relative;
    height: 100vh;
    height: 100dvh;
  }
  .mainVisual header {
    padding: 0 30px 0px 30px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .mainVisual .sec {
    position: absolute;
    bottom: 20px;
  }
  .contentBox {
    padding: 0 30px;
  }
  .addressList {
    display: block;
  }
  .addressList li {
    margin-bottom: 15px;
    line-height: 160%;
  }
  .map {
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 40px;
  }
  .map iframe {
    height: 260px;
  }
  footer {
    padding: 100px 30px 15px 30px;
  }
  #address {
    padding-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */