@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500&family=Shippori+Mincho+B1:wght@400;600&family=Zen+Antique+Soft&display=swap');

/* ––––––––––––––––––––
––––––––––––––––––––
共通設定 
––––––––––––––––––––
––––––––––––––––––––*/
html {
    font-size: 62.5%;   
    box-sizing: border-box;     
}
body {
    font-family: 'Shippori Mincho B1', serif;
    /* font-family: 'Zen Antique Soft', serif; */
    /* font-family: 'Alegreya', serif; */
    font-size: 1.6em;
    line-height: 1.5;
    margin: 0 auto;
    position: relative;
    cursor: none; 
    height:100vh;
}

#cursor {
    position: fixed;
    background: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
    border-radius:20px;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
  }

main { 
    margin: 0 auto;
    width:80%;    
    max-width: 1000px;
    text-align: center;    
}

header {
    margin: 0 auto;
}

img {
    width: 100%;
    object-fit: cover;
}
.flex {
    display: flex;
}
a {
    text-decoration: none;
    color: #fff;
    cursor:none;
}

/* –––––––––––––––
ハンバーガーメニュー 
––––––––––––––––––*/

header button.btn_open,header button.btn_close {
    width: 8%;
    max-width:100px;
    min-width: 50px;
    height: 8%;
    position: fixed;
    top: 1vw;
    right: 1vw;
    z-index: 3;
    background:transparent;
    border:none;
    cursor: none;
}
.btn_close {display: none}
.no_btn {
    animation-name: fadeInAnime;
    animation-duration: .1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
    from {
        opacity: 1;
    }
    to { 
        opacity:0
    }
}
.show_btn {
    animation-name: fadeOutAnime;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
    from {
        opacity: 0;
    }
    to { 
        opacity:1
    }
}
#hamburger_nav {
    display: none;
    width: 100vw;
    position: fixed;
    top: 0;
    background-color: #003207;
    z-index: 2;
}

#hamburger_nav ul {
    width: 50%;
    margin: 5% 0 5% 40%;
}

#hamburger_nav ul li {
    line-height: 1.75;
}

#hamburger_nav a.home {
    display: block;
    text-align: center;
    transition: all .3s;
}

#hamburger_nav div {
    width:50%;
    margin: 0 auto;
}


/* ホバーすると線が出る */
#hamburger_nav ul li a {
	position: relative;
}

#hamburger_nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 2px;
    background:#fff;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

#hamburger_nav ul li a:hover::after {
    transform: scale(1, 1);
} 
#hamburger_nav a.home:hover {
    font-size: 1.25em;
}



/* ––––––––––––––––––––
予約ボタン
–––––––––––––––––––– */
#reserve_btn {
    position: fixed;
    bottom: 3%;
    right: 3%;
    z-index: 3;
    background:transparent;
    border:none;
    width: 5vw;
    min-width: 80px;
    transform: scale(1);
	transition: .3s ease-in-out;
}
#reserve_btn p {
    color: #fff;
    font-size: .1vw;
    position: absolute;
    top: 20%;
    left: 10%;
    margin-bottom: 10px;
}

#reserve_btn:hover {
	transform: scale(1.1);
}

/* –––––––––––––––
料金ボタン 
––––––––––––––––––*/
.price_btn {
    color: #003207;    
    display: inline-block;
    position: relative;
    padding: .8em 1.5em;
    border: 2px solid #003207;
    transition: padding 0.3s ease-in-out;
    font-size: .8em;
}
.price_btn:before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #b6cc78;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transition: all 0.3s ease-in-out;
  }
  
.price_btn:hover:before {
    top: 0;
    left: 0;
  }

/* ––––––––––––––––––––
INDEX以外のH1からH4
––––––––––––––––––––*/
h1 {
    margin-top: 1vh;
    position: relative;
}
h1 img {
    width: 100%;
}
h1 p {
    position: absolute;
    top: 80%;
    left: 15%;
    font-family: 'Zen Antique Soft', serif;
    line-height: 1em;
    color: #003207;
}
h1 p span {
    font-size: 3em;
    font-family: 'Alegreya', serif;
}
h1 div .main_logo {
    position: absolute;
    top: 1vw;
    left: 1vw;
    max-width:150px;
    min-width: 50px;
    width: 10%;
}

