@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  /* scroll-behavior: unset; */
}
img {
  max-width: 100%;
  /* height: auto; */
}
html, body{
  height: 90%;
  -webkit-font-smoothing: antialiased;
}
body {
  line-height: 1.8em;
  min-width: 0;
  /* height: 100%;; */
}
body.modal-open {
  /* position: fixed; */
  overflow: hidden;
}
/* body {
  color: #151210;
  font-family: 'Hiragino Sans', Meiryo,sans-serif;
  font-size: 14px;
  line-height: 2.5em;
  min-width: 1200px;
} */

a {
  color: #6c757d;
  text-decoration: none;
}
a:hover,a:focus {
  text-decoration: none;
  color: #7c9464;
}
h3 {
  font-family: Dosis, arial, sans-serif;
  font-size: 16px;
  color: #7c9464;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* .normal-link {
  color: #151210;
} */

.normal-link:hover {
  text-decoration: underline;
}

a[href^="tel"] {
  cursor: default;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
}

#header.fix-on, #header.fix-off {
  background: #151210;
  position: fixed;
}

#header.fix-on {
  top: -60px;
  opacity: 0;
  -webkit-animation: header-fix-on .5s ease-in-out forwards;
  animation: header-fix-on .5s ease-in-out forwards;
}

#header.fix-off {
  top: 0;
  opacity: 1;
  -webkit-animation: header-fix-off .5s ease-in-out forwards;
  animation: header-fix-off .5s ease-in-out forwards;
}

#header .h-logo {
  padding: 19px 0 0 80px;
  width: 300px;
}
.h-logo img {
  display: none;
  /* filter: grayscale(40%); */
  width: 80px;
  height: 58px;
  position: absolute;
  top: 5px;
  left: 10px;
}
.h-logo img:hover {
  filter: grayscale(0%);
}
.show-icon {
   display: block!important;
   /* transition: all 300ms ease-in; */
   transition: .6s ease;
   /* transform: translate(50%, 55%); */
}
.hide-icon {
  /* transition: .6s ease; */
  display: none;
}
.show-row {
  display: flex!important;
  transition: all 300ms ease-in;
  /* transition: .6s ease; */
  /* transform: translateY(150px); */
}
.hide-row {
  /* transform: translateY(0px); */
  display: none;
}

#header .h-reserve {
  display: none;
}
.h-reserve-sp {
  display: none;
  position: absolute;
  top: 30vh;
  /* margin: 25vh auto; */
  text-align: center;
  width: 100%;
}

.h-reserve-sp a {
  border: 2px solid #fff;
  color: #fff;
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  line-height: 40px;
  letter-spacing: 0.2em;
  padding: 0 20px;
  -webkit-transition: .5s;
  transition: .5s;
}

.h-reserve a:before {
  content: "";
  background: url(../images/icon01_w.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 13px 0 0;
  vertical-align: -4px;
}
/* a:before: {
    background: url(../images/bg-4.jpg) no-repeat;
} */
.h-reserve a:hover {
  opacity: .5;
  border: 2px solid #7c9464;
  color: #7c9464;
}

@-webkit-keyframes header-fix-on {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes header-fix-on {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes header-fix-off {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -60px;
    opacity: 0;
  }
}

@keyframes header-fix-off {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -60px;
    opacity: 0;
  }
}

.navi-bg {
  background: url(../images/overlay.png) repeat;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .6s ease;
  transition: .6s ease;
}

.navi-bg.is-on {
  visibility: visible;
  opacity: 1;
  z-index: 50;
}

.humberger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 21px;
  right: 20px;
  width: 35px;
  height: 30px;
  z-index: 150;
}

.humberger span {
  background: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.humberger span:nth-of-type(1) {
  top: 0;
}

.humberger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.humberger span:nth-of-type(3) {
  bottom: 0;
}

.humberger.is-on span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

.humberger.is-on span:nth-of-type(2) {
  opacity: 0;
}

.humberger.is-on span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(-45deg);
  transform: translateY(-15px) rotate(-45deg);
  width: 100%;
}
/* Other elemet when hover */
/* .humberger:hover > span:hover {
  background: #7c9464;
} */

.g-navi {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  padding: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  height: 100vh;
  width: 300px;
  z-index: 100;
}

.g-navi.is-on {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.g-navi .navi-inner {
  padding: 80px 0 100px;
  overflow-y: auto;
  height: 100%;
}

.g-navi .navi-inner .navi-list > li {
  text-align: right;
  line-height: 60px;
}

.g-navi .navi-inner .navi-list > li > a {
  display: block;
  color: #fff;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 0 50px 0 0;
  position: relative;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  letter-spacing: 0.2em;
}

/* .g-navi .navi-inner .navi-list > .closed > a:before {
  background: #7c9464;
  content: '';
  position: absolute;
  left: 70px;
  top: 56%;
  width: 0;
  height: 1px;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
} */
.ion-ios-square {
  font-size: 7px;
  vertical-align: top;
}

/* .g-navi .navi-inner .navi-list > .closed > a:after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: solid #7c9464;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-out .2s;
  transition: all .3s ease-out .2s;
} */

.g-navi .navi-inner .navi-list > .closed > a:hover {
  -webkit-transform: translate(-15px, 0);
  transform: translate(-15px, 0);
  color: #7c9464;
}
.sub-menu {
  font-size: 14px!important;
  text-align: right;
  line-height: 30px;
}
.g-navi .navi-inner .navi-list > .open > a:hover,
.g-navi .navi-inner .navi-list > .first > a:hover,
.g-navi .navi-inner .navi-list > .second > a:hover {
  color: #7c9464;
  cursor: pointer;
}
.move-left{
  padding-bottom: 40px!important;
  color: #7c9464!important;
}
.first {
  margin-top: -40px;
}
.second {
  margin-top: 10px;
}
/* .g-navi .navi-inner .navi-list > .closed > a:hover:before {
  width: 150px;
  left: -80px;
}

.g-navi .navi-inner .navi-list > .closed > a:hover:after {
  left: 70px;
  opacity: 1;
} */

/* Mine */
#all_pics {
  /* width: 50vw; */
  height: 140vw;
}
.modal-dialog {
  /* height: 90%;
  overflow-y: hidden; */
}
.gallry .paddle-nav a {
  opacity: 0.1;
}
.gallry .dotnav {
  display:none;
}
.gallry .paddle-nav {
  display: flex;
}
.gallry .paddle-nav a .paddle {
  margin: 0 5px;
    width: 40px;
}

