@charset "utf-8";
/* ==============================================

    body

================================================= */
body {
    color: #000;
    font-size: 1.4rem;
    /*
    font-family: '游明朝', "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
    */
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", "serif";
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.05em;
}
::-moz-selection {
    color: #fff;
    background-color: #C7AEA9;
}
::selection {
    color: #fff;
    background-color: #C7AEA9;
}
@media screen and (max-width: 480px) {
    body {
        font-size: 1.3rem;
    }
}


/* ==============================================

    header

================================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    padding-left: 30px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.headerArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.h_logo img {
    height: 35px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.h_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/*---------------------------------------------
    h_nav
---------------------------------------------*/
.h_nav {
    text-align: right;
    margin-right: 25px;
}
.h_nav a {
    color: #fff;
}
#gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 30px;
}
#gnav ul li {
    font-size: 1.3rem;
}
#gnav ul li a:hover {
    color: #ad8c85;
}
@media screen and (max-width: 1366px) {
    #gnav ul {
        gap: 0 20px;
    }
}
@media screen and (max-width: 1194px) {
    #gnav ul {
        gap: 0 15px;
    }
    #gnav ul li {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 1112px) {
    .h_nav {
        margin-right: 15px;
    }
    #gnav ul {
        gap: 0 10px;
    }
}