h2 {
    margin: 10vh 0 10vh -8em;
    font-size: 1.25em;
}

h2 span.indent_title {
    padding-left: 10em;
}
h3 {
    font-size: 1.25em;
    font-weight: 600;
    margin: 5vh auto;
}
h4 { 
    font-size: 1.25em;
    font-weight: 400;
    margin-bottom: 2vh;
 }

/* ––––––––––––––––––
フッター
–––––––––––––––––– */
footer {
    background-color: #003207;
    color: #fff;
    padding: 6%;
    justify-content:space-between;
}
#footer_address p:first-child {
    font-size: 1.25em;
    margin-bottom: 5px;
}
#footer_logo {
    width: 20%;
    margin-right: 5%;
}
#footer_address {
    width: 35%;
}
#footer_address dl { 
    flex-wrap: wrap;
}
#footer_address dl dt {
    width:100%;
    margin-top: 10px;
}
#footer_address dl dd {
    width:100%;
}
#footer_nav {
    width: 35%;
}
#footer_nav li {
    margin-bottom: 10px;
}

#footer_nav ul li a:hover{
	color: gold;
}



@media  screen and (max-width:768px){
    body {
        font-size: 1.4rem;
    }


    .indent1,.indent2, .indent3,.indent4, .indent5, .indent6 {padding-left: 0;}

    h2 { 
        margin: 5vh 0;
        font-size: 1em;
    }
    footer  #footer_address dt, footer  #footer_address dd{
        width:100%;
    }
    footer  #footer_address dd {
        margin-bottom: 10px;
    }

}

@media  screen and (max-width:425px){
    #hamburger_nav ul {
        margin: 10px auto;
    }
    h2 span.indent_title {
        padding-left: 0;
    }
    footer {
        flex-wrap: wrap-reverse;
        padding-left: 15%;
    }
    #footer_address,#footer_nav {
        width: 80%;
    }
    #footer_address p:first-child {
        margin-top: 10px;
        margin-bottom: 0;
    }
    footer  #footer_address dd {
        margin-bottom: 0;
    }
    footer  #footer_address dd:last-child {
        margin-bottom: 10px;
    }
    #footer_nav li {
        margin-bottom: 5px;
    }
}

/* –––––––––––––
Effect
–––––––––––––––– */
/* Blur animation*/
.blur{
    animation-name:blurAnime;
    animation-duration:2.5s;
    animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    transform: scale(1.02);
    }
  
    to {
    filter: blur(0);   
    transform: scale(1);
    }
  }
/* greyscale */
  .grey{
    animation-name:greyAnime;
    animation-duration:4s;
    animation-fill-mode:forwards;
  }
  
  @keyframes greyAnime{
    from {
    filter: grayscale(100);
    }
  
    to {
    filter: grayscale(0);
    }
  }

/* ふわっ */
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
        transform: translateY(50px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    

/* wave */
.wave{
    position:relative;
    height:150px;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
    width: 100%;
    z-index: -1000;
    }
canvas{
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
}




/* –––––––––––––––––––––––––
Index Page
–––––––––––––––––––––––––*/

  
/* 
main visual
*/

#index .main_logo {
    max-width: 10%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
#index h1 div {position: relative;}
#index h1 div p {
    font-size: 3vw;
    font-family: 'Zen Antique Soft', serif;    
    color: #003207;    
    -webkit-text-stroke: .3px black
}
#index h1 div p:first-of-type{
    position: absolute;
    bottom: 8%;
    left: 22%;
}
#index h1 div p:last-of-type {
    position: absolute;
    bottom: 8%;
    left: 66%;
}


/* 
main text部分
 */

.index_text {
    background-image: url(../img/index/birds.jpg);
    background-repeat: repeat-y;
    background-size: 100%;
    object-fit: contain;
}
.index_text p {
    margin: 15vh auto;
    line-height: 3;
}

.bg_opacity{
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

/*　
indexページのナビ
 */

#index_nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
}
#index_nav ul li {
    width:33%;
}
#index_nav ul li a {
    display: block;
    text-align: center;
    transition: all 0.5s ease-in-out;
   padding: 40% 0;
    color: #fff;
    font-size: 3vw;
    font-family: 'Alegreya', serif;
    font-weight: 500;    
}

