/* CSSをリセット */
@import url('destyle.css');

/* body全体 */
body {
    font-family: "Helvetica Neue",
        Arial,  
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-weight: normal;
    line-height: 1.6em;
    line-break: strict;
    color: #23221F;
    background-color: #cfe1cd;
    outline: none;
    
}

html, body {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}
/* ヘッダーナビゲーション  */
.headerNav {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 60px;
    position: fixed;
    top: 0;
    left: auto;
    z-index: 1000;
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    color: #273C24;
    background: #fffbeb;
    box-shadow: 0px 3px 2px -2px rgb(0 0 0 / 25%);
}

/* ヘッダーロゴ上部 */
.logo__xs {
    font-size: 12px;
}
/* ヘッダーロゴ下部 */
.logo__m {
    font-size: 18px;
    font-weight: 700;
/* ヘッダーメニューコンテナ */
}
.nav-overlay {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 三本線を押したときに出るメニュー */
.nav-overlay ul{
    display: block;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
}

/* ヘッダーのハンバーガーメニュー */
    .hamburger-overlay {
        position: absolute;
        top: 8px;
        right: 16px;
        z-index: 1000;
        width: 48px;
        height: 48px;
        border: none;
        background: transparent;
        cursor: pointer;        
    }
    /* 三本線 */
    .hamburger-overlay__line {
        position: absolute ;
        left: 11px;
        width: 26px;
        height: 2px;
        background-color: #23221F;
        transition: all .6s;
    }
    .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
    .hamburger-overlay__line:nth-of-type(2) { top: 23px; }
    .hamburger-overlay__line:nth-of-type(3) { top: 32px; }
    /* バツに変化している時の色指定 */
    .hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fff;
    }
    /* バツに変化している時の変形 */
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
    }
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
    }
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
    }

    /* ハンバーガーメニューを開いた時の背景 */
    .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #66A39A;
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
    z-index: 900;
    }

    /* 背景が出現している時の透明度 */
    .nav-overlay.active {
    visibility: visible;
    opacity: 0.95;
    }

    /* メニューの位置指定 */
    .nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    }

    .nav-overlay__list {
    margin: 0; 
    padding: 0;
    list-style: none;
    }

    .nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s;
    }

    .nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
    }

    .nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
    .nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.1s; }
    .nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.1s; }
    .nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.2s; }
    .nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.2s; }
    .nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.2s; }
    .nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.3s; }
    .nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.3s; }

    .nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color .3s;
    }

    .nav-overlay__link:hover {
    color: #4a90e2;
    }


/* メイン */
.main {
    max-width: 960px;
    /* 背景色 */
    background: #fffbeb;
    /* ベース色 */
    background-image: linear-gradient(#fdf6eeef, #fdf6eef8),
    /* ノイズ画像 */
    url(../images/noise.png);
    /* 繰り返し */
    background-repeat: repeat;
    /* ノイズパターンのサイズ調整 */
    background-size: 200 px;
    color: #333;
    margin: 0 auto;
}

/* トップページファーストビュー */
.fv-top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    height: 80vh;
}

/* ファーストビュー画像の色調整フィルタ */
.fv-top::after {
    max-width: 960px;
    content: "";
    background: rgba(75, 75, 75, 0.26);
    position: absolute;
    width: 100vw;
    height: 80vh;
}

/* スライダー */
/* slick.jsでファーストビューのスライダーに表示する画像 */
.fv-top-slider{
    position: relative;
    display: grid;
}

/* スライダーに表示する画像の指定 */
.slider {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh;
    margin: 0;
}
.slider-img01 {
    background-image: url(../images/top_fv_img01.jpg);
}
.slider-img02 {
    background-image: url(../images/top_fv_img02.jpg);
}
.slider-img03 {
    background-image: url(../images/top_fv_img03.jpg);
}

