@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright © J-SURE

HTML CSS Selectors common 

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

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
body {
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
  font-feature-settings: "palt";
  position: relative;
}
.wrapper {
  width: 100%;
  overflow:hidden;
  position: relative;
}

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;
  text-align: justify;
}
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;
  outline: none;
}
a {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}
.anchor {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  top: -110px;
}

.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}


/*---------------------------------------------------------------------------------
エフェクト
--------------------------------------------------------------------------------- */
/*ファーストビューエフェクト*/
.fv-effect {
  transition : all 500ms 1000ms ease-out;
  transform: translate(-50px,0);
  opacity: 0;
}
.loaded .fv-effect {
  opacity: 1;
  transform: translate(0,0);
}
.loaded.sc .fv-effect {
  transition : all 0ms 0ms ease-out;
}
.loaded .fv-effect.slide-img::after {
  left: 100%;
}

/* 画面外にいる状態 */
.effect {
  opacity : 0;
  transition : all 500ms 300ms ease-out;
  transform: translate(0,50px);
}
.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);
}
.fade-in {
  transform: translate(0,0);
}
.fade-zoom {
  transform: scale(0.2);
}
.fade-shrink {
  transform: scale(1.6);
}

.slide-img {
  overflow:hidden;
  position: relative;
}
.effect.slide-img,
.fv-effect.slide-img {
  opacity : 1;
  transition : all 0ms 0s ease-out;
  transform: translate(0,0);
}
.effect.slide-img::after,
.fv-effect.slide-img::after {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition : all 500ms 300ms ease-out;
  content:"";
}


/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px) scale(1)!important;
}
.effect-on.slide-ttl::after {
  left: 100%;
}
.effect-on.effect.slide-img::after {
  left: 100%;
}

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

.fade-txt span {
  opacity: 0;
}
.fade-txt span.show {
  opacity: 1;
}

@keyframes shake-leaf {
  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 100%;
  }

  15% {
    transform: rotate(-6deg);
  }

  30% {
    transform: rotate(6deg);
  }

  45% {
    transform: rotate(-3.6deg);
  }

  60% {
    transform: rotate(2.4deg);
  }

  75% {
    transform: rotate(-1.2deg);
  }
}

/*画像エフェクト*/
.img-box {
  display: block;
  overflow:hidden;
  position: relative;
  transition : all 0ms 0ms ease-out;
  transform: translate(0,0);
  opacity: 1;

}
.img-box-in {
  transition: 0.2s ease-in-out;
}
.img-box-in::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background-color: #fff;
  transform: scaleX(1);
  transform-origin: right;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-delay: .4s
}

.img-box.effect-on .img-box-in::before {
  transform: scale(0, 1)
}

/*ボタンエフェクト*/
.btn-effect {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding-left: 40px;
  border: 1px solid #1f1f1f;
  outline: none;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.btn-effect::after {
  width: 18px;
  height: 16px;
  background-image: url("../img/common/icon_botton_arrow.svg");
  margin-left: 32px;
  content:"";
}
.btn-effect:hover {
  color: #fff;
  background-color: #1f1f1f;
  opacity: 1;
}
.btn-effect:hover::after {
  background-image: url("../img/common/icon_botton_arrow-white.svg");
}




/*---------------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------------- */
#header-wrapper {
  width: 100%;
  min-width: 1310px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  letter-spacing: 0;
}
#header-wrapper.sc {
  background-color: rgba(255,255,255,0.50)
}

.page-header {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0 22px 70px;
  transition-delay:1600ms;
}
.h-logo {
  width: 120px;
  transition : all 500ms 0ms ease-out;
}
.sc .h-logo {
  width: 77px;
}
.header-nav {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 917px;
  color: #1f1f1f;
}
.header-nav a {
  display: block;
  margin: 0 50px 0 15px;
  font-family: 'Mukta', sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
#toggle_menu {
  width: 33px;
  height: 21px;
  cursor: pointer;
}
#toggle_menu div {
  width: 100%;
  height: 1px;
  transition-duration: .5s;
  position: relative;
  overflow:hidden;
}
#toggle_menu div span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 0;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}
#toggle_menu div:nth-of-type(1) {
  animation: header_button_off1 .75s ease-in-out forwards;
}
#toggle_menu div:nth-of-type(1) span {
  animation: header_button0 2s linear 2s infinite;
}
#toggle_menu div:nth-of-type(2) {
  margin-top: 9px;
  animation: header_button_off1 .75s ease-in-out forwards;
}
#toggle_menu div:nth-of-type(2) span {
  animation: header_button0 2s linear 2.125s infinite;
}
#toggle_menu div:nth-of-type(3) {
  margin-top: 9px;
  animation: header_button_off1 .75s ease-in-out forwards;
}
#toggle_menu div:nth-of-type(3) span {
  animation: header_button0 2s linear 2.25s infinite;
}

