@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url(default.css);
@import url(utility.css);
@import url(nav.css);

/* ==================================
    共通箇所
================================== */
html {
    font-size: 62.5%;
}

body {
    position: relative;
    overflow-x: hidden;
    min-width: 100%;
    margin: 0;
    padding: 0;
    background: white;
    font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 400;
    color: black;
    letter-spacing: 0px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    opacity: .8;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

img {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

object {
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

.flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_box_fe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_box_sb {
    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;
}

.flex_box_cnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.map_box {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    width: 100%;
}

.map_box iframe,
.map_box object,
.map_box embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movie_box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
}

.movie_box iframe,
.movie_box object,
.movie_box embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    font-weight: 500;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe2e7));
    background: -webkit-linear-gradient(transparent 60%, #ffe2e7 60%);
    background: -o-linear-gradient(transparent 60%, #ffe2e7 60%);
    background: linear-gradient(transparent 60%, #ffe2e7 60%);
}

.sp_cnt {
    display: none;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 215px;
    height: 60px;
    border-radius: 35px;
    background-color: #f8a5aa;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 4.28;
    letter-spacing: 0px;
    text-align: center;
    color: #ffffff;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 87%;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.btn:hover {
    color: #ffffff;
}

.btn:hover:after {
    left: 89%;
}

.more_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 210px;
    height: 48px;
    border-radius: 4px;
    border: solid 1px #d6b887;
    background-color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: center;
    color: #c39842;
}

.more_btn:after {
    content: "";
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 10%;
    margin: auto;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #c39842;
    border-right: 1px solid #c39842;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.more_btn:hover {
    color: #ffffff;
    background-color: #c39842;
}

.more_btn:hover:after {
    left: 12%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

@media screen and (max-width: 960px) {
    .btn {
        max-width: 215px;
        width: 31.06936%;
        height: 45px;
        border-radius: 35px;
        font-size: 1.45833vw;
        font-weight: 500;
        line-height: 3.214;
    }

    .btn:after {
        left: 87%;
        width: 6px;
        height: 6px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }

    .more_btn {
        width: 28vw;
        height: 48px;
        font-size: 1.45833vw;
        font-weight: bold;
        line-height: 1.2;
    }

    .tab_no {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .more_btn {
        width: 54.66667vw;
        height: auto;
        font-size: 3.73333vw;
        font-weight: bold;
        line-height: 2.8;
        font-weight: 500;
    }

    .pc_cnt {
        display: none;
    }

    .sp_cnt {
        display: block;
    }
}

/* ==================================
    HEADER
================================== */
#header {
    display: block;
    width: 100%;
    padding: 0 60px;
}

#header .hd_contents {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 12vh;
}

#header .hd_logo {
    display: block;
    margin: 0;
    padding: 0;
}

#header .hd_logo a {
    display: block;
    max-width: 235px;
    width: 100%;
}

#gnav {
    width: 692px;
}

#gnav .nav {
    display: inline-block;
    margin-right: 28px;
    position: relative;
    font-size: 1.4rem;
    letter-spacing: 0.7px;
    color: #010101;
}

#gnav .nav:before {
    content: "";
    position: absolute;
    top: 150%;
    width: 0%;
    height: 1px;
    background-color: #f8a5aa;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 101;
}

#gnav .nav:hover:before {
    width: 100%;
}

#gnav .child {
    position: relative;
}

#gnav .child .sub_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -1em;
    z-index: 100;
    width: 280px;
}

#gnav .child .sub_nav a {
    display: block;
    position: relative;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 101;
}

#gnav .child .sub_nav a:before {
    content: none;
}

#gnav .child:hover .sub_nav {
    display: block;
}

#gnav .nav05 {
    margin-right: 36px;
}

#gnav .nav06 {
    display: none;
}

#gnav .contact {
    margin-right: 0;
    font-weight: normal;
}

#nav_icon {
    display: none;
}

/* ===  =============== */
@media screen and (max-width: 1340px) {
    #header {
        padding: 0px 2.23881%;
    }

    #header .hd_logo a {
        width: 100%;
    }

    #gnav {
        max-width: 692px;
        width: 100%;
    }

    #gnav .nav {
        font-size: 1.4rem;
        letter-spacing: 0.7px;
        margin-right: 2.89017%;
    }

    #gnav .nav05 {
        margin-right: 4.33526%;
    }

    #gnav .contact {
        margin-right: 0;
        font-weight: normal;
    }
}

