@charset "UTF-8";

table.table_block,
table.table_block th,
table.table_block td {
    border: solid 2px #ccc;
    padding: 5px;
}

table.table_block {
    margin-bottom: 20px;
}

.name .main {
    font-weight: bold;
}

.name .sub {
    font-size: 80%;
    padding-left: 10px;
    display: inline-block;
    border-left: solid 3px #aaa;
}

.address {
    background: #eee;
}

.linkList li {
    position: relative;
    margin: 0 5px 10px 0;
    padding: 5px 20px 5px 5px;
    border-radius: 5px;
    border: solid 2px #aaa;
    display: inline-block;
}
.linkList li::before {
    position: absolute;
    content: '';
    top: 9px;
    right: 4px;
    display: block;
    float: right;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #333;
}

@media print, screen and (min-width: 480px) {
    .linkList li {
        margin: 0 10px 10px 0;
        padding: 5px 30px 5px 10px;
    }
    .linkList li::before {
        right: 8px;
    }
}