@keyframes header_button_off0 {
  0% {
    top: 50% ;margin: -1px 0 0;transform: rotate(45deg)
  }
  49% , 51% {
    top: 50% ;margin: -1px 0 0;transform: rotate(0)
  }
  100% {
    top: 0% ;margin: 0;transform: rotate(0)
  }
}
@keyframes header_button_off1 {
  0% , 49% {
    opacity: 0
  }
  100% , 51% {
    opacity: 1
  }
}
@keyframes header_button_off2 {
  0% {
    top: 50% ;margin: -1px 0 0;transform: rotate(-45deg)
  }
  49% , 51% {
    top: 50% ;margin: -1px 0 0;transform: rotate(0)
  }
  100% {
    top: 100% ;margin: -2px 0 0;transform: rotate(0)
  }
}
@keyframes header_button0 {
  0% , 100% , 50% {
    left: 0%;
    opacity: 1;
  }
  20% {
    left: 100%;
    opacity: 0;
  }
  30% {
    left: -100%;
    opacity: 0;
  }
}

#nav-background {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 100%;
	z-index:98;
  opacity: 0;
	visibility: hidden;
  overflow:hidden;
  transition : all 300ms ease-out;
}
.open #nav-background {
  left: 0;
	opacity: 1;
	visibility: visible;
  transition : all 700ms ease-out;
}
.nav-background-wrap {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.9);
  position: absolute;
  top: 0;
  left: 0;
  transition : all 900ms ease-out;
}
/*.open #nav-background .nav-background-wrap {
  left: 0;
}*/
.nav-background-inner {
  width: 420px;
  height: 540px;
  position: absolute;
	top: 0;
	left: 46%;
	bottom: 0;
	margin: auto;
}
.nav-background-inner__logo {
  width: 56px;
  margin-bottom: 65px;
  transition-delay:800ms;
  transform: translate(-50px,0);
  opacity: 0;
  
}
.nav-background-ul {
  display: flex;
  flex-wrap: wrap;
}
.nav-background-ul li {
  width: 50%;
  margin-bottom: 55px;
  transform: translate(-50px,0);
  opacity: 0;
}
.nav-background-ul a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
.nav-background-ul .is {
  width: 20px;
  margin-left: 33%;
}

.nav-background-img {
  width: 38%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.menu-close,
.res-close {
  width: 30px;
  height: 30px;
  background-image: url("../img/common/btn_h_menu_close.svg");
  position: absolute;
  top: 80px;
  right: 57px;
  cursor: pointer;
}
.open .nav-background-inner__logo,
.open .nav-background-ul li,
.open .nav-background-reserve,
.nav-background-sns {
  opacity: 1;
  transform: translate(0,0);
}

.btn-h-reserve {
  display: flex;
  width: 60px;
  height: 254px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 40;
  overflow:hidden;
}
.fv .btn-h-reserve {
  transition: all 500ms ease-out;
}
.btn-h-reserve:hover {
  width: 140px;
}
.btn-h-reserve-inner {
  display: flex;
  width: 140px;
  height: 100%;
  position: absolute;
}
.btn-h-reserve-inner:hover {
  opacity: 1;
}
.btn-h-reserve-inner .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 60px;
  height: 100%;
  background-color: #00987f;
  font-family: 'Mukta', sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 600;
  writing-mode: vertical-rl;
  color: #fff;
}
.btn-h-reserve-inner .btn img {
  width: 30px;
  margin-bottom: 20px;
}
.btn-h-reserve-inner__info {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 80px;
  height: 100%;
  background-color: #007a66;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  writing-mode: vertical-rl;
  text-align: center;
}
.btn-h-reserve-inner__info .tel-ttl {
  display: inline-block;
  font-family: 'Mukta', sans-serif;
  margin-right: -10px;
  margin-bottom: 5px;
}
.btn-h-reserve-inner__info .tel {
  font-family: 'Mukta', sans-serif;
  margin-left: 13px;
  font-size: 25px;
}