.gallry .paddle-nav {
  top: 45%;
}
.gallry .dotnav ul li:hover {
  cursor: pointer;
  border: 2px solid #7c9464;
}
.gallry .dotnav ul li.active {
  border: 2px solid #7c9464;
}
.view-modal-img {
  top: 50px;
  /* right: 40px; */
  padding: 2px !important;
  width: 100%;
  /* min-height: 380px; */
  border-radius: 4px;
  /* border: 1px solid #666; */
  box-shadow: 0 12px 30px 0 rgba(0,0,0,0.5);
  /* background-color: #ccc0; */
}
.view-modal-img img {
  min-width: 70.4vw;
  max-height: 90vh;
  max-width: 70.4vw;
}
.mid-text {
  display: flex;
  font-family: Dosis, arial, sans-serif;
  font-size: 3vw;
  color: #ffffff;
  margin: 20px auto;
  flex-direction: column;
  align-items: center;
}
.splide__slide {
    /* border: 0.2rem solid #bbbbbb; */
    /* width: 84px; */
    border: 2px solid #707d64ba;
    height: 100% !important;
    border-radius: 10px;
}
.splide {
    /* background: #2c3134; */
    padding: 1rem 0;
    /* height: 40vh; */
    max-width: 653px;
}
.main-page {
    height: 100vh;
    background: #191919;
}
.page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  background-size: cover;
  height: 40vh;
  background-position: 95% 35%;
  box-shadow: 0px 10px 20px 2px rgb(0 0 0 / 26%);
}
.aboutus {
  background-image: url(../images/page-header/aboutus-bg.jpg);
  /* background-position: 25% 25%; */
}
.contactus {
  background-image: url(../images/page-header/contactus.jpg);
  background-position: 25% 25%;
}
.aftercare {
  background-image: url(../images/page-header/aftercare-bg.jpg);
  background-position: 5% 65%;
}
.anthony {
  /* background-image: url(../images/page-header/anthony-sp.jpg); */
  background-image: url(../images/page-header/anthony-bg3.jpg);
}
.cuzmatt {
  background-image: url(../images/page-header/matt-sp1.jpg);
}
.section-logo {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: flex-end;
    /* background: #2c3134; */
    /* background: #383d41 center top no-repeat url(../images/bg-2.jpg); */
    /* background: linear-gradient(180deg,#383d41 0%,rgba(25,25,25,0.7) 100%),url(../images/bg-2.jpg); */
    /* background: linear-gradient(172deg,#383d4126 0%,rgba(25,25,25,0.7) 100%),url(../images/bg-4.jpg); */
    background: linear-gradient(172deg,#383d4126 0%,rgb(25 25 25 / 0%) 100%),url(../images/bg-4.jpg);
    background-size: cover;
    height: 100vh;
    background-position: 25% 85%;
    box-shadow: 0 12px 30px 0 rgb(0 0 0 / 50%);
}
.section-logo img {
    /* border: 1px solid #a5ad32;
    filter: grayscale(70%); */
}
.btm-gallery, .srv-gallery {
    display: flex;
    width: 100%;
}
/* .img-gallery {
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%);
    border-radius: 5px;
} */

.img-gallery {
  -webkit-filter: grayscale(90%);
  filter: grayscale(90%);
  border-radius: 5px;
  width: 99px;
  height: 148px;
  border: 2px solid #707d64ba;
  /* border-radius: 5px; */
  box-shadow: 0px 10px 34px -19px rgb(0 0 0 / 75%);
}
.img-gallery:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transform: scale(1);
    cursor: pointer;
}
/* .img-gallery :hover {
    transform: scale(1.01);
    margin: 0;
} */
.scale-up:hover {
  transform: scale(1.01);
}
.scale-up:not(:hover) {
transform: scale(1);
transition: all 0.2s ease-out;
}
.logo-sq {
  display: none;
}
.logo-center {
  /* filter: grayscale(40%); */
  width: 80px;
  height: 57px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 101;
}
/* End Mine */
.logo-center:hover {
    transition: all 300ms ease-in;
    transform: scale(1.02);
  /* filter: grayscale(0%); */
  cursor: pointer;
}
.scroll-down  {
  display: none;
}
.about-text {
  display: flex;
  flex-direction: column;
  /* font-size: 16px !important; */
}
.section-page {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0;
}
.section-text {
  font-size: 18px;
  /* font-family: Dosis, arial, sans-serif; */
  font-family: 'Roboto', sans-serif;
  color: #5d6164;
  line-height: 1.7rem;
  padding: 0 20px 20px;
  text-align: justify;
}
.section-title {
  font-family: Dosis, arial, sans-serif;
  color:#7c9464;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.4;
}
.artist-title {
  font-size: 22px;
  letter-spacing: 0.3em;
  padding-bottom: 10px;
}
/* .section-img-right {
  display: flex;
  box-shadow: 2px 3px 34px -19px rgb(0 0 0 / 75%);
  border: 2px solid #7c9464;
  padding: 10px;
  margin: auto;
  width: 90vw;
} */
.section-img-right img{
  filter: grayscale(80%);
  /* height: 318px; */
  /* border-radius: 5px; */
  /* border: 2px solid #7c9464; */
  
  /* padding: 10px; */
}
.img_thumb {
  display: flex;
  justify-content: center;
  margin: 10px;
  padding: 5px;
  text-align: center;
}
.artist-button {
    /* background-color: #7c9464; */
    /* color: white !important; */
    text-align: center;
    padding: 5% 8%;
    text-decoration: none;
    border: 2px solid #7c94648f;
    transition: opacity ease 0.2s;
    font-size: 14px;
    border-radius: 5px;
}
.artist-button:hover {
  background-color: #7c9464;
  border: 0;
  color: white !important;
  transition: all 0.5s ease-out;
}
.button-section, .load-more{
  width: 200px;
  margin: auto;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  border: 2px solid #7c94648f;
  transition: opacity ease 0.2s;
  font-size: 14px;
  border-radius: 5px;
  justify-content: center;
}
.button-section:hover, .load-more:hover {
  background-color: #7c9464;
  cursor: pointer;
  color: white !important;
  transition: all 0.5s ease-out;
}
.artist-card {
  border: 2px solid #7c94648f;
  border-radius: 5px;
  background-color: #7c946417;
  padding: 45% 5% 10% 5%;
  margin: -40% 0% 10% 0%;
  z-index: 1;
  width: 300px;
  -webkit-box-shadow: 0px 13px 20px -19px rgb(0 0 0 / 75%);
  -moz-box-shadow: 0px 13px 20px -19px rgb(0 0 0 / 75%);
  box-shadow: 0px 13px 20px -19px rgb(0 0 0 / 75%);
  transition: all 1.8s ease-in-out;
}
.artist-pic {
  filter: grayscale(80%);
  border-radius: 150px;
  margin-left: auto;
  margin-right: auto;
  z-index: 100;
  border: 2px;
  border-style: solid;
  border-color: #7c9464;
  object-fit: cover;
  width: 250px;
  height: 250px;
  -webkit-box-shadow: 0px 13px 34px -19px rgb(0 0 0 / 75%);
  -moz-box-shadow: 0px 13px 34px -19px rgba(0,0,0,0.75);
  box-shadow: 0px 13px 34px -19px rgb(0 0 0 / 75%);
  transition: all .2s ease-in-out;
  padding: 5px;
  background-color: #eef0ec;
}
.section-hr {
  color: #5a56568a;
  /* margin-top: 60px; */
}
.profile-hr {
  border: 1px solid #7c94648f;
  width: 25%;
  opacity: inherit;
  margin: 1rem auto 1.5rem;
}
.meet-artist, .shop {
  padding: 10px 0 0;
  background-color: #f9f9f9;
}
.video-prom {
  padding: 0 20px;
}
.video-prom iframe {
  /* box-shadow: 0px 13px 34px -19px rgb(0 0 0 / 75%); */
  width: 100%;
  height: 220px;
}
#our-shop {
  position:relative;
  top:-60px
}
.map {
  padding: 0;
}
.insta_link {
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  letter-spacing: 2px;
  margin-top: 5px;
  font-size: 18px;
}
.instabrugernavn {
  display: inline-block;
  margin-top: -30%!important;
}
.img-row {
  padding: 5px;
}
/* Begin Owl-Carousel */
.testimony-wrap {
  display: block;
  position: relative;
  padding: 5px 10px;
}
.testimony-wrap .user-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  border: 4px solid #fff;
}
.testimony-wrap .text {
  /* position: relative; */
  font-family: Dosis, arial, sans-serif;
  display: flex;
  flex-direction: column;
}
.review-link {
  /* padding-top: 20px; */
}
.review-text {
  height: 90px;
}
.stars {
  display: flex;
  opacity: 1;
  /* padding-bottom: 10px; */
}
.stars i {
  font-size: 20px;
  color: #f8b805;
  padding-right: 5px;
}
.testimony-wrap .name {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  color: #000;
}
.testimony-wrap .position {
  padding-top: 10px;
  font-size: 16px;
  color: #7c9464;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-stage-outer {
  padding-top: 1.5em;
  position: relative;
}
  .owl-carousel .owl-item {
    opacity: 1;
  }