#index_nav ul li a:hover {
    transform: scale(1.1);
}
#index_nav ul li a.index_nav1 {
    background-image: url('../img/index/about.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
#index_nav ul li a.index_nav2 {
    background-image: url('../img/index/stay.png');
    background-repeat: no-repeat;
    background-size: 90%;
    margin-top: 5%;
}
#index_nav ul li a.index_nav3 {
    background-image: url('../img/index/activity.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
#index_nav ul li a.index_nav4 {
    background-image: url('../img/index/experience.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
#index_nav ul li a.index_nav5 {
    background-image: url('../img/index/booking.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
#index_nav ul li a.index_nav6 {
    background-image: url('../img/index/access.png');
    background-repeat: no-repeat;
    background-size: 100%;
}



  
/* –––––––––––––––––––––––
About Page
––––––––––––––––––––––– */
#about main div p.about_text1 {
    text-align: center;
    line-height: 2;
}
#about main div p:last-of-type {
    writing-mode:vertical-rl;
    padding-top: 130%;
    width: 100%;
    text-align:left;
    line-height:2;
    background: url('../img/about/about1.png') right top no-repeat,
    url('../img/about/about2.png') left bottom no-repeat;
    background-size: 40%;
    position:relative;
    text-indent: -2em;
    margin-left: 1em;
} 
#about main div span {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
}

/* ふわっと出てくるアニメーション ゆっくり版*/
#about .fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    

@media  screen and (max-width:425px) {
    #about main div p:last-of-type{
        padding-top: 230%;
    }
    #about main div span{
        top: 30%;
    }
}

 /* –––––––––––––––––––––––
Stay Page
 –––––––––––––––––––––––*/

#stay main div.room_box{
    position: relative;
    margin: 10vh auto 15vh;
}
#stay main div img{
    width: 80%;
}
#stay main div .room_bg{
    background-color: #b6cc78;
    width: 80%;
    height: 100%;
    position: absolute;
    top: 15%;
    left: 15%;
    z-index: -1;
}

#stay main div.room_text {
    text-align:left;
    width:80%;  
    margin: 0 auto;
}
#stay main div.room_text p {
    margin: 1em 0;
}
#stay main div.room_text div {
    text-align:right;
}
#stay section {
    margin: 10% auto;
    width: 80%;
}
#stay section .facility_text,#stay section .flex img{
    width: 50%;
}
#stay section .flex img:first-of-type{
    object-fit: contain;
}
#stay section .facility_text {
    margin: auto 10px auto 0;
}
#stay section div.flex:nth-of-type(even){
    flex-direction: row-reverse;
}
@media  screen and (max-width:425px){
    #stay main div.room_box{
        margin: 10vh auto;
    }
    #stay section div.flex{
        flex-wrap: wrap;
    }
    #stay section .facility_text,#stay section .flex img{
        width: 100%;
    }
    #stay section div.flex img{
        margin-bottom: 50px;
    }

}




/* –––––––––––––––––––––––
Activity Page
 –––––––––––––––––––––––*/

 #activity main{
     width: 100%;
     max-width: 100%;
 }
 #activity .text_80 {
    width:80%;
    margin: 0 auto;
 }
#activity #act_intro{
    padding-bottom: 5vh;
}
 #activity div#activity_bg {
     width: 100%;
     background-image: url('../img/activity/activity_bg.jpg');
     background-size: 100%;
 }
 #activity main ul {
     justify-content:center;
     flex-wrap: wrap;
 }
 #activity main ul li {
     width: 30%;
     margin: 0 3% 3% 0;
 }
 #activity main #act_text {
     padding: 5vh 0;
 }

 #activity footer {
     margin-top: 0;
 }

/* 写真をランダムにFadeupするDelay */
.delay-time01{
    animation-delay: .8s;
    }
    
.delay-time02{
    animation-delay: 1s;
    }
    
.delay-time03{
    animation-delay: 1.5s;
    }
    

 @media screen and (max-width: 425px) {
    #activity main ul li {
        width: 80%;
        margin: 0 0 3%;
    }
    .delay-time01,.delay-time02,.delay-time03{
        animation-delay: 0s;
        }
 }



