/*CSS*/
* {
  margin: 0;
  padding: 0; }

body {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  background-color: #fff;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

body:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 8;
}

body.offcanvas {
  overflow: hidden;
}

body.offcanvas:before {
  visibility: visible;
  opacity: 1;
}

::-moz-selection {
  background: #333;
  color: #fff;
}

::selection {
  background: #333;
  color: #fff;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Shippori Mincho', serif;
  color: #333;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #0055ff;
}

a:hover {
  text-decoration: none !important;
  color: #00ccff;
}

/* Slider */

.slide_01 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('../images/head.jpg');
}

.slide_01, .slide_01 > .container > .row {
  height: 100vh;
  min-height: 500px;
}

.slide_01 .overlay {
  position: relative;
}

.slide_01 .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.slide_01 .site-hero-contents {
  display: block;
}

.slide_01 .site-hero-contents .hero-heading {
  font-size: 49px;
  color: #fff;
  line-height: 0;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 600;
  text-shadow: 2px 2px 3px #000;
  line-height: 0;
  margin-bottom: 15px;
}

.slide_01 .site-hero-contents .sub-text {
  font-size: 33px;
  color: #fff !important;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0;
  text-shadow: 2px 2px 2px #000;
  margin-top: 40px;
}

.slide_01 .site-hero-contents .sub-text span {
  letter-spacing: -0.05em;
}

.slide_01 .site-hero-contents .btn a {
  display: block;
  border: solid 2px #333;
  outline: solid 4px rgba(255,255,255,1);
  background-color: rgba(255,255,255,1);
  transition: 0.9s;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 21px;
  color: #333;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 7px 15px;
  margin-top: 40px;
}

.slide_01 .site-hero-contents .btn a:hover {
  background-color: rgba(255,255,255,.7);
}

.slide_01 .site-hero-contents .hero-heading > span {
  display: inline-block;
}

.slide_01 .site-hero-contents .hero-heading > span > span {
  display: inline-block;
}

.slide_01 .site-hero-contents .hero-heading > span > span > span {
  line-height: 1.2;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 0;
}

