.entry-body a:hover {
    text-decoration: none;
    opacity: .6;
}

.contact_link {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background: rgba(210, 210, 210, 60%);
    padding: 30px 0;
}

.other_contact {
    display: flex;
}

.other_contact a {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
}

.other_contact span {
    display: block;
}

.other_contact a+a {
    border-left: dotted 1px #aaa;
}

.other_contact .ttl {
    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
}

.other_contact .box_text {
    padding-top: 10px;
}

.other_contact span:not(.ttl) {
    font-size: 85%;
}

.contact_container+.contact_container {
    margin-top: 50px;
    border-top: 1px solid #aaa;
    padding-top: 50px;
}

.contact_container>.row {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}

.contact_container>.row+.row {
    margin-top: 20px;
}

.contact_container>.icon {
    text-align: center;
}

.contact_container>.icon+h2 {
    margin-top: 0;
    padding-top: 0;
}

.contact_item {
    text-align: center;
}

.contact_container:not(#modelhouse) .contact_item .ttl {
    background-color: #b38d51;
    color: #fff;
    padding: 5px;
    width: 70%;
    margin: 0 auto;
    border-radius: 3px;
}

.contact_item .info {
    line-height: 1.6em;
    font-size: 85%;
}

.icon img {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    margin-bottom: 10px;
}

.contact_container>.icon img {
    margin-bottom: 0;
    --size: 70px;
    object-position: bottom;
}

@media (max-width: 768px) {
    .other_contact {
        flex-wrap: wrap;
    }

    .other_contact a {
        width: 50%;
        flex-grow: unset;
    }

    .other_contact a+a {
        border-left: none;
    }

    .other_contact a:nth-of-type(even) {
        border-left: dotted 1px #aaa;
    }

    .other_contact a:first-of-type,
    .other_contact a:nth-of-type(2) {
        border-bottom: dotted 1px #aaa;
    }
}