@media screen and (max-width: 960px) {
    #header {
        display: block;
        position: relative;
        width: 100%;
        padding: 0px 4%;
        -webkit-box-shadow: 0px 2px 5px 0 rgba(104, 103, 103, 0.23);
        box-shadow: 0px 2px 5px 0 rgba(104, 103, 103, 0.23);
        background-color: #ffffff;
        z-index: 10;
    }

    #header .hd_contents {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 10vh;
    }

    #header .hd_logo a {
        max-width: 333px;
        width: 48.26087vw;
    }

    #gnav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        max-width: none;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        z-index: 1000;
        padding: 10% 10%;
    }

    #gnav .nav {
        display: block;
        padding: 20px 25px;
        font-size: 1.6rem;
        letter-spacing: 0.7px;
        margin-right: 0;
        border-bottom: 1px dashed rgba(100, 100, 100, 0.2);
    }

    #gnav .nav:before {
        content: none;
    }

    #gnav .child {
        position: relative;
    }

    #gnav .child .nav {
        border-bottom: none;
    }

    #gnav .child .sub_nav {
        display: block;
        position: static;
        top: auto;
        left: auto;
        z-index: 100;
        width: 100%;
        border-bottom: none;
    }

    #gnav .child .sub_nav a {
        display: block;
        position: relative;
        width: 100%;
        padding: 15px 12px 15px 40px;
        background: none;
        font-size: 1.4rem;
    }

    #gnav .child .sub_nav a:before {
        content: none;
    }

    #gnav .child .sub_nav a:hover:before {
        width: 100%;
    }

    #gnav .child:hover .sub_nav {
        display: block;
    }

    #gnav .nav05 {
        margin-right: 0%;
    }

    #gnav .nav06 {
        display: block;
    }

    #gnav .contact {
        margin-right: 0;
        max-width: 340px;
        width: 100%;
        height: 55px;
        font-size: 1.6rem;
        margin: 5.20833vw auto 0;
        line-height: 3.4375;
    }

    #nav_icon {
        display: block;
        position: relative;
        width: 60px;
        padding-top: 60px;
        border-radius: 50%;
    }
}

@media screen and (max-width: 750px) {
    #header {
        width: 100vw;
        padding: 0px 4%;
    }

    #header .hd_contents {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 17.33333vw;
    }

    #gnav .nav {
        padding: 18px 20px;
        font-size: 4vw;
        letter-spacing: 0.7px;
        margin-right: 0;
        border-bottom: 1px dashed rgba(100, 100, 100, 0.5);
    }

    #gnav .child .sub_nav a {
        padding: 12px 12px 12px 30px;
        background: none;
        font-size: 3.73333vw;
    }

    #gnav .child:hover .sub_nav {
        display: block;
    }

    #gnav .nav05 {
        margin-right: 0%;
    }

    #gnav .contact {
        margin-right: 0;
        max-width: 340px;
        width: 100%;
        height: 55px;
        font-size: 1.6rem;
        margin: 5.20833vw auto 0;
        line-height: 3.4375;
    }

    #nav_icon {
        width: 12.26667vw;
        padding-top: 12.26667vw;
        border-radius: 50%;
    }
}

/* ==================================
    FOOTER
================================== */
#footer {
    width: 100%;
    display: block;
    background-color: #f2ebdc;
    padding: 64px 20px 74px;
}

#footer .ft_contents {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

#footer .ft_contents h2 {
    display: block;
    margin: 0 0 10px;
    font-family: "Josefin Sans", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.9px;
    color: #000000;
}

#footer .ft_contents .ft_about {
    width: 370px;
    padding-right: 4.62963%;
    border-right: 1px solid #c2a972;
}

#footer .ft_contents .ft_about .ft_logo {
    width: 216px;
    margin-bottom: 20px;
}

#footer .ft_contents .ft_about .ft_logo a {
    display: block;
    width: 100%;
}

#footer .ft_contents .ft_about .about {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.5;
}

#footer .ft_contents .ft_about .sns_list .sns {
    display: block;
    width: 50px;
    margin-right: 10px;
}

#footer .ft_contents .ft_about .sns_list .sns:last-of-type {
    margin-right: 0;
}

#footer .ft_contents .ft_access {
    width: 348px;
    padding: 0 4.62963%;
}

#footer .ft_contents .ft_access address {
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
}

#footer .ft_contents .ft_access .gmap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 145px;
    height: 35px;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: "Josefin Sans", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #bc9343;
}

#footer .ft_contact {
    width: 360px;
}

