/*----------------------------------------------------

Top
https://www.webdlab.com/labs/responsive-web-design-4/
414pxまでをスマホ縦画面用
415px〜959pxをスマホ横画面及びタブレット縦画面用
960px以上をタブレット横画面とPC用として使用
----------------------------------------------------*/
.visible, .invisible {
  opacity: 0.0;
  transition: opacity 1s ease;
}
.visible {
  opacity: 1.0;
}
.visible.translateY, .invisible.translateY {
  transform: translateY(50px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateY {
  transform: translateY(0);
}
.visible.translateToLeft, .invisible.translateToLeft {
  transform: translateX(100px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateToLeft {
  transform: translateX(0);
}
.visible.translateToRight, .invisible.translateToRight {
  transform: translateX(-100px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateToRight {
  transform: translateX(0);
}
.visible.translateScaleUp, .invisible.translateScaleUp {
  transform: scale(.5);
  transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateScaleUp {
  transform: scale(1);
}
.visible.translateScaleDown, .invisible.translateScaleDown {
  transform: scale(1.4);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateScaleDown {
  transform: scale(1);
}
.visible.translateRotate, .invisible.translateRotate {
  transform: rotate(360deg);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateRotate {
  transform: rotate(0deg);
}
/* main-slider
----------------------------------------------------*/
#main-slider {
  position: relative;
}
.slider li {
  position: relative;
}
.slider li::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: block;
  z-index: 2;
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
}
.slider li::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: block;
  background: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
}
.slider li .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  transform-origin: center top;
  transform: scale(1);
  transition: 4s transform ease-out;
}
.slider .slick-active .img {
  transform: scale(1.05);
}
#main-slider h2, #main-slider h3 {
  position: absolute;
}
#main-slider h2 strong, #main-slider h3 strong {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}
#main-slider h2 {
  width: 60%;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
#main-slider h2 strong {
  padding-top: 30%;
  background: url("../img/logo_top.svg") no-repeat;
}
#main-slider h3 {
  width: 90%;
  bottom: 10px;
  right: 10px;
}
#main-slider h3 strong {
  padding-top: 16.7%;
  background: url("../img/main_lead.png") no-repeat;
  background-size: 100% auto !important;
}
#main-slider h3.zh strong {
  background: url("../img/main_lead_zh.png") no-repeat;
}
#main-slider h3.en strong {
  background: url("../img/main_lead_en.png") no-repeat;
}
@media (min-width: 415px) {
  #main-slider h2 {
    width: 300px;
    left: 30px;
  }
  #main-slider h3 {
    width: 600px;
    bottom: 15px;
    right: 15px;
  }
}
@media (min-width: 960px) {
  #main-slider h2 {
    left: 50px;
  }
  #main-slider h3 {
    width: 720px;
    bottom: 25px;
    right: 25px;
  }
}
/* common
----------------------------------------------------*/
.ctt-box {
  text-align: center;
  margin-bottom: 30px;
}
.ctt-box h2 {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  line-height: 1.3;
}
.ctt-box strong {
  font-size: 2rem;
}
.ctt-box h2:after {
  content: attr(data-en);
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  display: block;
  letter-spacing: .1em;
}
.visible.ctt-box, .invisible.ctt-box {
  transform: translateY(30px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.ctt-box {
  transform: translateY(0);
}
.btn-box {
  margin-top: 15px;
}
.btn-box a {
  display: block;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-size: 1.5rem;
  background: url("../img/bg_btn.jpg") center;
  color: #fff;
  padding: 5px;
  text-decoration: none;
}
ruby {
  padding: 0 5px;
  letter-spacing: 0.1em;
}
[data-ruby] {
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.5em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1rem;
  letter-spacing: 0;
}
rt {
  display: none;
}
.error_url  {
    padding: 15px 0;
    color: #c00;
}
@media (min-width: 415px) {
  .ctt-box {
    margin-bottom: 40px;
  }
  .ctt-box h2 {
    font-size: 2rem;
  }
  .ctt-box strong {
    font-size: 2.4rem;
  }
  .ctt-box h2:after {
    font-size: 1.4rem;
  }
  .btn-box a {
    width: 400px;
  }
}
@media (min-width: 960px) {
  .ctt-box {
    margin-bottom: 60px;
  }
  .ctt-box h2 {
    font-size: 2.6rem;
  }
  .ctt-box strong {
    font-size: 3rem;
  }
  .ctt-box h2:after {
    font-size: 1.5rem;
  }
}
/* 
----------------------------------------------------*/
#sec01 {}
#sec01 .list-box {}
.list-box::after {
  clear: both;
  display: block;
  content: '';
}
.list-box .list-item {
  margin-bottom: 30px;
}
.list-box a {
  display: block;
  text-decoration: none;
}
.list-box a .data, .list-box a .ttl, .list-box a .cap {
  color: #333;
}
.list-box .pht {
  overflow: hidden;
  margin-bottom: 0.5em;
}
.list-box .pht-img {
  width: 100%;
  height: 0;
  padding-top: 66.6%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition-duration: 1s;
}
.list-box a:hover .pht-img {
  transition-duration: 1s;
  transform: scale(1.15);
}
.list-box .data {
  margin: 0.5em 0 0;
}
.list-box .ttl {
  margin: 0.3em 0;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}
#sec01 .list-box .list-item {
  float: left;
  width: 46%;
  margin: 0 8% 30px 0;
}
#sec01 .list-box .list-item .cap {
  display: none;
}
#sec01 .list-box .list-item:nth-child(2n) {
  margin-right: 0;
}
#sec01 .list-box .list-item.visible:nth-child(1) {
  transition: all 1s 0 ease;
}
#sec01 .list-box .list-item.visible:nth-child(2) {
  transition: all 1s .3s ease;
}
#sec01 .list-box .list-item.visible:nth-child(3) {
  transition: all 1s 0 ease;
}
#sec01 .list-box .list-item.visible:nth-child(4) {
  transition: all 1s .3s ease;
}
@media (min-width: 415px) {
  #sec01 .list-box .list-item .cap {
    display: block;
  }
}
@media (min-width: 960px) {
  #sec01 .list-box .list-item {
    width: 22%;
    margin: 0 4% 40px 0;
  }
  #sec01 .list-box .list-item:nth-child(2n) {
    margin-right: 4%;
  }
  #sec01 .list-box .list-item:nth-child(4n) {
    margin-right: 0;
  }
  #sec01 .list-box .list-item.visible:nth-child(1) {
    transition: all 1s 0 ease;
  }
  #sec01 .list-box .list-item.visible:nth-child(2) {
    transition: all 1s .3s ease;
  }
  #sec01 .list-box .list-item.visible:nth-child(3) {
    transition: all 1s .6s ease;
  }
  #sec01 .list-box .list-item.visible:nth-child(4) {
    transition: all 1s .9s ease;
  }
}
/* 
----------------------------------------------------*/
#sec02 {
  background: url("../img/bg_jimon.jpg");
  background-attachment: fixed;
  border-top: 1px solid #ededed;
}
#sec02 .ctt-box h2 {
  letter-spacing: 0.05em
}
#sec02 .list-box .pht {
  position: relative;
  height: 120px;
  background-size: cover;
  background-position: center;
}
/*#sec02 .list-box .pht01 {
background-image: url("../img/pht_trip01.jpg");
}
#sec02 .list-box .pht02 {
background-image: url("../img/pht_trip02.jpg");
}
#sec02 .list-box .pht03 {
background-image: url("../img/pht_trip03.jpg");
}
#sec02 .list-box .pht04 {
background-image: url("../img/pht_trip04.jpg");
}
#sec02 .list-box .pht05 {
background-image: url("../img/pht_trip05.jpg");
}
#sec02 .list-box .pht06 {
background-image: url("../img/pht_trip06.jpg");
}*/
#sec02 .list-box .pht::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
#sec02 .list-box h3 {
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.6rem;
  z-index: 1
}
#sec02 .list-box .txt {
  margin: 1em .5em 0;
  font-size: 1.2rem;
}
#sec02 .list-box .txt .list-km {
  padding-left: 1.5em;
  position: relative;
}
#sec02 .list-box .txt .list-km::before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5e7701;
}
#sec02 .list-box .txt .list-km::after {
  position: absolute;
  content: '';
  display: block;
  top: 8px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
