@charset "UTF-8";
/******************
セレクタ設定方法です。
各ページのbodyタグにページタイトルのidタグを設定してください。
CSSはそのidに続けてclass名を書いてください。
以下参考です。
#access {}
#access .googlemap {}
#access .accordion p {}
といった具合にお願いいたします。
*******************/


h2 {

    position: absolute;
    top: 15.75rem;
    left: 0;
    right: 0;
    display: inline;
    font-size: clamp(3rem, 1.944rem + 4.507vw, 6rem);
    color: #E4D5BA;
}

header>nav>ul {
    margin-top: 150px;
}



.zen {
    font-family: "Zen Old Mincho", serif;
}

header {
    height: 33.5rem;
}

.first-view {
    height: 33.5rem;
}

/**********
 パンくず
 ***********/
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: clamp(0.5rem, 0.346rem + 0.657vw, 0.938rem);
}

.breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 .6em;
    /* 記号の左右の余白 */
    color: #777;
    /* 記号の色 */
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #7f6a56;
}

.breadcrumb a {
    text-decoration: none;
    color: #7f6a56;
}

/****************************************

お問い合わせ

*****************************************/
/******************
入力フォーム
*******************/



/******************
個人情報保護
*******************/

body {
    background-color: #507d89;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;

}


h2 {
    /* background-color: #e71e1e; */
    position: absolute;
    font-size: clamp(3rem, 1.944rem + 4.507vw, 6rem);
    color: #E4D5BA;
    top: 16.75rem;
    left: 0;
    right: 0;
    text-align: center;
}


.first-view .main-bg {
    background: url(../images/contact/contact-fv.webp) no-repeat center/cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 33.5rem;
}

/* 
.main-content {
    max-width: 1036px;

    margin: 0 auto;
} */


h3 {
    font-size: 16px;
    margin-bottom: 10px;

}

.section-form {
    margin-bottom: 40px;
    margin-top: 80px;
}

.contact-info p {
    margin: 6px 0;
    font-size: 15px;
}

.form-note {
    font-size: 13px;
    margin-left: 10px;
}

label {
    display: block;
    margin-top: 30px;
    font-size: 14px;
    margin-bottom: 5px;
}

.wrap {
    width: 100%;
    height: 300px;
    background-color: #fff;
    padding: 20px 10px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 1px;
    margin-top: 30px;

}



.inner {
    /* 親要素からはみ出ないように設定 */
    height: 100%;
    /* 縦スクロールの設定 */
    overflow-y: scroll;
    text-align: initial;
}

