body {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1rem, 0.976rem + 0.12vw, 1.125rem)
        /*16-18px*/
    ;

}

.bg_washi {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-image: url(../images/common/bg_washi.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.bg_washi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg_whie {
    background-color: #fff;
}

/**font**********/
.tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.title_01 {
    /*26-70px*/
    font-size: clamp(1.625rem, 1.095rem + 2.65vw, 4.375rem);
    padding: 0 0 1em;
    font-weight: 600;
}

.title_03 {
    /*26-50px*/
    font-size: clamp(1.625rem, 1.336rem + 1.45vw, 3.125rem);
    padding: 0 0 1em;
}

.title_03.wh {
    color: #fff;
}

/**********/
.inner_section {
    padding: 3rem 0;
    width: 100%;
}

.inner {
    max-width: 920px;
    margin: 0 auto;
    width: 90%;
}

/***btn*********/
.btn_more_01 {
    display: flex;
    justify-content: center;
    margin: 3rem 0 1rem;

}



.btn_more_01 a {
    position: relative;
    padding: 0 1.2em 0 0;
    /***20-30px*/
    font-size: clamp(1.25rem, 1.13rem + 0.6vw, 1.875rem);
    margin: 0 1em;
    transition: all 0.3s ease 0s;
}



.btn_more_01 a:after {
    position: absolute;
    content: '';
    /*30-26px*/
    width: clamp(1.25rem, 1.13rem + 0.6vw, 1.875rem);
    height: clamp(1.25rem, 1.13rem + 0.6vw, 1.875rem);
    background-image: url(../images/common/icon_arrow_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
}

.btn_more_01.white a {
    color: #fff;
}

.btn_more_01 a:hover {
    cursor: pointer;
    transform: scale(1.1, 1.1);
    color: #CD5E3C;
}

.btn_more_01.white a:after {
    background-image: url(../images/common/icon_arrow_white.svg);
}

/**********/
.bg_black {
    background-color: #333631;
}

.contact_area {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 0 1rem;
    background-color: #fff;
}

.contact_area li {
    margin: 0.7rem 0;
}

.contact_area li a {
    background-color: #CD5E3C;
    display: block;
    text-align: center;
    color: #fff;
    padding: 8px 0;
    font-size: clamp(1.125rem, 1.101rem + 0.12vw, 1.25rem);
    /*18-20px*/
}

.contact_area li:nth-child(2) a {
    background-color: #203744;
}



.nav_menu,
.sub_page .nav_menu {
    display: flex;
    padding: 0 0 0 2%;
    align-items: first baseline;
    gap: unset;
    justify-content: space-around;
    height: 90%;
    flex-direction: column;
    max-height: 580px;
}

#gnav li {
}

#gnav li a {
    font-weight: 700;
    padding: 0 0.4em;
    font-size: clamp(0.938rem, 0.925rem + 0.06vw, 1rem);
}

.menu_wrap {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/***スクロールバー************/
/*1000px以上*/
@media (min-width: 1000px) {
    .scroll_bar {
        overflow-y: scroll;
    }

    .scroll_bar::-webkit-scrollbar {
        width: 3px;
    }

    .scroll_bar::-webkit-scrollbar-track {
        background-color: #CD5E3C;
    }

    .scroll_bar::-webkit-scrollbar-thumb {
        background-color: #ccc;
    }
}



/*****************/
/*ヘッダー*/
header {
    padding: 0;
    background-color: #fff;
    position: fixed;
    width: 320px;
    height: 100vh;
    overflow: hidden;
}

.header {
    z-index: 999999;
}




.header_wrap {
    height: calc(100% - 120px);
    padding: 8vh 0 6vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.bg_area {
    position: relative;
    height: 100%;
    padding: 12vh 0 0;
}

.gnav_wrap:before {
    content: "";
    position: absolute;
    top: -15px;
    right: -13%;
    z-index: -1;
    opacity: 1;
    background-image: url(../images/common/menu_top_img.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50%;
    height: 50%;
    background-position: top right;
}

.gnav_wrap:after {
    content: "";
    position: absolute;
    bottom: 124px;
    left: -11%;
    z-index: -1;
    opacity: 1;
    background-image: url(../images/common/menu_bottom_img.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 56%;
    height: 40%;
    background-position: bottom left;
}

.hdr_logo {
    z-index: 1;
    position: initial;
    text-align: center;
}

.hdr_logo a {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.404rem + 0.48vw, 2rem);
}

.hamMenu span::after,
.hamMenu span::before,
.hamMenu span {
    background: #CD5E3C;
}

#gnav_wrap {
    /* display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 2em;*/
    height: calc(100% - 80px);
}

/*ブレイクポイント 以下*/
@media (max-width: 1000px) {
    .header_wrap {
        height: 50px;
        width: 100%;
    }

    .hdr_logo {
        padding: 0;
    }

    .hdr_logo h1 {
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        height: 50px;
        display: flex;
        justify-content: center;
        position: fixed;
        top: 0;
    }

    .hdr_logo a {
        line-height: 1.8;
    }

    .gnav_wrap::before,
    .gnav_wrap::after {
        height: 40%;
    }

    .gnav_wrap::after {
        bottom: 70px;
    }

    .header {
        justify-content: center;
        background-color: unset;
        background-image: url(../images/common/bg_washi.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top right;
    }

    .menu_wrap {
        height: calc(100% - 70px);
    }

    #gnav_wrap {
        transform: rotate;
        margin: 50px 0 0 0;
        width: 100vw;
        height: calc(100vh - 50px);
    }

    .nav_menu,
    .sub_page .nav_menu {
        height: calc(100% - 120px);
        align-items: center;
        margin: 0 auto;
    }

    .bg_menu_top {
        width: 100%;
    }

    .contact_area {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        position: unset;
        padding: 1rem 0 0;
    }

    .contact_area li {
        margin: 0px auto 10px;
        width: 50%;
    }

    .contact_area li a {
        margin: 0 0.5em;
    }

    .bg_menu_bottom {}

    .hamMenu span {
        border-top: 9px solid #eae6e2;
        border-bottom: 9px solid #eae6e2;
    }

    .menu-is-open .header {
        background: #fff;
    }

    .menu-is-open #gnav_wrap {
        transform: translateX(-100vw);
        background: #fff;
        width: 100%;
        height: calc(100vh - 50px);
        margin: 50px 0 0;
    }
}

@media (max-width: 600px) {
    .menu_wrap {
        height: calc(100% - 120px);
    }

    .contact_area li {
        width: 100%;
    }

    .gnav_wrap::before,
    .gnav_wrap::after {
        height: 25%;
    }

    .gnav_wrap::after {
        bottom: 110px;
    }
}

/***********************************/
article,
footer {
    width: calc(100vw - 320px);
    margin: 0 0 0 320px;
}



#page_top {
    bottom: 1em;
}

footer .inner_section {
    padding: 3rem 4rem;
}

/*ブレイクポイント 以下*/
@media (max-width: 1000px) {

    article {
        width: 100%;
        margin: 50px 0 0 0;
    }


    footer {
        width: 100%;
        margin: 0;
    }

    footer .inner_section {
        padding: 3rem 4%;
    }
}

/*************************************/
footer {
    background-color: #203744;
    color: #fff;
}

footer a,
.copy {
    color: #fff;
}

.footer .logo {
    margin: 0 0 1rem;
    /*15-35px*/
    font-size: clamp(0.938rem, 0.697rem + 1.2vw, 2.188rem);
}

.footer .text p {
    font-size: clamp(0.938rem, 0.877rem + 0.3vw, 1.25rem);
}

.footer .right_box {}

.footer .tel {
    display: flex;
}

.footer .tel dd {
    padding: 0 0 0 1em;
}

.right_box {
    font-size: clamp(0.813rem, 0.776rem + 0.18vw, 1rem);
    text-align: right;
    padding: 1rem 0;
}

.right_box li {
    margin: 0 0 0.5em;
}

.copy {
    font-size: 12px;
}

/*600px以上*/
@media (min-width: 600px) {
    .footer .flex_area {
        justify-content: space-between;
        align-items: first baseline;
    }

    #footer .flex_area {
        flex-direction: initial;
        justify-content: space-between;
        align-items: end;
        display: flex;
        flex-wrap: wrap;
    }

    .right_box {
        padding: 0;
    }
}