.owl-carousel .owl-item.active {
  opacity: 1;
  height: 215px;
}
.owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -10px;
  color: rgba(0, 0, 0, 0.2) !important;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  }
}
.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .owl-carousel .owl-nav .owl-prev span:before,
  .owl-carousel .owl-nav .owl-next span:before {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
  }
}
.owl-carousel .owl-nav .owl-prev:hover span:before,
.owl-carousel .owl-nav .owl-next:hover span:before {
  color: #ab6a29;
}
.owl-carousel .owl-nav .owl-prev {
  right: 0;
  margin-right: 20px;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
}
.owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot:focus {
  outline: none !important;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #7c9464;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
/* End Owl-Carousel */

/* Begin Reviews */
.reviews {
  padding: 30px 0;
}
.item {
  box-shadow: 0px 13px 20px -19px rgb(0 0 0 / 75%);
  border: 2px solid #7c94648f;
  border-radius: 5px;
  background-color:transparent;
  height: 160px;
  /* padding: 45% 5% 10% 5%;
  margin: -40% 0% 10% 0%; */
}
.pointer svg {
  position: absolute;
  height: 15px;
  bottom: 41px;
  left: 60px;
}
.reviewer {
  position: absolute;
  font-family: Dosis, arial, sans-serif;
  display: flex;
  margin: 20px;
  font-size: 16px;
  /* flex-direction: column; */
  letter-spacing: .1rem;
}
.reviewer span {
  /* padding-bottom: 5px; */
  text-shadow: 1px 1px 1px #c5bfbc;
  font-size: 16px;
  padding-right: 5px;
}

/* .all-reviews {
  display: flex;
  flex-direction: column;
} */
.from-google {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* margin: 0 0 30px 0; */
}
.from-google img {
  width: 30px;
  margin-right: 20px;
}
.rating-percent {
  /* width: 60px; */
  font-size: 20px;
  margin-right: 20px;
}
.all-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.all-reviews .company {
  font-family: Dosis, arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.all-reviews .stars {
  padding: 10px 0;
}
/* End Reviews */

/* Begin Mark-ups */
#about {
  position: absolute;
  bottom: 60px;
}
#artists {
  /* margin-bottom: 40px; */
}
/* End Mark-ups */
#mainimage {
  background: #151210;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
/* Begin Our Location */
.our-location {
  font-family: 'Roboto', sans-serif;
  color: #5d6164;
  font-size: 16px;
  letter-spacing: 0.1rem;
  margin: auto;
  padding-bottom: 30px;
  line-height: 25px;
}
.days {
  /* padding-top: 5px; */
}
.days .row {
  padding-bottom: 5px;
}
.our-location h3 {
  color: #212529;
  text-shadow: 1px 1px 1px #c5bfbc;
  font-size: 18px;
  text-transform: capitalize !important;
  padding-bottom: 10px;
}
.our-location p {
  line-height: 1.7rem;
  text-align: justify;
  padding-top: 10px;
  /* margin-right: 60px; */
}
.address {
  padding-bottom: 10px;
}

/* End Our Location */
#mainimage:before {
  content: "";
  background: url(../images/overlay.png) repeat;
  opacity: .5;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* FAQ's */