#sec02 .txt {
  font-size: 1.4rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 700;
  text-align: center;
}
#sec02 .list-box .txt {
  text-align: left;
}
@media (min-width: 415px) {
  #sec02 .list-box h3 {
    font-size: 1.8rem;
  }
  #sec02 .list-box .list-item {
    float: left;
    width: 46%;
    margin: 0 8% 30px 0;
  }
  #sec02 .list-box .list-item:nth-child(2n) {
    margin-right: 0;
  }
  #sec02 .btn-box a {
    width: 100%;
  }
  #sec02 .list-box .list-item.visible:nth-child(1) {
    transition: all 1s 0 ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(2) {
    transition: all 1s .3s ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(3) {
    transition: all 1s 0 ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(4) {
    transition: all 1s .3s ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(5) {
    transition: all 1s 0 ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(6) {
    transition: all 1s .3s ease-in;
  }
  #sec02 .txt {
    font-size: 1.6rem;
  }
  #sec02 .txt br {
    display: block;
  }
}
@media (min-width: 960px) {
  #sec02 .list-box h3 {
    font-size: 2rem;
  }
  #sec02 .list-box .list-item {
    width: 31%;
    margin: 0 3.5% 30px 0;
  }
  #sec02 .list-box .list-item:nth-child(2n) {
    margin-right: 3.5%;
  }
  #sec02 .list-box .list-item:nth-child(3n) {
    margin-right: 0;
  }
  #sec02 .list-box .list-item.visible:nth-child(1) {
    transition: all 1s 0 ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(2) {
    transition: all 1s .3s ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(3) {
    transition: all 1s .6s ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(4) {
    transition: all 1s .9s ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(5) {
    transition: all 1s 1.2s ease-in;
  }
  #sec02 .list-box .list-item.visible:nth-child(6) {
    transition: all 1s 1.5s ease-in;
  }
}
/* 
----------------------------------------------------*/
.secPht {
  height: 200px;
    -webkit-overflow-scrolling : touch;
  /*background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;*/
}
/*#secPht01 {
  background-image: url("../img/bg_pht01.jpg");
}
#secPht02 {
  background-image: url("../img/bg_pht02.jpg");
}
#secPht03 {
  background-image: url("../img/bg_pht03.jpg");
}
#secPht04 {
  background-image: url("../img/bg_pht04.jpg");
}*/
@media (min-width: 415px) {}
@media (min-width: 960px) {
  .secPht {
    height: 400px;
   /* background-attachment: fixed;*/
  }
}
/* 
----------------------------------------------------*/
#sec03 {
  /*background-image: url("../img/sec04_bg.jpg");
background-repeat: no-repeat;
background-position: center;*/
  background-image: url("../img/bg_jimon2.jpg");
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#sec03::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #fff;
  -webkit-transform: skewX(20deg);
  transform: skewX(20deg);
  z-index: -1;
}
#sec03.visible::before {
  transition: all 1s ease-in;
  right: -65%;
}
#sec03 .ctt-box {
  margin-bottom: 0;
}
/*#sec03 .txt {
  font-size: 1.4rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 700;
  text-align: center;
}*/
/*#sec03 .txt br {
  display: none;
}*/
@media (min-width: 415px) {
  /*#sec03 .txt {
    font-size: 1.6rem;
  }
  #sec03 .txt br {
    display: block;
  }*/
}
@media (min-width: 960px) {}
/* 
----------------------------------------------------*/
#sec04 .sec-box {
  padding: 0;
}
#sec04 .list-item {
  background: #152503;
  color: #fff;
  padding: 20px 20px 25px;
  margin-bottom: 0;
}
#sec04 .list-item:nth-child(2) {
  background: #121909;
}
#sec04 .list-item .txt {
  text-align: center;
  background-size: 0;
}
#sec04 .list-item .room {
  background: #4d5638;
  padding: 22px 0 12px;
  font-size: 1.6rem;
  margin: 1.5em 0;
}
.en-US  #sec04 .list-item .room,
.zh-CN  #sec04 .list-item .room {
  padding: 12px 0;
}
#sec04 .list-item .room rt {
  letter-spacing: 0;
}
#sec04 .list-item h3 {
  display: inline-block;
  border-bottom: 1px solid #506500;
}
#sec04 .list-item .btn-box a {
  width: 100%;
}
.slick-dots li button:before {
  opacity: 1;
  color: #506500;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #779e2d;
}
@media (min-width: 415px) {
  #sec04 {
    background: #152503;
  }
  #sec04 .list-box::after {
    clear: both;
    display: block;
    content: '';
  }
  #sec04 .list-item {
    float: left;
    width: 33.3%;
  }
}
@media (min-width: 960px) {
  #sec04 .list-item .txt {
    padding-bottom: 109%;
    /*background-image: url("../img/madori01.png");*/
    background-repeat: no-repeat;
    background-position: center bottom 10px;
    background-size: 100% auto;
  }
  /*  #sec04 .list-item:nth-child(2) .txt {
    background-image: url("../img/madori02.png");
  }
  #sec04 .list-item:nth-child(3) .txt {
    background-image: url("../img/madori03.png");
  }*/
}
/* 
----------------------------------------------------*/
#sec05 {}
#sec05 ul::after {
  clear: both;
  display: block;
  content: '';
}
#sec05 li {
  float: left;
  width: 31%;
  margin: 0 3.5% 15px 0;
}
#sec05 li:nth-child(3n) {
  margin-right: 0;
}
.hospital {
  padding: 15px;
  max-width: 600px;
  color: #fff;
}
.hospital .pht {
  text-align: center;
}
.hospital .pht img {
  width: 100%;
}
.hospital .txt {
  font-size: 1.3rem;
  line-height: 1.6;
  padding: 15px 0 0;
  height: 200px;
  overflow: auto;
}
.lity-content:after {
  box-shadow: none;
}
@media (min-width: 415px) {
  #sec05 li {
    width: 15%;
    margin: 0 2% 0 0;
  }
  #sec05 li:nth-child(3n) {
    margin-right: 2%;
  }
  #sec05 li:nth-child(6n) {
    margin-right: 0;
  }
  .hospital .txt {
    height: auto;
    overflow: hidden;
  }
}
@media (min-width: 960px) {
  #sec05 li.visible:nth-child(1) {
    transition: all .5s 0 ease;
  }
  #sec05 li.visible:nth-child(2) {
    transition: all .5s .3s ease;
  }
  #sec05 li.visible:nth-child(3) {
    transition: all .5s .6s ease;
  }
  #sec05 li.visible:nth-child(4) {
    transition: all .5s .9s ease;
  }
  #sec05 li.visible:nth-child(5) {
    transition: all .5s 1.2s ease;
  }
  #sec05 li.visible:nth-child(6) {
    transition: all .5s 1.5s ease;
  }
}
/* 
----------------------------------------------------*/
#sec06 {
  background-image: url("../img/bg_jimon3.jpg");
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#sec06::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 0;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-image: url("../img/bg_jimon.jpg");
  -webkit-transform: skewY(25deg);
  transform: skewY(25deg);
}
#sec06.visible::before {
  transition: all 1s ease;
  top: -25%;
  z-index: -1;
}
#sec06 .txt {
  text-align: center;
}
#sec06 .list-box {
  margin-top: 30px;
}
#sec06 .list-item {
  background: #fffbec;
  padding: 20px 20px 25px;
  margin-bottom: 0;
}
#sec06 .list-item:nth-child(2) {
  background: #eae3cc;
}
#sec06 .list-item .txt {
  margin: 1em 0;
  text-align: left;
}
#sec06 .list-item .txt h3 {
  font-weight: 700;
  padding-bottom: 5px;
}
@media (min-width: 415px) {
  #sec06::before {
    top: -120%;
  }
  #sec06.visible::before {
    top: -85%;
  }
  #sec06 .list-box .list-item {
    float: left;
    width: 50%;
    padding: 15px;
  }
  #sec06 .list-box .list-item .txt {
  }
  #sec06 .btn-box a {
    width: 100%
  }
}
@media (min-width: 960px) {
  #sec06::before {
    top: -200%;
  }
  #sec06.visible::before {
    top: -150%;
  }
  #sec06 .ttl-box {
    float: left;
    width: 26%;
    padding-top: 140px;
    text-align: left !important;
  }
  #sec06 .ttl-box .ctt-box, #sec06 .ttl-box .ctt-box + .txt {
    text-align: left;
  }
  #sec06 .list-box {
    float: right;
    width: 74%;
    margin-top: 0;
  }
}
/* 
----------------------------------------------------*/
#sec07 {
  background-image: url("../img/bg_jimon4.jpg");
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  order: -1;
}
.tab-label {
  color: #333;
  background: #fff;
  border: 1px solid #b9ab8b;
  text-align: center;
  padding: 15px 0;
  order: -1;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  line-height: 1.4;
  font-size: 1.2rem;
  position: relative;
}
.tab-label strong {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked + .tab-label {
  background: #b9ab8b;
  color: #fff;
}
.tab-switch:checked + .tab-label::after {
  content: '';
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -7px;
  left: 50%;
  margin-left: -7px;
  background: #b9ab8b;
  transform: rotate(45deg);
}
.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 30px 0 20px;
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
.map-box {
  text-align: center;
}
.access-box {}
.access-box::after {
  clear: both;
  display: block;
  content: '';
}
.access-box h3 {
  text-align: center;
  background: url("../img/bg_btn2.jpg") center;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  margin: 18px 0 8px;
}
.access-box .list {
  margin: 0 1.5em;
}
#sec07 .spot {
  padding: 20px;
  background: #fff;
}
#sec07 .spot .ctt-box {
  margin-bottom: 20px;
}
#sec07 .spot::after, #sec07 .spot ul::after {
  clear: both;
  content: '';
  display: block;
}
#sec07 .spot li {
  padding: 3px 0;
  border-bottom: 1px dashed #ccc;
  text-align: right;
  position: relative;
  background-size: 0;
}
#sec07 .spot li strong {
  position: absolute;
  left: 0;
  font-weight: 700;
}
#sec07 .spot .note {
	text-align:right;
	padding-top:15px;
	font-size:85%;
}