/*900px以上*/
@media (min-width: 900px) {}


/*sub_page共通****************/
.sub_main {}

.sub_main .img_area {
    width: 100%;
    height: 40vh;
}

.sub_main .img_area img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.sub_h1 {
    margin: 0 0 2rem;
}

.page_title {
    /*26-40px*/
    font-size: clamp(1.625rem, 1.456rem + 0.84vw, 2.5rem);
    font-weight: bold;
    padding: 0.6em 0;
    display: block;
}

.page_title_sub {
    /*14-35px*/
    font-size: clamp(1.375rem, 1.158rem + 1.08vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    color: #CD5E3C;
}

.title_04 {
    /*14-35px*/
    font-size: clamp(1.375rem, 1.158rem + 1.08vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    padding: 1em 0;
    line-height: 1.7;
}

.title_05 {
    /*20-32px*/
    font-size: clamp(1.25rem, 1.105rem + 0.72vw, 2rem);
    font-weight: 600;
    text-align: center;
    padding: 1em 0;
    line-height: 1.7;
}

.title_05:before,
.title_05:after {
    content: "～";
}

.title_06 {
    color: #CD5E3C;
    /*18-32px*/
    font-size: clamp(1.125rem, 0.956rem + 0.84vw, 2rem);
    text-align: center;
}

.sub_page p {
    line-height: 2;
}

.sub_page .title_00 {
    display: none
}

.text_block {}

.img_type02 {
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: 4%;
}

.img_type02 img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.sub_page .img_area.img_type03 {
    width: 100%;
    aspect-ratio: 18 / 9;
    height: unset;
    margin: 2rem 0;
}

.sub_page .img_area.img_type03 img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/*700px以上*/
@media (min-width: 700px) {
    .title_04 {
        text-align: left;
    }

    .bg_whie .title_04 {
        text-align: center;
    }

    .sub_page .flex_area {
        flex-direction: initial;
        justify-content: center;
        align-items: stretch;
        display: flex;
        flex-wrap: wrap;
    }

    .sub_page .img_area {
        width: 50%;
        height: 100vh;
        padding: 0;
    }

    .sub_page .text_area {
        width: 50%;
    }

    .sub_page .text_area .text_flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        align-items: baseline;
    }

    .sub_page .reverse {
        flex-direction: row-reverse;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

/****投稿****************/
#list_navi {
    display: flex;
    justify-content: center;
    align-items: center;
}

#list_navi li {
    text-align: center;
    margin: 0 0.3em;
}

#list_navi li a {
    background-color: #CD5E3C;
    display: block;
    color: #fff;
    padding: 3px 1em;
    border-radius: 0.2em;
    font-size: clamp(0.813rem, 0.776rem + 0.18vw, 1rem);
}

/*****記事個別ページ******/
/****ブログ*****/
.type_post .sub_h1 {
    text-align: left;
    width: 100%;
}

.page_blog .type_post.post_meta {
    text-align: right;
}

.page_blog .type_post .uText {
    background-color: #ffffff91;
    padding: 2rem 4%;
}

.text {}

/****お知らせ*****/
.type_post .post_meta {
    display: flex;
    justify-content: space-between;
    margin: 0 0 0.7rem;
}

/****関連記事***/
.kanren_area {}

.kanren_area .kanren_tit {
    text-align: center;
    border-bottom: solid 1px;
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 1.154rem + 0.48vw, 1.75rem);
}