footer {
    background-color: #fff;
}
footer .link_box{
    width: 100%;
    max-width: 1180px;
    padding: 60px 50px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1.5%;
}
footer .link_box a{
    font-size: clamp(16px,1.5vw,17px);
    letter-spacing: 0.02em;
    width: 30%;
    padding: 12px 12px 10px 0;
    border: solid 1px #2e2e2e;
    border-radius: 10px;
    text-align: center;
    font-family: serif;
    position: relative;
    transition: 0.4s;
}
footer .link_box a:last-child{
    width: 35%;
}
footer .link_box a:after{
    content: "\02192";
    position: absolute;
    right: 8px;
    top: 12px;
    bottom: 0;
    margin: auto;
    transition: 0.4s;
}
footer .link_box a:hover{
    color: #008480;
    border: solid 1px #008480;
}
footer .link_box a:hover:after{
    color: #008480;
    right: -8px;
}
@media only screen and (min-width: 1280px) {
    footer .link_box{
        grid-gap: 2.5%;
    }
    footer .link_box a{
        font-size: 18px;
        letter-spacing: 0.03em;
        width: 31%;
    }
    footer .link_box a:last-child{
        width: 31%;
    }
}

@media only screen and (max-width: 890px) {
    footer .link_box {
        max-width: 680px;
        padding: 50px 20px;
        gap: 20px;
    }    
    footer .link_box a{
        width: 100%;
    }
    footer .link_box a:last-child{
        width: 100%;
    }
}

footer .footer_sitemap {
    width: 100%;
    max-width: 1180px;
    padding: 20px 50px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 30px;
}
footer .sitemap_logo{
    width: 100%;
    max-width: 215px;
}
footer ul.sitemap_links{
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 20px;
}
footer ul.sitemap_links li{
    font-size: clamp(13px,2vw,15px);
    width: auto;
}
footer ul.sitemap_links li a{
    transition: 0.4s;
}
footer ul.sitemap_links li a:hover{
    color: #008480;
}
@media only screen and (max-width: 890px) {
    footer .footer_sitemap{
        max-width: 640px;
        width: calc(100% - 40px);
        margin: 50px auto 0;
        padding: 30px;
        background-color: #fff;
        border-radius: 10px;
        justify-content: center;
    }
    footer ul.sitemap_links{
        justify-content: flex-start;
        grid-gap: 10px;
    }
    footer ul.sitemap_links li{
        width: 100%;
    }
    footer ul.sitemap_links li:before{
        content: "▶︎ ";
        font-size: 85%;
        color: #008480;
    }
}

/*運営会社概要*/
.outline {
    display: none;
}
.outline {
    padding: 20px;
    max-width: 880px;
    margin: 100px auto;
}
.outline_dl {
    display: table;
    width: 100%;
    max-width: 840px;
    margin: auto;
    border-bottom: dashed 1px #008480;
}
.outline_dl:nth-child(2) {
    border-top: dashed 1px #008480;
}
.outline_dl dt ,
.outline_dl dd {
    display: table-cell;
    padding: 15px 0;
}
.outline_dl dt,
.outline_dl dd,
.outline_tel_fax,
.outline_tel_fax a{
    font-size: clamp(14px,2.5vw,15px);
    vertical-align: middle;
    line-height: 1.8em;
}
.outline_dl dt {
    font-size: clamp(16px,2.5vw,18px);
    font-weight: bold;
    padding-right: 20px;
    padding-left: 20px;
    width: 25%;
}
.outline_tel_fax {
    display: inline-flex;
    width: auto;
    margin-right: 15px;
}
.outline_group {
    margin-left: 30px;
    font-size: 14px;
    display: inline-block;
}
.outline_group:before ,
.outline_group:after {
    content: "-";
}
@media screen and (max-width: 767px) {
    .outline {
        margin: 50px auto;
    }
    .outline_dl,
    .outline_dl:nth-child(2) {
        padding: 10px 0;
    }
    .outline_dl dt,
    .outline_dl dd {
        text-align: left;
        padding: 5px;
    }
    .outline_dl dt {
        width: 40%;
    }
    .outline_tel_fax a{
        text-decoration: underline;
        color: blue;
    }
}

/*最下部コピーライト PC*/
footer .footer_brand {
    background-color: #2e2e2e;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer .footer_sns{
    width: 40px;
    height: auto;
    margin: auto 5px;
}
footer ul.footer_copy {
    width: 100%;
    padding: 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
footer ul.footer_copy li{
    width: auto;
    margin: 0 15px;
}
footer ul.footer_copy li p,
footer ul.footer_copy li a{
    font-size: clamp(13px,2vw,14px);
    color: #fff;
    line-height: 1em;
    display: flex;
}
/*最下部コピーライト SP*/
@media only screen and (max-width: 890px) {
    footer ul.footer_copy li {
        width: 100%;
        margin: auto;
    }
    footer ul.footer_copy li p,
    footer ul.footer_copy li a{
        width: 100%;
        text-align: center;
        display: inline-block;
    }
}