<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =================================================
    TOP
==================================================== */
/* ----
    SLIDER
----------------------------------------------------- */
#slider {
  width: 100%;
  height: 28vh;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#slider .slick-track {
  width: 100%;
  height: 100%;
}

#slider &gt; div {
  width: 100%;
  height: 100%;
}

#slider .slide {
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: cover;
}

#slider .slide.moveUp {
  -webkit-animation-name: moveUp;
  animation-name: moveUp;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

#slider .slick-dots {
  font-size: 0;
  text-align: center;
  position: relative;
  top: -6%;
}

#slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

#slider .slick-dots button {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFF;
  text-indent: -9999px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#slider .slick-dots button:hover {
  background-color: #ddd;
}

#slider .slick-dots li.slick-active button {
  background-color: #990000;
}

@media screen and (min-width: 768px) {
  #slider {
    height: 300px;
  }
}

@media screen and (min-width: 980px) {
  #slider {
    height: 600px;
  }
}

@-webkit-keyframes moveUp {
  0% {
    opacity: 0;
    background-position: center 100%;
  }
  20% {
    opacity: 1;
  }
  100% {
    background-position: center 0%;
  }
}

@keyframes moveUp {
  0% {
    background-position: center 100%;
  }
  20% {
    opacity: 1;
  }
  100% {
    background-position: center 0%;
  }
}

/* ----
    POINT
----------------------------------------------------- */
#point {
  overflow: hidden;
}

.point_boxwrap {
  margin-top: 30px;
}

.point_boxwrap .box {
  background-color: #333333;
  color: #FFF;
  padding: 30px 20px 20px 20px;
  text-align: center;
}

.point_boxwrap .box + .box {
  margin-top: 10px;
}

.point_boxwrap .box .ttl {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.point_boxwrap .box .point_ttl {
  margin-bottom: 10px;
}

.point_boxwrap .box .check {
  margin-bottom: 20px;
}

.point_boxwrap .box .point_img {
  margin-bottom: 20px;
}

.point_boxwrap .box .point_ttl, .point_boxwrap .box .check, .point_boxwrap .box .point_img {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .point_boxwrap {
    width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .point_boxwrap .box {
    width: 49.2%;
    margin-bottom: 10px;
  }
  .point_boxwrap .box + .box {
    margin-top: 0px;
  }
}

@media screen and (min-width: 980px) {
  .point_boxwrap {
    margin-top: 70px;
  }
  .point_boxwrap .box {
    width: 312px;
    padding: 30px;
    margin-bottom: 12px;
  }
}

/* ----
    HOTEL Archives
----------------------------------------------------- */
.mod_hotel_archives {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 40px -5px 0 -5px;
}

.mod_hotel_archives .hotel {
  width: 49%;
  padding: 10px 0;
  margin-bottom: 8px;
  position: relative;
}

.mod_hotel_archives .hotel:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #ddd transparent;
}

.mod_hotel_archives .btn_box {
  margin-top: 15px;
  padding: 0 10px;
}

.mod_hotel_archives .btn_box a {
  font-size: 12px;
  padding: 8px;
  position: relative;
  background-color: #505050;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.mod_hotel_archives .btn_box a + a {
  margin-top: 5px;
}

.mod_hotel_archives .btn_box a:hover {
  background-color: #990000;
}

.mod_hotel_archives h3 {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 10px;
}

.mod_hotel_archives h3 span {
  font-size: 16px;
  color: #990000;
  display: block;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}

.mod_hotel_archives .hotel {
  border: 1px solid #dddddd;
}

@media screen and (min-width: 768px) {
  .mod_hotel_archives .hotel {
    width: 32.5%;
    padding: 20px 0;
    margin-bottom: 10px;
  }
  .mod_hotel_archives .btn_box {
    margin-top: 15px;
    padding: 0 15px;
  }
  .mod_hotel_archives .btn_box a {
    display: inline-block;
    width: 100%;
    font-size: 13px;
  }
  .mod_hotel_archives .btn_box a:before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .mod_hotel_archives h3 {
    margin-bottom: 15px;
  }
  .mod_hotel_archives h3 span {
    font-size: 20px;
  }
  .mod_hotel_archives h3 br {
    display: none;
  }
}

@media screen and (min-width: 980px) {
  .mod_hotel_archives {
    margin-top: 60px;
    padding-bottom: -30px;
  }
  .mod_hotel_archives .hotel {
    width: 300px;
    height: 674px;
    padding: 230px 20px 20px 20px;
    margin-bottom: 30px;
    border: none;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    cursor: pointer;
  }
  .mod_hotel_archives .hotel.border-top:before {
    content: "";
    width: 100%;
    height: 5px;
    display: block;
    background-color: #dddddd;
    position: absolute;
    top: 0;
    left: 0;
  }
  .mod_hotel_archives .hotel a {
    font-size: 14px;
  }
  .mod_hotel_archives .hotel a + a {
    margin-top: 10px;
  }
  .mod_hotel_archives h3 {
    margin-bottom: 17px;
    text-align: left;
    padding: 0 10px;
    font-size: 16px;
  }
  .mod_hotel_archives h3 span {
    font-size: 20px;
    text-align: left;
    margin-bottom: 7px;
  }
  .fook01 {
    background-image: url(../images/alltop/bg_hook01.png);
  }
  .fook02 {
    background-image: url(../images/alltop/bg_hook02.png);
  }
  .fook03 {
    background-image: url(../images/alltop/bg_hook03.png);
  }
  .fook04 {
    background-image: url(../images/alltop/bg_hook04.png);
  }
  .fook05 {
    background-image: url(../images/alltop/bg_hook05.png);
  }
  .fook06 {
    background-image: url(../images/alltop/bg_hook06.png);
  }
}

/*# sourceMappingURL=alltop.css.map */</pre></body></html>