/* –––––––––––––––––––––––
Experience Page
 –––––––––––––––––––––––*/

#experience video {
    width: 90%;
    margin-bottom: 5vh;
}

/* –––––––––––––––––––––––
Reservation Page
 –––––––––––––––––––––––*/
#reservation h2 {
    margin: 10vh 0;
    font-size: 1.25em;
}
#reservation dl{
    text-align:left;
    width:80%;
    margin: 0 auto;
    display: flex;
    padding-bottom: 2%;

}
#reservation .reservation_form dt {
    width:30%;
    margin-right: 5%;
    text-align: right;
}
#reservation .reservation_form  dd{
    width: 65%;
}
#reservation .reservation_form dd select{
    margin-right: 10px;
    padding: 0 1%;
}
#reservation .reservation_form input,select,textarea {
    border: 1px solid #b6cc78;
    border-radius: 6px;
}
#reservation .reservation_form input {
    width: 100%;
    line-height: 1.5em;
}
#reservation .reservation_form select {
    line-height: 1.5em;
}
#reservation .reservation_form textarea {
    width: 100%;
    height: 150px;
}
/* 
予約確定ボタン
 */
#reservation .reservation_form  input[type="submit"] {
    background:linear-gradient(90deg, rgba(1, 67, 10, 0.83) 26%, rgba(99, 131, 58, 1) 90%);
    color: #fff;
    font-size: 1.25em;
    width: 15em;
    height: 3em;
    border-radius: 0%;
    margin-top: 10px;
    position: relative;
    transition: all 0.5s ease;
}

#reservation .price_btn {
    margin: 5% auto;
    font-size: .95em;
}

/* ボタンが下に押し込まれるアクション */
.pushright:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background-color: #333;
}

.pushright:hover{
  transform: translate(4px, 4px);
}



@media screen and (max-width: 425px) {
    #reservation .reservation_form dl {flex-wrap: wrap;}
    #reservation .reservation_form dt,#reservation .reservation_form dd {
        width: 100%;
        text-align:left;
    }
    #reservation dl dd.flex.ppl_number {
        flex-wrap: wrap;
    }
    #reservation dl dd.flex.ppl_number p {
        width: 100%;
    }
    #reservation dd select{
        margin-right: 0;
        padding: 0;
    }
     
 }
 /* –––––––––––––––––––––––
Access Page
 –––––––––––––––––––––––*/

#access main section div.way{
    width:40%;
    padding-top: 5vh;
}
#access main section div.way p {
    margin-bottom:10%;
}
#access main section div.bus_gif{
    width:20%;
}

#access .freebus {
    margin: 5% auto;
    border: 10px solid;
    border-image: url(../img/wood.png);
    border-image-slice: 15;
    padding: 0 5% 5%;
}

#access .pickup {
    width: 50%;
}
#access .freebus p:not(.pickup p) {
    margin: -3% auto 5%;
}
#access .freebus p {
    margin-top: 5%;
}
#access .freebus dl {
    margin-bottom: 5%;
    width:50%;
    margin: 0 auto;
    flex-wrap: wrap;
}
#access .freebus dt {
    width: 40%;
}

#access .freebus dd {
    width: 55%;
}
#access .freebus h5 {
    margin-bottom: 3%;
}

#access .freebus div.pickup dl.point dl {
    margin: 0 auto;
}
#access .freebus div.pickup dl.point dt, #access .freebus div.pickup dl.point dd{
    width:100%;
    text-align: center;
    margin-bottom: 5%;
}

@media screen and (max-width: 425px) {
    #access main section,
    #access .freebus .flex {
        flex-wrap: wrap;
    }
    #access main section div.way {
        width: 100%;
        padding-top: 0;
    } 
    #access main section div.bus_gif {
        width:40%;
    }
    
    #access .freebus div.pickup {
        width:100%;
    }
    #access main section div.bus_gif{
        margin: 0 auto;
    }
    
    #access .freebus h5 {
        margin-bottom:0;
    }
    #access .freebus div.pickup dl.point dt {
        margin-bottom:0;
        margin-top: 10px;
    }
    #access .freebus dl {width: 100%;}
}