@charset "UTF-8";

/*共通部分
--------------------------------*/
html{
    font-size: 100%;
}
body{
    font-family: 'Noto Serif JP', serif;
    line-height: 1.7;
    color: rgb(0, 0, 0);
    background-color: #F4F5F2;
}
a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}
img{
    max-width: 100%;
}
li{
    list-style: none;
}


/*メニュー、メイン横並び---------*/
.main-display{
    display: flex;
    justify-content: space-between;
}
/*サイドメインメニュー----------------------------------*/
aside{
    width: 15%;
    height: 95vh;
    order: 1;
}
.sticky{
    position: sticky; /*追従のやつ*/
    top: 0px; /*追従のやつ*/
    background-color: rgb(255, 255, 255);
    /*text-align: center;*/
}
/*ロゴ*/
.logo2{
    /*width: 100%;*/
    margin: 30px 0 0 20px;
}
.logo2 img{
    width: 160px;
    height: 55px;
}
.nav-menu{
    padding: 5px 0;
    text-align: center;
    transition: background-color .5s;
}
.nav-menu:hover{
    background-color: #4C5938;
}
.nav-menu a:hover{
    color: rgb(255, 255, 255);
}
.main-nav span{
    font-size: 10px;
    display: block;
}

/*予約はこちら*/
.nav-booking{
    text-align: center;
    background-color: #4C5938;
    margin-top: 25px;
    transition: background-color .5s;
    padding: 5px 0;
}
.nav-booking a{
    color: #F4F5F2;
    font-size: 18px;
    font-weight: 700;
}
.nav-booking:hover{
    background-color: rgba(76, 89, 56, 0.7);
}

/*----------------------------------------------------------*/

/*メイン------------------------------------------*/
main{
    order: 2;
    width: 85%;
}

/*index.html---------------------------------------------*/
/*メインビジュアル*/
.main_visual_img{
    position: relative;
    /*height: 100vh;
    width: 100%;*/
}
.logo1{
    position: absolute;
    width: 270px;
    height: 270px;
    top: 30%;
    left: 40%;
    z-index: 10;
}



/*セクションタイトル*/
.sec_title{
    font-size: 36px;
}
.sec_text{
    text-align: center;
    padding: 0 210px;
    letter-spacing: 0.05em;
}
.sec_text span{
    display: block;
    margin-top: -10px;
}
.sec_text p{
    margin-top: 20px;
    /*margin-bottom: 40px;*/
}
.sub_title{
    font-weight: 700;
    font-size: 20px;
}
/*セクションごとのマージン*/
section{
    margin-top: 100px;
}
/*ABOUT*/
.about_item{
    display: flex;
    justify-content: space-between;
    width: 1166px;
    margin: 0 auto;
    margin-top: 40px;
}
.about_item p{
    padding: 40px;
    width: auto;
    height: 396px;
    background-color: #D5E2B8;
}
.about_item img{
    width: auto;
    height: 396px;
    object-fit: cover;
}

/*STAY*/
.stay_flex{
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}
.stay_item_price{
    background-image: url(../images/top/stay1.jpg);
}
.stay_item_option{
    background-image: url(../images/top/stay2.jpg);
}
.back_set{
    height: 380px;
    width: 40%;
    padding: 70px 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.back_set:hover{
    padding: 0;
    transition: .5s;
}
.stay_item_text{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255,0.6);
    font-size: 32px;
    height: 100%;
    text-align: center;
    padding: 20px 50px;
}
.stay_item_text span{
    display: block;
    font-size: 18px;
}
/*ACCESS＆access.html*/
.access_sec{
    margin-bottom: 100px;
}
.location_map{
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
}
.access_text{
    margin: 0 auto;
    width: 100%;
    padding: 0 200px;
    margin-top: 40px;
}
.bold{
    font-weight: 700;
}

/*フッター--------------------------------------*/
/*フッターメニュー*/
.footer_items {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    
}
.footer_items li{
    position: relative;
    height: 180px;
    width: 33.3333333333%;
    overflow:hidden;
}
.footer_item_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.footer_items img:hover{
    transform:scale(1.2,1.2);
    transition:1s all;
}
.footer_item_text {
    position: absolute;
    bottom: 30%;
    left: 35%;
    z-index: 10;
    background-color: rgba(255, 255, 255,0.6) ;
    padding: 10px;
    text-align: center;
}
.footer_item_text span{
    display: block;
    font-size: 10px;
}
/*フッターメイン-----------------------------------------------*/
.footer_main{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #7C8C5A;
    padding-bottom: 50px ;
}
.footer_main img{
    margin-top: 30px;
}
.footer_logo{
    width: 270px;
    height: 90px;
}
.footer_booking{
    padding: 10px 115px;
    border: solid;
    text-align: center;
    font-size: 28px;
    margin-top: 30px;
    transition: background-color .5s;
}
.footer_booking span{
    display: block;
    font-size: 16px
}
.footer_booking:hover{
    background-color: rgba(244, 245, 242, 0.9);
    color: #4C5938;
    border:solid rgba(244, 245, 242, 0.9);
}
.footer_access{
    text-align: center;
    margin-top: 30px;
}
small{
    margin-top: 30px;
}

