*{
  letter-spacing: 2px;
}
@charset "UTF-8";
.pc{
  display: none;
}
@media screen and (min-width:768px){
  .sp{
      display: none;
  }
  .pc{
    display: block;
  }
}
*:focus {
  outline: none;
}
.float{
	opacity: 0;
	transform: translate(0,80px);
	transition: all 800ms;

}
.float.scrollin{
	opacity: 1;
	transform: translate(0,0);
	display: block;
}
.float_slow{
	opacity: 0;
	transform: translate(0,80px);
	transition: all 1600ms;
}
.float_slow.scrollin{
	opacity: 1;
	transform: translate(0,0);
	display: block;
  height: auto;
}
h1,nav{
  position: absolute;
  z-index: 2;
}
h1{
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  letter-spacing: .8em;
  font-size: 2.5rem;
  top: 18vh;
  left: 10vw;
}
@media screen and (min-width:768px){
  h1{
    font-size: 3rem;
    top: 18vh;
    left: 50px;
    height: 100%;
  }
}
@media screen and (min-width:1024px){
  h1{
    font-size: 3.2rem;
    left: 100px;
  }
}
h1 span.line{
display: block;
position: relative;
}
h1 span.line:after{
  content: "";
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  margin-top: 0;
  margin-bottom: 0;
  left: -2.2rem;
  top: -70px;
}
@media screen and (min-width:768px){
  h1 span.line:after{
    left: -24px;
    top: -90px;
  }
}
@media screen and (min-width:1024px){
  h1 span.line:after{
    left: -27px;
    top: -90px;
  }
}
h1 span{
  margin-top: 5px;
  margin-bottom: -18px;
}
@media screen and (min-width:768px){
  h1 span{
    margin-top: 45px;
    margin-bottom: -30px;
  }
}
/* ナビゲーション */
#global-navi {
  top: 0;
  right: 0;
  width: 100%;
  position: fixed;
}
@media screen and (min-width:768px){
  #nav_wrapper nav{
    right: 0 !important;
    margin-top: 80px;
  }
  #nav_wrapper nav ul{
    position: absolute;
    right: 4rem;
  }
  .bk{
    color: #2C2C2C !important;
  }
  #nav_wrapper nav ul li a.bk:after{
    background: #2C2C2C;
  }
  .is-animation {
    background-color: rgba(255, 255, 255, .9);
    height: 70px;
    margin-top: 0 !important;
    padding-top: 20px;
    transition-duration:.5s;
  }
}
@media screen and (min-width:1024px){
  #nav_wrapper nav ul{
    right: 10rem;
  }
}
#nav_wrapper nav ul li{
  display:inline-block;
}
@media screen and (min-width:768px){
  #nav_wrapper nav ul li{
    font-size: 16px;
    margin-right: 5rem;
  }
  #nav_wrapper nav ul li:last-child{
    margin-right: 0;
  }
}
@media screen and (min-width:1024px){
  #nav_wrapper nav ul li{
    margin-right: 8rem;
  }
}

#nav_wrapper nav ul li a{
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 3px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width:768px){
  #nav_wrapper nav ul li a{
    font-size: 1.3rem;
    font-weight: normal;
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
    }
}
@media screen and (min-width:768px){
  #nav_wrapper nav ul li a:hover{
    text-decoration: none;
  }
  #nav_wrapper nav ul li a:hover:after{
    transform: scale(1, 1);
  }
  #nav_wrapper nav ul li a:after{
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .5s;
  }
}

@media screen and (max-width: 767px) {
  #nav_wrapper nav {
      position: fixed;
      top: 0;
      right: -50%;
      width: 50%;
      height: 100%;
      padding-top: 160px;
      background:rgba(255,255,255,.8);
      font-size: 16px;
      box-sizing: border-box;
      z-index: 2;

  }
  #nav_wrapper nav ul li {
      display:block;
      padding: 20px 28px
  }
  #nav_wrapper nav ul li a {
      text-decoration: none;
      color: #2C2C2C;
  }
  .btn-gnavi {
    position: fixed;
    width: 40px;
    height: 44px;
    cursor: pointer;
    right: 40px;
    top: 80px;
    z-index: 3;
  }
  .btn-gnavi span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 3;
  }
  .btn-gnavi span.bk_bg{
    background-color: #2C2C2C;
  }
  .btn-gnavi, .btn-gnavi span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-gnavi span:nth-of-type(1) {
    top: 0;
  }
  .btn-gnavi span:nth-of-type(2) {
    top: 10px;
  }
  .btn-gnavi span:nth-of-type(3) {
    bottom: 22px;
  }
  .btn-gnavi.open span{
    background-color: #2C2C2C;
  }
  .btn-gnavi.open span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-315deg);
    transform: translateY(20px) rotate(-315deg);
    top: -7px;
  }
  .btn-gnavi.open span:nth-of-type(2) {
    opacity: 0;
  }
  .btn-gnavi.open span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(315deg);
    transform: translateY(-20px) rotate(315deg);
    bottom: 10px;
  }
}

