@charset "utf-8";

/**********************************************/
/*お問い合わせ*/
/**********************************************/


/*案内図*/
.map {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 40px;
    background-color: #f8f8f8;
}
.map-txt {
    flex: 1;
}
.map-img {
    width: 340px;
}
.map-img img {
    display: block;
    width: 100%;
}

.map h2 {
    width: 100%;
}
    
.contacts {
    margin-top: 40px;
}
.contacts dl {}
.contacts dt {
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
    font-weight: bold;
}
.contacts dd {
    margin: 20px 0 0 0;
}
.contacts dd li~ {
    margin-top: 10px;
}
.contacts dl~dl {
    margin-top: 30px;
}



/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1480px) {
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 780px) {
    .map {
        flex-direction: column;
    }
    .map-txt {
        flex: 1;
    }
    .map-img {
        margin-top: 20px;
        width: 100%;
    }
}

@media screen and (max-width: 580px) {
    .map {
        padding: 20px;
    }
}

@media screen and (max-width: 380px) {
}


