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

.info_ttl {
    font-size: clamp(20px,2.5vw,25px);
    color: #3b2521;
    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: #3b2521;
    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;
    }

    .info_content {
        padding: 15px;
    }

    .info_list {
        gap: 15px 0;
    }

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

@media print {

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

}

#common_footer {
    margin-top: 200px;
}

.ttl {
    font-size: clamp(28px,4vw,40px);
    text-align: center;
    margin:  40px 0;
    color: #3b2521;
    letter-spacing: 0.1em;
}

.map_wrap {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.map_wrap .txt_wrap {
    background-color: #3b2521;
    color: #fff;
    padding: 15px;
    margin-top: 10px;
    text-align: center;
}

.map_wrap .txt_wrap .txt {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: clamp(14px,1.5vw,16px);
}

.map_wrap .txt_wrap .parking_txt {
    line-height: 1.7;
    font-size: clamp(13px,1.4vw,15px);
}

.map_wrap .txt_wrap .parking_txt::before {
    line-height: 1;
    display: inline-block;
    content: 'P';
    background-color: #fff;
    color: initial;
    padding: 0.3em 0.3em 0.3em 0.4em;
}

.print_btn {
    max-width: 330px;
    text-align: center;
    margin: 40px auto 0;
}

.print_btn a {
    display: block;
    background: linear-gradient(to bottom, #636363 0%, #cec2a5  50% , #c8bb9b 100%);
    color: #231815;
    filter: drop-shadow(2px 2px 2px #231815);
    font-size: clamp(22px,2vw,24px);
    padding: 8px;
    position: relative;
}

.print_btn a::before {
    content: '';
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 10px;
    height: 15px;
    background-color: #231815;
    position: absolute;
    top: 35%;
    right: 8px;
}


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

    #common_footer {
        margin-top: 120px;
    }

    .ttl {
        margin: 20px 0;
    }

    .map_wrap .txt_wrap {
        text-align: justify;
    }
}

.gallery_wrap {
    max-width: 900px;
    width: 90%;
    margin: 0 auto 80px;
}

.gallery_wrap .lead {
    text-align: center;
    font-size: clamp(15px,1.5vw,20px);
    margin-bottom: 20px;
}

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

.gallery_wrap .gallery_map .img01 {
    width: 53%;
}

.gallery_wrap .gallery_map .img02 {
    width: 43.2%;
}

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

.gallery_wrap ul li {
    border-bottom: 1px solid #161616;
    padding-bottom: 10px;
}

.gallery_wrap ul li .txt {
    font-size: clamp(12px,1.2vw,14px);
}

.gallery_wrap ul li .red {
    font-size: clamp(11px,1.1vw,12px);
    color: #9b1f24;
    margin-top: 10px;
}

.gallery_wrap ul li:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.gallery_wrap ul li:nth-child(2) .icon01 {
    max-width: 70px;
    width: 16%;
}

.gallery_wrap ul li:nth-child(2) .txt {
    width: 75%;
}

.gallery_wrap ul li:nth-child(3) {
    grid-column: 2;
    grid-row: 1/3;
    margin-top: 5px;
}

.gallery_wrap ul li:nth-child(3) .flex {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.gallery_wrap ul li:nth-child(3) .icon02 {
    max-width: 40px;
    width: 10%;
}


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

    .gallery_wrap {
        margin-bottom: 50px;
    }

    .gallery_wrap .gallery_map {
        flex-direction: column;
        gap: 20px 0;
    }

    .gallery_wrap .gallery_map .img01,
    .gallery_wrap .gallery_map .img02 {
        width: 100%;
    }

    .gallery_wrap ul {
        grid-template-columns: 1fr;
        margin-top: 10px;
    }

    .gallery_wrap ul li:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0;
    }
}