/* ドットの外観設定 */
.fv-top-slider .slick-dots {
    bottom: 2%;
    z-index: +1;
}
.slick-dots li button::before {
    color: #333;
}
.slick-dots li.slick-active button::before {
    color: #FFF;
}

/* トップページファーストビューのキャッチコピー */
.fv-top-copy{
    position: absolute;
    display: none;
    top: 50%;
    left: 5%;
    margin: 0;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 2em;
    padding: 0 16px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 25%);
    text-shadow: 0px 0px 8px rgb(0 0 0 / 80%);
    z-index: +1;
}

/* 下層ページファーストビュー*/
.fv{
    position: relative;
    max-width: 960px;
    height: 30vh;
    overflow: hidden;
    margin-top: 60px;
}
/* 下層ページファーストビュー画像の設定 */
.fv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%) contrast(70%);
}

/* 記事全体を囲むコンテナ */
.container {
    display: grid;
    padding: 0;
    width: 100%;
    max-width: 660px;
    margin: 8px auto;
    gap: 16px;
    line-height: 1.8em;
}

/* セクション */
.content {
    display: grid;
    justify-content: stretch;
    place-items:left;
    /* テキスト色 */
    color: #333;
    width: 100%;
    padding: 0 16px;
    gap: 24px;
}

/* 天気セクション */
.content__weather {
    display: grid;
    background-color: #fff;
    margin: 0 16px;
    padding: 16px 8px;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid #bebebe;
}

/* アウトドア天気.jp */
    #outdoor-tenki-pc {
        margin: 0 16px;
    }
    /* スマホ版を非表示にする */
    #outdoor-tenki-sp {
        display: none;
    }

/* 箇条書きに付けるアイコン */
.content ul li {
    margin-left: 4px;
    margin-right: 8px;
    padding-left: 24px;
    background-image: url(../images/check_32dp_23221F.png);
    background-repeat: no-repeat;
    background-position: left 0.3em;
    background-size: 18px;
}

.content__weather ul li {
    background-image: none;
}

/* 周辺案内 */
.nearby-shops  {
    display: grid;
    gap: 16px;
}

.nearby-shops ul li {
    background-image: none;
    margin-left: 0;
    padding: 0 8px;
}

/* トップページの写真・リード文セクション */
.content-top {
    width: 100%;
    margin: auto;
}

.content-top p {
    max-width: 660px;
    margin: 0 8px;
}

/* パンくずリスト */
    #breadcrumb area {
        width: 100%;
    }

    #breadcrumb_list {
        display: flex;
        margin: 8px 16px;
        padding-left: 20px;
        font-size: 14px;
        list-style-type: none;
        background-image: url(../images/home_32dp_23221F.png);
        background-repeat: no-repeat;
        background-position: left 0.3em;
        background-size: 18px ;

    }

    #breadcrumb_list a:hover{
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    #breadcrumb_list li:nth-child(2) {
        padding-left: 20px;
        background-image: url(../images/chevron_right_32dp_23221F.png);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 18px;
    }

    #breadcrumb_list li:nth-child(3) {
        padding-left: 20px;
        background-image: url(../images/chevron_right_32dp_23221F.png);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 18px;
    }



/* トップページの特徴セクション */
.feature {
    position: relative;
    display: grid;
    width: 100%;
    background-color: #71A66B;
    margin-top: -4px;
    padding: 40px 16px;
    color: #FFF;
    gap: 24px;
}

/* 特徴セクションの見出し */
.feature h2 {
    margin: auto;
    padding: 16px 8px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;   
}