/*about.html----------------------------------*/
.about_contents{
    position: relative;
    width: 1166px;
    height: 645px;
    margin: 0 auto;
    margin-top: 100px;
}
.about_contents_title{
    font-size: 24px;
}
/*コテージ,キッチン*/
.about_contents_img1{
    width: 500px;
    height: 500px;
    position: absolute;
    left: 0;
    z-index: 1;
    object-fit: cover;
}
.about_text1{
    width: 754px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 135px 115px;
    background-color: #D5E2B8;
    letter-spacing: 0.05em;
}
/*リビングルーム*/
.about_contents_img2{
    width: 500px;
    height: 500px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    object-fit: cover;
}
.about_text2{
    width: 754px;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 135px 115px;
    background-color: #D5E2B8;
    letter-spacing: 0.05em;
}
/*about future*/
.about-features_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 100px;
}
.about-features_ttl {
    display: block;
    width: 25%;
}
.about-features_ttl span{
    display: block;
    font-size: 12px;
}
.about-features_ttl_text{
    margin-top: 20px;
}
.about-features_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 70%;
    gap: 20px 0;
}
.about-features_item {
    width: 32%;
}
.about-features_item img {
    width: 100%;
    max-height: 200px;
    height: 10vw;
    object-fit: cover;
}
.about-features_content_text{
    font-size: 14px;
}
/*予約ボタン*/
.button{
    margin: 0 auto;
    background-color: #4C5938;
    transition: background-color .5s;
    padding: 15px;
    font-size: 26px;
    width: 350px;
    text-align: center;
    margin-top: 40px;
    border-style: solid;
    border-width: 0.5px;
    border-color: #4C5938;
}
.button p{
    color: #F4F5F2;
}
.button span{
    display: block;
    font-size: 16px;
}
.button:hover{
    background-color: #F4F5F2;
    border-style: solid;
    border-width: 1px;
    border-color: #4C5938;
}
.button p:hover{
    color: #4C5938;
}


/*price.html----------------------------------------*/
/*ページセクションタイトル*/
h3{
    font-size: 24px;
}
.price_img{
    margin-top: 60px;
}
.price_text{
    max-width: 896px;
    margin: 0 auto;
    margin-top: 40px;
}
.price_text p{
    margin-top: 10px;
}
.price_text span{
    font-size: 24px;
    border-bottom: 1px solid #000000;
    font-weight: 700;
}
/*AMENITYセクション*/
.amenity_sec{
    width: 896px;
    margin: 0 auto;
}
.amenity_img{
    width: 896px;
    margin: 0 auto;
}
.price_amenity_icon{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 100px;
}
.price_amenity_icon li{
    margin-top: 40px;
    width: 14%;
    text-align: center;
}
.price_amenity_icon img{
    max-height: 80px;
    
}
.price_amenity_icon p{
    font-size: 8px;
    margin-top: 20px;
}

/*gallery.html---------------------------------------*/
.gallery{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 20px;
    padding:0 80px;/*ギャラリー左右に余白をつける*/
    margin:60px 0;
    }
.big_img{
    grid-column: 1/3;
}
/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*faq.html-----------------*/
.qa_inner{
    width: 756px;
    margin: 0 auto;
    margin-bottom: 100px;
}
.qa-list {
    margin-top: 30px;
}
.qa-label{
    display: flex;
    align-items: center;
    font-size: 18px;
    position: relative;
    padding: 20px;
    border: 0.5px solid;
    margin-top: 5px;
}
.qa-label::before {
    content: "Q";
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #7C8C5A;
    margin-right: 18px;
}
.qa-label::after {
    content: "";
    background: url("../images/faq.svg") center/cover;
    width: 39px;
    height: 34px;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    transition: all .6s;
}
.qa-label-open::after {
    transform: translateY(-50%) rotate(-180deg);
}
.qa-content{
    display: none;
    padding: 20px;
}
.qa-content a{
    color: blue;
}
.qa-content span{
    color: red;
    text-decoration: underline;
}

/*option.tml-----------------------*/
.option_main{
    margin-top: 60px;
}
.option_text{
    max-width: 60vw;
    margin: 0 auto;
    margin-top: 30px;
}
.option_text p{
    margin-top: 10px;
}
.option_text span{
    font-size: 24px;
    font-weight: 700;
}
.contact-form{
    color: blue;
}
.option_underline{
    border-bottom: 1px solid #000000;
}

/*インスタグラムフィード*/
/* Instagramセクション全体のスタイル */
.instagram-section {
    background-color: #f9f9f9; /* 背景色を指定 */
    padding: 40px 20px; /* 上下左右の余白を指定 */
    text-align: center; /* セクション全体を中央揃え */
}

/* Instagramフィード全体のラップ */
.instagram-feed-wrapper {
    max-width: 1200px; /* 最大幅を指定 */
    margin: 0 auto; /* 中央揃え */
}

/* Instagram投稿のスタイル (SlickやSmash Balloonで生成されたクラスに依存) */
.instagram-feed-wrapper .sbi_item {
    display: inline-block;
    margin: 10px; /* 各投稿の間隔を指定 */
    border-radius: 8px; /* 角丸にする */
    overflow: hidden; /* コンテンツのオーバーフローを隠す */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 軽い影を付ける */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバー時のアニメーション */
}

/* ホバー時のスタイル */
.instagram-feed-wrapper .sbi_item:hover {
    transform: scale(1.05); /* 少し拡大する */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* 影を強調する */
}

/* Instagram投稿画像 */
.instagram-feed-wrapper .sbi_photo {
    width: 100%; /* 画像をコンテナに合わせる */
    height: auto;
    display: block;
}

/* Instagramキャプション */
.instagram-feed-wrapper .sbi_caption {
    font-size: 14px;
    color: #666; /* テキストの色を指定 */
    margin-top: 5px;
    text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .instagram-section {
        padding: 20px 10px; /* スマホ時の余白を調整 */
    }

    .instagram-feed-wrapper .sbi_item {
        margin: 5px; /* スマホ時の間隔を狭める */
    }
}