.swiper-container{
  overflow: hidden;
  width: 100%;
  /* min-height: 600px; */
  height: 100vh;
  background-color: #333;
  margin-bottom: 120px;
}
/* @keyframes zoom {
0% {
  transform: scale(1);
}
100% {
  transform: scale(1.2);
}
} */

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
animation: zoom 10s linear 0s 1 normal both;  
}
.slide-text{
position: absolute;
top: 50%;
left: 50%;
font-size: 46px;
font-family: serif;
font-weight: bold;
text-shadow: 2px 2px 8px #000;
color: #fff;
transform: translate(-50%,-50%);
}
.slide-img img{
object-fit: cover;
height: 100vh;
width: 100vw;
}


h2{
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin:  auto;
  padding: 0 0 120px;
  letter-spacing: 5px;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  position: relative;
  line-height: 3;
  font-size: 1.7rem;
  color: #2C2C2C;
  text-align: left;
}
@media screen and (min-width:768px){
  .inner_cap{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  h2{
    font-size: 1.5rem;
  }
}

@media screen and (min-width:768px){
  h2:before{
    content: "";
    width: 70%;
    height: 1px;
    background: #333;
    position: absolute;
    left: -100%;
    top: 30%;
  }
  h2:after{
    content: "";
    width: 70%;
    height: 1px;
    background: #333;
    position: absolute;
    right: -100%;
    top: 30%;
  }
}
@media screen and (min-width:1024px){
  h2:before{
    width: 100%;
    left: -130%;
  }
  h2:after{
    width: 100%;
    right: -130%;
  }
}

h3.vertical{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: auto;
  letter-spacing: 5px;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  position: relative;
  line-height: 2.5;
  color: #5F5F5f;
  text-align: left
}
@media screen and (min-width:768px){
  h3.vertical{
    line-height: 3;
    font-size: 1.3rem;
  }
}


h5{
  text-align: left;
  margin: 0 auto 40px;
}
h6{
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width:768px){
  h5,h6{
  margin: 0 0 40px 0;
  text-align: left;
  }
}
h5 span{
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
h6 span{
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
@media screen and (min-width:768px){
  h5 span,h6 span{
  margin: auto;
  position: relative;
  font-size: 1.4rem;
  width: 20%;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 3px;
  }
}
@media screen and (min-width:768px){
  h5 span:after,h6 span:after{
  content: "";
  width: 29vw;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 60px;
  margin-top: 10px;
  top: 3px;
  }
}
@media screen and (min-width:1024px){
  h5 span:after,h6 span:after{
  left: 105px;
  width: 33vw;
  }
}

/* FOOD,HOTELここから */
.food_hotel{
  background: #F8F8F8;
  position: relative;
  padding: 50px 0 0px;
}
@media screen and (min-width:768px){
  .food_hotel{
    padding: 100px 0 20px;
  }
}
#hotel{
  padding-bottom: 80px;
}
@media screen and (min-width:768px){
  #hotel{
    padding-bottom: 100px;
  }
}
.food_hotel a:hover{
  text-decoration: none;
  opacity: .8;
}
.food_hotel .soon:hover{
  opacity: 1 !important;
}
.food_hotel img:hover{
}
.food_hotel .soon img:hover{
  opacity: 1 !important;
}
.food_hotel h4{
  color: #2C2C2C;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  position: absolute;
  top: 192px;
  left: 5%;
  font-size: 1.4em;
  line-height: 1.4;
}
@media screen and (min-width:768px){
  .food_hotel h4{
    font-size: 1.8em;
    top: 218px;
    left: 5%;
    line-height: 1.6;
  }
}
.food_hotel h4 .line{
  position: relative;
}
.food_hotel h4 .line:after{
  content: "";
  width: 1px;
  height: 40px;
  background: #707070;
  position: absolute;
  margin-top: 0;
  margin-bottom: 0;
  left: -.9em;
  top: -50px;
}
@media screen and (min-width:768px){
  .food_hotel h4 .line::after{
    left: 1.3rem;
    top: -50px;
  }
}
.food_hotel h4,.food_hotel h4 span{
  letter-spacing: 4px;
}
.food_hotel h4 span.br{
  margin-top: 30px;
  display: block;
}

.food_hotel .box{
  margin-left: 7rem;
  margin-top: 20px;
}
@media screen and (min-width:768px){
  .food_hotel .box{
    margin-top: 0;
    margin-left: 12vw;
  }
}
.food_hotel .slickbox{
  /* width: 32rem; */
}
.food_hotel .slickbox li{
  width: 70rem;
}
.food_hotel .slickbox img{
  width: 100%;
}
.food_hotel .slick-slide{
  margin: 0 0 !important;
}

.food_hotel .slick-dots{
  display: flex;
  bottom: 10px;
  justify-content: center;
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  }
  .food_hotel .slick-dots li{
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  z-index: 2;
  cursor: pointer;
  }
  .food_hotel .slick-dots li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff;
  z-index: 1;
  }
  .food_hotel .slick-dots li button:before{
  font-family: 'slick';
  font-size: 6px;
  line-height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  text-align: center;
  opacity: .25;
  color: rgb(161, 150, 150);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }
  .food_hotel .slick-dots li.slick-active button:before{
  opacity:1;
  font-size: 1rem;
  background: #585858;
  border-radius: 50%;
  }