/* 特徴セクションリスト */
.feature-list {
    margin: 0 auto;
    padding: 0 6x;
    max-width: 660px;
    
}
    /* 箇条書きのアイコン指定 */
    .feature-list ul li {
        margin-left: 4px;
        padding-left: 28px;
        background-image: url(../images/star_32dp_FFF.png);
        background-repeat: no-repeat;
        background-position: left;
        background-size: 24px;
        padding-bottom: 0.8em; 
    }

    .feature-list ul li:nth-child(1) {
        background-image: url(../images/bathtub_32dp_FFF.png);
        background-repeat: no-repeat;
        background-position: left 0.1em;
    }
    .feature-list ul li:nth-child(2) {
        background-image: url(../images/cabin_32dp_FFF.png);
        background-repeat: no-repeat;
        background-position: left 0.1em;
    }
    .feature-list ul li:nth-child(3) {
        background-image: url(../images/directions_walk_32dp_FFF.png);
        background-repeat: no-repeat;
        background-position: left 0.1em;
    }
    .feature-list ul li:nth-child(4) {
        background-image: url(../images/pair_child_parent_32dp_FFF.png);
        background-repeat: no-repeat;
        background-position: left 0.1em;
    }
    .feature-list ul li:nth-child(5) {
        background-image: url(../images/mode_night_32dp_FFF.png);
        background-repeat: no-repeat;
        background-position: left 0.1em;
    }

/* 木のイラストのサイズ・位置指定 */
.woods {
    position: absolute;
    width: 100%;
    max-width: 400px;
    height: auto;
    top: -8%;
    left: 8%;
    z-index: 1;
}

/* 見出し */


/* 下層ページファーストビューの見出し */
.fv-title {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}

/* トップページリードセクション*/
.lead-top{
    position: relative;
    display: grid;
    width: 100%;
    max-width: 660px;
    margin: 24px auto;
    padding: 24px 16px;
    font-size: 14px;
}

/* 下層ページリードセクション */
.lead {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 660px;
    margin: 24px auto;
    padding: 16px 32px;
    background: #FFF;
    border-radius: 6px;
    font-size: 14px;
}

.lead img {
    position: absolute;
    width: 72px;
    height: 72px;
    object-fit: contain;
    left: -40px;
    bottom: -24px;
    z-index: 1;
}

/* 設備ページ、Q&Aページのサブメニュー */
.submenu {
    display: grid;
    width: 100%;
    max-width: 660px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    column-gap: 8px;
    row-gap: 16px;
    place-items: center;
    font-size: 16px;
    background-image: none;
    padding: 0 8px;
    
}
.submenu-items {
    width: 100%;
}

.submenu-items a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    border-bottom: 1px solid #bebebe;
}

.submenu-items a:hover {
    border-bottom: 1px solid #23221F;
}

/* サブメニューのアイコン */
.icon-chevron {
    width: 18px;
    height: 24px;
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: left 0.1em;
    background-size: 22px;
}

/* 記事本文 */
.text-reserve {
    font-weight: 700;
}
.text-reserve-center {
    font-size: 18px;
    text-align: center;
}

/* 注釈 */
.body-s {
    font-size: 14px;
    line-height: 1.4em;
    margin: 0 1em;
    padding-left: 1em;
}
.body-s::before {
    content: "＊";
    margin-left: -1em;
}