/*---------------------------------------------
    h_fairBtn
---------------------------------------------*/
.h_fairBtn a {
    width: 130px;
    height: 60px;
    background: #ad8c85;
    position: relative;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.h_fairBtn a span {
    font-size: 1.3rem;
    font-family: "Times New Roman", "serif";
}
.h_fairBtn a p {
    font-size: 1.2rem;
}
.h_fairBtn a:hover {
    background: #a47f78;
}

/*---------------------------------------------
    nav_toggle
---------------------------------------------*/
.h_tglBtn a {
    padding: 18px 23px;
    cursor: pointer;
    display: block;
}
.h_tglBtn a:hover {
    background: transparent;
}
.nav_toggle{
    width: 34px;
    height: 24px;
}
.nav_toggle div {
    position: relative;
}
.nav_toggle span {
    display: block;
    height: 1px;
    background: #000;
    position:absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.nav_toggle span:nth-child(1){
    top: 0px;
}
.nav_toggle span:nth-child(2){
    top: 12px;
}
.nav_toggle span:nth-child(3){
    top: 24px;
}
.nav_toggle span::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #ad8c85;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.nav_toggle:hover span::before {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .h_tglBtn {
        padding: 0;
        height: 60px;
        width: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /*
    .h_tglBtn:hover {
        background: #E6DBDA;
    }
    */
    .h_tglBtn a {
        padding: 18px 18px;
        background: none;
    }
    .nav_toggle{
        width: 30px;
        height: 24px;
    }
    .nav_toggle span {
    }
}


/*---------------------------------------------
    h_fixed
---------------------------------------------*/
.h_fixed {
    background: #fff;
}
.h_fixed .h_logo {
    opacity: 1;
}
.h_fixed .h_logo img {
    filter: none;
}
.h_fixed .h_nav a {
    color: #000;
}
.h_fixed .h_fairBtn a {
    background: #ad8c85;
}
.h_fixed .h_fairBtn a:hover {
    background: #a47f78;
}
.h_fixed .h_tglBtn a {
    background: #fff;
    box-sizing: content-box;
}
.h_fixed .h_tglBtn a:hover {
    background: transparent;
}
.h_fixed .h_tglBtn .nav_toggle span::before {
    background: #ad8c85;
}
@media screen and (max-width: 1112px) {
    header {
        padding-left: 20px;
    }
}
@media screen and (max-width: 1024px) {
    .h_nav, .h_fairBtn {
        display: none;
    }
}
@media screen and (max-width:768px){
    header {
        padding-left: 15px;
    }
    .headerArea {
        height: 60px;
    }
    .h_logo img {
        height: 25px;
    }
    .nav_toggle span:nth-child(2) {
        top: 12px;
    }
    .nav_toggle span:nth-child(3) {
        top: 24px;
    }
}

/* ==============================================

    remodal

================================================= */
.remodal_h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 45px;
    position: relative;
}
.remodal_logo {
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-top: 55px;
}
.remodal-is-opened .remodal_logo {
    opacity: 1;
}
.remodal_logo img {
    height: 40px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.nav_toggle_close {
    width: 40px!important;
    height: 32px!important;
    cursor: pointer;
    display: block;
}
.remodal_h .nav_toggle_close {
    position: absolute;
    right: 40px
}
.nav_toggle_close:hover span {
    background: #c7aea9;
}
.nav_toggle_close div {
    position: relative;
    width: 46px!important;
    height: 32px!important;
}
.nav_toggle_close span{
    display: block;
    height: 1px;
    background: #fff;
    position:absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;	
}
.nav_toggle_close span:nth-child(1){
    top: 12px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
        transform: rotate(135deg);
}
.nav_toggle_close span:nth-child(2){
    width: 0;
    left: 50%;
}
.nav_toggle_close span:nth-child(3){
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
    .nav_toggle {
        padding: 0;
    }
    .remodal_h .nav_toggle_close {
        right: 15px;
    }
    .remodal_logo {
        margin-top: 40px;
    }
    /*
    .remodal_h {
        height: 60px;
        padding: 0 20px;
    }
    */
}
@media screen and (max-width: 480px) {
    .remodal_logo {
        margin-top: 30px;
    }
    .remodal_logo img {
        height: 30px;
    }
}


/*---------------------------------------------
    remodal_contents
---------------------------------------------*/
.remodal_contents {
    padding: 60px 0;
    position: relative;
}
.remodal_contents a {
    color: #fff;
}
/*---------------------------------------------
    remodal_nav
---------------------------------------------*/
.remodal_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    margin-bottom: 65px;
}
.remodal_nav ul:not(:last-child) {
    margin-right: 100px;
}
.remodal_nav li {
    font-size: 1.5rem;
}
.remodal_nav li:not(:last-child) {
    margin-bottom: 22px;
}
.remodal_nav li a:hover {
    opacity: 0.6;
}
/*---------------------------------------------
    remodal_sns
---------------------------------------------*/
.remodal_sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
    gap: 25px;
}
.remodal_sns li img {
    width: 20px;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.remodal_sns a:hover {
    opacity: 0.6;
}
/*---------------------------------------------
    remodal_btn
---------------------------------------------*/
.remodal_btn {
    max-width: 560px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.5rem;
}

/*---------------------------------------------
    remodal_mainBtn
---------------------------------------------*/
.remodal_mainBtn {
    max-width: 700px;
    margin: 0 auto 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

/*---------------------------------------------
    remodal_memberLink
---------------------------------------------*/
.remodal_memberLink.f_memberLink {
    margin: 30px 0;
}

@media screen and (max-width:768px){
    .remodal_mainBtn {
        margin-bottom: 40px;
    }
    .remodal_nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        text-align: center;
        margin-bottom: 20px;
    }
    .remodal_nav ul:not(:last-child), .remodal_nav li:not(:last-child) {
        margin: 0;
    }
    .remodal_nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .remodal_nav ul li {
        width: 47%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 115%;
    }
    .remodal_contents {
        padding: 0 5% 5%;
        top: inherit;
        -webkit-transform: inherit;
        -ms-transform: inherit;
            transform: inherit;
        margin-top: 50px;
    }
    .remodal_nav a {
        display: block;
        padding: 12px 0;
    }
    .remodal-wrapper {
        overflow: auto;
    }
    .remodal_sns {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 480px) {
    .remodal_contents {
        margin-top: 30px;
    }
    .remodal_nav ul li, .remodal_mainBtn, .remodal_btn {
        font-size: 1.2rem;
    }
    .remodal_mainBtn {
        margin-bottom: 25px;
    }
    .remodal_nav a {
        padding: 10px 0;
    }
    .remodal_memberLink.f_memberLink {
        margin: 25px 0 20px;
    }
}


/* =======================================

    #under main

========================================== */
#under main {
    padding: 50px 0 0;
}
.cmn_space {
    padding: 100px 0!important;
}
@media screen and (max-width: 768px) {
    .cmn_space {
        padding: 70px 0!important;
    }
}
@media screen and (max-width: 480px) {
    #under main {
        padding: 30px 0 0;
    }
    .cmn_space {
        padding: 50px 0!important;
    }
}


/* =======================================

    #under

========================================== */
#mv_under {
    position: relative;
    margin-top: 60px;
}
#mv_under::before {
    content: "";
    background: rgba(0,0,0,0.35);
    width: 100%;
    height: 100%;
    position: absolute;
}
#mv_under > div {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    color: #fff;
}
.mv_under_ja {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
    font-weight: 400;
}
.mv_under_en {
    letter-spacing: 0.15em;
    text-align: center;
    font-size: 1.4rem;
    font-family: "Times New Roman", "serif";
}
#mv_under img {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: none; object-position: right;';
}
#mv_under.mv_under_noPhoto {
    height: 180px;
}
#mv_under.mv_under_noPhoto::before {
    background: #f5f5f5;
}
#mv_under.mv_under_noPhoto div {
    color: #525252;
}
@media screen and (max-width: 1024px) {
    #mv_under img {
        height: 320px;
    }
}
@media screen and (max-width: 768px) {
    #mv_under {
        margin-top: 60px;
    }
    #mv_under img {
        height: 200px;
    }
    .mv_under_ja {
        font-size: 1.6rem;
    }
    #mv_under.mv_under_noPhoto {
        height: 150px;
    }
}
@media screen and (max-width: 480px) {
    #mv_under img {
        height: 120px;
    }
    .mv_under_ja {
        font-size: 1.4rem;
    }
    #mv_under.mv_under_noPhoto {
        height: 90px;
    }
}


