@charset "utf-8";
/*
Template: 
Theme Name: 
*/

/* -----------------------------------------------------------
	footer(PC)
----------------------------------------------------------- */

footer {
    clear: both;
    height: auto;
    width: 100%;
    margin-top: auto;
    background: var(--primary-color);
    position: relative;
}

.footer_area {
    height: auto;
    width: 95%;
    max-width: var(--max-width);
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    padding: 85px 0 25px;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer_logo_area {
    text-align: center;
}

.footer_logo {
    width: 285px;
    height: 50px;
    margin: 0 auto 30px;
    text-align: left;
}

.footer_logo_area p {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0;
}

.footer_logo a {
    font-size: 2.1rem;
    font-weight: var(--font-weight-base);
    line-height: 1;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
    top: 2px;
}

.footer_logo a .sub {
    font-size: 1.4rem;
    letter-spacing: 0.7px;
    position: relative;
    left: 0;
    top: -8px;
}

.footer_logo a::before {
    content: "";
    background: url(/wp-content/uploads/footer_logo.webp) no-repeat;
    background-size: 55px;
    width: 55px;
    height: 55px;
    float: left;
    margin: 0 5px 0 0;
    position: relative;
    top: -2px;
}

.footer_logo a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.5s;
}

.footer_navi_area {
    clear: both;
    width: 100%;
    padding: 60px 0 20px;
    margin: 0 auto;
    text-align: center;
}

.footer_navi_area ul {
    display: flex;
}

.footer_navi_area li {
    margin: 0 auto;
    text-align: center;
}

ul#menu-footer-navi li.menu-item a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-base);
    padding: 0px 3px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

ul#menu-footer-navi li.menu-item a::before {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.3rem;
    padding-right: 7px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    text-decoration: none;
}

ul#menu-footer-navi li.menu-item a:hover {
    opacity: 0.7;
    transition: 0.3s;
    text-decoration: none;
}

.copyright {
    clear: both;
    height: auto;
    font-size: 1.1rem;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    padding: 40px 0 20px 0;
    line-height: 1;
}


@media screen and (max-width: 1260px) {

.footer_navi_area {
    display: none;
}

}


/* -----------------------------------------------------------
	footer(スマートフォン)
----------------------------------------------------------- */

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

.footer_area {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0 10px;
}

.footer_logo_area {
    width: 100%;
}

.footer_logo a .sub {
    top: -5px;
}

.footer_logo_area p {
    width: 225px;
    margin: 0 auto 10px;
    text-align: left;
}

.footer_navi_area {
    display: none;
}

.copyright {
    width: 100%;
    height: 30px;
    font-size: 1.0rem;
    margin: 50px auto;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

}


/* -----------------------------------------------------------
	SP下部固定お問い合わせバナー
----------------------------------------------------------- */

#contact_sp {
    display: none;
}


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

#contact_sp {
    width: 100%;
    height: 50px;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background: #fff;
}

.contact_area_sp {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

#contact_sp .contact_tel_sp {
    width: 50%;
    text-align: center;
}

.tel_contact_sp {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    border-right: 1px solid #fff;
}

.tel_contact_sp::before {
    content: "\f3cd";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2.5rem;
    margin-right: 10px;
    display: inline-block;
}

.tel_contact_sp:hover {
    opacity: 0.7;
    transition: 0.5s;
}

.contact_mail_sp {
    width: 50%;
    text-align: center;
}

.contact_more_btn_sp {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
}

.contact_more_btn_sp::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 2.0rem;
    margin-right: 8px;
    display: inline-block;
}

.contact_more_btn_sp:hover {
    opacity: 0.7;
    transition: 0.5s;
}

}