/* Googleマップ */
.map {
    position: relative;
    width: 100%;
    padding-top: 75%;
    height: 0;
    overflow: hidden;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* Googleマイマップ */
.mymap {
    position: relative;
    width: 100%;
    padding-top: 95%;
    height: 0;
    overflow: hidden;
}

.mymap iframe {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -60px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}


/* 記事本文内リンク */
.link {
    text-decoration: underline;
    text-underline-offset: 4px;

}

.footer-link {
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* アイコンの書式設定 */
.material-icons {
    padding-left: 4px;
    display: inline-flex;
    vertical-align: middle;
}

/* アイコンのサイズを変更するためのルール */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* トップに戻るボタンのアイコン余白調整 */
#pagetop-scroll .material-icons {
    padding-left: 0;
}

/* お知らせのリスト */
.list__info {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-auto-flow: row;
    margin: 0 16px;
    border-top: 1px solid #bebebe;
    padding-top: 8px ; 
    row-gap: 8px;
}

.list__info div {
    border-bottom: 1px solid #bebebe;
}

/* コテージの設備のリスト */
.list01 {
    display: grid;
    width: 100%;
    max-width: 660px;
    grid-template-columns: 160px 1fr;
    grid-template-rows: auto;
    padding: 0;
    border-top: 1px solid #bbbbbb;
    align-self: center;
    text-align: left;
    gap: 0;
}

.list01 div {
    padding: 8px;
    border-bottom: 1px solid #bbbbbb;
}

.list01 div ul li {
    background-image: none;
}

/* 料金ページのリスト */
.list02 {
    display: grid;
    width: 100%;
    max-width: 560px;
    grid-template-columns: 1fr 140px;
    grid-template-rows: 1fr 1fr;
    margin: 0 auto;
    padding: 0 8px;
    align-self: center;
    justify-self: stretch;
    row-gap: 16px;
}
.list02 div {
    padding-left: 1em;
    border-bottom: 1px solid #bebebe;  
}

/* チェックイン／アウトのリスト */
.list03 {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 8px;
    row-gap: 16px;
    
}
.list03 div {
    padding: 4px;
    border-bottom: 1px solid #bebebe;
}

/* アクセスページ、スーパー・商店の表 */
.list04 {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 160px 100px;
    grid-template-rows: auto;
    padding: 0 8px;
    align-self: center;
    row-gap: 16px;
}

/* キャンセル規定の表 */
.list__cancel-policy {
    display: grid;
    width: 100%;
    max-width: 560px;
    grid-template-columns: 1fr 160px;
    grid-template-rows: 1fr 1fr;
    margin: 0 auto;
    padding-right:1em;
    align-self: center;
    row-gap: 16px;

}
.list__cancel-policy div {
    padding-left: 1em;
    border-bottom: 1px solid #bebebe;
}

/* セクション大見出し */
.heading02 {
    width: 100%;
    display: flex;
    background-color: #71A66B;
    border-left:6px solid #9A66A3;  
    border-radius: 4px;
    padding: 10px 24px;
    margin-top: 60px;
    margin-bottom: 8px;
    font-size:20px;
    font-weight: bold;
    color: #fff;
}

/* セクション中見出し */
.heading03 {
    width: 100%;
    display: flex;
    border-bottom: 2px solid #273C24;
    margin-top: 8px;
    padding: 8px 16px 4px;
    font-size:20px;
    font-weight: bold;
}

/* セクション小見出し */
.heading04 {
    display: flex;
    width: 100%;
    border-left: 4px solid #71A66B;
    color: #273C24;
    font-weight: bold;
    margin-top: 16px;
    margin-left: 0.5em;
    padding-left: 0.5em;
}

/* 本文内写真 */
.photo img{
    width:100%;
    max-width: 640px;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    padding: 8px;

}
/* トップページ・トップセクションの写真配列 */
.photo-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    object-fit: cover;
    overflow: hidden;
}

.photo-top img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
}

/* トップページの写真ギャラリー */
.photo-garelly-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 8px;
}

.photo-garelly-top img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 4px;
}

/* 写真ギャラリー */
.photo-garelly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-flow: row;
    column-gap: 16px;
    row-gap: 16px;
    padding: 16px;     
}

.photo-garelly img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* トップページのボタンをまとめるコンテナ */
.button-container {
    display: grid;
    max-width: 660px;
    width: 100%;
    grid-auto-flow: column;
    margin: 24px auto;
    gap: 24px;
}


/* 予約手順の見出し */
.reserve-proccess-container {
    display: grid;
    place-items: center;
    gap: 16px;

}

.reserve-proccess {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 16px 24px;
    text-align: center;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}


/* 予約手順フローの三角形 */
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 48px solid transparent;
  border-left: 48px solid transparent;
  border-top: 32px solid #66a39a;
  border-bottom: 0;
}