/* ==============================================

    cmn_btn & btn & link

================================================= */
.cmn_btn {
    max-width: 300px;
    margin: 0 auto;
}
.cmn_btn a {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0;
}
.cmn_btnBdr_wht a {
    border: 1px solid #fff;
}
.cmn_btnBdr_wht a:hover {
    background: #fff;
    color: #8e5146!important;
    border: none;
}

.remodal_btn > * {
    width: 240px;
}
.remodal_mainBtn > * {
    width: 310px;
}
.remodal_mainBtn a {
    height: 60px;
}
.f_btn > * {
    flex: 0 1 240px;
}
@media screen and (max-width: 1024px) {
    .f_btn > * {
        width: 47%;
    }
}
@media screen and (max-width: 768px) {
    .remodal_mainBtn > * {
        width: 47%;
    }
}
@media screen and (max-width: 640px) {
    .remodal_btn > * {
        width: 47%;
    }
}
@media screen and (max-width: 480px) {
    .remodal_mainBtn a {
        height: 50px;
    }
}


.btn_access a, .btn_contact a {
    letter-spacing: 0.2rem;
    font-family: "Times New Roman", "serif";
}
.btn_access a::before {
    content: "";
    background: url("../img/icon_access.svg") center no-repeat;
    width: 14px;
    height: 20px;
    margin-right: 8px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    background-size: contain;
}
.btn_access a:hover::before {
    filter: brightness(0) saturate(100%) invert(40%) sepia(8%) saturate(3270%) hue-rotate(321deg) brightness(83%) contrast(81%);
}
.btn_contact a::before {
    content: "";
    background: url("../img/icon_contact.svg") center no-repeat;
    width: 18px;
    height: 14px;
    margin-right: 10px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    background-size: contain;
}
.btn_contact a:hover::before {
    filter: brightness(0) saturate(100%) invert(40%) sepia(8%) saturate(3270%) hue-rotate(321deg) brightness(83%) contrast(81%);
}
.btn_fair a {
    background: #e6dbda;
    color: #8e5146;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.1em;
}
.btn_fair a span {
    font-family: "Times New Roman", "serif";
}
.btn_fair a p {
    font-size: 1.3rem;
}
.btn_fair a:hover {
    border: 1px solid #e6dbda;
    background: transparent;
    color: #e6dbda;
}


/* ==============================================

    pageLink

================================================= */
#page_link {
    background: #F9F9F9;
    position: relative;
    padding: 70px 5%;
}
#page_link ul {
    max-width: 1175px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    gap: 25px;
}
#page_link ul li {
    width: calc((100% - 125px) / 6);
}
#page_link ul li a {
    position: relative;
}
.pageLink_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    height: 150px;
    overflow: hidden;
}
.pageLink_box::before {
    content: "";
    background: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}
#page_link ul li a:hover .pageLink_box::before {
    background: rgba(0,0,0,0.1);
}
.pageLink_box div {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 12px;
}
.pageLink_box div p {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    font-family: "Times New Roman", "serif";
}
.pageLink_box div small {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
}
.pageLink_img {
    position: absolute!important;
    top: 0;
    left: 0;
    z-index: 0!important;
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: none; object-position: right;';
    height: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
#page_link ul li a :hover .pageLink_img{
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
@media screen and (max-width: 1194px) {
    #page_link ul {
        gap: 20px;
    }
    #page_link ul li {
        width: calc((100% - 100px) / 6);
    }
    .pageLink_box div small {
        letter-spacing: 0.05em;
    }
}
@media screen and (max-width: 1112px) {
    #page_link ul li {
        width: calc((100% - 60px) / 4);
    }
    .pageLink_box {
        height: 120px;
    }
}
@media screen and (max-width: 1024px) {
    .pageLink_box div small {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 768px) {
    #page_link ul li {
        width: calc((100% - 40px) / 3);
    }
}
@media screen and (max-width: 640px) {
    #page_link ul {
        gap: 15px;
    }
    #page_link ul li {
        width: calc((100% - 30px) / 3);
    }
}
@media screen and (max-width: 480px) {
    #page_link {
        padding: 40px 5%;
    }
    #page_link ul {
        gap: 10px;
    }
    #page_link ul li {
        width: calc((100% - 20px) / 3);
    }
    .pageLink_box {
        height: 90px;
    }
    .pageLink_box div p {
        font-size: 1.2rem;
    }
    .pageLink_box div small {
        font-size: 1.0rem;
        letter-spacing: 0.1em;
    }
}