.food_hotel .name{
  text-align: left;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (min-width:768px){
  .food_hotel .name{
    font-size: 1.6rem;
    margin-top: 16px;
  }
}
.food_hotel .text{
  text-align: left;
  font-family: “游ゴシック体”, “Yu Gothic”, YuGothic, “ヒラギノ角ゴ Pro”, “Hiragino Kaku Gothic Pro”, “メ
イリオ”, Meiryo, sans-serif;
  font-size: 1.2rem;
  margin:0 0 15px;
  color: #5F5F5F;
}
@media screen and (min-width:768px){
  .food_hotel .text{
    font-size: 1.2rem;
  }
}
.food_hotel .btn{
  text-align: left;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  font-size: 1.3rem;
  position: relative;
  text-align: right;
  margin-top: 5px;
  font-weight: bold;
}
@media screen and (min-width:768px){
  .food_hotel .btn{
    font-size: 1.2rem;
  }
}
.food_hotel .btn a{
  position: relative;
}
.food_hotel .btn a:before{
  content: "";
  width: 6vw;
  height: 1px;
  background: #707070;
  position: absolute;
  left: -7vw;
  margin-top: 10px;
}
/* .food_hotel.line .slick-track{
  margin-left: 0;
} */

.food_hotel .info{
  border: solid 1px #595959;
  border-radius: 2px;
  padding: 9px 15px;
  font-family: “游ゴシック体”, “Yu Gothic”, YuGothic, “ヒラギノ角ゴ Pro”, “Hiragino Kaku Gothic Pro”, “メ
  イリオ”, Meiryo, sans-serif;
  font-size: 1.2rem;
  color: #595959;
}


/* FOODここまで */

/* クリエイターここから */
#creator{
  margin-top: 80px;
}
@media screen and (min-width:768px){
  #creator{
    margin-top: 100px;
  }
}
@media screen and (min-width:768px){
#creator h6,#map h6{
  margin-left: 14.5vw;
  }
}
@media screen and (min-width:768px){
  #creator h6 span,#map h6 span{
    margin: auto;
    position: relative;
    font-size: 1.5rem;
    width: 20%;
    display: inline-block;
    font-weight: 600;
  }
}
@media screen and (min-width:768px){
  #creator > div{
  width: 80%;
  margin: 30px auto 0;
  position: relative;
  }
}
#creator > div .num{
    display: block;
    margin-bottom: 3px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    margin-left: 6%;
    font-weight: bold;
  }
@media screen and (min-width:768px){
  #creator > div .num{
    display: block;
    margin-bottom: 3px;
    font-size: 1.2rem;
    margin-left: 0;
    font-weight: normal;
  }
}
#creator > div a{
  display: block;
}
#creator > div a:hover{
  opacity: .7;
  text-decoration: none;
}
#creator > div .img{
  margin-bottom: 10px;
}
@media screen and (min-width:768px){
  #creator > div .img{
  width: 80%;
  margin-bottom: 0;
  }
}
/* @media screen and (min-width:768px){
  #creator > div a{
    overflow: hidden;
  }
  #creator > div .img{
    transition:1s all;
  }
  #creator > div .img:hover{
    transform:scale(1.1,1.1);
    transition:1s all;
  }
} */