/* 予約カレンダーテーブル */
    .calender {
        display: grid;
        gap: 8px;
    }
    .calender-wrapper {
        max-width: 960px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* 非表示にする場合のクラス指定 */
    .calender-hidden {
        display: none;
    }

    .calender-body {
        margin-bottom: 10px;  
    }

    table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        border-spacing: 0;
    }

    th, td {
        white-space: nowrap;
        padding: 4px 12px;
        vertical-align: middle;
        border: 1px solid #bebebe;
        text-align: center
    }

     .calender-header {
        position: sticky;
        top: 0;
        left: 0;
        background: none;
        border-left: none;
        border-right: none;
    }

    .calender-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-left: 1px solid #bebebe;
        border-right: 1px solid #bebebe;
        background: #dedede;
        z-index: -1;
    }
    
    /* 表全体の背景色指定 */
    tr {
        background: #dedede;
    }
    /* 見出し列の背景色指定 */
    th {
        background: #dedede;
    }
    /* 各セルの背景色指定 */
    td {
        background: #fff;
    }
    /* 日付・曜日行の背景色指定 */
    .date {
        background: #dedede;
        }

    /* 土日祝・満室の色指定 */
        /* 土曜日 */
        .saturday {
        background: #e3f2fd; /* 青系 */
        color: #1565c0;
        }
        /* 日曜日・祝日 */
        .holiday {
        background: #ffebee; /* 赤系 */
        color: #c62828;
        }
        /* △と✕に着ける色 */
        .unavailable {
            color: #ff0000;
            font-weight: bold;
        }
    
    /* カレンダーのスクロールバーの設定 */
    /* スクロールバー全体を対象にする */
    .calender-wrapper::-webkit-scrollbar {
        width: 10px; /* スクロールバーの幅 */
        height: 10px; /* スクロールバーの高さ */
    }

    /* スクロールバーの背景部分をカスタマイズ */
    .calender-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1; /* スクロールバーの背景色 */
        border-radius: 5px; /* 角丸にする */
    }

    /* スクロールバーの操作部分をカスタマイズ */
    .calender-wrapper::-webkit-scrollbar-thumb {
        background: #888; /* スクロールバーの操作部分の背景色 */
        border-radius: 5px; /* 角丸にする */
    }

    /* スクロールバーの操作部分にホバーした時のスタイル */
    .calender-wrapper::-webkit-scrollbar-thumb:hover {
        background: #555; /* ホバー時のスクロールバーの操作部分の背景色 */
    }
/* セクション本文 */
    .text {
        width: 100%;
        max-width: 600px;
        text-align: left;
        text-wrap: auto;
        margin: 0;
        padding: 8px;
    }
    
    .text__phone{
        font-size: 24px;
        font-weight: 700;
        color: #273C24;
        line-height: 1.8;
    }

    .price {
        font-size: 110%;
        margin: 0 8px;
        font-weight: 500;
    }

/* Q&Aのアコーディオン */
.faq-content {
    display: grid;
    width: 100%;
    max-width: 660px;
    gap: 16px;
    padding: 0 8px;
}
    /* 質問の部分 */
    summary {
        display: grid;
        grid-template-columns: 1fr 24px;
        gap: 6px;
        list-style-type: none;
        align-items: center;
        cursor: pointer;
        padding: 10px 16px;
        border: 1px solid #66A39A;
        font-weight: 700;
        color: #273C24;
        background-color: #FFF;
    }
    /* ---Q&Aのアイコン--- */
    .icon {
    display: block;
    position: relative;
    width: 20px;
    transform-origin: center 43%;
    transition: transform 0.4s;
    /* アイコンのバーのスタイル */
    &::before, &::after {
        content: "";
        position: absolute;
        display: block;
        width: 12px;
        height: 2px;
        background-color: #273C24 ;
    }
    &::before {
        left: 0;
        transform: rotate(45deg);
    }
    &::after {
        right: 0;
        transform: rotate(-45deg);
    }
    }
    /* アコーディオンが開いた時の矢印の回転 */
    details[open] .icon {
    transform: rotate(180deg);
    }
    /* --------アコーディオンの中身（回答部分）のスタイル-------- */
    .faq-wrapper {
        overflow:hidden;
    }
    .qa-content {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    background-color: #FFF;
    border-bottom: 1px solid #66A39A;
    border-right: 1px solid #66A39A;
    border-left: 1px solid #66A39A;
    gap: 16px;
    text-align: left;
    }