.faq {
  border: 2px solid #7c94648f;
  border-radius: 5px;
  background-color: #7c946417;
  padding: 0;
  margin-bottom: 20px;
  z-index: 1;
  -webkit-box-shadow: 1px 2px 20px -19px rgb(0 0 0 / 75%);
  -moz-box-shadow: 1px 2px 20px -19px rgb(0 0 0 / 75%);
  box-shadow: 1px 2px 20px -19px rgb(0 0 0 / 75%);
  font-size: 20px;
  font-family: Dosis, arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.5px;

}
.question {
  padding: 5px 10px;
  cursor: pointer;
  height:auto;
  cursor:pointer;
  border-bottom: 1px solid #eef0ec;
  transition: all .5s ease-in-out;
}
.answer {
  visibility: hidden;
  transition: visibility .5s, max-height .5s;
  max-height: 0;
  overflow: hidden;
  border-top: none;
 }
 .add-bottom-line {
    border-bottom: 1px solid #7c94648f;
 }
 .answer.open {
  visibility: visible;
  max-height: 75vh;
}
.answer-content {
  font-family: 'Roboto', sans-serif;
  color: #5d6164;
  font-size: 14px;
  padding: 10px;
  text-align: justify;
}
.header-text {
  font-family: 'Roboto', sans-serif;
  color: #5d6164;
  font-size: 16px;
  /* letter-spacing: 0.1em; */
  line-height: 1.5;
  text-align: justify;
}

.header-indicator {
  color: #7c94648f;
  font-size: 20px;
  padding-right: 10px;
}
.x-acc-header-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

/* Contact */
.contact-view {
  border: 2px solid #7c94648f;
  border-radius: 5px;
  width: 100%;
  background-color: #7c946417;
  padding: 0 20px 20px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 13px 34px -19px rgb(0 0 0 / 75%);
  -moz-box-shadow: 0px 13px 34px -19px rgba(0,0,0,0.75);
  box-shadow: 0px 13px 34px -19px rgb(0 0 0 / 75%);
}
.input-snd {
  width: 100%;
}
.ticket-wrapper .col-md-6, .contact-frm-box {
  padding-top: 5px;
}
.form-group label {
  font-family: 'Roboto', sans-serif;
  /* padding-bottom: 10px; */
}
label.error {
  color: #ba1717bd;
  font-size: 14px;
}
.form-group input {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  border: 2px solid #7c94648f;
  border-radius: 3px;
  height: 30px;
}
.form-group textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  border: 2px solid #7c94648f;
  border-radius: 3px;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group textarea:focus {
  border: 3px solid #7c94648f;
  outline: 0;
  box-shadow: 0;
}
.form-group select {
  font-family: 'Roboto', sans-serif;
  border: 2px solid #7c94648f;
  border-radius: 3px;
  height: 30px;
  padding: 0 2px;
  font-size: 15px;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(0.8em + 1px),
    calc(100% - 15px) calc(0.8em + 1px);
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}
.form-group select:focus {
  border: 3px solid #7c94648f;
  outline: 0;
  box-shadow: 0 0 0 0 #7c94648f;
  background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%);
  background-position:
    calc(100% - 15px) calc(0.8em + 1px),
    calc(100% - 20px) calc(0.8em + 1px);
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}
input[type=file]::file-selector-button {
  border: 1px solid #7c94648f;
  border-right: 2px solid #7c94648f;
  transition: all 0.5s ease-out;
  cursor: pointer;
  font-size: 14px;
  height: 30px;
}

input[type=file]::file-selector-button:hover {
  background-color: #7c94648f;
  /* border: 2px solid #00cec9; */
  color: #fff
}
input[type=file] {
  cursor: pointer;
}
.button-form {
  width: 140px;
  margin: 20px auto 0;
  /* padding: 10px; */
  text-align: center;
  text-decoration: none;
  border: 2px solid #7c94648f;
  transition: opacity ease 0.2s;
  font-size: 16px;
  border-radius: 5px;
  justify-content: center;
}
.button-form:hover {
  background-color: #7c9464;
  cursor: pointer;
  color: white !important;
  transition: all 0.5s ease-out;
}

/* Begin Footer */
.site-footer {
  background: #161311;
  position: relative;
  z-index: 15;
  color: #f1f1f1;
  padding: 0;
  margin-top: -10px;
}
.footer-logo {
  text-align: center;
  margin: auto;
}
.footer-logo img {
  width: 150px;
    margin: 20px 0 5px;
    height: 105px;
}
.footer-menu {
  text-align: center;
  padding: 10px 0;
}
.footer-menu a {
  color:#f1f1f1;
  padding-right: 20px;
  font-family: Dosis, arial, sans-serif;
  /* font-weight: bold; */
  font-size: 14px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}
.footer-menu a:hover,
.footer-social i:hover {
  color: #7c9464;
}
.footer-social {
  text-align: center;
  /* padding: 10px 0; */
}
.footer-social i {
  font-size: 26px;
  color: #f1f1f1;
  padding-right: 20px;
}
.bottom-bar {
  padding: 0 0 10px;
  text-align: center;
  font-size: 12px;
}

/* Artist Page */
.gallery {
  margin: 0 auto 30px;
  width: 90%;
}
.artist-gallery {
  /* display: flex; */
  flex-wrap: wrap;
}
.picture {
  display: none;
}
.artist-info {
  align-items: center;
}
.personal h3 {
  font-family: Dosis, arial, sans-serif;
  letter-spacing: 0.2rem;
  font-size: 22px;
  color: #7c9464;
}
.artist-hr {
  border: 1px solid #7c94648f;
  width: 10%;
  opacity: inherit;
  margin: 1rem 0;
}
.left-panel {
  position: relative;
}

#mainimage:before {
  content: "";
  background: url(../images/overlay.png) repeat;
  opacity: .5;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

#mainimage .main-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-30%);
  transform: translate(-50%,-30%);
  width: 450px;
  -webkit-transition: all 2.5s ease;
  transition: all 2.5s ease;
  opacity: 0;
  z-index: 10;
}

#mainimage .main-logo.is-on {
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  opacity: 1;
}

#mainimage .page-scroll {
  display: inline-block;
  color: #fff;
  font-family: Dosis, arial, sans-serif;
  padding-top: 60px;
  position: absolute;
  bottom: 1%;
  text-align: center;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  z-index: 10;
}

#mainimage .page-scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
}

#mainimage .page-scroll span:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: pagescroll 2s infinite;
  animation: pagescroll 2s infinite;
}

#mainimage .page-scroll.is-on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