#creator > div .btn{
  display: none;
}
@media screen and (min-width:768px){
  #creator > div .btn{
  color: #363636;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  font-size: 2rem;
  position: relative;
  display: inline;
  background: #2C2C2C;
  color: #fff;
  text-align: center;
  height: 50px;
  line-height: 50px;
  width: 27%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-25%);
  font-size: 1.5rem;
  }
}
#creator > div > div{
  display: flex;
}
#creator > div > div .btn_sp{
  color: #363636;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  font-size: 1.5rem;
  position: relative;
  margin: 3px 40px 50px 6%;
  font-weight: bold;
}
#creator > div > div .btn_sp:after{
  content: "";
  width: 1px;
  height: 20px;
  background: #707070;
  position: absolute;
  right: -20px;
  top: 6%;
}
@media screen and (min-width:768px){
  #creator .btn_sp{
    display:none;
  }
}
#creator ul{
  display: flex;
}
@media screen and (min-width:768px){
  #creator ul{
  position: absolute;
  left: -35px;
  bottom: 0;
  display: block;
  }
}
#creator ul li{
    width: 3rem;
    margin-top: 4px;
  }
@media screen and (min-width:768px){
  #creator ul li{
    width: 16%;
    margin-top: 0;
  }
}
#creator ul li:nth-of-type(2){
  margin: 5px 15% 0;
}
@media screen and (min-width:768px){
  #creator ul li:nth-of-type(2){
    margin: 20px 0;
  }
}
#creator ul li:nth-of-type(3){
  margin-top: 5px;
}
@media screen and (min-width:768px){
  #creator ul li:nth-of-type(3){
    margin-top: 0;
  }
}
/* クリエイターここまで */


/* MAPここから */
#map{
  margin: 50px auto 50px;   
  text-align: center;
}
@media screen and (min-width:768px){
  #map{
    margin: 200px auto 50px;   
  }
}
#map iframe{
  margin: auto;   
  text-align: center;
  width: 80%;
  height: 500px;
}
@media screen and (min-width:768px){
  #map iframe{
    width: 80%;
    height: 800px;
  }
}
/* MAPここまで */