/* リンクボタン緑 */
.linkbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin:0 auto;
    padding: .9em 2.5em;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 15%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #66a39a;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
}
.linkbtn::after {
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.linkbtn:hover {
    background-color: #56938a;
}

/* リンクボタン白 */
.linkbtn02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin:0 auto;
    padding: .9em 2.5em;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 15%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #FFF;
    color: #66a39a;
    font-weight: 700;
    font-size: 1.2em;
}
.linkbtn02::after {
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-top: 2px solid #66a39a;
    border-right: 2px solid #66a39a;
    content: '';
}

.linkbtn02:hover {
    background-color: #66a39a;
    color: #FFF;
}

.linkbtn02:hover::after {
    border-color: #FFF;
}

.linkbtn-back {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin:0 auto;
    padding: .9em 2.5em;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 15%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #66a39a;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
}
.linkbtn-back::before {
    transform: rotate(-135deg);
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    content: '';

}
.linkbtn-back:hover {
    background-color: #56938a;
}

/* 確認フォームを開くボタン */
.linkbtn-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin:0 auto;
    padding: .9em 2.5em;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 15%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #66a39a;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
}
.linkbtn-form::after {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url(../images/open_in_new_32dp_FFF.png);
    background-repeat: no-repeat;
    background-size: 24px;
    content: '';}

.linkbtn-form:hover {
    background-color: #56938a;
}


/* 電話をかけるボタン */
.callbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin:0 auto;
    padding: .9em 1.5em;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #66a39a;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
}
    .callbtn::before {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        background-image: url(../images/call.svg);
        background-repeat: no-repeat;
        content: '';
    }

.callbtn:hover {
    background-color: #56938a;
}

/* Google Mapで見るボタン */
    .linkbtn-map {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        margin:0 auto;
        padding: .9em 2.5em;
        border: none;
        border-radius: 32px;
        box-shadow: 0 4px 4px rgb(0 0 0 / 15%), 0 2px 3px -2px rgb(0 0 0 / 15%);
        background-color: #66a39a;
        color: #fff;
        font-weight: 700;
        font-size: 1.2em;
    }
    .linkbtn-map::after {
        width: 24px;
        height: 24px;
        margin-left: 10px;
        background-image: url(../images/place_32dp_FFF.png);
        background-size: 24px;
        background-repeat: no-repeat;
        content: "";
    }

    .linkbtn-map:hover {
        background-color: #56938a;
    }

/* CTAセクション */
    .cta {
        display: grid;
        margin-bottom: 24px;
        grid-template-columns: repeat(400px, 1fr);
        grid-template-rows: repeat(3, max-content);
        gap: 8px;
        place-items: center;
        }
    .cta__phone {
        display: flex;
        justify-content: center;
        align-items: baseline;
        grid-row: 1 / auto;
        grid-column: 1 / auto;
        gap: 16px;
        border-bottom:  1px #bebebe solid;
    }

    .cta__officeHour {
        grid-row: 2 / auto;
        grid-column: 1 / auto;
    }

    .cta__call {
        align-self: center;
        grid-row: 1 / 3;
        grid-column: 2 / 3;
    }
    /* CTAセクションの文章 */
    .lead-cta {
        align-self: left;
        grid-row: 3 / 4;
        grid-column: 1 / 3;
    }

    .lead-cta ul li{
        background-image: url(../images/forest_32dp_23221F.png);
        background-repeat: no-repeat;
        margin-left: 4px;
        margin-right: 8px;
        padding-left: 24px;
        background-position: left 0.3em;
        background-size: 18px;
        text-align: left;
    }

