@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
body {
    width: 100%;
    /*font-family: "Noto Sans JP", sans-serif;*/
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    letter-spacing:0.1em;
    margin: auto;
    font-family: "montserrat-alternates", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #c9ada6;
  }
:root {
    --text-color: #f5f5f5;
    --main-color: #c9ada6;
    --hover-color: #686565;
    --bg-color: #f5f5f5;
    --sub-color: #f8f8f8;
    --pc-header: 12rem;
    --sp-header: 6rem;
  }
  h1,h2,h3,h4,h5,p{
    color: #f0f0f0;
  }
  p{
    line-height: 2;
    text-align: center;
    font-size: 1em;
    letter-spacing: 0.15em;
  }
  .spacer{
    border-top: 1px solid #f5f5f5;
    padding-bottom: 2rem;
    margin: 2rem auto 0 auto;
    width: 7%;
  }
  h2{
    font-size: 3rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing:0.2em;
    text-align: center;
  }
  h3{
    font-size: 1.6rem;
    font-weight: 100;
    padding-left: 10px;
    padding-bottom: 5px;
    padding-top:  5px;
    text-align: center;
    line-height: 2.5rem;
  }
  h4{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 15px;
  }
  /*戻る矢印*/
  .gotop{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: relative;
    position: fixed;
    bottom: 0;
    right: 0;
  }
.gotop::before{
    content: "";
    display: block;
    border-top: 4px solid #333;
    border-right: 4px solid #333;
    width: 30%;
    height: 30%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}
  /*戻る矢印ここまで*/
  /*フォントクラス*/
.font_montserrat_normal{
  font-family: "montserrat-alternates", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.font_montserrat_regular{
  font-family: "montserrat-alternates", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*ham-------------------------*/
.btn_open{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #3f3e3eef;
  transform: translateY(105%);
  transition: 0.8s;
}
.is_active{
  transform: translateY(0%);
  transition: 0.8s;
}
.btn_head{
  display: flex;
  justify-content: space-around;
  margin-bottom: 100px;
}
.btn_open_top{
  margin: 1em;
}
.btn_open_inner{
  display: flex;
  justify-content:center;
}
.btn_open ul{
  display: block;
  width: 135px;
}.btn_open ul li{
  padding: 1em 0;
}
.b_nav_right{
  margin-left: 10%;
  padding-top: 1em;
}
.b_nav_right a{
  color: #d3af7d;
  font-size: 0.9em;
}

  /*メイン------------------------*/
main{
  color: #f5f5f5;
}
main a{
  text-decoration: none;
  color: #f5f5f5;
}
/*アイキャッチ*/
.i_c{
  height: 100vh;
  width: 100%;
  background-image: url(image/top01.png);
  background-size:cover;
}
  /*ヘッダー*/
  header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  header ul{
    list-style: none;
  }
  .h_inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
.h_inner .flex_left{
  width: 100%;
}
.flex_right{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(3, 3, 3,0.1);
}
.h_nav{
    display: flex;
    justify-content: flex-end;
  }
  .h_nav li {
    display: block;
    height: auto;
  }
  .h_nav .booking{
    background-color: #927b5975;
  }
  .h_nav li:hover{
    opacity: 0.7;
    transition: 1.2s;
  }
  .h_nav .logo_sp{
    display: none;
   }
/*ヘッダーのレスポンシブ－－－－－－－*/
@media (max-width: 768px){
 .logo_pc{
  display: none;
 }
 .h_nav .logo_sp{
  display: block;
 }
 .h_nav li{
  width: 20%;
 }
}
/*footer*/
footer{
  background-color: #aab196;
  color: #f5f5f5;
}
footer p{
  text-align: left;
}
footer a{
  text-decoration: none;
  color: #f5f5f5;
}
.f_logo{
  font-size: 2rem;
}
.txt{
  font-family: "Noto Sans JP", sans-serif;
}
.f_flex{
  display: flex;
  justify-content: space-between;
}
.wrap{
  padding: 5%;
  max-width: 960px;
  margin: 0 auto;
}
/*フッターのレスポンシブ－－－－－－－*/
@media (max-width: 768px){
  .f_flex{
    display: block;
  }
  .f_right p{
    padding-top: 1em;
    text-align: center;
  }
 }
/*セクション--------------*/
section{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 1rem;
}
#activity, #hotel, #service, #access{
  min-height: 343px;
  background-size: cover;
}
#activity{  background-image: url(image/c_pc_01.png);}
#hotel{  background-image: url(image/c_pc_02.png);}
#service{  background-image: url(image/c_pc_03.png);}
#access{  background-image: url(image/c_pc_04.png);}

/*concept*/
#concept{
  background-color: #c9ada6;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
#concept h2{
  margin-bottom: 2rem;

}
/*#activity, #hotel, #service, #access*/

.menu_card{
display: block;
height: 273px;
position: relative;
}
.menu_card h2{
  position: absolute;
  top: 3%;
  left: 3%;
}
.menu_card p{
  position: absolute;
  bottom: -40px;
  right: 3%;
}
/*セクションのレスポンシブ*/
@media (max-width: 768px){
#activity{  background-image: url(image/c_sp_01.png);}
#hotel{  background-image: url(image/c_sp_02.png);}
#service{  background-image: url(image/c_sp_03.png);}
#access{  background-image: url(image/c_sp_04.png);}
#activity, #hotel, #service, #access{
  height: auto;
  width: 100%;
  background-size: cover;
}
 }
