@charset "utf-8";
/* ---------------------------------------------------------------------------------
© MOON CRANE GROUP

HTML CSS Selectors common 

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --min-width:1010px;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Jost', sans-serif;
  --font-mix: 'Jost','Noto Sans JP', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
    /*word-break : break-all;
    word-wrap : break-word;
    overflow-wrap : break-word;*/
  font-feature-settings: "palt";
}

h1,h2,h3,h4,h5,h6,
ul,ol,dl,
p,li,dt,dd,th,td,em,strong,blockquote {
  margin: 0px;
  padding: 0px;
  border: 0;
  vertical-align: baseline;
  font-weight: inherit;
}
em {
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  margin: 0px;
  padding: 0px;
}
p,dd,li {
  list-style: none;
}
em,strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
}

img {
  vertical-align:top;
  max-width: 100%;
  height: auto;
}
.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
a img {
  border: none;
}
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
a {
	transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}
.anchor {
  display: block;
  height: 0;
  position: relative;
  top: -120px;
}
.js_accordion_head {
  cursor: pointer;
}
.loader {
  width: 100%;
  height: 100vh;
  background: url("../img/common/logo.svg") no-repeat center center #f3ede6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}

/*---------------------------------------------------------------------------------
エフェクト
--------------------------------------------------------------------------------- */
/* 画面外にいる状態 */
.effect {
  opacity : 0;
  transition : all 300ms 300ms ease-out;
  transform: translate(0,50px);
}
.fade {
  transform: translate(0,0);
}
.fade-drop {
  transform: translate(0,-50px);
}
.fade-rize {
  transform: translate(0,50px);
}
.fade-left-in {
  transform: translate(-50px,0);
}
.fade-right-in {
  transform: translate(50px,0);
}
.zoom {
  transform: translate(0,0);
  opacity : 1;
}
.zoom img {
  transition : all 500ms 300ms ease-out;
  transform: scale(0.7);
  transform-origin: center;
  opacity: 0;
}

/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px); 
}
.effect-on.zoom img {
  transform: scale(1);
  opacity: 1;
}
/*ファーストビューエフェクト*/
.fv-effect {
  transition : all 900ms 100ms ease-out;
  opacity: 0;
}
.loaded .fv-effect {
  opacity: 1;
  transform: translate(0,0);
}

/*アニメーション*/
.delay0 {
  transition-delay:0ms;
}

/*---------------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------------- */
#header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100px;
  min-width: var(--min-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  line-height: 1;
}

