.info_wrap {
    max-width: 800px;
    width: 90%;
    margin: 50px auto 80px;
    text-align: center;
}

.info_ttl {
    font-size: clamp(20px,2.5vw,25px);
    color: #c2a146;
    margin-bottom: 10px;
    font-weight: bold;
}

.info_content {
    border: 1px solid #161616;
    padding: 20px;
}

.info_list {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.info_list li {
    padding-bottom: 20px;
    border-bottom: 1px solid #161616;
}

.info_list li:last-child {
    padding-bottom: 0;
    border: none;
}

.info_lead {
    font-size: clamp(18px,2vw,22px);
    color: #c2a146;
    margin-bottom: 5px;
    font-weight: bold;
}

.info_txt {
    font-size: clamp(13px,1.5vw,16px);
}

/* SPのみ */
@media screen and (max-width:730px) {
    .info_wrap {
        margin: 40px auto 50px;
    }

    .info_content {
        padding: 15px;
    }

    .info_list {
        gap: 15px 0;
    }

    .info_list li {
        padding-bottom: 15px;
    }
}

@media print {

    header,
    footer,
    .info_wrap,
    .print_btn {
        display: none;
    }

}

.all_wrap {
    max-width: 1054px;
    width: 90%;
    margin: 80px auto 120px;
}

.page_ttl {
    text-align: center;
    color: #736357;
    font-size: clamp(30px,4vw,40px);
    margin: 0;
    letter-spacing: 0.1em;
}

.map_lead {
    text-align: center;
    font-size: clamp(18px,2vw,22px);
    margin-bottom: 20px;
}

.map_contents {
    max-width: 800px;
    margin: 30px auto 0;
}


.print_btn  a {
    max-width: 300px;
    margin: 30px auto 0;
    text-align: center;
    font-size: clamp(14px,1.5vw,18px);
    display: block;
    padding: 15px 10px 15px 30px;
    border-radius: 10px;
    position: relative;
    color: #fff;
    background-color: #020a1d;
}

.print_btn a::before {
    content: '';
    background-image: url(../images/common/entry_icon.svg);
    width: 25px;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    translate: 0 -50%;
    left: 13px;
    top: 50%;
}

.map_contents .txt_wrap {
    background-color: #1e2f40;
    color: #fff;
    text-align: center;
    padding: 10px 15px 15px;
}
.map_contents .txt_wrap .address {
    font-size: clamp(18px, 1.8vw, 24px);
    padding-bottom: 13px;
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.map_contents .txt_wrap .lead {
    font-size: clamp(17px, 2vw, 24px);
}

.map_contents .txt_wrap .txt {
    font-size: clamp(12px, 1.4vw, 15px);
    margin-top: 5px;
}

.map_contents .txt_wrap .txt .small {
    display: block;
    margin-top: 5px;
    font-size: clamp( 10px, 1.1vw, 12px);
}

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

    .all_wrap {
        margin-top: 40px;
    }

    .print_btn {
        display: none;
    }

    .map_contents {
        margin-top: 20px;
    }

    .map_lead {
        margin-bottom: 10px;
    }
}




.gallery_wrap {
    margin: 80px auto;
}

.gallery_wrap .lead {
    color: #736357;
    font-size: clamp(23px, 3vw, 33px);
    text-align: center;
    margin-bottom: 30px;
}

.gallery_wrap .container {
    display: flex;
    justify-content: space-between;
}

.gallery_wrap .container .box {
    width: 48%;
}

.gallery_wrap .container .address {
    background-color: #111b60;
    color: #fff;
    text-align: center;
    font-size: clamp(14px,1.5vw,16px);
    padding: 8px 0;
}

.gallery_wrap .container ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery_wrap .container .txt {
    font-size: clamp(11px,1.2vw,13px);
    margin-top: 3px;
}



/* SP調整 */
@media screen and (max-width:730px) {

    .gallery_wrap {
        margin: 50px auto;
    }

    .gallery_wrap .lead {
        margin-bottom: 20px;
    }

    .gallery_wrap .container {
        flex-direction: column;
        gap: 25px 0;
    }
    
    .gallery_wrap .container .box {
        width: 100%;
    }

}