.en-US  #sec07 .spot li,
.zh-CN  #sec07 .spot li {
  text-align: left;
  position:inherit;
}
.en-US  #sec07 .spot li strong,
.zh-CN  #sec07 .spot li strong  {
  position:inherit;
  left:auto;
}
@media (min-width: 415px) {
  #sec07 .spot li {
    float: left;
    width: 48%;
    margin: 0 4% 0 0;
  }
  #sec07 .spot li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .access-box {}
  .access-box .access01 {
    float: left;
    width: 48%;
  }
  .access-box .access02 {
    float: right;
    width: 48%;
  }
  .access-box h3 {
    margin: 24px 0 8px;
  }
  #sec07 .spot {
    padding: 30px;
  }
  #sec07 .spot ul {
    float: none;
    width: auto;
    padding: 0;
  }
  #sec07 .spot li {
    float: left;
    width: 15%;
    margin: 15px 2% 0 0;
    border: 0;
    text-align: left;
    padding-top: 10.5%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  #sec07 .spot ul li.visible:nth-child(1), #sec07 .spot ul li.visible:nth-child(2), #sec07 .spot ul li.visible:nth-child(3), #sec07 .spot ul li.visible:nth-child(4), #sec07 .spot ul li.visible:nth-child(5), #sec07 .spot ul li.visible:nth-child(6) {
    transition: all 1s 0 ease;
  }
  #sec07 .spot ul li.visible:nth-child(7), #sec07 .spot ul li.visible:nth-child(8), #sec07 .spot ul li.visible:nth-child(9), #sec07 .spot ul li.visible:nth-child(10), #sec07 .spot ul li.visible:nth-child(11), #sec07 .spot ul li.visible:nth-child(12) {
    transition: all 1s .3s ease;
  }
  /*  #sec07 .spot li.spot01 {
background-image: url("../img/pht_spot01.png")
}
#sec07 .spot li.spot02 {
background-image: url("../img/pht_spot02.png")
}
#sec07 .spot li.spot03 {
background-image: url("../img/pht_spot03.png")
}
#sec07 .spot li.spot04 {
background-image: url("../img/pht_spot04.png")
}
#sec07 .spot li.spot05 {
background-image: url("../img/pht_spot05.png")
}
#sec07 .spot li.spot06 {
background-image: url("../img/pht_spot06.png")
}
#sec07 .spot li.spot07 {
background-image: url("../img/pht_spot07.png")
}
#sec07 .spot li.spot08 {
background-image: url("../img/pht_spot08.png")
}
#sec07 .spot li.spot09 {
background-image: url("../img/pht_spot09.png")
}
#sec07 .spot li.spot10 {
background-image: url("../img/pht_spot10.png")
}
#sec07 .spot li.spot11 {
background-image: url("../img/pht_spot11.png")
}
#sec07 .spot li.spot12 {
background-image: url("../img/pht_spot12.png")
}*/
  #sec07 .spot li:nth-child(2n) {
    margin-right: 2%;
  }
  #sec07 .spot li:nth-child(6n) {
    margin-right: 0;
  }
  #sec07 .spot li strong {
    position: inherit;
    padding-right: 10px;
  }
}
/* 
----------------------------------------------------*/
#sec08 {
  background-image: url("../img/bg_jimon3.jpg");
}
#sec08 .list-item {
  background: url("../img/bg_jimon.jpg");
  padding: 10px 10px 20px;
  margin-bottom: 2px;
}
#sec08 .list-item::after {
  clear: both;
  display: block;
  content: '';
}
#sec08 .list-item .pht {
  float: left;
  width: 40%;
}
#sec08 .list-item .txt {
  float: right;
  text-align: center;
  width: 55%;
}
#sec08 .list-item .txt .room {
  font-size: 1.5rem;
  margin: 1em 0 0;
}
#sec08 .list-item .txt .room rt {
  letter-spacing: 0;
}
#sec08 .list-item .btn-box {
  margin-top: 10px;
}
#sec08 .list-item .btn-box a {
  width: 100%;
}
#sec08 .list-item .check {
  padding-top: 1em;
  font-size: 1.1rem;
  clear: both;
  text-align: center;
}
#sec08 .list-item .check a {
  color: #333;
  text-decoration: underline;
}