.site-logo {
  width: 54px;
  margin-left: 38px;
}
.site-nav {
  display: flex;
  width: 210px;
  height: 100%;
  background-color: #fff;
  z-index: 10;
}
.site-nav div {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 50%;
  height: 100%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.site-nav div img {
  width: 44px;
}
.site-nav span {
  display: block;
  width: 100%;
  height: 14px;
  margin-top: 5px;
  text-align: center;
}
.site-nav div:hover {
  opacity: 0.5;
}

.side-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 38px;
  height: 232px;
  background-color: #000;
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  writing-mode: vertical-rl;
  color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.drawer-menu,
.drawer-reserve,
.drawer-recruit {
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(255,255,255,0.9);
  z-index: 90;
  position: fixed;
  top: 0;
	left: 0;
  opacity: 0;
	visibility: hidden;
  overflow:hidden;
  transition : all 300ms ease-out;
}
.menu_open .drawer-menu,
.reserve_open .drawer-reserve,
.recruit_open .drawer-recruit {
  left: 0;
	opacity: 1;
	visibility: visible;
  transition : all 500ms ease-out;
}

.drawer-menu-inner__logo {
  width: 54px;
  margin: 93px auto 40px;
}
.drawer-menu-inner__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
.drawer-menu-inner__sns a {
  width: 25px;
  margin: 0 15px;
}

.drawer-menu-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 0.2em;
}
.drawer-menu-inner-list {
  margin: 0 80px;
}
.drawer-menu-inner-list li {
  position: relative;
  font-family: 'Jost','Noto Sans JP', sans-serif;
  line-height: 1;
}
.drawer-menu-inner-list li {
  margin-bottom: 25px;
  font-size: 11px;
  font-weight: 700;
}
.drawer-menu-inner-list:nth-of-type(2) li:nth-of-type(2) {
  margin-bottom: 120px;
}
.drawer-menu-inner-list li .en {
  display: block;
  padding-top: 8px;
  font-size: 28px;
  font-weight: 700;
}
.drawer-menu-inner-list li::before {
  width: 20px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 05px;
  left: -30px;
  content:"";
}
.drawer-menu-inner-list li.sub {
  margin-bottom: 25px;
  margin-left: 40px;
  font-size: 11px;
  font-weight: 500;
}
.drawer-menu-inner-list li.sub .en {
  font-size: 20px;
}
.drawer-menu-inner-list li.sub::before {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  bottom: 4px;
  left: -25px;
}
.btn-menu-close,
.btn-reserve-close,
.btn-recruit-close {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 105px;
  height: 100px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 105px;
}
.btn-reserve-close,
.btn-recruit-close {
  right: 0px;
}
.btn-menu-close img,
.btn-reserve-close img,
.btn-recruit-close img {
  width: 44px;
}
.btn-menu-close span,
.btn-reserve-close span,
.btn-recruit-close span {
  display: block;
  width: 100%;
  height: 14px;
  margin-top: 5px;
  text-align: center;
}
.btn-menu-close:hover,
.btn-reserve-close:hover,
.btn-recruit-close:hover {
  opacity: 0.5;
}

.drawer-reserve-inner {
  padding-top: 93px;
}
.drawer-reserve-inner__logo {
  width: 54px;
  margin: 0 auto 80px;
}
.drawer-reserve-list {
  display: flex;
  flex-wrap: wrap;
  width: 780px;
  margin: 0 auto;
}
.drawer-reserve-list li {
  width: 200px;
  height: 200px;
  margin: 0 30px 60px;
  position: relative;
}
.drawer-reserve-list li::before,
.drawer-reserve-list li::after {
  width: 170px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content:"";
  transition : all 300ms 0ms ease-out;
}
.drawer-reserve-list li::before {
  top: 0;
}
.drawer-reserve-list li::after {
  bottom: 0;
}
.drawer-reserve-list li:hover::before,
.drawer-reserve-list li:hover::after {
  width: 100%;
}
.drawer-reserve-list-in {
  width: 100%;
  height: 100%;
  padding-top: 37px;
  font-family: var(--font-en);
  line-height: 1;
}
.drawer-reserve-list-in::before,
.drawer-reserve-list-in::after {
  width: 1px;
  height: 170px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content:"";
  transition : all 300ms 0ms ease-out;
}
.drawer-reserve-list-in::before {
  left: 0;
}
.drawer-reserve-list-in::after {
  right: 0;
}
.drawer-reserve-list li:hover .drawer-reserve-list-in::before,
.drawer-reserve-list li:hover .drawer-reserve-list-in::after {
  height: 100%;
}
.drawer-reserve-list__logo {
  width: 108px;
  margin: 0 auto 32px;
}
.drawer-reserve-list__tel {
  margin-bottom: 25px;
  font-size: 12px;
  text-align: center;
}
.drawer-reserve-list__tel span {
  font-size: 16px;
  letter-spacing: 0.075em;
}
.drawer-reserve-list__btn {
  width: 100px;
  margin: 0 auto;
}
.drawer-reserve-list__btn a {
  display: block;
  padding-bottom: 12px;
  background: url("../img/common/see_more_arrow.svg") no-repeat right bottom;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
}