#footer .ft_contact .cnt_btn a,
#footer .ft_contact .cnt_btn .tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 360px;
    height: 54px;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.7px;
}

#footer .ft_contact .cnt_btn a:after,
#footer .ft_contact .cnt_btn .tel:after {
    content: "";
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 91.66667%;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#footer .ft_contact .cnt_btn a:hover,
#footer .ft_contact .cnt_btn .tel:hover {
    opacity: 1;
}

#footer .ft_contact .cnt_btn a:hover:after,
#footer .ft_contact .cnt_btn .tel:hover:after {
    left: 93.05556%;
}

#footer .ft_contact .tel_contact a,
#footer .ft_contact .tel_contact .tel {
    margin-bottom: 10px;
    background: #fff url(../img/icon/ft_icon04.png) no-repeat 8.33333% center;
    color: #0f0e0e;
    font-family: "Lato", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
    font-size: 1.7rem;
    letter-spacing: 1.7px;
    color: #0f0e0e;
}

#footer .ft_contact .tel_contact a:after,
#footer .ft_contact .tel_contact .tel:after {
    content: "";
}

#footer .ft_contact .tel_contact a {
    display: none !important;
}


.ft_information {
    margin-top: 5%;
}

#footer .ft_contact .jpm a {
    background: #0AB5C6 url(../img/icon/ft_icon06.png) no-repeat 7.5% center;
    color: #fff !important;
}

.ft_information .jpm_txt {
    padding: 1.2%;
    font-size: 1.2rem;
}


#footer .ft_contact .mail_contact a {
    background: #d6b26b url(../img/icon/ft_icon05.png) no-repeat 7.5% center;
    color: #fff !important;
}

#footer .copyright {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 50px;
    font-family: "Josefin Sans", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #000;
}

#footer #pagetop_box {
    _width: 100%;
    _text-align: right;
    _padding: 0 20px 0 0;
}

#footer #pageTop {
    position: fixed;
    display: none;
    bottom: 10%;
    right: 10px;
    z-index: 20;
    width: 65px;
}

@media screen and (max-width: 1340px) {
    #footer {
        padding: 64px 20px 74px;
    }

    #footer .ft_contents .ft_about {
        max-width: 370px;
        width: 34.25926%;
        padding-right: 4.62963%;
        border-right: 1px solid #c2a972;
    }

    #footer .ft_contents .ft_about .ft_logo {
        width: 216px;
        margin-bottom: 20px;
    }

    #footer .ft_contents .ft_about .ft_logo a {
        display: block;
        width: 100%;
    }

    #footer .ft_contents .ft_about .about {
        margin: 0 0 10px;
        font-size: 1.4rem;
        line-height: 1.5;
    }

    #footer .ft_contents .ft_about .sns_list .sns {
        display: block;
        width: 50px;
        margin-right: 10px;
    }

    #footer .ft_contents .ft_about .sns_list .sns:last-of-type {
        margin-right: 0;
    }

    #footer .ft_contents .ft_access {
        max-width: 348px;
        width: 32.22222%;
        padding: 0 4.62963%;
    }

    #footer .ft_contents .ft_access address {
        display: block;
        margin-bottom: 10px;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    #footer .ft_contents .ft_access .gmap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 145px;
        height: 35px;
        border-radius: 4px;
        background-color: #ffffff;
        font-family: "Josefin Sans", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #bc9343;
    }

    #footer .ft_contact {
        width: 33.33333%;
    }

    #footer .ft_contact .cnt_btn a,
    #footer .ft_contact .cnt_btn .tel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 54px;
        border-radius: 4px;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: normal;
        letter-spacing: 0.7px;
    }

    #footer .ft_contact .cnt_btn a:after,
    #footer .ft_contact .cnt_btn .tel:after {
        content: "";
        position: absolute;
        top: 0%;
        bottom: 0%;
        left: 91.66667%;
        margin: auto;
        vertical-align: middle;
        width: 8px;
        height: 8px;
        border-top: 1.5px solid #fff;
        border-right: 1.5px solid #fff;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    #footer .ft_contact .cnt_btn a:hover,
    #footer .ft_contact .cnt_btn .tel:hover {
        opacity: 1;
    }

    #footer .ft_contact .cnt_btn a:hover:after,
    #footer .ft_contact .cnt_btn .tel:hover:after {
        left: 93.05556%;
    }

    #footer .ft_contact .tel_contact a,
    #footer .ft_contact .tel_contact .tel {
        margin-bottom: 10px;
        background: #fff url(../img/icon/ft_icon04.png) no-repeat 8.33333% center;
        color: #0f0e0e;
        font-family: "Lato", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
        font-size: 1.7rem;
        letter-spacing: 1.7px;
        color: #0f0e0e;
    }

    #footer .ft_contact .tel_contact a:after,
    #footer .ft_contact .tel_contact .tel:after {
        content: none;
    }

    #footer .ft_contact .mail_contact a {
        background: #d6b26b url(../img/icon/ft_icon05.png) no-repeat 7.5% center;
        color: #fff !important;
    }

    #footer .copyright {
        display: block;
        width: 100%;
        text-align: right;
        margin-top: 50px;
        font-family: "Josefin Sans", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
        font-weight: 300;
        font-size: 1.4rem;
        color: #000;
    }

    #footer .page_top {
        position: absolute;
        right: 5%;
        bottom: 90px;
        width: 60px;
    }
}