#sec08  .yoyaku-box {
    padding: 2em 0 0;
}
#sec08  .yoyaku-box h3  {
    text-align: center;
    font-weight: 700;
    padding-bottom: 1em;
	color: olive;
}
#sec08  .yoyaku-box .nagare {
    background: #f3f2ec;
    padding: 13px;
    border: 2px solid #e0d3be;
    font-size: 1rem;
    line-height: 1.5;
}
#sec08  .yoyaku-box ul  {
}
#sec08  .yoyaku-box li  {
    margin-bottom: 1em;
}
#sec08  .yoyaku-box h4  {
    font-weight: 700;
    font-size: 1.2rem;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #ccc;
}
#sec08  .yoyaku-box .txt    {
    margin: 0.5em 0 0;
}
#sec08  .yoyaku-box .list-km {
  padding-left: 1.5em;
  position: relative;
}
#sec08  .yoyaku-box .list-km::before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #333;
}
#sec08  .yoyaku-box .list-km::after {
  position: absolute;
  content: '';
  display: block;
  top: 6px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
#sec08  .yoyaku-box .cancel {
    padding: 15px;
    background: #fff;
}
@media (min-width: 415px) {
  #sec08 .list-item {
    float: left;
    width: 33%;
    margin: 0 .5% 0 0;
  }
  #sec08 .list-item:last-child {
    margin-right: 0;
  }
  #sec08 .list-item .pht, #sec08 .list-item .txt {
    float: none;
    ;
    text-align: center;
    width: 100%;
  }
  #sec08 .list-item .txt .room {
    margin: 1.5em 0 1em;
  }
  #sec08 .list-item .check {}
}
@media (min-width: 960px) {
  #sec08 .list-box .list-item.visible:nth-child(1) {
    transition: all 1s 0 ease;
  }
  #sec08 .list-box .list-item.visible:nth-child(2) {
    transition: all 1s .3s ease;
  }
  #sec08 .list-box .list-item.visible:nth-child(3) {
    transition: all 1s .6s ease;
  }
