@charset "UTF-8";

/* タイトルスライド↓ */
.swiper-container{
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: #333;
  position: relative;
  /* 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-weight: bold;
text-shadow: 2px 2px 8px #000;
color: #fff;
transform: translate(-50%,-50%);
}
.slide-img img{
object-fit: cover;
height: 100vh;
width: 100vw;
}

.slide-img{
  width: 103% !important;
  position: absolute;
}
.slide-img img {
  animation-name: slide;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  position: relative;
  width: 108%;
  max-width: 108%;
}
@keyframes slide {
	0% {
		transform: translateX(-50px);
	}
	100% {
		transform: translateX(0px);
	}
}
/* タイトルスライド↑ */


.fuwafuwa {
  z-index: 2;
  position: absolute;
  bottom: 30vw;
  left: 0;
  right: 0;
  margin: auto;
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  text-align: center;
}
  @keyframes fuwafuwa {
  0% {
    transform:translate(0, 0);
  }
  33% {
    transform:translate(0, -10px) ;
  }
  66% {
    transform:translate(0, -10px) ;
  }
  100% {
    transform:translate(0, 0) ;
  }
}
@media screen and (min-width:900px){
  .fuwafuwa {
    bottom: 10px;
  }
}
.fuwafuwa a{
  color: #fff;
  padding-left: .5em;
}

.fuwafuwa span{
  position: relative;
  width: 10px;
  display: inline-block;
  text-align: center;
  margin: 0 10px 0 0;
  color: #fff;
}
.fuwafuwa span:after{
  content: '';
  width: 20px;
  height: 20px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(135deg);
}
@media screen and (min-width:900px){
  .fuwafuwa span{
    font-size: 10px;
    text-align: center;
  }
  .fuwafuwa span:after{
  margin-top: 10px;
  left: 15px;
  }
}


h2.ttl{
  position: absolute;
  top: 50%;
  left:50%;
  z-index: 2;
  margin: auto;
  width: 50vw;
    transform: translate(-50%, -50%);
}
@media screen and (min-width:900px){
  h2.ttl{
    /* padding: 1em 0 0em; */
    color: #000;
    font-size:23px;
    height: 85px;
    line-height: 85px;
    letter-spacing: .3em;
    background: rgba(255,255,255,0.6);
    width: 25em;
    padding-left: 1em;
    text-align: center;
    top: 48%;
    left:6%;
    margin: 0;
    font-weight: normal;
    transform: none;
  }
}
/* .textSplitLoad {
	display: none;
}
.split {
	visibility: hidden;
} */

#about{
  margin: 70px auto 50px;
}
#about .inner .imgarea{
  display: flex;
  justify-content: space-between;
  flex-direction:row-reverse
}
#about .img1{
  width: 54vw;
  margin-top: 35vw;
}
#about .img2{
  width: 43vw;
}
#about .inner .textarea{
  margin: 30px auto 0;
  padding:0 8vw;
}
#about .inner .textarea .headline{
  font-size: 1.1rem;
  font-family: 'Quicksand', sans-serif;
  color: #9d9d9d;
}
#about .inner .textarea h3{
  margin: 0 auto 20px;
  letter-spacing: .3em;
  line-height: 1.5;
  font-size: 2rem;
}
#about .inner .textarea .text{
  font-size: 1.3rem;
  line-height: 1.7;
}
#about .inner .textarea .more{
  margin: 20px  auto 0;
  text-align: center;
}
#about .inner .textarea .more a{
  font-size: 1.3rem;
  display: inline-block;
  margin: auto;
  text-align: center;
  position: relative;
  font-weight: bold;
}
#about .inner .textarea .more a::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #5A5A5A;
  border-right: solid 1px #5A5A5A;
  position: absolute;
  top: 37%;
  right: -4vw;
  transform: rotate(45deg);
}
@media screen and (min-width:900px){
  #about{
    padding: 120px 0 0;
    width: 80vw;
  }
  #about .inner{
    position: relative;
    height:70vw;
  }
  #about .inner .imgarea{
    display: block;
    width: 100%;
  } 
  #about .img1{
    position: absolute;
    top: 0;
    right:5vw;
    left: auto;
    width: 40vw;
    margin-top: 0;
  }
  #about .img2{
    position: absolute;
    top: 10vw;
    left:0;
    width: 32vw;
  }
  #about .inner  .textarea{
    position: absolute;
    top: 30vw;
    right:0;
    width: 40vw;
    padding: 0;
  }
  #about .inner .textarea .headline{
    font-size: 13px;
  }
  #about .inner .textarea h3{
    margin:  5px auto 50px;
    font-size: 23px;
  }
  #about .inner .textarea .text{
    font-size: 15px;
  }
  #about .inner .textarea .more{
    text-align: right;
  }
  #about .inner .textarea .more a{
    font-size: 15px;
  }
  #about .inner .textarea .more a:after{
    top: 37%;
    right: -1vw;
  }
}