.slide_01 .site-hero-contents .hero-heading > span > span > span > span {
  display: inline-block;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

@media (max-width: 1080px) and (min-width: 768px)  {
  .slide_01 {
    background-image: url('../images/head.jpg');
    background-position: center center;
  }
  .slide_01 .site-hero-contents .hero-heading {
    font-size: 39px;
    line-height: 1.2;
  }
  .slide_01 .site-hero-contents .sub-text {
    font-size: 28px;
    line-height: 1.5;
  }
}

@media (max-width: 767.98px) {
  .slide_01 .site-hero-contents .hero-heading {
    font-size: 35px;
    line-height: 1.2;
    text-align: left;
  }
  .slide_01 .site-hero-contents .sub-text {
    font-size: 23px;
    line-height: 1.5;
    text-align: left;
  }
}

/* Title */
.title {
  display: block;
  text-align: center;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
}

.title h1 {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 45px;
  color: #000;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767.98px) {
  .title h1 {
    width: 100%;
    font-size: 30px;
    letter-spacing: -0.05em;
    line-height: 1.5;
    padding: 1px 0;
  }
}

/* List */
.list_box {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.list {
  margin: 0;
}

.list h1 {
  background-color: #ff0000;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 43px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  border:double 10px #fff;
  padding: 10px;
}

.list h1 span {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
}

.list h1 strong {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #ffff00;
}

.list h2 {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.list h3 {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.list h4 {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}

.list p {
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin: 10px 5px;
}

.list .thumb {
  display: block;
  width: 100%;
  margin: 0;
}

@media (max-width: 767.98px) {
  .list h1 {
    line-height: normal;
    font-size: 25px;
    padding: 5px 10px;
  }
  .list h1 span {
    line-height: -1;
    font-size: 21px;
    text-align: left;
    padding: 5px 10px;
  }
  .list h1 strong {
    line-height: normal;
    font-size: 30px;
    padding: 5px 10px;
  }
  .list h2 {
    font-size: 24px;
    line-height: 1.4;
    padding: 5px;
  }
}

/* Movle */
.movie {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3のアスペクト比 */
  height: 0;
  margin: 10px 0 30px;
}

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

.movie p {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin: 10px 5px;
}

/* Schedule */
.schedule {
  width: 100%;
}

.schedule h2{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 30px;
  font-weight: 600;
  padding: 10px 20px;
}

.schedule h3{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 0 20px;
}

.schedule h3 span{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ff0000;
}

.schedule h5{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
}

.schedule h6{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px;
}

.schedule h7{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  padding: 0 20px;
}

.schedule p{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.schedule p span{
  color: #ff0000;
}

table {
  width: 100%;
  margin: 0;
}

#tablepress-01 th,
#tablepress-01 td {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: solid 1px #666;
}

#tablepress-01 th {
  background-color: #ddddff;
  color: #333;
  text-align: center;
  padding:10px !important;
}

#tablepress-01 td {
  background-color:#ffffef;
  color:#333;
  padding:10px 10px 0 !important;
}

#tablepress-01 .column-1 {
  width:10%;
  padding:3px 0;
}

table.tour_ched_4 {
  margin-bottom:0;
}

table .tour_ched_4 th {
  font-weight:600;
  border:solid 0.5px #dbf6f9;
}

table.tour_ched_4 th.column-1 {
  width:10%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-1 {
  width:10%;
  text-align:center;
}

table.tour_ched_4 th.column-2 {
  width:25%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-2 {
  width:25%;
  text-align: left;
}

table.tour_ched_4 th.column-3 {
  width:55%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-3 {
  width:55%;
  vertical-align:top;
}

table.tour_ched_4 th.column-4 {
  width:10%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-4 {
  width:10%;
  vertical-align:top;
}

#tablepress-02 th,
#tablepress-02 td {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 17px;
  font-weight: 600;
  border: solid 1px #666;
}

#tablepress-02 th {
  background-color: #ddddff;
  color: #333;
  text-align: center;
  padding:10px !important;
}

#tablepress-02 td {
  background-color:#ffffef;
  color:#333;
  padding:10px 10px 0 !important;
}

#tablepress-02 .column-1 {
  width:10%;
  padding:3px 0;
}

table.tour_ched_2 {
  margin-bottom:0;
}

table .tour_ched_2 th {
  font-weight:600;
  border:solid 0.5px #dbf6f9;
}

table.tour_ched_2 th.column-1 {
  width:15%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_2 td.column-1 {
  width:15%;
  text-align:center;
}

table.tour_ched_2 th.column-2 {
  width:25%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_2 td.column-2 {
  width:25%;
  text-align:center;
}

table.tour_ched_2 th.column-3 {
  width:30%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_2 td.column-3 {
  width:30%;
  text-align:center;
}

table.tour_ched_2 th.column-4 {
  width:30%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_2 td.column-4 {
  width:30%;
  text-align:center;
}

/* Condition */
.condition {
  width: 100%;
}

.condition th {
  background: #ddddff;
  width: 12%;
  border: solid 1px #333;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  color: #333;
  letter-spacing: 1.1;
  padding: 10px;
}

.condition td {
  border: solid 1px #333;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
}

.condition h5{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  padding: 10px;
}

@media (max-width: 767.98px) {
  .condition th {
　　border-bottom: none;
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 5px 12px;
  }
  .condition td {
　　border-bottom: none;
    display: block;
    width: 100%;
    padding: 7px 12px;
  }
}

/* Banner */
.banner img {
  display: block;
  width: 100%;
}

.banner .sp {
  display:none !important;
}
  
@media (max-width: 767.98px) {
  .banner .pc {
    display: none !important;
  }
  .banner .sp {
   display: block !important;
  }
}

/* Page Title */

.site-section {
  padding: 1rem 0 2rem;
  position: relative;
  clear: both;
  width: 100%;
}

@media (max-width: 991.98px) {
  .site-section {
    padding: 3rem 0;
  }
}

table {
  width: 100%;
  margin: 0;
}

#tablepress-01 th,
#tablepress-01 td {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: solid 1px #666;
}

#tablepress-01 th {
  background-color: #ddddff;
  color: #333;
  text-align: center;
  padding:10px !important;
}

#tablepress-01 td {
  background-color:#ffffef;
  color:#333;
  padding:10px 10px 0 !important;
}

#tablepress-01 .column-1 {
  width:10%;
  padding:3px 0;
}

.tablepress th {
  font-weight:600;
  text-align:center;
}

table.tour_ched_4 {
  margin-bottom:0;
}

table .tour_ched_4 th {
  font-weight:600;
  border:solid 0.5px #dbf6f9;
}

table.tour_ched_4 th.column-1 {
  width:10%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-1 {
  width:10%;
  text-align:center;
}

table.tour_ched_4 th.column-2 {
  width:10%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-2 {
  width:10%;
}

table.tour_ched_4 th.column-3 {
  width:60%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-3 {
  width:60%;
  vertical-align:top;
}

table.tour_ched_4 th.column-4 {
  width:10%;
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-4 {
  width:10%;
  text-align:center;
  vertical-align:top;
}

table.tour_ched_4 th.column-5 {
  font-size:16px;
  text-align:center;
}

table.tour_ched_4 td.column-5 {
  width:60%;
  vertical-align:top;
}

table.tour_ched_4 th.column-6 {
  width:50%;
}

table.tour_ched_4 td.column-6 {
  width:50%;
  vertical-align:top;
  line-height:1.8;
}

table.tour_ched_4 th.column-7 {
  width:70%;
  text-align:left;
  line-height:1.8;
}

table.tour_ched_4 td.column-7 {
  width:14%;
  line-height:1.8;
}

table.tour_ched_4 td.column-8 {
  width:50%;
  line-height:1.8;
}

table.tour_ched_4 th.column-9{
  width:12%;
  text-align:left;
  line-height:1.5;
}

table.tour_ched_4 td.column-9 {
  width:12%;
  line-height:1.8;
}

table.tour_ched_4 th.column-10 {
  width: 100%;
  line-height: 1.8;
}

table.tour_ched_4 td.column-11{
  width:12%;
  text-align:center;
  line-height:1.5;
}

table.tour_ched_4 th.column-12 {
  width:33.3%;
  line-height:1.8;
}

table.tour_ched_4 td.column-12 {
  width:33.3%;
  line-height:1.8;
}

.course_image {
  width: 100%;
  margin: 0;
}

.course_image .thumb img {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.course_image p {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin: 0;
}

/* LA */
.tour_menu_box {
  display: block;
  width: 100%;
  border: 1px solid #333;
  margin-bottom: 30px;
}

.tour_menu {
  margin: 0;
}

.tour_menu_lead h2 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}

.tour_menu_lead h2 span {
  color: #000;
  font-weight: 500;
}

.tour_menu_lead h3 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0055ff;
  line-height: 1.6;
}

.tour_menu_lead h4 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 17px;
  color: #000;
  font-weight: 600;
  line-height: 1.6;
}

.tour_menu .thumb {
  display: block;
  padding: 5px;
  margin: 0 0 5px;
}

.tour_menu h2 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffff00;
  text-align: center;
  text-shadow: 1px 1px 3px #000;
  line-height: 1.4;
  background-color: #003399;
  background-position: center center;
  padding: 8px 12px 10px;
  margin: 5px 5px 0;
}

.tour_menu h2 span {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 22px;
  color: #fff;
}

.tour_menu h2 small {
  font-family: 'Shippori Mincho', serif;
  font-size: 19px;
  color: #fff;
}

.tour_menu h3 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  padding: 2px 12px 6px;
}

.tour_menu p {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #003399;
  padding: 8px 15px 10px;
  margin: 5px;
}

.tour_menu p:hover{
  color: #333;
  background-color: #ffee00;
  transition: 0.5s;
}

.tour_menu a {
  color: #fff;
  font-weight: 600;
  transition: 0.5s;
}

/* Hawaii */
.suite-wrap {
  width: 100%;
  margin: 0 auto;
  display: block;
  float: left;
  margin-bottom: 3rem;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767.98px) {
  .suite-wrap {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.suite-wrap.overlap-image .suite {
  width: 100%;
  margin-bottom: 50px;
}

.suite-wrap.overlap-image-1 .suite {
  float: left;
  width: 50%;
}

.suite-wrap.overlap-image-2 .suite {
  float: right;
  width: 50%;
}

@media (max-width: 767.98px) {
  .lead h1 {
    font-size: 28px;
  }
  .lead h2 {
    font-size: 20px;
    margin-top: 0;
  }
  .lead_img img {
    width: 100%;
  }
}

.suite .pc {
  display: block !important;
  width: 100%;
}

.suite .sp {
  display: none !important;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image .suite {
    width: 90%;
    margin: 0 auto;
  }
  .suite-wrap.overlap-image-1 .suite {
    width: 100%;
  }
  .suite-wrap.overlap-image-2 .suite {
    width: 100%;
  }
  .suite .pc {
    display: none !important;
  }
  .suite .sp {
   display: block !important;
  }
}

.suite-wrap.overlap-image .suite img {
  max-width: 100% !important;
}

.suite-wrap.overlap-image-1 .suite img {
  max-width: 100% !important;
}

.suite-wrap.overlap-image-2 .suite img {
  max-width: 100% !important;
}

.suite-wrap.overlap-image-1 .suite .image-stack:after {
  content: "";
  display: table;
  clear: both;
}

.suite-wrap.overlap-image-2 .suite .image-stack:after {
  content: "";
  display: table;
  clear: both;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item {
  overflow: hidden;
  position: relative;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item {
  overflow: hidden;
  position: relative;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item .overlay {
  z-index: 4;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item .overlay {
  z-index: 4;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.suite-wrap.overlap-image .suite .image-stack .image-stack-item img {
  position: relative;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item img {
  position: relative;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item img {
  position: relative;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item.image-stack-item-top {
  float: left;
  width: 100%;
  margin-top: -10%;
  margin-right: -100%;
  position: relative;
  z-index: 1;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item.image-stack-item-bottom {
  float: right;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 4rem;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image .suite .image-stack .image-stack-item {
    width: 100%;
  }
  .suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item.image-stack-item-top {
    float: left;
    margin-left: 0;
    width: 100%;
  }
  .suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item.image-stack-item-bottom {
    float: right;
    margin-right: 0;
    width: 100%;
  }
}

.suite-wrap.overlap-image-1 .suite-contents {
  z-index: 10;
  width: 40%;
  margin-top: -5%;
  position: relative;
  float: left;
  margin-left: 50px;
}

.suite-wrap.overlap-image-2 .suite-contents {
  z-index: 10;
  width: 40%;
  margin-top: -5%;
  float: right;
  margin-top: 0;
  margin-right: 50px;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image-1 .suite-contents {
    float: left;
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
  }
  .suite-wrap.overlap-image-2 .suite-contents {
    float: right;
    margin-right: 0;
    width: 100%;
    margin-bottom: 35px;
    padding: 0 10px;
  }
}

.suite-wrap.overlap-image-1 .suite-contents .suite-title {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  line-height: 1.7;
  padding-top: 0;
}

.suite-wrap.overlap-image-2 .suite-contents .suite-title {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 600;
  line-height: 1.7;
  padding-top: 0;
}

.suite-wrap.overlap-image-1 .suite-contents .suite-title > span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 1.3;
  margin-bottom: 0;
}

.suite-wrap.overlap-image-2 .suite-contents .suite-title > span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 1.3;
  margin-bottom: 0;
}

.suite-wrap.overlap-image-1 .suite-contents .suite-title > span > span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.suite-wrap.overlap-image-2 .suite-contents .suite-title > span > span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image-1 .suite-contents .suite-title {
    font-size: 28px;
    margin-top: 35px;
  }
  .suite-wrap.overlap-image-2 .suite-contents .suite-title {
    font-size: 28px;
    margin-top: -50px;
  }
}

.suite-wrap.overlap-image-1 .suite-contents .suite-excerpt {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 17px;
  color: #333;
  font-weight: 600;
  line-height: 1.5;
}

.suite-wrap.overlap-image-2 .suite-contents .suite-excerpt {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 17px;
  color: #333;
  font-weight: 600;
  line-height: 1.5;
}

/* Hawaii Golf Price */

table {
  width: 100%;
  margin: 0;
}

.price th {
  background: #ddddff;
  width: 40%;
  border: solid 1px #333;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  color: #000;
  letter-spacing: 1.1;
  padding: 10px;
}

.price td {
  background-color:#ffffef;
  border: solid 1px #333;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
}

@media (max-width: 767.98px) {
  .price {
    width: 100%;
  }
  .price th {
　　border-bottom: none;
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 5px 12px;
  }
  .price td {
　　border-bottom: none;
    display: block;
    width: 100%;
    padding: 7px 12px;
  }
}

/* Privacy Protection */
.polc h3{
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
}

.polc p{
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}

.polc_list th {
  width: 1%;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  vertical-align: top;
  padding: 0 4px;
}

.polc_list td {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  vertical-align: top;
  padding: 0 4px;
}

@media (max-width: 767.98px) {
  .polc_list {
    width: 100%;
  }
}

/* Travel Deterimined */
.travel_d li {
  font-size: 15px;
  font-weight: 600;
  padding: 5px 0;
}

/* Heading */
.section-heading h2 {
  font-size: 46px;
  font-weight: 600;
  color: #333;
  position: relative;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  margin-bottom: 0;
}

.section-heading h3 {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  position: relative;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .section-heading h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}

.section-heading.dark h3 {
  color: #333;
}

.section-heading.dark h3:after {
  background: #333;
}

.section-heading.dark p {
  color: #aeaeae;
}

/* Reserve Button */
a#reserve {
  position: fixed;
  width: 230px;
  height: 50px;
  left:50%;
  bottom: 15px;
  margin-left:-110px;
  padding: 5px 0 0;
  display: block;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #000;
  font-size:22px;
  font-weight: bold;
  vertical-align:middle;
  border: solid 2px #fff;
  outline: solid 2px rgba(1,54,160,.7);
  background-color: rgba(1,54,160,.7);
  -webkit-background-size: 7px 7px;
  transition: 0.5s;
  z-index: 1000;
}

a#reserve:hover{
  color: #333;
  text-shadow: 1px 1px 2px #fff;
  background-color: rgba(255,238,0,.7);
  -webkit-background-size: 7px 7px;
  outline: solid 2px rgba(255,238,0,.7);
  transition: 0.5s;
}

/* Page Top */
.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    z-index: 9;
    width: 50px;
    height: 50px;
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 2.5;
    letter-spacing: 1px;
    background: #0136a0;
    border-radius: 3px;
    visibility: hidden;
    padding: 5px;
    -webkit-transform: translate3d(0, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    transition-duration: 0.3s
}

.back-to-top:hover {
    color: #fff;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: cubic-bezie r(0.7, 1, 0.7, 1)
}

.back-to-top.back-to-top-is-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7,1,0.7,1)
}

.back-to-top.back-to-top-is-visible:hover {
    opacity: .7;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7,1,0.7,1)
}

.back-to-top.back-to-top-fade-out {
    opacity: 1
}

.back-to-top.back-to-top-fade-out:hover {
    opacity: .7;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7,1,0.7,1)
}

/* Buttons */
.link {
  color: #000;
  font-size: 18px;
  letter-spacing: .2rem;
  padding: 5px 0;
  font-weight: 400;
  display: inline-block;
  position: relative;
}

.link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #333;
  bottom: 0;
  width: 0%;
  -webkit-transition: .3s width ease-in-out;
  -o-transition: .3s width ease-in-out;
  transition: .3s width ease-in-out;
}

.link:hover {
  color: #333;
}

.link:hover:before {
  width: 100%;
}

.link.dark {
  color: #333;
}

.link.dark:before {
  background: #333;
}

.link.dark:hover {
  color: #333;
}

.link.primary {
  color: #ff896b;
}

.link.primary:before {
  background: #ff896b;
}

.link.primary:hover {
  color: #ff896b;
}

.link.reverse:before {
  width: 100%;
}

.link.reverse:hover:before {
  width: 0;
}

/* Site Nav */
.sticky-wrapper {
  z-index: 999;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-nav {
  padding-top: 25px;
  padding-bottom: 25px;
  position: fixed;
  left: 0;
  z-index: 1002;
  width: 100%;
  top: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-nav .container {
  position: relative;
}

.sticky-wrapper .site-nav .logo-wrap {
  position: absolute;
  left: 0;
}

@media (max-width: 767.98px) {
  .sticky-wrapper .site-nav .logo-wrap {
    left: 15px;
  }
  
  .sticky-wrapper .site-nav .site-logo img {
    width: 80%;
  }
}

.sticky-wrapper .site-nav .icons-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 767.98px) {
  .sticky-wrapper .site-nav .icons-wrap {
    right: 15px;
  }
}

.sticky-wrapper .site-nav .logo-wrap, .sticky-wrapper .site-nav .icons-wrap {
  z-index: 1003;
}

.sticky-wrapper .site-nav .site-nav-ul-wrap {
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.sticky-wrapper .site-nav .site-logo {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.sticky-wrapper .site-nav .site-nav-ul {
  text-align: right;
}

.sticky-wrapper .site-nav .site-nav-ul, .sticky-wrapper .site-nav .site-nav-ul > li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sticky-wrapper .site-nav .site-nav-ul > li {
  text-align: left;
  display: inline-block;
}

.sticky-wrapper .site-nav .site-nav-ul > li > a {
  padding: 10px 20px;
  display: block;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
  text-transform: uppercase;
  letter-spacing: .05rem;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.sticky-wrapper .site-nav .site-nav-ul > li > a:before {
  left: 20px;
  right: 20px;
  content: "";
  position: absolute;
  height: 3px;
  background: #ff896b;
  bottom: 0;
  width: 0%;
  -webkit-transition: .2s width ease-in-out;
  -o-transition: .2s width ease-in-out;
  transition: .2s width ease-in-out;
}

.sticky-wrapper .site-nav .site-nav-ul > li > a:hover {
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}

.sticky-wrapper .site-nav .site-nav-ul > li > a:hover:before {
  width: calc(100% - 40px);
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children {
  position: relative;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul {
  visibility: hidden;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 210px;
  background: #fff;
  padding: 15px 0px;
  margin-top: 20px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1.5;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li {
  display: block;
  /* 2nd level hover*/
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li a, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li a {
  font-size: 14px;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  color: #333;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li a:hover, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li a:hover {
  color: #000;
  background: #ddd;
  padding-left: 30px;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children {
  position: relative;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children > a, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children > a {
  position: relative;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children > a:before, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children > a:before {
  position: absolute;
  content: "\e315";
  font-size: 16px;
  top: 50%;
  color: #000;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children > ul, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children > ul {
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  z-index: 22;
  list-style: none;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #fff;
  padding: 20px 0px;
  margin-top: 20px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children > .dropdown a, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li.has-children > ul a, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children > .dropdown a, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li.has-children > ul a {
  padding-left: 30px;
  padding-right: 30px;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li:hover, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li:focus, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li:active, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li:hover, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li:focus, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li:active {
  cursor: pointer;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li:hover > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li:focus > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > .dropdown > li:active > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li:hover > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li:focus > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children > ul > li:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children:hover, .sticky-wrapper .site-nav .site-nav-ul > li.has-children:focus, .sticky-wrapper .site-nav .site-nav-ul > li.has-children:active {
  cursor: pointer;
}

.sticky-wrapper .site-nav .site-nav-ul > li.has-children:hover > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children:focus > .dropdown, .sticky-wrapper .site-nav .site-nav-ul > li.has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.sticky-wrapper .site-nav .site-nav-ul > li.active > a {
  position: relative;
}

.sticky-wrapper .site-nav .site-nav-ul > li.active > a:before {
  color: #fff;
  width: calc(100% - 40px);
}

.sticky-wrapper .site-nav.dark .site-logo {
  color: #000;
}

.sticky-wrapper .site-nav.dark .site-nav-ul li a {
  color: #000;
}

.sticky-wrapper .site-nav.dark .site-nav-ul > li > a:before {
  background: #ff896b;
}

.sticky-wrapper .site-nav.dark .burger:before, .sticky-wrapper .site-nav.dark .burger span, .sticky-wrapper .site-nav.dark .burger:after {
  background: #000;
}

.sticky-wrapper.is-sticky .site-nav {
  background: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

@media (min-width: 992px) {
  .sticky-wrapper.is-sticky .site-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.sticky-wrapper.is-sticky .site-nav a {
  color: #000;
  text-shadow: none;
}

.sticky-wrapper.is-sticky .site-nav .site-nav-ul li a {
  color: #000;
  text-shadow: none;
}

.sticky-wrapper.is-sticky .site-nav .site-nav-ul > li > a:before {
  background: #ff896b;
}

.sticky-wrapper.is-sticky .icons-top li a {
  background: #000;
  color: #fff;
  opacity: 1;
}

.sticky-wrapper.is-sticky .icons-top li a:hover {
  background: #ff896b;
  color: #fff;
}

.sticky-wrapper.is-sticky .burger:before, .sticky-wrapper.is-sticky .burger span, .sticky-wrapper.is-sticky .burger:after {
  background: #000;
}

/* Mobile nav */
.site-mobile-menu {
  position: fixed;
  z-index: 1009;
  height: 100vh;
  background: #fff;
  width: 280px;
  overflow: auto;
  padding-top: 30px;
  padding-bottom: 70px;
  width: 280px;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1), 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
}

.offcanvas .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .close-wrap {
  margin-right: 20px;
  position: relative;
}

.site-mobile-menu .close-wrap a {
  margin-right: 15px;
}

.site-mobile-menu .close-wrap a:hover {
  opacity: .5;
}

.site-mobile-menu .close-wrap a .close-label {
  margin-right: 20px;
  color: #333;
}

.site-mobile-menu .close-wrap a .close-times {
  position: relative;
  margin-top: 4px;
  right: 0;
}

.site-mobile-menu .close-wrap a .close-times .bar1, .site-mobile-menu .close-wrap a .close-times .bar2 {
  width: 2px;
  height: 20px;
  background: #000;
  position: absolute;
}

.site-mobile-menu .close-wrap a .close-times .bar1 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-mobile-menu .close-wrap a .close-times .bar2 {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.site-mobile-menu ul, .site-mobile-menu ul li {
  padding: 0;
  margin: 0;
  position: relative;
}

.site-mobile-menu ul a, .site-mobile-menu ul li a {
  position: relative;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  color: #333;
}

.site-mobile-menu ul a:hover, .site-mobile-menu ul li a:hover {
  color: #ff896b;
}

.site-mobile-menu ul > li > ul > li > a {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.site-mobile-menu ul > li > ul > li > ul > li > a {
  position: relative;
  padding-left: 50px;
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.site-mobile-menu ul > li.has-children .arrow-collapse {
  position: absolute;
  right: 10px;
  top: 0px;
  z-index: 20;
  width: 45px;
  height: 45px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu ul > li.has-children .arrow-collapse:before {
  font-size: 11px !important;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu ul > li.has-children .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu ul > li.has-children > ul > li.has-children .arrow-collapse {
  top: -10px;
}

.site-wrap {
  width: calc(100%);
  -webkit-transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1), 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
}

.offcanvas .site-wrap {
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}

/* Burger */
.burger {
  width: 28px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  float: right;
}

.burger:before, .burger span, .burger:after {
  width: 100%;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  opacity: 1;
}

.burger:before, .burger:after {
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}

.burger:before {
  top: 4px;
}

.burger span {
  top: 15px;
}

.burger:after {
  top: 26px;
}

/* Hover */
.burger:hover:before {
  top: 7px;
}

.burger:hover:after {
  top: 23px;
}

/* Click */
.burger.active span {
  opacity: 0;
}

.burger.active:before, .burger.active:after {
  top: 40%;
}

.burger.active:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/
}

.burger.active:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/
}

.burger:focus {
  outline: none;
}

.featured-rooms {
  background-color: #b4a9a8;
  background-color: #fff;
}

.jarallax-keep-img {
  position: relative;
  z-index: 0;
}

.jarallax-keep-img > .jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  z-index: -100;
}

span[data-jarallax-element] {
  display: inline-block;
}

.jarallax {
  position: relative;
  z-index: 0;
  height: 100vh;
  width: 100%;
}

.jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.with-slider {
  position: relative;
}

.with-slider .swiper-custom-wrap {
  position: absolute;
  right: 0;
  margin-top: 7rem;
  top: 0;
  width: 70%;
}

/* Carousel 4*/
.slide-one-item {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .slide-one-item .owl-nav {
    display: none;
  }
}

.slide-one-item .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.slide-one-item .owl-dots .owl-dot {
  display: inline-block;
}

.slide-one-item .owl-dots .owl-dot > span {
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  display: inline-block;
  width: 15px;
  height: 3px;
  background: rgba(255, 137, 107, 0.4);
  margin: 3px;
}

.slide-one-item .owl-dots .owl-dot.active > span {
  width: 15px;
  background: #ff896b;
}

.thumbnail {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateY(50%) translateX(-50%);
  -ms-transform: translateY(50%) translateX(-50%);
  transform: translateY(50%) translateX(-50%);
  z-index: 99;
}

.thumbnail li {
  display: inline-block;
}

.thumbnail li a {
  display: block;
  margin: 4px;
}

.thumbnail li a img {
  width: 50px;
  border-radius: 50%;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.thumbnail li.active a img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

/* Footer Line */

.bg-body-darker {
  background: #ccc;
}

.cta {
  padding: 0.1rem 0 !important;
}

/* Footer */

footer {
  padding: 1rem 0 0;
  font-size: 15px;
}

footer h2 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: right;
}

footer h3 {
  font-size: 14px;
  margin: 0 0 10px;
  color: #000;
  line-height: 1.5;
  text-align: right;
}

footer h3 span {
  letter-spacing: -0.1em;
}

footer h4 {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 13px;
  margin: 10px 0;
  color: #000;
  text-align: center;
  line-height: 2.2;
}

footer h5 {
  font-size: 16px;
  margin: 0 0 10px;
  color: #000;
  line-height: 1.5;
}

footer h6 {
  font-size: 14px;
  margin: 0 0 10px;
  color: #000;
  line-height: 1.5;
  padding-top: 10px;
}

footer p {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

footer a {
  color: rgba(0, 0, 0, 0.7);
}

footer a:hover {
  color: #333;
}

footer img:hover {
  opacity: 0.6;
}

footer ul li {
  margin-bottom: 10px;
}

footer .form-subscribe .form-control {
  background: none;
  border-radius: 0;
  border: 1px solid #ccc;
}

footer .form-subscribe .form-control:active, footer .form-subscribe .form-control:focus {
  color: #333;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn {
  font-size: 16px;
  font-weight: 400;
}

.btn.btn-black {
  background: #333;
  color: #fff;
}

.custom-row {
  margin-left: -25px !important;
  margin-right: -25px !important;
}

.custom-row > .col,
.custom-row > [class*="col-"] {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.ul-check li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 10px;
}

.ul-check li:before {
  font-family: 'icomoon';
  content: "\e5ca";
  position: absolute;
  left: 0;
  font-size: 22px;
  top: -4px;
  color: #333;
}

.slide-thumb {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.slide-thumb a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.slider-counter {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 150px;
  padding: 20px 0;
  background: #fff;
  z-index: 19;
}

@media (max-width: 767.98px) {
  .slider-counter {
    width: auto !important;
    padding-left: 30px;
    padding-right: 20px;
  }
}

.relative {
  position: relative !important;
}

.media-29190 {
  margin-bottom: 40px;
}

.media-29190 .label {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  color: #b3b3b3;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: .1rem;
}

.media-29190 p {
  font-size: 2rem;
  line-height: 1.5;
  font-family: 'Shippori Mincho', serif;
}

.media-29190 p:last-child {
  margin-bottom: 0;
}


/* Slider Dots */
@media (max-width: 991.98px) {
  .owl-hero .owl-nav {
    display: none;
  }
}

.owl-hero .owl-nav .owl-prev,
.owl-hero .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #333 !important;
  opacity: 0;
}

.owl-hero .owl-nav .owl-prev span,
.owl-hero .owl-nav .owl-next span {
  font-size: 30px;
}

.owl-hero .owl-nav .owl-prev:hover,
.owl-hero .owl-nav .owl-next:hover {
  color: #333;
}

.owl-hero .owl-nav .owl-prev:active, .owl-hero .owl-nav .owl-prev:focus,
.owl-hero .owl-nav .owl-next:active,
.owl-hero .owl-nav .owl-next:focus {
  outline: none;
}

.owl-hero .owl-nav .owl-prev {
  left: 20px;
}

.owl-hero .owl-nav .owl-next {
  right: 20px;
}

.owl-hero .owl-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
}

.owl-hero .owl-dots .owl-dot {
  display: inline-block;
}

.owl-hero .owl-dots .owl-dot > span {
  margin: 4px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(153, 153, 153, 0.5);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-hero .owl-dots .owl-dot.active > span {
  background: rgba(51, 51, 51, 0.5);
}

/* Loading */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
  border: 10px solid red;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/preloader.gif) center no-repeat #fff;
}

.js .animate-box {
  opacity: 0;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}