/* ==============================================

    side_btn

================================================= */
#side_btn {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 60px;
}
#side_btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#side_btn ul li {
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.side_sns {
    padding: 20px 0;
    background: #C7AEA9;
}
.side_sns li:not(:last-child) {
    margin-bottom: 20px;
}
.side_sns li img {
    width: 24px;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_sns li a:hover {
    opacity: 0.5;
}
.side_request, .side_fair {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
}
.side_request a, .side_fair a {
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    padding: 20px 0;
}
.side_request a {
    background: #6E6C6C;
    color: #fff;
}
.side_request a::before {
    content: "";
    background: url("../img/icon_request.svg") center no-repeat;
    width: 29px;
    height: 20px;
    display: inline-block;
    margin-bottom: 10px;
    background-size: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_request a:hover {
    background: #5f5f5f;
}
.side_fair a {
    background: #AD8C85;
    color: #fff;
}
.side_fair a::before {
    content: "";
    background: url("../img/icon_ring.svg") center no-repeat;
    width: 36px;
    height: 15px;
    display: inline-block;
    margin-bottom: 10px;
    background-size: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_fair a:hover {
    background: #a47f78;
}

@media screen and (max-width:1024px){
    #side_btn {
        display: none!important;
        opacity: 0!important;
    }
}


/* ==============================================

    btn_fixed

================================================= */
#btn_fixed {
    display: none;
}
@media screen and (min-width:1025px){
    #btn_fixed {
        display: none!important;
    }
}
@media screen and (max-width:1024px){
    #btn_fixed {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #fff;
        height: 70px;
        z-index: 3;
    }
    #btn_fixed ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    #btn_fixed ul li {
        flex: 1;
    }
    #btn_fixed ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        height: 65px;
        font-size: 1.4rem;
        padding-bottom: 5px;
        width: 100%;
        gap: 10px;
    }
    
    .bf_tel a {
        background: #E6DBDA;
        color: #8e5146;
    }
    .bf_fair a {
        background: #AA8882;
        color: #fff;
    }
    #btn_fixed ul li a p {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        font-family: "Times New Roman", "serif";
    }
    #btn_fixed ul li a span {
        display: inline-block;
        font-size: 1.1rem;
    }
    .bf_tel span {
        font-size: 1.3rem!important;
        font-family: "Times New Roman", "serif";
    }
}
@media screen and (max-width: 480px) {
    #btn_fixed ul li a p {
        font-size: 1.2rem;
    }
}


/* ==============================================

    footer

================================================= */
footer {
    position: relative;
    z-index: 2;
    padding: 50px 5% 20px;
    background: #a47f78;
    color: #fff;
}
footer a {
    color: #fff;
}