/* エリアここから */
#area{
  background: #F8F8F8;
  padding: 70px 0 70px;
}
@media screen and (min-width:900px){
  #area{
    padding: 115px 0 120px;
    margin: auto;
  }
}
#area .headline{
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  color: #9d9d9d;
  font-size: 1.1rem;;
}
#area h3{
  margin: 0 auto 65px;
  letter-spacing: .3em;
  position: relative;
  line-height: 1.7;
  text-align: left;
  width: 100%;
  text-align: center;
  font-size: 2rem}
@media screen and (min-width:900px){
  #area .headline{
    font-size: 13px;
  }
  #area h3{
    font-size: 23px;
    margin: 0 auto 80px;
  }
}
#area article{
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (min-width:900px){
  #area article{
    display: flex;
    width: 80vw;
    margin: 0 auto 80px;
  }
}
#area article:last-of-type{
  margin-bottom: 0;
}
#area article img{
  width: 50vw;
}
@media screen and (min-width:900px){
  #area article img{
    width: 50vw;
  }
}
#area article h4{
  font-size: 16px;
  position: absolute;
  top: 31vw;
  left: 35vw;
  border-bottom: 1px solid #5A5A5A;
  padding: 0 10vw 0 20vw;
  letter-spacing: .5em;
}
@media screen and (min-width:900px){
  #area article .inner{
    position: absolute;
    top: .5vw;
    right: 0vw;
    width: 30vw;
    z-index: 20;
  }
  #area article h4{
    position: relative;
    font-size: 20px;
    padding: 0 1vw 0 15vw;
    text-align: left;
    margin-right: 10vw;
    border-bottom: none;
    top: 0;
    right: -2vw;
    left: auto;
    padding: 0;
  }
  #area article h4:after{
    position: absolute;
    content: "";
    width: 28vw;
    height: 1px;
    background-color: #5A5A5A;
    bottom: 0;
    left: -14vw;
  }
}
@media screen and (min-width:1000px){
  #area article .inner{
    top: 2vw;
  }
}
@media screen and (min-width:1180px){
  #area article .inner{
    top: 8vw;
  }
}
#area article .text{
  width: 90vw;
  margin: 30px auto;
  font-size: 1.3rem;
}
@media screen and (min-width:900px){
  #area article .text{
    width: auto;
    padding-left: 2vw;
    margin: 15px auto;
    font-size: 15px;
  }
}
#area article .more {
  margin: auto;
  text-align: center;
}
#area article .more a{
  font-size: 1.3rem;
  display: inline-block;
  margin: auto;
  text-align: center;
  position: relative;
  font-weight: bold;
}
#area article .more a:after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #5A5A5A;
  border-right: solid 1px #5A5A5A;
  position: absolute;
  top: 37%;
  right: -4vw;
  transform: rotate(45deg);
}
@media screen and (min-width:900px){
  #area article .more a:after{
    top: 37%;
    right: -1vw;
  }
  #area article .more a{
    font-size: 15px;
  }
}

/* MAPここから */
#map{
  padding: 70px 0 50px;
  width: 90vw;
  margin: auto;
}
@media screen and (min-width:900px){
  #map{
    padding: 115px 0 50px;
    width: 80vw;
  }
}
#map .headline{
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  color: #9d9d9d;
  font-size: 1.1rem;;
}
#map h3{
  margin: 0 auto 30px;
  letter-spacing: .3em;
  position: relative;
  line-height: 1.7;
  text-align: left;
  width: 100%;
  text-align: center;
  font-size: 2rem
}
@media screen and (min-width:900px){
  #map .headline{
    font-size: 13px;
  }
  #map h3{
    font-size: 23px;
    margin: 0 auto 80px;
  }
}
#map iframe{
  height: 120vw;
}
@media screen and (min-width:900px){
  #map iframe{
    height: 40vw;
  }
}



/* 動画ここから */
#movie{
  margin: 0 auto 0;
  text-align: center;
  padding: 80px 0 0;
}
@media screen and (min-width:768px){
  #movie{
    padding: 115px 0 0;
  }
}
#movie p{
  margin-left: -3px;		
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  color: #9d9d9d;
  font-size: 1.1rem;
}

@media screen and (min-width:768px){
  #movie p{
    font-size: 13px;
  }
}
#movie h3{
  margin: 0 auto 40px;
  letter-spacing: .3em;
  line-height: 1.5;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width:768px){
  #movie h3{
    font-size: 23px;
    margin: 0 auto 80px;
  }
}

#movie div{
  position: relative;
  text-align: center;
  margin: 5vw auto 0;
  font-size: 30px;
  background: #333;
  width: 90vw;
 /* height: 30vh; */
  display: block;
}
@media screen and (min-width:768px){
  #movie div{
    /* height: 60vh; */
    width: 80vw;
    margin: 30px auto 0;
  }
}
#movie div a{
  width: 100%;
  height: 100%;
  display: block;
}
#movie div a:hover{
  opacity: .5;
}