#sec08  .yoyaku-box h3  {
    font-size: 1.6rem;
}
#sec08  .yoyaku-box .nagare {
    padding: 18px;
}
#sec08  .yoyaku-box ul:after  {
    content: '';
    display: block;
    clear: both;
}
#sec08  .yoyaku-box li  {
    float: left;
    width: 32%;
    margin: 0 2% 1em 0;
}
#sec08  .yoyaku-box li:nth-child(3)  {
    margin-right: 0;
}
}
/*----------------------------------------------------

Lower

----------------------------------------------------*/
.pankuzu-box {
  width: 100%;
  height: 40px;
  background: #fafafa;
  font-size: 1.1rem;
}
.pankuzu {
  margin: auto;
  max-width: 90%;
}
.pankuzu ul {
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-end;
}
.pankuzu li {
  line-height: 40px;
}
.pankuzu li a {
  position: relative;
  padding-right: 40px;
  display: block;
}
.pankuzu li a::after {
  content: ">";
  display: block;
  position: absolute;
  width: 9px;
  height: 15px;
  top: 0;
  right: 15px;
}
@media screen and (max-width:960px) {
  .pankuzu ul {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
    text-align: right;
  }
  .pankuzu li {
    display: inline-block;
    flex: 0 0 40%;
  }
}
/* 当宿のご利用について・宿泊約款・個人情報保護方針
----------------------------------------------------*/
#about {
  background-image: url("../img/bg_jimon.jpg");
}
#about01 {
  padding-top: 70px;
  margin-top: -70px;
}
.kiyaku .lead {
  margin-bottom: 1em;
}
.kiyaku h3 {
  margin: 2em 0 .5em;
  font-weight: 700;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.5rem;
  text-align: center;
}
.kiyaku ol {
  list-style: decimal;
  margin: .5em 0 0 1.5em;
}
/*.kiyaku .txt    ol  {
list-style: lower-roman;
margin-left: 2em;
}*/
.kiyaku ol li {
  margin: .3em 0;
}
.kiyaku .katagaki {
  text-align: right;
  margin-top: 2em;
}
.kiyaku .katagaki strong {
  display: inline-block;
  text-align: left;
}
@media (min-width: 415px) {}
@media (min-width: 960px) {
  .txt-box.kiyaku, .txt-box.kiyakuTbl {
    width: 80%;
    margin: 0 auto;
  }
  .kiyaku h3 {
    font-size: 1.6rem;
    text-align: left;
  }
}
/* 会社概要・特定商取引法に基づく表記
----------------------------------------------------*/
#privacy, #transaction {
  background-image: url("../img/bg_jimon.jpg");
}
.kiyaku table {
  border-bottom: 1px solid #ccc;
}
.kiyaku table th, .kiyaku table td {
  padding: 15px 10px;
  border-top: 1px solid #ccc;
}
.kiyaku table th {
  background: url("../img/bg_jimon4.jpg");
  width: 28%;
}
.kiyaku table td {
  width: 72%;
  background: #fff;
}
/*.kiyakuTbl dl {
display: flex;
flex-wrap: wrap;
border-bottom: 1px solid #ccc;
}
.kiyakuTbl dt, .kiyakuTbl dd {
padding: 15px 10px;
border-top: 1px solid #ccc;
}
.kiyakuTbl dt {
background: url("../img/bg_jimon4.jpg");
width: 28%;
}
.kiyakuTbl dd {
width: 72%;
background: #fff;
}*/
@media (min-width: 415px) {}
@media (min-width: 960px) {
  .kiyaku table th, .kiyaku table td {
    padding: 20px;
  }
  /*  .kiyakuTbl dt, .kiyakuTbl dd {
padding: 20px;
}*/
}
/* よくある質問
----------------------------------------------------*/
#faq {}
#faq dl {}
#faq dt {
  background: url("../img/bg_btn2.jpg");
  padding: 3px 1em;
  color: #fff;
}
#faq dd {
  background: #fff;
  padding: 1em;
  margin-bottom: 1em;
  border: 1px solid #ddd;
}
@media (min-width: 415px) {}
@media (min-width: 960px) {}
/* 
----------------------------------------------------*/
#kiji-list {}
#kiji-list .list-box {}
#kiji-list .list-box .list-item {
  float: left;
  width: 46%;
  margin: 0 8% 30px 0;
}
#kiji-list .list-box .list-item .cap {
  display: none;
}
#kiji-list .list-box .list-item:nth-child(2n) {
  margin-right: 0;
}
.op-taiken {
  background-image: url("../img/bg_jimon.jpg");
}
@media (min-width: 415px) {
  #kiji-list .list-box .list-item .cap {
    display: block;
  }
}
@media (min-width: 960px) {
  #kiji-list .list-box .list-item {
    width: 22%;
    margin: 0 4% 50px 0;
  }
  #kiji-list .list-box .list-item:nth-child(2n) {
    margin-right: 4%;
  }
  #kiji-list .list-box .list-item:nth-child(4n) {
    margin-right: 0;
  }
}
/* 
----------------------------------------------------*/
.pager {
  padding-top: 30px;
}
.pager ul.pagination {
  text-align: center;
}
.pager .pagination li {
  margin: 0 5px;
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
}
.pager .pagination li a {
  display: block;
  line-height: 40px;
  background: #eee;
  color: #333;
  text-decoration: none;
}
.pager .pagination li a span {
  display: block;
}
.pager .pagination li a:hover, .pager .pagination li a.active {
  color: #fff;
  background: #779E2F;
}
@media only screen and (max-width: 415px) {
  .pager .pagination li {
    margin: 0 3px;
    width: 30px;
    height: 30px;
  }
  .pager .pagination li a {
    line-height: 30px;
  }
}
@media (min-width: 415px) {}
@media (min-width: 960px) {}
/* 
----------------------------------------------------*/
#kiji-dtl {}
.kiji-ttl {
  font-size: 1.6rem;
  padding: 10px 0 15px;
  position: relative;
}
.kiji-ttl:after {
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: url("../img/bg_jimon2.jpg");
}
.kiji-data {
  text-align: right;
  font-size: 1.2rem;
}
.kiji-box {
  padding: 1em 0 0;
  line-height: 1.8;
}
.kiji-box p, .kiji-box figure {
  margin: 0 0 1.5em 0;
}
.kiji-box figure figcaption {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #999;
}
.kiji-box figure img {
  max-width: 100%;
}
.kiji-box figure img + figcaption {
  margin-top: 0.5em;
}
.kiji-box figure figcaption.blocks-gallery-item__caption {
  font-size: 1.2rem;
}
.kiji-box figure ul.blocks-gallery-grid {
  margin: 0;
}
.kiji-box h1, .kiji-box h2, .kiji-box h3, .kiji-box h4, .kiji-box h5, .kiji-box h6 {
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.kiji-box h1 {
  font-size: 200%
}
.kiji-box h2 {
  font-size: 180%
}
.kiji-box h3 {
  font-size: 140%
}
.kiji-box h4 {
  font-size: 120%
}
.kiji-box h5 {
  font-size: 100%
}
.kiji-box h6 {
  font-size: 90%
}
.kiji-box strong {
  font-weight: 700;
}
.kiji-box em {
  font-style: italic;
}
.kiji-box ul {
  list-style: disc;
  margin: 1em 0 1em 1.5em;
}
.kiji-box ol {
  list-style: decimal;
  margin: 1em 0 1em 1.5em;
}
.kiji-box blockquote {
  margin: 0 0 1.5em;
  padding: 0 0 0 10px;
  border-left: 3px solid #ccc;
  font-size: 1.2rem;
  color: #999;
  line-height: 1.4;
}
.kiji-box figure.wp-block-table table {}
.kiji-box figure.wp-block-table table th {
  padding: 10px;
  border: 1px solid #ccc;
}
.kiji-box figure.wp-block-table table td {
  padding: 10px;
  border: 1px solid #ccc;
}
.kiji-nav::after {
  clear: both;
  display: block;
  content: '';
}
.kiji-nav {
  margin: 1.5em 0;
  display: flex;
  justify-content: center;
}
.kiji-nav .nav {}
.kiji-nav a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  margin: 0 1em;
  background: url("../img/bg_btn.jpg");
}
@media (min-width: 415px) {
  .kiji-ttl {
    font-size: 1.7rem;
  }
}
@media (min-width: 960px) {
  #kiji-dtl .txt-box {
    width: 80%;
    margin: 0 auto;
  }
  .kiji-box {
    padding: 2em 1em 0;
  }
  .kiji-ttl {
    font-size: 2.4rem;
  }
  .kiji-nav a {
    padding: 15px 25px;
  }
}
/* 
----------------------------------------------------*/
#sidebar {
  padding-top: 20px;
}
#sidebar .side-box {
  padding: 20px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