.inner p {
    font-size: 1.142rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: solid 1px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

textarea {
    height: 200px;
    resize: none;
}

.privacy {
    margin-top: 25px;
}



.consent {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

.submit-btn {
    display: block;
    padding: 1.375rem 1.5rem;
    background-color: #687C62;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin: 3.4375rem auto 11.25rem;
    width: 18.75rem;
    margin-top: 40px;

}

/* アコーディオン全体のスタイリング */
.accordion {
    /* border: 1px solid #000; */
    border-radius: 5px;
    width: 100%;
    border: 1px solid #000;
    background: #fff;
    padding: 1rem;
}

/* アコーディオンのヘッダー部分のスタイリング */
.accordion-header {
    padding: 10px;
    background-color: #f7f7f7;
    cursor: pointer;
    outline: none;
    font-weight: bold;
    border: 1px solid #000;
    position: relative;
    /* 矢印アイコンの位置調整のため */
    list-style: none;
    /* デフォルトの矢印を消す */
}

/* アコーディオンのコンテンツ部分のスタイリング */
.accordion-content {
    padding: 15px;
    line-height: 1.5;
    background-color: #fff;
}

/* カスタム矢印のスタイル */
.accordion-header::after {
    content: '▼';
    /* ここに好きなアイコンを設定できます */
    position: absolute;
    right: 10px;
    /* ヘッダーから右に10pxの位置 */
    transition: transform 0.2s ease-in-out;
    /* アニメーション効果 */
}

/* アコーディオンが開いている時の矢印のスタイル */
.accordion[open] .accordion-header::after {
    transform: rotate(180deg);
    /* 矢印を180度回転 */
}

/* WebKitベースのブラウザでデフォルトの矢印を消す */
.accordion .accordion-header::-webkit-details-marker {
    display: none;
}



@media screen and (min-width:768px) {

    /****************************************

    PCサイズはこちらに記述してください。

    *****************************************/
    /******************
    全体への設定
    *******************/

    body {
        background-color: #EEF9FC;
        font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    }

    article {
        margin-left: 3.999999976rem;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 20px;
        color: #7f6a56;
    }

    .breadcrumb a {
        text-decoration: none;
        color: #7f6a56;
    }

    /* h2 {
        background-color: #e71e1e;
        position: absolute;
        font-size: clamp(3rem, 1.944rem + 4.507vw, 6rem);
        color: #E4D5BA;
        top: 16.75rem;
        left: 0;
        right: 0;
    } */



    .main-content {
        max-width: 1036px;
        margin: 0 3.999999976rem auto 0;
    }


    h3 {
        font-size: 16px;
        margin-bottom: 10px;

    }

    .section-form {
        margin-bottom: 40px;
        margin-top: 80px;
    }

    .contact-info p {
        margin: 6px 0;
        font-size: 15px;
    }

    .form-note {
        font-size: 13px;
        margin-left: 10px;
    }

    label {
        display: block;
        margin-top: 60px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .wrap {
        width: 100%;
        height: 300px;
        background-color: #fff;
        padding: 20px 10px;
        background-color: #fff;
        border: 1px solid #000;
        border-radius: 1px;
        margin-top: 60px;

    }



    .inner {
        /* 親要素からはみ出ないように設定 */
        height: 100%;
        /* 縦スクロールの設定 */
        overflow-y: scroll;
    }

    .inner p {
        font-size: 1.142rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border: solid 1px;
        background-color: #f5f5f5;
        box-sizing: border-box;
    }

    textarea {
        height: 200px;
        resize: none;
    }

    .privacy {
        margin-top: 25px;
    }



    .consent {
        margin-top: 20px;
        text-align: center;
        font-size: 13px;
    }

    .submit-btn {
        display: block;
        padding: 1.375rem 1.5rem;
        background-color: #687C62;
        color: #fff;
        border: none;
        font-size: 16px;
        cursor: pointer;
        margin: 3.4375rem auto 11.25rem;
        width: 18.75rem;
        margin-top: 40px;

    }

    /* アコーディオン全体のスタイリング */
    .accordion {
        border: 1px solid #000;
        border-radius: 5px;

    }

    /* アコーディオンのヘッダー部分のスタイリング */
    .accordion-header {
        padding: 10px;
        background-color: #f7f7f7;
        cursor: pointer;
        outline: none;
        font-weight: bold;
        border: 1px solid #000;
        position: relative;
        /* 矢印アイコンの位置調整のため */
        list-style: none;
        /* デフォルトの矢印を消す */
    }

    /* アコーディオンのコンテンツ部分のスタイリング */
    .accordion-content {
        padding: 15px;
        line-height: 1.5;
        background-color: #fff;
    }

    /* カスタム矢印のスタイル */
    .accordion-header::after {
        content: '▼';
        /* ここに好きなアイコンを設定できます */
        position: absolute;
        right: 10px;
        /* ヘッダーから右に10pxの位置 */
        transition: transform 0.2s ease-in-out;
        /* アニメーション効果 */
    }

    /* アコーディオンが開いている時の矢印のスタイル */
    .accordion[open] .accordion-header::after {
        transform: rotate(180deg);
        /* 矢印を180度回転 */
    }

    /* WebKitベースのブラウザでデフォルトの矢印を消す */
    .accordion .accordion-header::-webkit-details-marker {
        display: none;
    }

}