@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    overflow-x: hidden; /*スクロールバーを隠す*/
}
a{
    display: block;
    text-decoration: none;
}
li{
    text-decoration: none;
}
body{
    /* .wf-hannari { font-family: "Hannari"; } */
    font-family: "游明朝", "YuMincho",serif;
    /* font-family: "Hannari"; */
    font-size:16px;
    line-height: 1.7;
    letter-spacing: .1rem;
    color:rgba(51,51,51,1);
}
.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
}
@media screen and (max-width: 480px){
    body{
        line-height: 1.5;
        letter-spacing: 0;
    }
    
}

/* 横幅が1500px以上の時は内側は1400px以上にはならない */
@media(min-width:1500px){
    .area01{
        max-width: 1400px;
    }
}

/* ヘッダー */
.he_top{
    background-image: url(../image/top01.jpg);
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.area01{
    display: grid;
    grid-template-columns: 200px 1fr;
    width: 90vw;
    margin: 0 auto;
    column-gap: 10px;
    align-items: center; /*センター揃え*/
}
h1{
    text-align: center;
}
h1 img{
    display: block;
    margin: 0 auto;
    width: 100px;
    margin-top: 30px;
}
nav{
    text-align: right;
}
nav ul{
    width: 80%;
    margin:0px auto;
    display: grid;
    grid-auto-flow: column;/*均等ではなく文字の長さごとに*/
    list-style-type: none;
    font-weight: bold;
}
nav ul li a{
    color:rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    position: relative;
    display: inline-block;
}
nav ul li a:hover{
    color: rgb(255, 255, 255);
}
nav ul li a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: rgb(255, 255, 255);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
nav ul li a:hover::after {
    transform: scale(1.5, 1);
}
/* ヘッダー ↑ここまで*/

/* トップ キャッチコピーエリア */
.conA{
    width: 80vw;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    margin-top: 5%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    color: rgba(255,255,255,1);
    text-shadow:2px 2px 2px rgb(27, 24, 24);
    font-size: 1.2rem;
}
.conA p{
    font-size: 1.125rem;
    margin: 10px 0 42px;
}
.catch-copy{
    letter-spacing: .5rem;
}
.sp{
    display: none;
}
/* トップ キャッチコピーエリア ↑ここまで*/

/* ボタン */
.button{
    background: #f5b415;
    text-shadow: none;
    color: #3e3a39;
    border-radius: 20px;
    padding: 10px 0;
    max-width: 250px;/*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    margin: 0 auto;
    outline: none;
}
.button:hover{
    background: #ffffff;
    color: #f5b415;
    transition: 0.5s;
} 

/*-------ヘッダーレスポンシブ-------------*/
@media screen and (max-width: 896px){
    .area01{
         width: 100vw;
         grid-template-columns: 1fr;
        }
        nav{
            padding-top: 20px;
        }
        nav ul{
            width: 100%;
            grid-auto-flow: row;
            text-align: center;       
        }
        nav ul li a::after {
            position: absolute;
            bottom: 0;
            left: 0;
            content: '';
            width: 0;
            height: 0;
            background: rgb(255, 255, 255);
            transform: none;
            transform-origin: center top;
            transition: none;
          }
        nav ul li a:hover::after {
            transform: none;
        }
    }

@media screen and (max-width: 768px){
    .sp{
        display: block;
    }  
}
@media screen and (max-width: 481px){
    .conA{
        width: 85vw;
    }
    .catch-copy{
        letter-spacing: .1rem;
    }
}
/*-------ヘッダーレスポンシブ　↑ここまで-------------*/

/* About us　The Leaf について */
section .inner02{
    width: 60vw;
    margin: 0 auto;/* 画面の中央へ */
    padding: 100px 0;
}
section .inner02 h2{
    text-align: center;/* 文字のセンタリング */
}
.komidashi {
    text-align: center;
}
.inner02 p{
    font-size: 0.9rem;
}
section .inner02 div{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 30px;
}
section .inner02 div figure img{
    max-width: 100%;
    margin-bottom: 10px;
}

/*-------About us　The Leaf について レスポンシブ-------*/
@media screen and (max-width: 896px){
    section .inner02 div{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 480px){
    article .inner02 {
        width: 80vw;
    }
}
/*-------About us　The Leaf について レスポンシブ　↑ここまで-------*/

/*コンドミニアム*/
.conB{
    background-color: rgba(250,230,213,0.25);
}
section .inner{
    width: 80vw;
    margin: 0 auto;/* 画面の中央へ */
    padding: 100px 0;
}
section .inner h2{
    text-align: center;
}
section .inner .photoimg{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 30px;
}
section .inner div figure img{
    max-width: 100%;
    margin-bottom: 10px;
}
section .inner h3{
    text-align: center;
    background-color: antiquewhite;
    width: 80%;
    margin: 0 auto;
}
.conB .button01{
    text-align: center;
}
.conB .button01 .button02{
    display: inline-block;
    color: #3e3a39;
    border: solid 2px #f5b415;
    border-radius: 15px;
    max-width: 300px;/*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    /* margin: 0 auto; */
    text-align: center;
    padding: 10px 0;
    outline: none;
}
.conB .button02:hover{
    color: #ffffff;
    border: solid 2px #ffffff;
    background: #f5b415;
    transition: 0.5s;
}

/* --------------新着情報 ------------- */
.conC-2 .inner03-2{
    width: 70vw;
    margin: 0 auto;/* 画面の中央へ */
    /* padding: 100px 0; */
    height: 25vh;
}
.conC-2{
    background-image: url(../image/backdeco.png) , url(../image/backdeco05.png);
    background-repeat: no-repeat , no-repeat;
    background-position: left -5% top 70% , right 8% top 5%;
    background-size: 50% , 16%;
}
.inner03-2{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 30px;
    color: #ffffff;
    /* align-items: center; */
    place-items: center;
    
}
.conC-2 .button03{
    display: inline-block;
    color: #3e3a39;    
    border: solid 2px #ffffff;
    background: #ffffff;
    border-radius: 15px;
    max-width: 300px;/*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    margin: 0 auto;
    text-align: center;
    /* padding-top: 5%; */
    height: 50px; 
    vertical-align: middle;
    outline: none;
} 
.conC-2 .button03:hover{
    /* opacity: 50%; */
    transition: 0.5s;
    background-color:#f5b415;
    color: #fff;
}
.conC-2{
    height: 25vh;
    background-color:rgba(111,95,101,0.6);
    
}


/*-------コンドミニアム レスポンシブ-------*/
@media screen and (max-width: 896px){
    .conB .inner div{
        grid-template-columns: 1fr;/*縦並び*/
    }
}
/*-------コンドミニアム レスポンシブ　↑ここまで-------*/

/* --------------HOW TO ENJOY ------------- */
.conC .inner03{
    width: 70vw;
    margin: 0 auto;/* 画面の中央へ */
    padding: 100px 0;
    height: 35vh;
}
.inner03{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 30px;
    color: #ffffff;
    align-items: center;
}
.conC .button03{
    display: inline-block;
    color: #3e3a39;
    border: solid 2px #ffffff;
    background: #ffffff;
    border-radius: 15px;
    max-width: 300px;/*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    margin: 0 auto;
    text-align: center;
    /* padding-top: 5%; */
    height: 50px; 
    vertical-align: middle;
    outline: none;
} 
.conC .button03:hover{
    opacity: 50%;
    transition: 0.5s;
}
.conC{
    background-image: url(../image/ba01.jpg);
    height: 35vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/*--------------HOW TO ENJOY レスポンシブ-------------*/
@media screen and (max-width: 896px){
    .conC .inner03{
        grid-template-columns: 1fr;/*縦並び*/
        grid-row-gap: 30px;
    }

    .inner03 h2, .inner03 p{
        text-align: center;
    }
}
/*--------------HOW TO ENJOY レスポンシブ　↑ここまで-------------*/

/* --------------アクセス ------------- */
section .inner04{
    width: 60vw;
    margin: 0 auto;/* 画面の中央へ */
    padding: 100px 0;
}
.inner04 h2, .inner04 p{
    text-align: center;
}
.inner04 iframe{
    width: 100%;
    padding: 50px 0;
}
.access01{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 3%;
    margin: 0 auto;
    width: 60vw;
}
.inner04 .button04{
    display: inline-block;
    color: #3e3a39;
    border: solid 2px #3e3a39;
    border-radius: 15px;
    max-width: 300px;/*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    margin: 0 auto;
    text-align: center;
    height: 50px; 
    vertical-align: middle;
    outline: none;  
} 
.button04:hover{
    background: rgba(62,58,57,0.5);
    color: #ffffff;
    transition: 0.5s;
}

/*--------------アクセスレスポンシブ -------------*/
@media screen and (max-width: 896px){
    .inner04 .access01{        
           grid-template-columns: 1fr;/*縦並び*/
           grid-row-gap: 20px;
           /* width: 100%;
           margin: 0 auto; */
       }
}
@media screen and (max-width: 768px){
    section .inner04{
        width: 80vw;
    }
}
/*--------------アクセスレスポンシブ ↑ここまで-------------*/

/*--------------フッター -------------*/
footer .inner05{
    width: 60vw;
    margin: 0 auto;/* 画面の中央へ */
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
footer{
    background-color: #6f655f;
    color: #ffffff;
}
.copy{
    text-align: center;
    padding: 25px 0;
    background: #3e3a39;
    color: #ffffff;
    font-size: 0.9rem;
}
.inner05 .button05{
    display: inline-block;
    color: #3e3a39;
    border: solid 2px #f5b415;
    border-radius: 15px;
    max-width: 300px; /*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    margin: 0 auto;
    text-align: center;
    height: 50px; 
    vertical-align: middle;
    font-size: 1.5rem;
    margin-top: 30px;
    color: #ffffff;
    outline: none;
} 
.button05:hover{
    background: #f5b415;
    color: #ffffff;
    transition: 0.5s;
}

/*--------------フッターレスポンシブ--------------*/
@media screen and (max-width: 896px){
    footer .inner05{
        grid-template-columns: 1fr;/*縦並び*/
        grid-row-gap: 50px;
        margin: 0 auto;
    }

    footer .inner05 img{
        margin: 0 auto;
    }

    footer .inner05 p{
        text-align: center;
    }
}


/* 下から出てくる予約ボタン */
#page_top{
    width: 150px;
    height: 150px;
    position: fixed;
    right: 5%;
    bottom: -200px;
    background: #f5b415;
    opacity: 0.8;
    border-radius: 25%;
}
#page_top a{
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    line-height: 150px;
}
#page_top a::before{
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
@media screen and (max-width: 481px){
    #page_top{
        width: 100vw;
        height: 50px;
        position: fixed;
        right: 0%;
        left: 0%;
        /* bottom: 100px !important; */
        background: #f5b415;
        opacity: 0.8;
        border-radius: 0%;
        margin: -20px auto;
      }

      #page_top a{
        position: relative;
        display: block;
        width: 100vw;
        height: 50px;
        text-decoration: none;
        color: #fff;
        text-align: center;
        line-height: 50px;
        font-size: 1.5rem;
      }
      footer .inner05{
        width: 80vw;
    }
    .inner05 img{
        width: 50%;
    }
     /* footer.inner05 > div{
        padding: 0 10%;
    } */
    /* footer .inner05 div p{
        text-align: left;
    } */
    .name-sp{
        font-size: 1.5rem;
    }
    .inner03-2{
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
        grid-row-gap: 3%;
    
    }
}

/* --------------下から出てくる予約ボタンレスポンシブ-------------- */
@media screen and (max-width: 481px){
    section .inner02{
        width: 80vw;
    }

    #page_top{
        width: 100vw;
        height: 50px;
        position: fixed;
        right: 0%;
        left: 0%;
        /* bottom: 100px !important; */
        background: #f5b415;
        opacity: 0.8;
        border-radius: 0%;
        margin: -20px auto;
      }

      #page_top a{
        position: relative;
        display: block;
        width: 100vw;
        height: 50px;
        text-decoration: none;
        color: #fff;
        text-align: center;
        line-height: 50px;
        font-size: 1.5rem;
      }
}