/* メインとフッター境界の画像 */
.divider {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: auto;
}

/* フッターパーツの鳥のイラスト */
.birds img {
    position: absolute;
    width: 400px;
    top: -150%;
    right: 4%;
}


/* テント・木々の画像位置調整 */
.img-container {
    position: relative;
}

.flags {
    width: 100%;
    max-width: 140px;
    text-align: center;
    margin: 0 auto 24px;
}
.flags img {
    width: 100%;
}
.tent img {
    position: absolute;
    width: 48px;
    left: 8%;
    z-index: 1;
}
.tent02 img {
    position: absolute;
    width: 96px;
    top: 50%;
    left: 16%;
    z-index: 1;
}
.woods02 img {
    position: absolute;
    width: 180px;
    top: 35%;
    right:10%;
    z-index: 1;
}

.shape-dvider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
    
}
.shape-dvider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* フッター */
.footer {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 50% 50%;
    margin: auto;
    padding: 48px 64px;
    gap: 24px 0;
    color: #fff;
    background: #273C24;
    margin-top: -2px;
}

.info__footer {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    text-align: left;
}

.link__footer {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    text-align: right;
}

.footer li{
    font-size: 14px;
    line-height: 2rem;
    list-style-type: none;
}

.Copylight {
    font-size: 10px;
    grid-row: 2 auto;
    grid-column: 1 / 3;
    text-align: center;
}

 /* -- ページトップに戻るボタン -- */
    div#pagetop-scroll {
        display: none;
        padding: 8px 8px;
        font-size: 12px;
        background: #66a39a86;
        border-radius: 4px;
        box-shadow: 0 0 4px rgba( 0, 0, 0, 15% );
        position: fixed;
        right: 16px;
        bottom: 16px;
    }

    div#pagetop-scroll:hover {
        cursor: pointer;
        background: #666666;
        color: #ffffff;
    }

/* スクロールアニメーション設定 */
.displayed{
   animation: fadeUp 0.9s forwards;
}
@keyframes fadeUp{
    0%{opacity:0; transform: translateY(0);}
  100%{opacity:1; transform: translateY(-10px);}
}

