@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{
    font-family: "游明朝", YuMincho,serif;
    font-size:16px;
    line-height: 1.7;
    letter-spacing: .1rem;
    color:rgba(51,51,51,1);
}
/* 横幅が1300px以上の時は内側は1200px以上にはならない */
@media(min-width:1300px){
    article{
        max-width: 1200px;
        /* background-color: rgba(255, 255, 255, 0.25); */
        padding: 0 30px;
        margin: 0 auto;
    }
} 
.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
  }
  .sp{
    display: none;
}
/*-------ヘッダー-------------*/

.he_top{
    background-image: url(../image/back04.jpg);
    width: 100vw;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.he_top01{
    background-image: url(../image/back01.jpg);
    width: 100vw;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.he_top02{
    background-image: url(../image/back03.jpg); /*コンドミニアム背景*/
    width: 100vw;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.he_top03{
    background-image: url(../image/back05.jpg); /*HOWTO背景*/
    width: 100vw;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.he_top05{
    background-image: url(../image/back02.jpg); /*アクセス背景*/
    width: 100vw;
    height: 50vh;
    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;
}
.stk{
    padding-top: 15px;
}
nav{
    text-align: right;
}
nav ul{
    width: 80%;
    display: grid;
    grid-auto-flow: column;/*均等ではなく文字の長さごとに*/
    list-style-type: none;
    font-weight: bold;
    margin-left: auto;    
}
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{
    text-align: center;
    position: absolute;
    margin: 0 auto;
    margin-top: 5%;
    top: 25%;
    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;
}
.reserved{
    text-align: right;
    margin-top: 15px;
}

/* ボタン */

.button{
    background: #f5b415;
    text-shadow: none;
    color: #3e3a39;
    border-radius: 20px;
    padding: 5px 10px;
    max-width: 150px;/*ボタンレスポンシブ*/
    width: 100%;/*ボタンレスポンシブ*/
    margin: 0 auto;
}
.button:hover{
    background: #ffffff;
    color: #f5b415;
} 

/*-------ヘッダーレスポンシブ-------------*/
@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;
        }
        .reserved{
            display: none;
        }
    }
    @media screen and (max-width: 480px){
        body{
            line-height: 1.5;
            letter-spacing: 0;
        }
        .conA{
            width: 85vw;
            margin-top: 50px;
        }
        .catch-copy02{
            letter-spacing: .1rem;
        }
        .cap-top{
            margin-top: 15px;
        }
        .acc-cap{
            line-height: 2.5;
        }
    }

/* About us　The Leaf について */
article .inner02{
    width: 60vw;
    margin: 0 auto;
    padding: 100px 0;
}
article .inner02 h2{
    text-align: center;
}
.komidashi {
    text-align: center;
}
.inner02 p{
    font-size: 0.9rem;
}
article .inner02 div{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 30px;
}
article .inner02 div figure img{
    max-width: 100%;
    margin-bottom: 10px;
}

/*About us　The Leaf について レスポンシブ*/
@media screen and (max-width: 896px){
    article .inner02 div{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 480px){
    article .inner02 {
        width: 80vw;
    }
}
/*-------コンドミニアム-------------*/
article .coming{
    width: 80vw;
    height: 15vw;
    margin: 0 auto;
    text-align: center;    
}
    
/*-------質問部分-------------*/

.qaContainer{
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0
}

    .qaContainer dt {
        padding: 10px 10px 10px 35px;
        border-radius: 5px;
        background: rgba(111, 101, 95, 0.25);
        text-indent: -25px;
        font-weight: bold;
        }
        .qaContainer dt:before {
        content: "Q.";
        font-weight: bold;
        margin-right: 7px;
        }
        .qaContainer dd {
        margin: 20px 10px 40px 35px;
        text-indent: -25px;
        }
        .qaContainer dd:before {
        content: "A.";
        color: rgb(245, 180, 21);
        font-weight: bold;
        margin-right: 7px;
        }

@media screen and (max-width: 1099px){
    .qaContainer{
        width: 80vw;
    }
}

/* --------------アクセス ------------- */
section .inner04{
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;/* 画面の中央へ */
    padding: 3rem 0;
}
.inner04 h2, .inner04 p{
    text-align: center;
}
.inner04 iframe{
    width: 100%;
    padding: 50px 0;
}
.acc-cap{
    padding: 3rem 1rem;
    font-size: 1.1rem;
    font-weight: bold;  
}
.acc-con{
    padding: 1.5rem 0;
}
.acc-con h3{
    padding: 0.5rem 1rem;
    background-color: #6f655f;
    color: #fff;
}
.acc-con img{
    width: 100%;
}
.img-scroll img{
    width: 100%;
}
.acc-cap02{
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1.5rem;
}
.acc-con p{
    text-align: left;
    padding: 0 1rem;
}
.acc-con p:first-of-type{
    margin-top: 2rem;
}
.acc-con span{
    display: none;
}
.parking-area{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 1000px;
}
.parking-area img{
    width: 60%;
}
.bus-link{
    font-size: 1rem;
}
.bus-link a{
    color: #3e3a39;
}
.bus-link a:hover{
    color:#fff;
    background-color: #f5b415;
    display: inline-block;
}
.map-area{
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;/* 画面の中央へ */
    padding: 1.5rem 0 8rem 0;
}
.map-area iframe{
    width: 100%;
}

/*--------------アクセスレスポンシブ -------------*/

@media screen and (max-width: 896px){
    .inner04 .access01{        
           grid-template-columns: 1fr;
           grid-row-gap: 20px;
       } 
   }

/*--------------フッター -------------*/
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;
} 
.button05:hover{
    background: #f5b415;
    color: #ffffff;
}

/*フッターレスポンシブ*/
@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;
    }
}
/* 追記　下に固定の予約バー */
@media screen and (min-width: 480px){
    .footer_fix_btn{
        display: none;
    }
}
@media screen and (max-width: 480px){
.footer_fix_btn {
    position:fixed;
    bottom:5%;
    width:100%;
    padding:15px 5px ;
    text-align:center;
    background: #f5b415; /* 背景色*/
    font-size:16px; /* テキストの大きさ*/
    color:#000000; /* 文字色*/
}
  .footer_fix_btn a {
    display:block;
    width:100%;
    text-decoration:none;
    color:#ffffff;
  }
  .footer_fix_btn a:hover {
    opacity:0.8;
  }
  footer .inner05{
    width: 80vw;
}
.inner05 img{
    width: 50%;
}
.name-sp{
    font-size: 1.5rem;
}
.acc-con span{
    display: block;
    margin-top: 1rem;
}
.acc-con .img-scroll{
    width:100%;
    overflow-x: scroll;
}
.acc-con .img-scroll img{
    width:auto;
    -webkit-overflow-scrolling:touch;
}
.acc-cap02{
    margin-top: 1rem;
}
}


@media screen and (max-width: 480px){
    .area01{
        grid-template-columns: 1fr;
        width: 100%;
    }
    .main-nav h1 img{
        width: 50px;
    }
}

@media screen and (max-width: 480px){
    .button{
        display: none;
    }
    .parking-area{
        grid-template-columns:1fr;
        grid-row-gap: 1rem;
    }
    .parking-area img{
        width: 100%;
    }
}

#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: 480px){
    #page_top{
        width: 100vw;
        height: 50px;
        position: fixed;
        right: 0%;
        left: 0%;
        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;
      }
      section .inner02 ,section .inner04{
          width: 95vw;
      }
      .sp{
          display: block;
      }
}


/* FAQページ */
.mailform,.telform,.acc-onsen{
    display: inline;
    text-decoration: underline;    
}

@media screen and (min-width: 600px){
.telform{
    pointer-events: none;
    text-decoration: none;
    color:rgba(51,51,51,1);
  }
}