/*---------------------------------------------------------------------------------
コンテンツ
--------------------------------------------------------------------------------- */
#contents-wrapper {
  width: 100%;
  min-height: 100vh;
  min-width: var(--min-width);
  overflow:hidden;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/*バナー*/
.banner-section {
  padding: 105px 0 40px;
  margin-bottom: 147px;
  position: relative;
}
.banner-section__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-section-inner {
  width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.banner-section-ttl {
  margin-bottom: 60px;
  font-family: var(--font-en);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
.banner-section-ttl em {
  font-weight: 700;
}
.banner-section-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 30px;
  padding-bottom: 50px;
}
.banner-section-list li {
  display: block;
  width: 280px;
  height: 150px;
  background-color: rgba(255,255,255,0.85);
}
.banner-section-list li:nth-of-type(3n+2) {
  transition-delay:400ms;
}
.banner-section-list li:nth-of-type(3n) {
  margin-right: 0;
  transition-delay:500ms;
}
.banner-section-list a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-section-list a::before,
.banner-section-list a::after {
  width: 230px;
  height: 1px;
  background-color: #595959;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content:"";
  z-index: 3;
  transition : all 300ms 0ms ease-out;
}
.banner-section-list a::before {
  top: 15px;
}
.banner-section-list a::after {
  bottom: 15px;
}
.banner-section-list-in {
  width: 250px;
  height: 120px;
  padding: 34px 0 0 55px;
  margin: 15px auto 0;
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.banner-section-list-in::before,
.banner-section-list-in::after {
  width: 1px;
  height: 100px;
  background-color: #595959;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content:"";
  transition : all 300ms 0ms ease-out;
}
.banner-section-list-in::before {
  left: 0;
}
.banner-section-list-in::after {
  right: 0;
}
.banner-section-list-in__en {
  display: block;
  padding-bottom: 10px;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.banner-section-list-in__jp {
  font-size: 11px;
  letter-spacing: 0.1em;
}
.banner-section-list-in__icon {
  width: 20px;
  height: 20px;
  background-image: url("../img/common/icon_banner.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  transition : all 300ms 0ms ease-out;
}


.banner-section-list__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition : all 300ms 0ms ease-out;
}

.banner-section-list a:hover {
  opacity: 1;
  color: #fff;
}
.banner-section-list a:hover::before,
.banner-section-list a:hover::after {
  width: 250px;
  background-color: #fff;
}
.banner-section-list a:hover .banner-section-list-in::before,
.banner-section-list a:hover .banner-section-list-in::after {
  height: 120px;
  background-color: #fff;
}
.banner-section-list a:hover .banner-section-list__bg {
  opacity: 1;
}
.banner-section-list a:hover .banner-section-list-in__icon {
  opacity: 0;
}

/*more*/
.btn-more {
  width: 250px;
  height: 60px;
  margin: 0 auto;
}
.btn-more a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.btn-more a::before,
.btn-more a:after {
  display: block;
  width: 230px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content:"";
  transition: 0.2s ease-in-out;
}
.btn-more a::before {
  top: 0;
}
.btn-more a::after {
  bottom: 0;
}
.btn-more__in {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 700;
}
.btn-more__in img {
  width: 70px;
  margin-left: 5px;
  transition : all 200ms 0ms ease-out;
  position: relative;
  top: -2px;
  right: 0;
}
.btn-more__in::before,
.btn-more__in::after {
  width: 1px;
  height: 40px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content:"";
  transition: 0.2s ease-in-out;
}
.btn-more__in::before {
  left: 0;
}
.btn-more__in::after {
  right: 0;
}

.btn-more a:hover {
  opacity: 1;
}
.btn-more a:hover::before,
.btn-more a:hover:after {
  width: 100%;
}
.btn-more a:hover .btn-more__in::before,
.btn-more a:hover .btn-more__in::after {
  height: 100%;
}
.btn-more a:hover .btn-more__in img {
  right: -10px;
}

/*pagenation*/
.pagenation,
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.pagenation a,
.pagenation span,
.wp-pagenavi a,
.wp-pagenavi span {
  display: block;
  margin: 0px 15px;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
.pagenation span,
.wp-pagenavi span {
  font-size: 18px;
}
.pagenation .ditto_previous_link,
.previouspostslink {
  margin-right: 60px;
}
.pagenation .ditto_next_link,
.nextpostslink {
  margin-left: 60px;
}
/*---------------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------------- */
#footer-wrapper {
  width: 100%;
  min-width: var(--min-width);
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.footer-g-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 266px;
  margin-bottom: 92px;
  position: relative;
}
.footer-g-nav::before {
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  content:"";
  background-image :linear-gradient(to top, #8d8d8d, #8d8d8d 1px, transparent 2px, transparent 4px);
  background-size: 1px 6px;
  background-position: left bottom;
  background-repeat: repeat-y;
  
}
.footer-g-nav > div {
  margin: 0 76px;

}
.footer-g-nav a {
  display: block;
  line-height: 1;
  text-align: center;
}
.footer-g-nav img {
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.footer-g-nav .jp {
  margin-bottom: 10px;
  font-size: 10px;
}
.footer-g-nav .en {
  font-family: var(--fon-mix);
  font-size: 14px;
  font-weight: 600;
}
.site-footer {
  position: relative;
  color: #fff;
}
.site-footer-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.site-footer-bg::after {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content:"";
}
.site-footer-inner {
  padding: 70px 0 14px;
  position: relative;
  z-index: 3;
}
.site-footer-inner__logo {
  width: 57px;
  margin: 0 auto 46px;
}
.site-footer-inner__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.site-footer-inner__sns a {
  width: 12px;
}
.site-footer-inner-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 155px;
}
.site-footer-inner-nav a {
  margin: 0 22px;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
}
.site-footer-inner__copyright {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
.site-footer-salon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  background-color: #000;
}
.site-footer-salon li {
  margin: 0 15px;
  font-family: var(--font-mix);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.63;
  color: #fff;
}
.site-footer-salon li:nth-of-type(2) {
  transition-delay:400ms;
}
.site-footer-salon li:nth-of-type(3) {
  transition-delay:500ms;
}
.site-footer-salon li:nth-of-type(4) {
  transition-delay:600ms;
}
.site-footer-salon li:nth-of-type(5) {
  transition-delay:700ms;
}
.site-footer-salon li:nth-of-type(6) {
  transition-delay:800ms;
}
.site-footer-salon__logo {
  width: 60px;
  margin: 0 auto 23px;
}


/*---------------------------------------------------------------------------------
JS
--------------------------------------------------------------------------------- */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:visible;}
#colorbox {
  overflow: visible!important;
}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#d9d2cd; opacity: 1; filter: alpha(opacity = 100);}
#colorbox{outline:0;}
    #cboxContent{background:transparent; overflow:visible;}
        .cboxIframe{background: transparent;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:25px;}
        #cboxTitle{width:100%; color:#000;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #cboxLoadingOverlay{background:#fff;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #cboxClose{position:absolute; top:0px; right:-60px; display:block; width: 35px; height: 35px; background-image: url("../img/common/btn_close.svg");background-size: 100% auto;}


/*SP ---------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #cboxClose {
    width: 22px;
    height: 22px;
    background-size: 100% auto;
    top: 0px;
    right: 0px;
    margin: 0;
  }
  
}
/* Slick */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-prev {
  background-position: left top;
}
.slick-next {
  background-position: right top;
}
.slick-prev:before, .slick-next:before {
  display: none !important;
}
.slick-prev:active, .slick-next:active {
  border: none;
}
.slick-disabled {
  display: none !important;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  opacity: 0.5;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 20;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 12px;
  padding: 0;
  cursor: pointer;
  text-align: center;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  text-align: center;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active button:before {
  background-color: #f79876;
}

/*modal-video*/

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}

.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}

.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}