@-webkit-keyframes pagescroll {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pagescroll {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*------------
zoom slider
--------------*/
.zs-enabled {
  position: relative;
}

.zs-enabled .zs-slideshow,
.zs-enabled .zs-slides,
.zs-enabled .zs-slide {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide {
  background: transparent none no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide.active {
  visibility: visible;
  opacity: 1;
}

#middle {
  background: #fff;
  position: relative;
  z-index: 1;
}

.t-h3 {
  border-bottom: 4px solid #151210;
  display: table;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 46px;
  letter-spacing: 2px;
  line-height: 1;
  padding: 0 0 15px;
  margin: 0 auto 60px;
  text-align: center;
}

.t-inner {
  margin: 0 auto;
  width: 1024px;
}

.sec00 {
  padding: 20px 0;
}

.sec01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 150px 0 0;
}

.sec01 .sec01-bg {
  background: url(../images/sec01_img01.jpg) no-repeat 50% 0;
  background-size: cover;
  height: 600px;
  width: calc(50% - 28px);
}

.sec01 .sec01-info {
  width: calc(50% - 28px);
}

.sec01 .sec01-info .inner {
  width: 484px;
}

.sec01 .sec01-info .jp {
  margin: 0 0 50px;
}

.sec01 .sec01-info .en {
  margin: 0 0 40px;
}

.sec01 .sec01-ttl {
  border-bottom: 4px solid #151210;
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 46px;
  letter-spacing: 2px;
  line-height: 1;
  padding: 0 0 15px;
  margin: 0 0 40px;
}

.sec02 {
  padding: 150px 0 0;
}

.sec02 .sec02-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -56px -28px 40px;
}

.sec02 .sec02-gallery li {
  margin: 56px 28px 0;
  width: 214px;
  overflow: hidden;
}

.sec02 .sec02-gallery li img {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.sec02 .sec02-gallery li:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sec03 {
  padding: 150px 0 0;
}

.sec03 .t-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sec03 .sec03-block {
  padding: 0 0 90px;
  position: relative;
  width: 305px;
}

.sec03 .sec03-block .ttl {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: 2px;
  padding: 0 0 40px;
  margin: 0 0 35px;
  position: relative;
}

.sec03 .sec03-block .ttl:after {
  background: #151210;
  content: "";
  height: 4px;
  width: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec03 .sec03-block .jp {
  margin: 0 0 25px;
  letter-spacing: 1px;
}

.sec03 .sec03-block .btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec04 {
  padding: 150px 0 0;
}

.sec04 .sec04-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -56px -28px 0;
}

.sec04 .sec04-post li {
  overflow: hidden;
  margin: 56px 28px 0;
  width: 304px;
}

.sec04 .sec04-post .post-img {
  float: left;
  margin: 0 25px 0 0;
  width: 130px;
  overflow: hidden;
}

.sec04 .sec04-post .post-img img {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.sec04 .sec04-post li:hover .post-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sec04 .sec04-post .post-info .time {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  margin: 0 0 5px;
}

.sec04 .sec04-post .post-info .ttl {
  line-height: 1.8em;
}

.sec05 {
  padding: 100px 0;
}

.sec05 .sec05-info {
  text-align: center;
}

.sec05 .sec05-info .inner {

}

.sec05 .sec05-info .sec05-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 50px;
}

.sec05 .sec05-info .sec05-wrapper .logo {
  width: 250px;
  margin-right: 30px;
}

.sec05 .sec05-info .sec05-wrapper .reserve a {
  border: 2px solid #151210;
  color: #151210;
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  line-height: 46px;
  padding: 0 20px;
  -webkit-transition: .5s;
  transition: .5s;
}

.sec05 .sec05-info .sec05-wrapper .reserve a:before {
  content: "";
  background: url(../images/share/icon01_b.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 13px 0 0;
  vertical-align: -4px;
}

.sec05 .sec05-info .sec05-wrapper .reserve a:hover {
  opacity: .5;
}

.sec05 .sec05-info .jp {
  margin: 0 0 50px;
}

.sec05 .sec05-ttl {
  border-bottom: 4px solid #151210;
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 46px;
  letter-spacing: 2px;
  line-height: 1;
  padding: 0 0 15px;
  margin: 0 0 40px;
}

.sec05 .sec05-map {
  height: 455px;
  width: calc(50% - 28px);
}

.top-instagram {
  padding: 50px 0 0;
}

.pagetop {
  text-align: right;
}

.pagetop a {
  position: relative;
  right: 5%;
  bottom: -33px;
  display: inline-block;
  width: 67px;
}

#footer {
  background: #eee;
  padding: 90px 0;
  width: 100%;
  z-index: 0;
}

#footer .f-sns {
  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;
  margin: 0 0 90px;
}

#footer .f-sns .ttl {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin: 0 16px 0 0;
  letter-spacing: 1px;
}

#footer .f-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .f-sns ul li {
  margin: 0 16px;
  line-height: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

#footer .f-sns ul li:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

#footer .site-map ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 50px;
}

#footer .site-map ul li {
  line-height: 1;
}

#footer .site-map ul li:after {
  content: "|";
  margin: 0 10px;
}

#footer .site-map ul li a {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  padding: 0 0 5px;
}

#footer .site-map ul li a:after {
  content: "";
  background: #151210;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

#footer .site-map ul li a:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#footer .copyright {
  text-align: center;
  line-height: 1;
}

#footer .copyright small {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 13px;
}


.page-ttl {
  /* background: #151210 url(../images/share/page_ttl_bg.png) no-repeat 50% 50%; */
  /* background-size: cover; */
  width: 100%;
  height: 30vh;
  /* overflow: hidden; */
  position: absolute;
  top: 20vh;
  z-index: 1;
}

.int-page-ttl {
  width: 100%;
  height: 40vh;
  position: relative;
  padding-top: 10vh;
  z-index: 1;
}

/* .page-ttl:before {
  content: "";
  background: url(../images/overlay.png) repeat;
  opacity: .5;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
} */

.page-ttl h2, .int-page-ttl h2 {
  color: transparent;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  line-height: 1.7em;
  letter-spacing: 3px;
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  /* width: 50%; */
  margin: auto;
  z-index: 10;
}
.int-page-ttl h2 {
  top: 55%;
}