/* スマホ・タブレット用CSS */
@media screen and (max-width:768px) {
    /* ヘッダーロゴ上部 */
    .logo__xs {
        font-size: 10px;
    }
    /* ヘッダーロゴ下部 */
    .logo__m {
        font-size: 16px;
        font-weight: 700;
    }
    /* ハンバーガーメニューを表示 */
    .hamburger-overlay {
        display: block;
    }
    /* トップページファーストビューのキャッチコピー */
    .fv-top-copy{
    left: 3%;
    margin: 0 8px;
    font-size: 20px;
    padding: 0;
    }

    /* 下層ページファーストビュー見出し */
    .fv-title {
        font-size: 20px;
    }

    /* パンくずリスト */
    #breadcrumb_list {
        font-size: 12px;
    }

    /* 下層ページリード文 */
    .lead {
    margin: 8px auto;
    padding: 16px 24px;
    }

    .lead img {
        width: 56px;
        height: 56px;
        object-fit: contain;
        left: -6px;
        bottom: -30px;
    }

    /* サブメニュー */
    .submenu {
        grid-template-columns: repeat(2,1fr);
        grid-auto-flow: row;
        column-gap: 8px;
        row-gap: 16px;
        font-size: 14px;
        padding: 0;
    }

    /* ファーストビューに並べる写真 */
    .photo-top {
    grid-template-columns: repeat(2, 1fr);
    }
    .hide-on-mobile {
        display: none;
    }

    /* トップページの特徴セクション */
    .feature {
        padding: 40px 16px;
        gap: 24px;
    }
    /* 写真ギャラリー */
    .photo-garelly {
        column-gap: 16px;
        row-gap: 16px;
        padding: 8px;
    }
    .heading02 {
    padding: 10px 16px;
    }
    .heading03 {
        padding: 4px 8px;
    }
    /* セクション小見出し */
    .heading04 {
        margin-left: 0.5em;
        padding-left: 6px;
    }

    /* 料金文字 */
    .price {
        font-size: 100%;
        font-weight: 700;
    }

    /* 記事内の表 */
    .list__info {
    grid-template-columns: 80px 1fr;
    }

    .list01 {
        grid-template-columns: 120px 1fr;
        font-size: 14px;
    }

    .list02 {
        grid-template-columns: 1fr 90px;
        grid-template-rows: 1fr 1fr;
        font-size: 0.9em;
    }

    .list02 div {
        padding-left: 0em;
    }

    .list03 {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.9em;
    }

    .list04 {
        grid-template-columns: 1fr 100px 60px;
        font-size: 0.9em;
    }

    .list__cancel-policy {
        font-size: 0.9em;
        padding: 0 16px;

    }

    /* 特徴セクションの木々の画像 */
    .woods {
        width: 60%;
        max-width:340px;
        top: -5%;
        left: 6%;
    }

    /* トップページ特徴セクションのボタン配列 */
    .button-container {
        margin: 24px 0;
        grid-auto-flow: row;       
    }

    /* 特徴セクション下縁のイラスト */
    .tent img {
        position: absolute;
        width: 36px;
        top: -4%;
        left: 8%;
        z-index: 1;
    }
    .tent02 img {
        position: absolute;
        width: 66px;
        top: 50%;
        left: 16%;
        z-index: 1;
    }
    .woods02 img {
        position: absolute;
        width: 140px;
        top: -4%;
        right:10%;
        z-index: 1;
    }

    /* 天気セクション */
    .content__weather {
        margin: 0 4px;
        padding: 16px 8px;
    }
    /* アウトドア天気.jp */
        /* PC版を非表示にする */
        #outdoor-tenki-pc {
            display: none;
        }
        /* スマホ版を表示 */
        #outdoor-tenki-sp {
            display: block;
            margin: 0 4px;
        }

    /* 画像 */
    .photo img{
        width:100%;
        max-width: 660px;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        padding: 16px;
    }
    .photo-garelly {
        padding: 0;
        gap: 6px;
    }
    .photo-garelly img {
        height: 120px;
    }

    .photo-garelly02 {
        padding: 0;
        gap: 6px;
    }

    /* 予約カレンダー */
    .calender-body {
        font-size: 0.9em;
    }
    .calender-body th,
    .calender-body td {
        padding: 2px 6px;
    }
    .photo-garelly02 img {
        height: 120px;
    }
    
    /* 問い合わせ先 */
    .cta {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    }

    .cta__phone {
    display: block;
    }

    /* ボタン */
    .linkbtn {
        padding: 0.6em 2em;
    }

    .linkbtn02 {
        padding: 0.6em 2em;
    }

    .callbtn {
        padding: 0.6em 2em;
    }
    
    .linkbtn-map {
        padding: 0.6em 2em;
    }
    .linkbtn-back {
        padding: 0.6em 2em;
    }
    .linkbtn-form {
        padding: 0.6em 2em;
    }

    /* フッター付近の鳥のイラスト */
    .birds img {
        width: 280px;
        top: -100%;
        right: 4%;
    }

    /* フッター */
    .footer {
        width: 100%;
        display: block;
        padding: 48px 16px;
    }
    .info__footer {
        margin: 24px 0;
    }
    
    .link__footer {
        text-align: left;
        margin: 24px 0;
    }
}