footer{
  text-align: center;
  padding-bottom: 65px;
}
footer dt{
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  color: #2C2C2C;
  font-weight: bold;
}
@media screen and (min-width:768px){
  footer dt{
    font-size: 1.3rem;
  }
}
footer dd{
  font-size: 1.3rem;
  text-align: left;
  width: 80%;
  margin: auto;
  line-height: 1.8;
  font-family: “游ゴシック体”, “Yu Gothic”, YuGothic, “ヒラギノ角ゴ Pro”, “Hiragino Kaku Gothic Pro”, “メ
  イリオ”, Meiryo, sans-serif;
  color: #5F5F5F;
}
@media screen and (min-width:768px){
  footer dd{
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
  }
}
footer > div{
  display: flex !important;
  justify-content: space-between;
  width: 80%;
  margin: 60px auto 0;
}
@media screen and (min-width:768px){
  footer > div{
    width: auto;
    justify-content:center;
  }
}
footer > div p a{
  position: relative;
  color: #2C2C2C;
  font-family: “游ゴシック体”, “Yu Gothic”, YuGothic, “ヒラギノ角ゴ Pro”, “Hiragino Kaku Gothic Pro”, “メ イリオ”, Meiryo, sans-serif;
  font-size: 1.5rem;
  display: inline-block;
  /* margin-top: 3px; */
}
@media screen and (min-width:768px){
  footer > div p a{
    font-size: 1.4rem;
    margin-right: 2.5rem;
    margin-top: 2px;
  }
}
footer > div p a:hover{
  text-decoration: none;
}
footer ul{
  display: flex;
  justify-content: center;
}
footer ul li a{
  width: 25px;
  height: 25px;
  display: block;
}
footer ul li a:hover{
  opacity: .7;
}
footer ul li:nth-of-type(2){
  margin: 0 5.9rem;
}
@media screen and (min-width:768px){
  footer ul li:nth-of-type(2){
    margin: 0 2.5rem;
  }
}
footer small{
  color: #5F5F5F;
  font-family: 'Quicksand', sans-serif;
  margin: 30px auto 0;
  display: block;
  font-size: 1.1rem;
  letter-spacing: 3px;
}
@media screen and (min-width:768px){
  footer small{
    margin: 20px auto 0;
    font-size: 1.1rem;
    letter-spacing: 3.5px;
  }
}
/* モーダルここから */
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  padding-top: 160px;
}
@media screen and (min-width:768px){
  .md-overlay{
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
  }
}
.md-contents{
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 10000;
}
@media screen and (min-width:768px){
  .md-contents{
    width: 65vw;
  }
}
.md-inner{
  height: 100%;
  color: #fff;
  text-align: center;
}
@media screen and (min-width:768px){
  .md-inner{
    background: rgba(0,0,0,0.7);
  }
}
.md-inner dt{
  padding: 7vh 0 0;
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  font-size: 1.6rem;
}
@media screen and (min-width:768px){
  .md-inner dt{
  font-size: 1.6rem;
  padding: 7vh 0 0;
  }
}
.md-inner dd{
  font-family: Times,Times New Roman,”リュウミン M-KL”,Ryumin Medium KL,serif;
  font-size: 1.1rem;
}
@media screen and (min-width:768px){
  .md-inner dd{
  font-size: 1.1rem;
  }
}
.md-inner img{
  margin: 8vh auto 3vh;
  width: 36vh !important;
  height: auto !important;
}
@media screen and (min-width:768px){
  .md-inner img{
    margin: 6vh auto 3vh;
    width: 50vw !important;
  }
}
@media screen and (min-width:1024px){
  .md-inner img{
    margin: 6vh auto 3vh;
    width: 45vw !important;
  }
}
@media screen and (min-width:1400px){
  .md-inner img{
    margin: 6vh auto 3vh;
    width: 40vw !important;
  }
}
.md-inner img.v{
  margin: 3vh auto 2.5vh;
  width: auto !important;
  height: 40vh !important;
}
@media screen and (min-width:768px){
  .md-inner img.v{
  margin: 3vh auto 3vh;
  height: 55vh !important;
}
}
.md-inner h3{
  font-family: “游ゴシック体”, “Yu Gothic”, YuGothic, “ヒラギノ角ゴ Pro”, “Hiragino Kaku Gothic Pro”, “メ
イリオ”, Meiryo, sans-serif;
  font-size: 1.3rem;
  width: 70vw;
  margin: 0 auto 2vh;
  text-align: left;
  font-weight: normal;
}
@media screen and (min-width:768px){
  .md-inner h3{
    font-size: 1.3rem;
    width: 55vw;
    display: inline-block !important;
  }
}
.md-inner .place a{
  margin-bottom: 4vh;
  font-family: “游ゴシック体”, “Yu Gothic”, YuGothic, “ヒラギノ角ゴ Pro”, “Hiragino Kaku Gothic Pro”, “メ
イリオ”, Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  background: url("../img/icon/mapicon.png") no-repeat 0 0;
  background-size: 12px 12px;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width:768px){
  .md-inner .place{
    font-size: 1.3rem;
  }
}
@media screen and (min-width:768px){
   .md-inner .place a:hover{
    text-decoration: none;
  }
   .md-inner .place a:hover:after{
    transform: scale(1, 1);
  }
   .md-inner .place a:after{
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .5s;
  }
}
.md-inner p.more a{
  color: #fff;
  border: 1px solid #fff;
  display: block;
  margin: auto;
  width: 100px;
  height: 4.5vh;
  line-height: 4.5vh;
  margin-top: 6vh;
  letter-spacing: 2px;
}
.md-inner p.more a:hover{
  text-decoration: none;
  opacity: 0.5;
}
.md-xmark{
  position: absolute;
  top: 30px;
  right: 30px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}
@media screen and (min-width:768px){
  .md-xmark{
    top: 35px;
    right: 35px;
    width: 25px;
    height: 22px;
  }
}
.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
}
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}
.swiper-pointer-events{
  position: relative;
}
.swiper-button-prev,.swiper-button-next{
  color: #fff;
  top: 32vh;
}
@media screen and (min-width:768px){
  .swiper-button-prev,.swiper-button-next{
    top: 23vw;
  }
}
@media screen and (min-width:1024px){
  .swiper-button-prev,.swiper-button-next{
    top: 19vw;
  }
}
@media screen and (min-width:1400px){
  .swiper-button-prev,.swiper-button-next{
    top: 16vw;
  }
}