.comp-name {
  font-family: Dosis, arial, sans-serif;
  text-align: center;
  /* margin-bottom: 100px; */
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.page-loader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fefefe;
  /* z-index: 100000; */
}
.loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 1px solid rgba(0,0,0, 0.08);
  border-right: 1px solid rgba(0,0,0, 0.08);
  border-bottom: 1px solid rgba(0,0,0, 0.08);
  border-left: 1px solid rgba(0,0,0, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
  -moz-animation: spinner 700ms infinite linear;
  -ms-animation: spinner 700ms infinite linear;
  -o-animation: spinner 700ms infinite linear;
  animation: spinner 700ms infinite linear;
  z-index: 100001;
}
.page-wrapper {
  margin: 0 auto;
  /* width: 1024px; */
  overflow-x: hidden;
}
body.modal-open {
  /* /* when modal active */
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  /* Other browsers */
  overscroll-behavior: none;
}

/* Delete */
.breadcrumb {
  margin: 10px 0;
  width: 100%;
}

.breadcrumb ul {
  font-family: 'Monda','FP-ヒラギノ角ゴ ProN W6';
  margin: 0 auto;
  width: 1024px;
}

.breadcrumb ul li {
  display: inline;
  font-weight: bold;
}

.breadcrumb ul li + li:before {
  content: "> ";
  font-weight: bold;
  padding: 0 5px;
}

.breadcrumb ul a {
  color: #151210;
  font-weight: bold;
}

.breadcrumb ul a:hover {
  text-decoration: underline;
}

#under-middle {
  padding: 50px 0 100px;
  overflow: hidden;
}

#under-middle .contents p + p {
  margin-top: 15px;
}

/*------------
パーツ
--------------*/
.h301 {
  text-align: center;
  margin: 0 0 60px;
}

.h301 .en {
  display: block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 35px;
}

