@charset "UTF-8";
/*////////////////////////

home
///////////////////////*/
main{
    width: 100%;
    height: auto;

    
}


/*hero 

*/
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.h1_copy{
    z-index: 9999;
    font-size: 2em;
    letter-spacing: 1em;
    font-weight: normal;
    color: #fff;   
}

.sub_copy{
    font-size: 1.1em;
    letter-spacing: .2em;
    line-height: 2em;
    color: #fff;
    z-index: 9999;
    text-align: center;
}
.place_copy{
    font-size: 1.1em;
    letter-spacing: .2em;
    line-height: 2em;
    color: #000;
    background: rgba(255,255,255,.8);
    z-index: 9999;
    text-align: center;
    margin-top: 1em;
}
.slider{
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #1d1d1d;
}
.slider .image{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: anime 15s 0s infinite; /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/*
  ②画像の数ごとに animation-delay を設定します。
　下記では、5秒間隔で切り替わるように設定しています。
*/
.slider .image:nth-of-type(1){
  background-image: url(../images/bg01.jpg);
}
.slider .image:nth-of-type(2){
  animation-delay: 5s;
  background-image: url(../images/bg02.jpg);
}
.slider .image:nth-of-type(3){
  animation-delay: 10s;
  background-image: url(../images/bg03.jpg);
}
.slider .image:nth-of-type(4){
  animation-delay: 15s;
  background-image: url(../images/bg04.jpg);
}


@keyframes anime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}



@media screen and (max-width: 767px) {
    
  .h1_copy{
    z-index: 9999;
    font-size: 1.1em;
    letter-spacing: 1em;
    font-weight: normal;
    color: #fff;   
      text-align: left;
      
      margin-left: 15%;

      margin-bottom: 8em;
}

.sub_copy{
    font-size: 1.1em;
    letter-spacing: .2em;
    line-height: 2em;
    color: #fff;
    z-index: 9999;
    text-align: left;
    padding-right: 3%;
    
      margin-left: 20%;
      margin-right: 7%;
}
  
.place_copy{
    margin-left: 10%;
    margin-top: 3em;
}   
}

/*shop btn*/
.shop_sec{
    width: 100%;
    display: flex;
    
}
a.shopBtn{
    width: calc(100%/3);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    text-decoration: none;
}
.open{
    color: #fff;
    letter-spacing: .5em; 
    text-decoration: none;
    margin-bottom: 10%;
}
.shopBtn img{
    width: 180px;
    height: auto;
}
.launch{
    color: #fff;
    letter-spacing: .5em; 
    text-decoration: none;
    margin-top: 10%;
}





@media screen and (max-width: 767px) {
    
 .shop_sec{
    width: 100%;
    display: flex;
     flex-direction: column;
    
}
a.shopBtn{
    width: calc(100%/1);
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    text-decoration: none;
}   
.open{
    color: #fff;
    letter-spacing: .5em; 
    text-decoration: none;
    margin-bottom: 10%;
}
.shopBtn img{
    width: 140px;
    height: auto;
}
.launch{
    color: #fff;
    letter-spacing: .5em; 
    text-decoration: none;
    margin-top: 10%;
    text-align: right;
}

    
}


.gmap{
    width: 100%;
    height: auto;
}


a.scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
    color: #fff;
    font-size: 1.3em;
}
a.scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
    
    z-index: 9999;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #fff;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #fff;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#fff;
}




/*== ボタン共通設定 */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #555;/* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#333;
}

.btn:hover span{
	color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#333;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


@media screen and (max-width: 767px) {
    
.copy{
    font-size: 1.3em;
    line-height: 1.8em;
    text-align: center;
    margin: 1% auto;
    letter-spacing: .1em;
}

.villa_detail{
    width: 85%;
    margin: 3% auto;
}

.villa_detail p{
    font-size: 1.4em;
    letter-spacing: .1em;
    line-height: 2em;
    margin-bottom: 1em;
    color: #000;
    font-weight: 100;
}
.villa_detail h2{
    font-size: 4em;
    letter-spacing: .1em;
    line-height: 2em;

    color: #000;
    font-weight: 100;
}   
}