@media screen and (max-width: 960px) {
    #footer {
        padding: 6.66667% 4.16667% 7.70833%;
    }

    #footer .ft_contents {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }

    #footer .ft_contents .ft_about {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        max-width: none;
        width: 100%;
        padding: 0 0 30px;
        border-right: none;
        border-bottom: 1px solid #c2a972;
    }

    #footer .ft_contents .ft_about .ft_logo {
        width: 216px;
        margin-bottom: 20px;
    }

    #footer .ft_contents .ft_about .ft_logo a {
        display: block;
        width: 100%;
    }

    #footer .ft_contents .ft_about .about {
        margin: 0 0 10px;
        font-size: 1.4rem;
        line-height: 1.5;
    }

    #footer .ft_contents .ft_about .sns_list .sns {
        display: block;
        width: 36px;
        margin-right: 10px;
    }

    #footer .ft_contents .ft_about .sns_list .sns:last-of-type {
        margin-right: 0;
    }

    #footer .ft_contents .ft_access {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        max-width: none;
        width: 100%;
        padding: 30px 0;
    }

    #footer .ft_contents .ft_access address {
        display: block;
        margin-bottom: 10px;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    #footer .ft_contents .ft_access .gmap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 145px;
        height: 35px;
        border-radius: 4px;
        background-color: #ffffff;
        font-family: "Josefin Sans", "Helvetica Neue", "Segoe UI", Arial, "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #bc9343;
    }

    #footer .ft_contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        width: 100%;
    }

    #footer .ft_contact .cnt_btn a,
    #footer .ft_contact .cnt_btn .tel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 360px;
        height: 54px;
        border-radius: 4px;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: normal;
        letter-spacing: 0.7px;
    }

    #footer .ft_contact .tel_contact a,
    #footer .ft_contact .tel_contact .tel {
        font-size: 1.7rem;
    }

    #footer .copyright {
        margin-top: 50px;
        font-size: 1.4rem;
    }

    #footer .page_top {
        position: absolute;
        right: 5%;
        bottom: 90px;
        width: 60px;
    }
}

@media screen and (max-width: 750px) {
    #footer {
        padding: 8.53333% 5.33333% 9.86667%;
    }

    #footer .ft_contents .ft_about .ft_logo {
        width: 216px;
        margin-bottom: 20px;
    }

    #footer .ft_contact .cnt_btn a,
    #footer .ft_contact .cnt_btn .tel {
        width: 280px;
        height: 54px;
    }

    #footer .ft_contact .tel_contact a:after,
    #footer .ft_contact .tel_contact .tel:after {
        content: "";
        border-top: 1.5px solid #0f0e0e;
        border-right: 1.5px solid #0f0e0e;
    }

    #footer .ft_contact .tel_contact a {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    #footer .ft_contact .tel_contact .tel {
        display: none;
    }

    #footer .copyright {
        margin-top: 100px;
        font-size: 1.4rem;
    }

    #footer .page_top {
        position: absolute;
        right: 5%;
        bottom: 90px;
        width: 60px;
    }


    .ft_information p {
        width: 70%;
    }
}



/*追加*/


.footer_smil_btn {
    background: #FFC372;
    padding: 3%;
    text-align: center;
    margin-top: 5%;
    border-radius: 4px;
}

.footer_smil_btn:hover {
    opacity: 70%
}

.footer_smil_btn a {
    color: #ffffff;
    font-weight: bold;
}



@media screen and (min-width: 768px) {
            .sp_only {
                display: none;
            }
        }

        .snsmenu {
            width: 100%;
        }

        .snsmenu div {
            margin: 5% auto;
        }