/*------------------------------------------------------------
    footer_contact
------------------------------------------------------------*/
.footer_contact {
    max-width: 1100px;
    height: 110px;
    margin: 0 auto 60px;
    background: #E6DBDA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 3%;
    padding: 0 8%;
}
.f_tel {
    color: #8e5146;
    text-align: center;
}
.f_tel p {
    margin-bottom: 5px;
}
.f_tel a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-items: center;
    font-size: 3.2rem;
    margin-bottom: 6px;
    color: #8e5146;
    font-family: "Times New Roman", "serif";
    letter-spacing: 0;
}
.f_tel a::before {
    content: "";
    background: url("../img/icon_tel.svg") center no-repeat;
    display: inline-block;
    width: 25px;
    height: 30px;
    margin-right: 2px;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(82%) saturate(312%) hue-rotate(323deg) brightness(102%) contrast(88%);
}
.f_tel ul {
    display: flex;
    gap: 15px;
}
.f_cnt_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 0.1em;
}
.f_cnt_btn li a {
    width: 220px;
    height: 60px;
    position: relative;
    color: #fff;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.f_cnt_btn_req a {
    background: #7A7777;
}
.f_cnt_btn_req a:hover {
    background: #5f5f5f;
}
.f_cnt_btn_fair a {
    background: #AA8882;
}
.f_cnt_btn_fair a:hover {
    background: #a47f78;
}
.f_cnt_btn li a > * {
    letter-spacing: 0.1em;
}
.f_cnt_btn li span {
    font-size: 1.3rem;
    font-family: "Times New Roman", "serif";
}
@media screen and (max-width: 1024px) {
    .footer_contact {
        padding: 0 5%;
        gap: 20px 5%;
    }
    .f_cnt_btn {
        flex: 1;
    }
    .f_cnt_btn li {
        width: calc((100% - 20px) / 2)
    }
    .f_cnt_btn li a {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .footer_contact {
        flex-flow: column;
        height: auto;
        padding: 25px 30px;
    }
    .f_cnt_btn {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .footer_contact {
        padding: 20px;
        margin-bottom: 40px;
    }
    .f_tel p, .f_tel ul {
        font-size: 1.2rem;
    }
    .f_tel a {
        font-size: 2.8rem;
    }
    .f_tel a::before {
        zoom: 0.8;
    }
    .f_cnt_btn {
        gap: 15px;
    }
    .f_cnt_btn li {
        width: calc((100% - 15px) / 2);
    }
    .f_cnt_btn li a {
        height: 54px;
        gap: 8px;
    }
    .f_cnt_btn li span, .f_cnt_btn li p {
        font-size: 1.2rem;
    }
}


.footerArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 10%;
    max-width: 1100px;
    margin: 0 auto;
}
.f_info {
    text-align: center;
}
.f_logo {
    margin-bottom: 40px;
}
.f_logo img {
    width: 200px;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}
.f_logo p {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}
.f_address p {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.f_address address {
    font-style: normal;
    margin-bottom: 10px;
    text-decoration: none!important;
    line-height: 142%;
}
.f_address a {
    text-decoration: underline;
    font-size: 1.3rem;
}
.f_address a:hover {
    text-decoration: none;
}


.f_link {
    flex: 1;
    max-width: 640px;
}
.f_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-bottom: 40px;
    gap: 1.5em 1em;
}
.f_menu li {
    letter-spacing: 0.05em;
}
.f_menu li:not(:last-child)::after {
    content: "/";
    margin-left: 1em;
}
.f_link li a:hover {
    opacity: 0.7;
}
.f_btn {
    max-width: 500px;
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 23px;
    font-size: 1.5rem;
}
.f_memberLink {
    display: -webkit-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-flow: row wrap;
    gap: 10px 8px;
}
.f_memberLink a {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}
.f_memberLink a:not(:last-child) {
    padding-right: 8px;
    border-right: 1px solid #fff;
}
.f_memberLink a:hover {
    opacity: 0.7;
}
footer .remodal_sns {
    margin-bottom: 0;
}

/*---------------------------------------------
    btn_hotelsite
---------------------------------------------*/
.btn_hotelsite {
    margin-top: 30px;
    text-align: center;
    font-size: 1.3rem;
}
.btn_hotelsite a:hover {
    text-decoration: underline;
}

@media screen and (max-width:1194px) {
    .footerArea {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .f_link {
        width: calc(100% - 350px);
    }
}
@media screen and (max-width: 1024px) {
    footer {
        margin-bottom: 70px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 896px) {
    .btn_hotelsite a img {
        zoom: 0.9;
    }
}
@media screen and (max-width: 768px) {
    .footerArea {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        align-items: center;
    }
    .f_info {
        margin-right: 0;
        margin-bottom: 50px;
        width: auto;
    }
    .f_link {
        width: 100%;
    }
    .f_btn {
        column-gap: 5%;
    }
    .f_memberLink a {
        font-size: 1.1rem;
    }
}
@media screen and (max-width: 640px) {
    .f_memberLink {
    }
}
@media screen and (max-width: 480px) {
    footer {
        padding: 40px 5%;
    }
    .f_memberLink a {
        font-size: 1.05rem;
    }
    .f_memberLink a:not(:last-child) {
        padding-right: 8px;
    }
    .f_info {
        margin-bottom: 30px;
    }
    .f_logo img {
        width: 130px;
    }
    .f_logo p,
    .f_address {
        font-size: 1.2rem;
    }
    .btn_hotelsite a {
        font-size: 1.1rem;
        height: 50px;
    }
}


/* ==============================================

    copyright

================================================= */
#copyright{
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    padding: 60px 0 0;
    background: #a47f78;
    font-family: "Times New Roman", "serif";
}

@media screen and (max-width: 768px) {
    #copyright {
        padding-top: 30px;
        font-size: 1rem;
    }
}
@media screen and (max-width: 480px) {
    #copyright {
        letter-spacing: 0.1rem;
        padding-top: 40px;
    }
}




