/*footer下部固定*/
.content-all-wrap{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.footer-wrap{
    margin-top: auto;
}
/*footer下部固定 ↑*/
.footer-wrap{
    width: 100%;
    background-color: black;
    color: #fff;
    font-weight: bold;
}
.footer{
    text-align: center;
    max-width: 1200px;
    width: 100%;
	padding-left: 30px;
	padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}
/*問い合わせボタン*/
.footer-contact-btn a{
    display: inline-block;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    width: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.footer-contact-btn a:hover{
    background-color: #728c93;
    color: #fff;
}
.footer-line-btn a{
    display: inline-block;
    background-color: #00b439;
    border-radius: 10px;
    color: #fff;
    width: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-shadow: #6b6b6b 1px 1px 0px;
}
.footer-line-btn a:hover{
    background-color:#04df4a;
}
/*左右分割*/
.footer-inner{
    width: 100%;
    display: flex;
    text-align: left;
}
/*左側 1st*/
.footer-1st{
    width: 500px;
    font-size: 20px;
    padding-left: 30px;
}
/*右側 2nd*/
footer-2nd{
    width: calc( 100% -500px );
}
.f-nav{
    display: flex;
    justify-content: center;
}
.f-nav li{
    width: fit-content;
    padding: 10px;
}
.f-nav li:first-of-type{
    padding-left: 0;
}
.footer-1st a:hover,
.f-nav li a:hover,
.privacy a:hover{
    color: #728c93;
}
.privacy{
    font-size: 12px;
    margin-top: 10px;
    font-weight: normal;
}
.copyright{
    font-size: 12px;
    margin-top: 20px;
    font-weight: normal;
    line-height: 1.4;
}
@media screen and (max-width:1000px){
.footer-1st{
    width: 400px;
}
footer-2nd{
    width: calc( 100% - 400px );
}
}
@media screen and (max-width:890px){
    .footer-1st{
        width: 300px;
    }
    footer-2nd{
        width: calc( 100% - 300px );
    }
}
@media screen and (max-width:785px){
    .footer-inner{
        display: block;
        text-align: center;
    }
    .footer-1st{
        width: 100%;
        padding-left: 0 ;
        margin-bottom: 30px;
    }
    footer-2nd{
        width: 100% ;
    }
}
@media screen and (max-width:530px){
    .footer-2nd ul{
        display: none;
    }
}
@media screen and (max-width:380px){
    /*問い合わせボタン*/
    .footer-contact-btn a{
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-line-btn a{
        padding-left: 10px;
        padding-right: 10px;

    }
}