.h301 .en:after {
  content: "";
  background: #151210;
  height: 5px;
  width: 70px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.h301 .jp {
  display: block;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.h302 {
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-size: 25px;
  text-align: center;
  padding: 0 0 25px;
  margin: 0 0 60px;
  letter-spacing: 2px;
  position: relative;
}

.h302:after {
  content: "";
  background: #151210;
  height: 5px;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.h401 {
  border-bottom: 1px solid #151210;
  margin: 0 0 35px;
  position: relative;
}

.h401 .en {
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  padding: 0 0 15px;
  margin: 0 15px 0 0;
}

.h401 .en:after {
  content: "";
  background: #151210;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.h401 .jp {
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.h501 {
  padding: 0 0 0 23px;
  margin: 0 0 15px;
  position: relative;
}

.h501:before {
  position: absolute;
  top: 50%;
  left: 0;
  color: #151210;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
  content: "◆";
  letter-spacing: 0px;
}

.h501 .en {
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  margin: 0 15px 0 0;
}

.h501 .jp {
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.btn-style01 {
  color: #151210;
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 45px;
  padding: 0 45px;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn-style01:hover:before {
  -webkit-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
}

.btn-style01:hover:after {
  -webkit-transform: translate(3px, 3px);
  transform: translate(3px, 3px);
}

.btn-style01:before, .btn-style01:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid #151210;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: .2s;
  transition: .2s;
}



.tall + .tall {
  margin-top: 100px;
}

.short + .short {
  margin-top: 100px;
}

.u-intro {
  margin-bottom: 100px;
}

.bg-gray {
  position: relative;
  padding: 0 0 100px;
}

.bg-gray:before {
  background: #eee;
  content: "";
  position: absolute;
  top: 100px;
  bottom: 0;
  left: -100%;
  right: -100%;
  z-index: -1;
}

.l-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-style01 .left-side {
  width: calc(50% - 25px);
}

.l-style01 .right-side {
  width: calc(50% - 25px);
}

.box-style01 {
  border: 2px solid #151210;
  padding: 25px;
}

.box-style01 .box-ttl {
  margin: 0 0 15px;
}

.box-style01 .box-ttl .en {
  display: inline-block;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  margin: 0 15px 0 0;
}

.box-style01 .box-ttl .jp {
  display: inline-block;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.list-style01 {
  margin-left: 15px;
}

.list-style01 li {
  position: relative;
  padding-left: 15px;
  line-height: 1.8em;
}

.list-style01 li:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  background: transparent;
  font-size: 5px;
  content: '-';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  letter-spacing: 0;
}

.list-style02 li {
  padding: 0 0 0 20px;
  position: relative;
}

.list-style02 li:last-child {
  margin: 0;
}

.list-style02 li:before {
  background: #151210;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
}

.dl-style01 dt {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  line-height: 1.8em;
  margin: 0 0 5px;
}

.dl-style01 dd {
  margin: 0 0 15px;
  line-height: 1.8em;
}

/*------------
ABOUT
--------------*/
.about-hiro {
  text-align: center;
  margin: 0 auto 100px;
  width: 1200px;
}

.interior-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -30px -1.6666% 0;
}

.interior-list > li {
  margin: 30px 1.6666% 0;
  width: 30%;
  overflow: hidden;
}

.interior-list > li img {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.interior-list > li:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*------------
GALLERY
--------------*/
.select-area {
  background: #eee;
  padding: 25px 0;
  margin: 0 0 75px;
}

.select-area .page-wrapper {
  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;
}

.select-area .select-box {
  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;
  width: 48%;
}

.select-area .select-ttl {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 2px;
  position: relative;
  padding: 0 25px 0 30px;
}

.select-area .select-ttl:before {
  background: #151210;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 5px;
  margin-top: -3px;
}

.select-area select {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #fff url(../images/select_down.svg) no-repeat;
  background-size: 24px 24px;
  background-position: right 11px center;
  border-radius: 0;
  font-size: 16px;
  vertical-align: middle;
  height: 40px;
  padding: 10px 12px;
  border: none;
  color: #828c9a;
  width: 100%;
}

.under-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -56px -28px 0;
}

.under-gallery li {
  margin: 56px 28px 0;
  width: 214px;
  overflow: hidden;
}

.under-gallery li img {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.under-gallery li:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.single-gallery {
  margin: 0 auto;
  width: 1024px;
}

.gallery-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.gallery-wrapper .left-side {
  width: 400px;
}

.gallery-wrapper .right-side {
  width: 570px;
}

.gallery-wrapper .gallery-main {
  text-align: center;
  margin: 0 0 25px;
  width: 400px;
}

.gallery-wrapper .gallery-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery-wrapper .gallery-thumb li {
  cursor: pointer;
  margin: 0 10px;
  width: 50px;
  position: relative;
}

.gallery-wrapper .gallery-thumb li img {
  background: #fff;
  -o-object-fit: cover;
  object-fit: cover;
  width: 50px;
  height: 50px;
}

.gallery-wrapper .gallery-thumb li.over:before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  border: 1px solid #9e9e9e;
  width: 54px;
  height: 54px;
}

.gallery-wrapper .gallery-ttl {
  border-bottom: 3px solid #151210;
  font-family: Dosis, arial, sans-serif, "FP-ヒラギノ角ゴ ProN W6";
  font-weight: bold;
  font-size: 25px;
  padding: 0 0 5px;
  margin: 0 0 25px;
  letter-spacing: 2px;
}

/*------------
PRICE
--------------*/
.table-price {
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
  width: 100%;
  background: #fefefe;
}

.table-price th {
  width: 30%;
  padding: 15px;
  vertical-align: 0;
  border: #ddd 1px solid;
  border-right: #ddd 1px dashed;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  line-height: 1.5em;
}

.table-price td {
  padding: 15px;
  vertical-align: 0;
  border: #ddd 1px solid;
  border-left: none;
  line-height: 1.5em;
}

/*------------
ARTIST
--------------*/
.artist-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

.artist-list > li {
  margin: 0 2% 15px;
  width: 300px;
  position: relative;
  overflow: hidden;
}

.artist-list .artist-img:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 5;
}

.artist-list .artist-name {
  color: #fff;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  letter-spacing: .2rem;
  opacity: 0;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 100%;
  padding: 0 0 0 16px;
  z-index: 10;
  word-wrap: break-word;
}

.artist-list > li:hover .artist-img:before {
  opacity: 1;
}

.artist-list > li:hover .artist-name {
  opacity: 1;
  letter-spacing: 0.5rem;
}

.single-artist {
  margin: 0 auto;
  width: 1024px;
}

.artist-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 30px;
}

.artist-wrapper .left-side {
  width: 300px;
}

.artist-wrapper .right-side {
  width: 680px;
}

.artist-wrapper .artist-data .job {
  font-family: Dosis, arial, sans-serif;
  color: #9E9E9E;
  line-height: 1;
  margin: 0 0 5px;
}
.artist-message{
  margin-bottom: 20px
}

.artist-insta-link{
  background: url('../images/share/instagram.png') 0 center no-repeat;
  background-size: 23px 23px;
  line-height: 23px;
  padding-left: 33px;
  transition: .5s;
}
.artist-insta-link:hover{
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.artist-wrapper .artist-name {
  border-bottom: 3px solid #151210;
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  font-size: 25px;
  padding: 0 0 5px;
  margin: 0 0 25px;
  letter-spacing: 2px;
}

/*------------
ACCESS
--------------*/
.u-map {
  margin: 0 0 50px;
}

.dl-access {
  line-height: 1.8em;
  margin: 0 0 50px;
}

.dl-access dt {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  float: left;
  letter-spacing: 2px;
}

.dl-access dd {
  padding: 0 0 0 100px;
}

.card-access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.66666%;
}

.card-access > li {
  margin: 0 1.66666%;
  width: 30%;
}

.card-access .card-img {
  text-align: center;
  margin: 0 0 25px;
}

.card-access .card-info {
  line-height: 1.7em;
}

.parking-message {
  text-align: center;
  margin: 0 0 50px;
}

/*------------
APPOINTMENT
--------------*/
.btn-appointment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.btn-appointment li {
  width: 48%;
}

.btn-appointment .btn-style01 {
  width: 100%;
}

/*------------
CONTACT
--------------*/
.contact-message {
  text-align: center;
  margin: 0 0 50px;
}

.contact-form {
  margin: 0 auto;
  width: 1000px;
}

.contact-form table {
  background: #fff;
  border: 10px solid #eee;
  border-collapse: collapse;
  margin: 0 0 60px;
  width: 100%;
}

.contact-form table th {
  border: 1px solid #eee;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  padding: 20px;
  vertical-align: middle;
  text-align: left;
}

.contact-form table th .red {
  margin: 0 0 0 10px;
}

.contact-form table td {
  border: 1px solid #e1e1e1;
  padding: 20px;
}

.contact-form .form-dl {
  line-height: 1;
}

.contact-form .form-dl dt {
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  line-height: 1;
  margin-bottom: 10px;
}

.contact-form .form-dl dd + dt {
  margin-top: 15px;
}

.contact-form input[type="text"], .contact-form input[type="number"], .contact-form input[type="email"], .contact-form textarea {
  -webkit-appearance: none;
  background: #DFDFDF;
  border: 1px solid #DFDFDF;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

.contact-form select {
  background: #DFDFDF;
  border: 1px solid #DFDFDF;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px 12px;
}

.contact-form input[type="text"] {
  width: 100%;
}

.contact-form input[type="text"].zip_code1 {
  width: 80px;
}

.contact-form input[type="text"].zip_code2 {
  width: 100px;
}

.contact-form input[type="text"].appoint {
  margin: 0 10px 0 0;
  width: 40%;
}

.contact-form input[type="text"].appoint_time {
  width: 50%;
}

.contact-form input[type="number"].your_age {
  margin: 0 10px 0 0;
  width: 70px;
}

.contact-form input[type="file"] {
  width: 100%;
}

.contact-form textarea {
  height: 200px;
}

.contact-form .mwform-radio-field {
  margin: 0 10px 0 0;
}

.contact-form input[type="radio"] {
  vertical-align: 0;
  margin: 0 5px 0 0;
}

.contact-form .form-ul li + li {
  margin-top: 10px;
}

.contact-form .submit_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-form .submit_btn [type="submit"] {
  -webkit-appearance: none;
  background: #151210;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 13px 50px;
  letter-spacing: 3px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.contact-form .submit_btn [type="submit"]:hover {
  opacity: .7;
}

.contact-form .submit_btn [type="submit"].back-btn {
  background: #999;
  margin-right: 30px;
}

/*------------
投稿レイアウト
--------------*/
#under-post {
  padding: 90px 0 0;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 1024px;
}

#under-post .contents {
  float: left;
  width: 780px;
}

#under-post .post-category {
  float: right;
  width: 200px;
  padding: 25px;
  background: #212121;
  color: #fff;
  z-index: 10;
}

#under-post .post-category .category-ttl {
  border-bottom: 1px solid #fff;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.5em;
  padding: 0 0 5px;
  margin: 0 0 20px;
}