#sidebar .side-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg_jimon3.jpg");
  z-index: -1;
}
#sidebar .side-box h3 {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  line-height: 1.3;
  text-align: center;
  margin-bottom: 15px;
}
#sidebar .side-box li {
  padding: 1em 0;
  border-bottom: 1px solid #aaa;
}
#sidebar .side-box li:last-child {
  border-bottom: 0;
}
#sidebar .side-box li::after {
  clear: both;
  display: block;
  content: '';
}
#sidebar .side-box a {
  display: block;
  text-decoration: none;
}
#sidebar .side-box a .data, #sidebar .side-box a .ttl {
  color: #333;
}
#sidebar .side-box .pht {
  overflow: hidden;
  float: left;
  width: 30%;
}
#sidebar .side-box .pht-img {
  width: 100%;
  height: 0;
  padding-top: 66.6%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition-duration: 1s;
}
#sidebar .side-box a:hover .pht-img {
  transition-duration: 1s;
  transform: scale(1.15);
}
#sidebar .side-box .txt {
  float: right;
  width: 65%;
  font-size: 1.2rem;
  line-height: 1.4;
}
#sidebar .side-box .data {
  margin: 0 0 0.3em;
}
@media (min-width: 415px) {
  #sidebar .side-box {}
  #sidebar ul::after {
    clear: both;
    display: block;
    content: '';
  }
  #sidebar .side-box li {
    float: left;
    width: 18%;
    margin-right: 2.5%;
    border: 0;
  }
  #sidebar .side-box li:last-child {
    margin-right: 0;
  }
  #sidebar .side-box .pht, #sidebar .side-box .txt {
    float: none;
    width: 100%;
  }
  #sidebar .side-box h3 {
    font-size: 2rem;
  }
  #sidebar .side-box .data {
    margin: .5em 0 0.3em;
  }
}
@media (min-width: 960px) {
  #sidebar {
    width: 80%;
    margin: 0 auto;
  }
  #sidebar .side-box {
    padding: 30px;
    margin-top: 30px;
  }
}
/* 
----------------------------------------------------*/
#contact {}
#contact ul {
  margin: 0.5em 0;
}
#contact ul li {
  padding-left: 1.5em;
  position: relative;
}
#contact ul li::before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5e7701;
}
#contact ul li::after {
  position: absolute;
  content: '';
  display: block;
  top: 8px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