.swiper-button-prev.v,.swiper-button-next.v{
  color: #fff;
  top: 35vh;
}
@media screen and (min-width:768px){
  .swiper-button-prev.v,.swiper-button-next.v{
    top: 29vh;
  }
}
@media screen and (min-width:768px){
  .swiper-button-prev{
    left: 3.5vw;
  }
}
@media screen and (min-width:1024px){
  .swiper-button-prev{
    left: 6.5vw;
  }
}
@media screen and (min-width:1400px){
  .swiper-button-prev{
    left: 10vw;
  }
}
@media screen and (min-width:768px){
  .swiper-button-next{
    right: 3.5vw;
  }
}
@media screen and (min-width:1024px){
  .swiper-button-next{
    right: 6.5vw;
  }
}
@media screen and (min-width:1400px){
  .swiper-button-next{
    right: 10vw;
  }
}
@media screen and (min-width:768px){
  .swiper-button-prev.v{
    left: 7vw;
  }
}
@media screen and (min-width:1024px){
  .swiper-button-prev.v{
    left: 13vw;
  }
}
@media screen and (min-width:1400px){
  .swiper-button-prev.v{
    left: 18vw;
  }
}
@media screen and (min-width:768px){
  .swiper-button-next.v{
    right: 7vw;
  }
}
@media screen and (min-width:1024px){
  .swiper-button-next.v{
    right: 13vw;
  }
}
@media screen and (min-width:1400px){
  .swiper-button-next.v{
    right: 18vw;
  }
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 20px;
}
@media screen and (min-width:768px){
    .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px;
  }
}
/* モーダルここまで */

#landscape{
margin: 0 auto 100px;
padding-top: 150px;
}
@media screen and (max-width:767px){
#landscape .slick-list{
padding: 0 !important;
}
}
#landscape .slick-slide{
margin-left: 0vw !important;
margin-right: 0vw !important;
float: left;
height: 100%;
min-height: 1px;
}
@media screen and (min-width:768px){
#landscape .slick-slide{
margin-left: 3vw !important;
margin-right: 3vw !important;
float: left;
  height: 100%;
  min-height: 1px;
}
}
@media screen and (min-width:768px){
#landscape .slick-slide p{
overflow: hidden;
}
#landscape .slick-slide p img{
transition:1s all;
}
#landscape .slick-slide p img:hover{
transform:scale(1.1,1.1);
transition:1s all;
opacity: .8;
}
}
#landscape .slick01 li{
display: flex !important;
flex-wrap:wrap;
justify-content: space-between;
}
#landscape .slick01 li p{
width: 32.3vw;
margin: 0 0 1.4vw;
}
@media screen and (min-width:768px){
  #landscape .slick01 li p{
  width: 23.5vw;
  margin-bottom: 1vw;
  }
}
@media screen and (min-width:1024px){
  #landscape .slick01 li p{
  width: 23.5vw;
  margin-bottom: 1.3vw;
  }
}  
#landscape .slick-prev,.slick-next{
display: none !important;
}
@media screen and (min-width:768px){
#landscape .slick-prev {
left: 8.2vw;
z-index: 2;
width: 3.6vw;
height: 3.6vw;
display: block !important;
}
#landscape .slick-next {
right: 8.2vw;
z-index: 2;
width: 3.6vw;
height: 3.6vw;
display: block !important;
}
#landscape .slick-prev{
background: url(../img/icon/slidebotan-left.svg)no-repeat;
background-size: contain;
}
#landscape .slick-next {
background: url(../img/icon/slidebotan-right.svg)no-repeat;
background-size: contain;
}
#landscape .slick-prev:before, .slick-next:before {
transform: scale(.3);
display: inline-block;
}
#landscape .slick-prev:hover,.slick-next:hover{
opacity: .8;
}
}
#landscape .slick-dots{
display: flex;
bottom: -20px;
justify-content: center;
position: absolute;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
@media screen and (min-width:768px){
#landscape .slick-dots{
display: none !important;
}
}
#landscape .slick-dots li{
position: relative;
display: inline-block;
width: 10px;
height: 10px;
margin: 0 5px;
padding: 0;
z-index: 2;
cursor: pointer;
}
#landscape .slick-dots li button{
font-size: 0;
line-height: 0;
display: block;
width: 10px;
height: 10px;
border-radius: 50%;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: #B5B5B5;
z-index: 1;
}
#landscape .slick-dots li button:before{
font-family: 'slick';
font-size: 6px;
line-height: 10px;
position: absolute;
top: 0;
left: 0;
width: 10px;
height: 10px;
content: '';
text-align: center;
opacity: .25;
color: rgb(161, 150, 150);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#landscape .slick-dots li.slick-active button:before{
opacity:1;
font-size: 1rem;
background: #585858;
border-radius: 50%;
}