#under-post .post-category ul li {
  margin: 0 0 15px;
  width: 100%;
}

#under-post .post-category ul li a {
  color: #fff;
  display: block;
  font-size: 13px;
  line-height: 1.5em;
  -webkit-transition: .5s;
  transition: .5s;
}

#under-post .post-category ul li a:hover {
  opacity: .5;
}

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.666% -50px;
}

.post-list > li {
  border-bottom: 1px solid #ccc;
  padding: 0 0 25px;
  margin: 0 2.666% 50px;
  width: 28%;
}

.post-list .post-img {
  text-align: center;
  margin: 0 0 25px;
  overflow: hidden;
}

.post-list .post-img a img {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(100%);
}

.post-list .post-img a:hover img {
  opacity: .5;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.post-list .post-info .ttl {
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-size: 15px;
  margin: 0 0 15px;
}

.post-list .post-info .ttl a {
  -webkit-transition: .5s;
  transition: .5s;
}

.post-list .post-info .ttl a:hover {
  opacity: .5;
}

.post-list .post-info .txt {
  line-height: 1.5em;
  margin: 0 0 20px;
}

.post-list .post-info .category {
  line-height: 1;
  margin: 0 0 15px;
}

.post-list .post-info .category li {
  display: inline-block;
}

.post-list .post-info .category li a {
  color: #fff;
  background: #212121;
  border-radius: 10px;
  font-size: 12px;
  display: inline-block;
  padding: 5px 10px;
  -webkit-transition: .5s;
  transition: .5s;
}

.post-list .post-info .category li a:hover {
  opacity: .5;
}

.post-list .post-info .time {
  font-family: Dosis, arial, sans-serif;
  line-height: 1;
}

.single-post p {
  margin-bottom: 15px;
}

.single-post .first-block {
  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;
  margin: 0 0 30px;
}

.single-post .first-block .post-img {
  width: 40%;
}

.single-post .first-block .post-data {
  width: 55%;
}

.single-post .first-block .post-data .ttl {
  border-bottom: 3px solid #151210;
  font-family: 'Monda','FP-ヒラギノ角ゴ ProN W6';
  font-size: 20px;
  padding: 0 0 5px;
  margin: 0 0 15px;
  letter-spacing: 2px;
}

.single-post .first-block .post-data .category {
  line-height: 1;
  margin: 0 0 15px;
}

.single-post .first-block .post-data .category li {
  display: inline-block;
}

.single-post .first-block .post-data .category li a {
  color: #fff;
  background: #212121;
  border-radius: 10px;
  font-size: 12px;
  display: inline-block;
  padding: 5px 10px;
  -webkit-transition: .5s;
  transition: .5s;
}

.single-post .first-block .post-data .category li a:hover {
  opacity: .5;
}

.single-post .first-block .post-data .time {
  font-family: Dosis, arial, sans-serif;
  line-height: 1;
  margin: 0 0 10px;
}

.post-number {
  font-family: Dosis, arial, sans-serif;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 0;
}

.post-number a {
  color: #aaa;
  display: inline-block;
  padding: 10px 16px;
  -webkit-transition: .5s;
  transition: .5s;
}

.post-number a:hover {
  color: #151210;
}

.post-number .current {
  color: #151210;
  display: inline-block;
  padding: 10px 16px;
}

/*------------
common
--------------*/
.fixed:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* hover effect */
.fade {
  -webkit-transition: .2s;
  transition: .2s;
}

/* .fade:hover {
  opacity: .5;
} */

/*Font Style*/
.bold {
  font-weight: bold;
}

.red {
  color: #ff878d;
}

/*Margin*/
.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.fo46-20 {
  font-size: 46px !important;
}

.pt60-20 {
  padding-top: 60px !important;
}

/*Text-align*/
.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

/*Layout*/
.l-imgR .l-img {
  float: right;
  margin: 0 0 0 35px;
  width: 40%;
}

.l-imgR .l-img figcaption {
  text-align: center;
}

.l-imgR .l-info {
  overflow: hidden;
}

.l-imgL .l-img {
  float: left;
  margin: 0 35px 0 0;
  width: 40%;
}

.l-imgL .l-img figcaption {
  margin: 10px 0 0;
  text-align: center;
}

.l-imgL .l-info {
  overflow: hidden;
}

.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col2 > li {
  margin: 0 0 30px;
  width: 49%;
}

.col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1%;
}

.col3 > li {
  margin: 0 1% 25px;
  width: 31.3333333%;
}

.col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1%;
}

.col4 > li {
  margin: 0 1% 15px;
  width: 23%;
}

/*------------
decode-text
--------------*/
.text-animation {
  display: inline-block;
  color: transparent;
  text-transform: uppercase;
  position: relative;
}

.text-animation:before {
  content: '';
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 0;
  height: 1.2em;
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
}

.text-animation.state-1:before {
  width: 1px;
}

.text-animation.state-2:before {
  width: .9em;
}

.text-animation.state-3 {
  color: #fff;
}

.text-animation.state-3:before {
  width: 0;
}

/*------------
slide animation
--------------*/
@media screen and (min-width: 800px) {
  .fade-up {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fade-up.is-on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .slide-left {
    position: relative;
  }
  .slide-left:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: 1.3s ease-in-out;
    transition: 1.3s ease-in-out;
    z-index: 1;
  }
  .slide-left.is-on:before {
    width: 0;
  }
  .slide-right {
    position: relative;
  }
  .slide-right:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: 1.3s ease-in-out;
    transition: 1.3s ease-in-out;
    z-index: 1;
  }
  .slide-right.is-on:before {
    width: 0;
  }
  .sec02-gallery li, .sec04-post li {
    position: relative;
  }
  .sec02-gallery li:before, .sec04-post li:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: 1.0s ease-in-out;
    transition: 1.0s ease-in-out;
    z-index: 1;
  }
  .sec02-gallery li a, .sec04-post li a {
    display: block;
    -webkit-transition: 1.0s ease-in-out;
    transition: 1.0s ease-in-out;
    position: relative;
  }
  .sec02-gallery.is-on li:before, .sec04-post.is-on li:before {
    width: 0;
  }
  .sec02-gallery.is-on li a, .sec04-post.is-on li a {
    left: 0;
  }
}

/*------------
light box
--------------*/
/* body:after {
  content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
  display: none;
} */

/* body.lb-disable-scrolling {
  overflow: hidden;
} */

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
  This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
