.list {}

.list article {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 3%;
    padding: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 32px;
}

.list article .image {
    width: 20%;
}

.list article .data {
    width: 61%;
}

.list article .data .name {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #222222;
    margin-bottom: 16px;
}

.list article .data .address {
    margin-bottom: 8px;
}

.list article .data .address,
.list article .data .note {
    font-size: 16px;
    line-height: 150%;
    color: #222222;
    position: relative;
    padding-left: 3.3em;
    min-height: 2.2em;
    padding-top: 0.3em;
}

.list article .data .address::before,
.list article .data .note::before {
    display: inline-block;
    background: #285FBB;
    margin-right: 10px;
    padding: 6px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
}

.list article .data .address::before {
    content: '場所';
}

.list article .data .note::before {
    content: '備考';
}

.list article .btn {
    width: 10%;
}


.list article .btn {
    background: #EBF7FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.list article .btn a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.list article .btn .text {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 10px;

}

.list article .btn .link_btn {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background: url('../../images/icon_newwindow_white.svg') no-repeat center/12px, #285FBB;
}

.list + .note{
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (max-width: 767.5px) {
    .list article{
        padding: 0 0 16px;
        flex-wrap: wrap;
    }
    .list article .image {
        width: 35%;
    }
    .list article .data {
        width: 60%;
    }
    .list article .data .name{
        font-size: 18px;
        line-height: 120%;
    }
    .list article .data .address,
    .list article .data .note {
        font-size: 14px;
    }
    .list article .data .address::before,
    .list article .data .note::before {
        font-size: 12px;
    }
    .list article .btn{
        width: 100%;
        margin-top: 1em;
        padding: 0.7em;
    }
    .list article .btn a{
        flex-direction: row;
        gap: 10px;
    }
    .list article .btn .text{
        margin-bottom: 0;
        font-size: 14px;
    }
    .list article .btn .text br{
        display: none;
    }
    .list article .btn .link_btn {
        width: 30px;
        height: 30px;
    }
}