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

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

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

.footer_area {
    height: auto;
    width: 90%;
    max-width: 1100px;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    padding: 85px 0 25px;
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.footer_logo_area {
    width: 60%;
    text-align: left;
}

.footer_logo_area p {
    color: var(--font-color-base);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer_logo {
    width: 60%;
    max-width: 220px;
    margin-bottom: 20px;
}

.footer_logo a {
    font-size: 34px;
    font-weight: var(--font-weight-base);
    text-decoration: none;
    color: var(--font-color-base);
    letter-spacing: 1px;
    line-height: 1;
}

.footer_logo a .sub {
    font-size: 16px;
    text-decoration: none;
    text-align: left;
}

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

.footer_navi_area {
    width: 35%;
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
}

.footer_navi_area ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

ul#menu-footer-navi1 li.menu-item a {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--font-weight-base);
    padding: 0 0 8px;
    color: var(--font-color-base);
    text-decoration: none;
    text-align: left;
    position: relative;
}

ul#menu-footer-navi1 li.menu-item a:hover {
    text-decoration: underline;
}

.copyright {
    clear: both;
    max-width: 1100px;
    height: auto;
    font-size: 11px;
    color: #888;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
    padding: 40px 0 20px 0;
    line-height: 1;
}


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

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

.footer_area {
    width: 90%;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0 10px;
    display: flex;
    flex-direction: column;
}

.footer_logo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 20px;
}

.footer_logo_area {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer_logo_area p {
    margin-bottom: 2px;
}

.footer_navi_area {
    display: none;
}

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

}


/* -----------------------------------------------------------
	snsエリア
----------------------------------------------------------- */

.footer_sns {
    width: 115px;
    margin: 20px 0 0;
    text-align: center;
}

.footer_sns ul {
    display: flex;
    justify-content: flex-start;
}

.footer_sns li a {
    display: block;
    color: var(--font-color-base);
    font-size: 28px;
    margin-right: 15px;
}

.fa-x-twitter {
    padding-left: 3px !important;
}

.footer_sns li a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}


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

.footer_sns {
    margin: 20px auto 0;
    text-align: center;
}

.footer_sns ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer_sns li a {
    margin-right: 0;
}

}


/* -----------------------------------------------------------
	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: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-right: 1px solid #fff;
}

.tel_contact_sp::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    margin-right: 7px;
    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: 14px;
    line-height: 1;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
}

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

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

}