@charset "utf-8";
.baseW {
    max-width: 1040px;
}

.ttl_wrap {
    position: relative;
    padding: 0 19% .3em;
    border-bottom: 2px solid #000;
    margin-bottom: .3em;
    text-align: center;
}

.building_name_main {
    font-size: 45px;
    font-weight: bold;
}

.print_link {
    position: absolute;
    top: 10px;
    right: 0;
    width: 18.5%;
    min-width: 11em;
    padding: .5em 1.5em;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #F97E00;
}

.print_link:hover {
    opacity: .7;
}

.print_link::after {
    content: "";
    position: absolute;
    top: 0;
    right: .5em;
    bottom: 0;
    width: 15px;
    height: 10px;
    margin: auto;
    background: url(../images/top/arrow.png) no-repeat;
    background-size: contain;
}


.building_summary {
    font-size: 23px;
    text-align: center;
}

.building_img_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.building_img_list {
    display: flex;
}

.big_img {
    width: 48%;
}

.small_imgs {
    width: 48%;
}

.building_img_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.building_img_list li {
    width: 29.6%;
    margin-bottom: 28px;
    cursor: pointer;
}

.building_img_list li:not(:nth-child(3n)) {
    margin-right: 3.5%;
}

.building_img_list li:not(.active) {
    opacity: .4;
}

.building_img_list li img {
    object-fit: cover;
    width: 100%;
    height: 150px;
}

.enable_expansion {
    position: relative;
    cursor: pointer;
}

.enable_expansion::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: url(../images/single_building/icon_plus.png) no-repeat rgba(255,355,355,.8);
    background-size: 68%;
    background-position: center;
    pointer-events: none;
}

.big_img.enable_expansion::before {
    display: none;
}

.building_info {
    margin-top: 64px;
    margin-bottom: 106px;
}

.info_ttl {
    padding-bottom: .7em;
    border-bottom: 1px solid #6D6D6D;
    margin-bottom: .7em;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.info_ttl small {
    display: block;
    font-size: .73em;
}

.info_table {
    margin-bottom: 75px;
    table-layout: auto;
}

.info_table th,
.info_table td {
    padding: .2em 0;
}

.info_table th {
    width: 8em;
    min-width: 8em;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
}

.info_table td {
    padding-left: 2em;
}

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

.info_flex > div {
    position: relative;
    width: 48%;
    padding: 22px 56px 48px;
    border: 1px solid #FFD109;
}

.info_flex > div::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 27.5px 0 27.5px 48px;
    border-color: transparent transparent transparent #FFD109;
}

.map_box iframe {
    width: 100%;
    max-height: 376px;
}

.map_ttl,
.sourroundings_ttl {
    padding-left: .3em;
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: bold;
}

.sourroundings_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 22px;
    border-bottom: 1px solid #FFD109;
    margin-bottom: 18px;
}

.sourroundings_list li {
    width: 49.1%;
    margin-bottom: 8px;
}

.sourroundings_list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sourroundings_txt {
    padding: 0 .5em;
    font-size: 16px;
}

#building .common_ttl {
    margin-bottom: 72px;
}

#building .common_ttl::after {
    right: calc(50% - 212px);
    transform: translateX(-50%);
    background-color: #FFD109;
}
@media screen and (max-width: 1000px) {
    .print_link {
        font-size: 16px;
    }

    .info_flex > div {
        padding: 18px 22px 30px;
    }

    .info_flex > div::before {
        top: 8px;
    }

    .map_ttl, .sourroundings_ttl {
        padding-left: 32px;
    }
}

@media screen and (max-width: 750px) {
    .building_name_main {
        font-size: 26px;
    }

    .building_summary {
        font-size: 15px;
    }

    .enable_expansion::before {
        width: 48px;
        height: 48px;
    }

    .ttl_wrap {
        padding: 0 0 .3em;
    }

    .print_link {
        position: static;
        margin-left: auto;
        margin-bottom: 1em;
    }

    .building_img_wrap {
        display: block;
    }

    .big_img {
        width: 70%;
        min-width: 220px;
        max-width: 500px;
        margin: 0 auto 28px;
    }

    .small_imgs {
        width: 100%;
    }

    .building_img_list li {
        width: 31%;
    }

    .building_img_list li img {
        height: 220px;
    }

    .floor_map {
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
    }

    .info_ttl {
        font-size: 20px;
    }

    .info_table th,
    .info_table td {
        display: block;
        padding: 0;
    }

    .info_table td {
        margin-bottom: .5em;
    }

    .info_flex {
        display: block;
    }

    .info_flex > div {
        width: 100%;
        padding-top: 12px;
    }

    .info_flex > div::before {
        top: 14px;
        border-width: 10px 0 10px 20px;
    }

    .map_box {
        margin-bottom: 32px;
    }

    .map_ttl, .sourroundings_ttl {
        font-size: 18px;
        padding-left: 6px;
    }

    .map_box iframe {
        max-height: 400px;
    }

    #building .common_ttl {
        margin-bottom: 30px;
    }

    .sourroundings_txt {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .building_img_list li img {
        height: 120px;
    }
}


@media print {
    body {
        -webkit-print-color-adjust: exact;
        font-size: 14px;
    }

    header,
    #building,
    footer {
        display: none;
    }

    .baseW {
        width: 100%;
    }

    .mv {
        padding: 14px 0;
        margin-bottom: 14px;
    }

    .ttl_wrap {
        padding: 0 0 .3em;
    }

    .building_name_main {
        font-size: 28px;
    }

    .building_summary {
        font-size: 18px;
    }

    .print_link {
        display: none;
    }

    .big_img {
        width: 40%;
    }

    .small_imgs {
        width: 58%;
    }

    .enable_expansion::before {
        content: none;
    }

    #building_info {
        page-break-before: always;
    }

    .info_ttl {
        font-size: 20px;
    }

    .info_table {
        margin-bottom: 20px;
    }

    .info_flex > div {
        width: 49%;
        padding: 1em;
    }

    .info_flex > div::before {
        content: none;
    }

    .map_ttl,
    .sourroundings_ttl {
        font-size: 18px;
    }

}