/*---------------------------------------------------------------------------------
コンテンツ
--------------------------------------------------------------------------------- */
#contents-wrapper {
  width: 100%;
  min-width: 1310px;
  overflow:hidden;
}

.contents-mv {
  width: 100%;
  height: 500px;
  background-color: #1f1f1f;
  margin-bottom: 125px;
  
}

.contents-ttl {
  font-family: 'Mukta', sans-serif;
  font-size: 56px;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  margin-bottom: 80px;
  transition-delay: 2000ms;
}

/*calender*/
.calendar_year {
  font-size: 14px;
  position: absolute;
  top: 32px;
  right: 23px;
}
.calendar_month {
  padding-bottom: 3px;
  font-size: 38px;
  line-height: 1;
  text-align: center;
}
.uk-text-center {
  text-align: center;
}
.uk-table {
  width: 100%;
  font-family: 'Mukta', sans-serif;
  line-height: 1;
}
.uk-table thead {
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 300;
}
.uk-table thead th {
  padding: 5px 0;
  font-style: italic;
}
.uk-table thead th:first-child {
  color: #EA798D;
}
.uk-table thead th:last-child {
  color: #74abe0;
}
.uk-table td {
  width: 14.2%;
  padding: 5px 0px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}
.uk-table td div {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 32px;
  height:32px;
  padding-top: 2px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  border: 2px solid transparent;
}
.uk-table td div.Red::after,
.uk-table td div.Blue::after,
.uk-table td div.Green::after {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content:"";
}
.uk-table td div.Red::after {
  border: 2px solid #00987f;
}
.uk-table td div.Blue::after {
  border: 2px solid #7abaec;
}
.uk-table td div.Green::after {
  border: 2px solid #fa9ea7;
}


.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.pagenation a,
.pagenation span {
  display: block;
  margin: 0px 24px;
  font-family: 'Mukta', sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.pagenation .ditto_previous_link {
  margin-right: 60px;
}
.pagenation .ditto_next_link {
  margin-left: 60px;
}

/*---------------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------------- */
#footer-wrapper {
  width: 100%;
  min-width: 1310px;
  padding: 90px 0 48px;
  background-color: #1f1f1f;
  position: relative;
}
.page-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto 60px;
  position: relative;
  color: #fff;
}
.page-footer-logo {
  width: 156px;
}
.page-footer-data {
  padding-bottom: 10px;
}
.page-footer-data dt {
  padding-bottom: 5px;
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}
.page-footer-data dd {
  margin-bottom: 20px;
  font-size: 14px;
}
.page-footer-data__add {
  display: block;
  width: 100%;
}
.page-footer-data-map {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 112px;
  margin-top: 5px;
  margin-left: auto;
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  line-height: 1;
}
.page-footer-data-map img {
  width: 18px;
  margin-right: 8px;
}
.page-footer-nav {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 465px;
}
.page-footer-nav a {
  display: block;
  width: 50%;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1;
}

.page-footer-sns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.page-footer-sns a {
  width: 20px;
  margin-right: 20px;
}

.cooyright {
  width: 1252px;
  font-family: 'Mukta', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
  color: #acacac;
  text-align: right;
}

#page-top {
  width: 53px;
  position: absolute;
  top: 92px;
  right: 72px;
  line-height: 1;
}
/*---------------------------------------------------------------------------------
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:0px;}
        #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_h_menu_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;
  }
  
}
/* Slider */
.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 {
}
.slick-dots {
  position: absolute;
  bottom: -53px;
  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: 10px;
  height: 10px;
  margin: 0 9px;
  padding: 0;
  cursor: pointer;
  text-align: center;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  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 {
  box-sizing: border-box;
  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: #1f1f1f;
  border: 1px solid #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: #fff;
  border: 1px solid #1f1f1f;
}