#contact table {
  margin: 1em 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
#contact th, #contact td {
  display: block;
  border-top: 1px solid #ccc;
}
#contact th {
  padding: 5px 10px;
  background: url("../img/bg_jimon4.jpg");
  text-align: left;
}
#contact td {
  padding: 10px;
  text-align: left;
}
#contact th.hissu:after {
  content: '＊';
  color: #e12e66;
}
#contact input, #contact select, #contact textarea {
  padding: 5px 10px;
  margin: 3px 0;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #FFF;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact label {
  display: inline-block;
}
#contact .mw_wp_form .horizontal-item {
  margin: 0 10px 0 0;
}
#contact .mw_wp_form .error {
  display: inline-block;
}
#contact .name, #contact .kana, #contact .tel {
  width: 50%
}
#contact .mail, #contact .mail_check, #contact .bikou {
  width: 100%;
}
#contact .submitBox {
  text-align: center;
}
#contact .submit, #contact .return {
  margin: 10px 10px 0;
  font-size: 1.3rem;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-appearance: none;
  cursor: pointer;
}
#contact .submit {
  padding: 10px 40px;
  border: 0;
  background: url("../img/bg_btn.jpg");
  color: #FFF;
}
#contact .return {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #ccc;
  color: #333;
}
#contact .comp {
  text-align: center;
}
#contact .comp h3 {
  color: #af0101;
  font-weight: 700;
  padding-bottom: 10px;
  font-size: 1.6rem;
}
#contact .comp .btn-box {
  padding-top: 20px;
}
@media (min-width: 415px) {
  #contact th, #contact td {
    display: table-cell;
  }
  #contact table th {
    background: url("../img/bg_jimon4.jpg");
    width: 28%;
  }
  #contact table td {
    width: 72%;
    background: #fff;
  }
}
@media (min-width: 960px) {
  #contact .txt-box {
    width: 80%;
    margin: 0 auto;
  }
  #contact table th, #contact table td {
    padding: 20px;
  }
  #contact .name, #contact .kana, #contact .tel {
    width: 40%
  }
  #contact .mail, #contact .mail_check {
    width: 60%;
  }
  #contact .bikou {
    width: 100%;
  }
  #contact .submit:hover, #contact .return:hover {
    opacity: 0.6;
  }
  #contact .submit {
    padding: 10px 80px;
  }
  #contact .return {
    padding: 10px 40px;
  }
}
/* 
----------------------------------------------------*/
.kyoisuke-box {}
#kyoisuke1, #kyoisuke3 {
  background: #152503;
  color: #fff;
}
#kyoisuke2 {
  background: #121909;
  color: #fff;
}
#kyoisuke1 .sec-box, #kyoisuke2 .sec-box, #kyoisuke3 .sec-box {
  padding: 60px 35px;
}
.kyoisuke-box .slider-box {
  margin: 0 auto;
  width: 90%;
}
.kyoisuke-box .slick-dots li {
  margin: 0;
}
.kyoisuke-box .thumb_kyoisuke {
  margin: 10px 0;
}
.kyoisuke-box .thumb_kyoisuke img {
  width: 97% !important;
  margin: 0 auto;
}
.kyoisuke-box .thumb_kyoisuke .slick-current.slick-active img {
  opacity: 0.6;
}
.kyoisuke-box .slick-prev {
  left: -10px;
  z-index: 1;
}
.kyoisuke-box .slick-next {
  right: -10px;
  z-index: 1;
}
.kyoisuke-box h3.stt {
  font-size: 1.4rem;
  text-align: center;
  margin: 2em 0 1em;
}
.kyoisuke-box h3.stt strong {
  display: inline-block;
  border-bottom: 1px solid #506500;
}
.kyoisuke-box .madori-box {
  text-align: center;
  padding: 30px 50px 40px;
}
.kyoisuke-box .madori-box a {
  position: relative;
}
.kyoisuke-box .madori-box a::after {
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  right: -10px;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23ffffff" d="M15.5,14L20.5,19L19,20.5L14,15.5V14.71L13.73,14.43C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.43,13.73L14.71,14H15.5M9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14M12,10H10V12H9V10H7V9H9V7H10V9H12V10Z" /></svg>') no-repeat center center;
}
.kyoisuke-box .txt table {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}
.kyoisuke-box .txt th, .kyoisuke-box .txt td {
  display: block;
}
.kyoisuke-box .txt th {
  background: #4d5638;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
}
.kyoisuke-box .txt td {
  padding: 10px 5px;
}
.kyoisuke-box .txt li {
  display: inline-block;
}
.kyoisuke-box .txt li::after {
  content: '/';
  padding: 0 5px 0 8px;
  display: inline-block;
}
.kyoisuke-box .reserve-btn  {
    padding-top: 10px;
    text-align: center;
}
.kyoisuke-box .reserve-btn  .check  {
    padding-top: 10px;
}
.kyoisuke-box .reserve-btn  .btn-box    a   {
    padding: 10px;
}
.kyoisuke-box .reserve-btn  .check  a   {
    color: #fff;
}
#kyoisuke ul::after {
  clear: both;
  display: block;
  content: '';
}
#kyoisuke li {
  padding: 5px;
}
#kyoisuke a {
  display: block;
  text-decoration: none;
  background-size: 100% auto;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-shadow: 0 0 3px #333;
}
#kyoisuke h3 {
  font-size: 1.5em;
}
#kyoisuke-side {
  width: 30px;
  padding: 0 10px 0 8px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  white-space: nowrap;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  color: #909090;
}
.kyoisuke-navi {
  left: auto;
  right: 24px;
  transform-origin: 100% 100%;
  transform: rotate(90deg);
  display: table;
  position: absolute;
  top: 50%;
  width: 360px;
  height: 12px;
  margin-top: 180px;
  line-height: 12px;
  text-align: center;
  opacity: 0;
  transition: 0.6s ease-in-out;
}
.kyoisuke-navi.scrolled {
  opacity: 1;
  transition: 0.6s ease-in-out;
}
.kyoisuke-navi li {
  display: table-cell;
  padding: 0 1px;
}
.kyoisuke-navi a {
  text-decoration: none;
  color: #ccc;
  display: block;
  padding: 3px 6px;
  background: url("../img/bg_btn.jpg");
  border-radius: 2px;
}
@media (min-width: 415px) {
  #kyoisuke1 .sec-box, #kyoisuke2 .sec-box, #kyoisuke3 .sec-box {
    padding: 60px 50px;
  }
  .kyoisuke-box .lead {
    margin: 1em auto 3em;
    width: 80%;
  }
  .kyoisuke-box .txt {
    float: right;
    width: 52%;
  }
  .kyoisuke-box .madori-box {
    float: left;
    width: 44%;
    padding: 0;
  }
  #kyoisuke li {
    float: left;
    width: 33.3%;
    padding: 0 10px;
  }
  #kyoisuke a {
    padding: 15px 5px;
  }
  #kyoisuke-side {
    font-size: 12px;
  }
  .kyoisuke-navi {
    right: 28px;
  }
  .kyoisuke-navi a {
    padding: 6px;
  }
}
@media (min-width: 960px) {
  #kyoisuke1 .sec-box, #kyoisuke2 .sec-box, #kyoisuke3 .sec-box {
    padding: 100px 50px;
  }
  .kyoisuke-box .slider-box {
    margin: 0 auto;
    width: 80%;
  }
  .kyoisuke-box .slider_kyoisuke img {
    width: 100%;
  }
  .kyoisuke-box h3.stt {
    font-size: 1.8rem;
  }
  .kyoisuke-box .lead {
    margin: 1em auto 5em;
    width: 60%;
  }
  .kyoisuke-box .txt table {
    font-size: 1.2rem;
  }
  .kyoisuke-box .txt th, .kyoisuke-box .txt td {
    padding: 15px;
    display: table-cell;
  }
  .kyoisuke-box .txt th {
    width: 28%;
  }
  .kyoisuke-box .txt td {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 72%;
  }
.kyoisuke-box .reserve-btn  {
    padding-top: 20px;
}
  #kyoisuke ul {
    width: 90%;
    margin: 0 auto;
  }
  #kyoisuke li {
    padding: 0 15px;
  }
  #kyoisuke h3 {
    font-size: 1.8em;
  }
  #kyoisuke-side {
    font-size: 13px;
  }
  .kyoisuke-navi {
    right: 38px;
  }
  .kyoisuke-navi li {
    padding: 0 3px;
  }
  .kyoisuke-navi a {
    padding: 10px 15px;
  }
}
/* 
----------------------------------------------------*/
.slick-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slick-slider .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  z-index: 1;
  width: 30px;
  height: 40px;
  background: url("../img/bg_btn.jpg")
}
.slick-slider .slide-arrow::after {
  content: '';
  position: absolute;
  display: block;
  height: 6px;
  width: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  margin-top: -3px;
}
.slick-slider .prev-arrow {
  left: -10px;
}
.slick-slider .prev-arrow::after {
  transform: rotate(135deg);
  left: 40%;
}
.slick-slider .next-arrow {
  right: -10px;
}
.slick-slider .next-arrow::after {
  transform: rotate(-45deg);
  right: 40%;
}
@media (min-width: 415px) {
  .slick-slider .slide-arrow {
    width: 40px;
    height: 70px;
  }
}
@media (min-width: 960px) {}
/* 
----------------------------------------------------*/
@media (min-width: 415px) {}
@media (min-width: 960px) {}


/* switcher削除
.bogo-language-switcher .current{
		display: none;
	}
.bogo-language-switcher .current li{
		text-align: right;
	}
.bogo-language-switcher .current a:before{
		content: "\f0ec";
		font-family: FontAwesome;
		padding-right: 8px;
}
*/