*{
    box-sizing: border-box;
}
section{
    font-family: 'Noto Sans JP', sans-serif;
    word-break: break-all;
}
.wrapper{
    max-width: calc(1100px + 2em);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 80px;
    margin-bottom: 32px;
    font-size: 16px;
    padding-right: 1em;
    padding-left: 1em;
    word-break: break-all;
}
h1{

    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
}
@media screen and (max-width:600px){
    h1{
        font-size: 6vw;
    }
}



.list{
    max-width: calc(1100px + 2em);
    width: calc(100% - 2em);
    margin-right: auto;
    margin-left: auto;
    margin-top: 32px;
    margin-bottom: 80px;
    font-size: 16px;


}
/* pc用のリスト */
@media screen and (max-width:600px){
.list__pc{
    display: none;
}
}

table{
    min-width: 540px;
}
th{
    padding: 1em;
    background-color: #f4f4f4;
    border: 1px solid #333;
    vertical-align:middle;
}
th:first-child{
    width: 30%;
}
th:nth-child(2){
    width: 30%;
}
td{
    padding: 1em;
    border: 1px solid #333;
    vertical-align:middle;

}

td > a[target="_blank"]::after {
    content: "";
    display: inline-block;
    margin-left: 3px;
    width: 10px;
    height: 10px;
    background: #fff0;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url(/sites/default/files/shared_contents/img/common/icon_window.gif);
    background-repeat: no-repeat;
}


/* sp用のリスト */
.list__sp{
    display: none;
}
@media screen and (max-width:600px){
    .list__sp{
        display: block;
    }
    }
.list__sp__th{
    background: #f4f4f4;
    width: 100%;
    padding: 1em;
}
.list__sp__td{
    padding: 1em;
}
.list__sp__block{
    margin-bottom: 32px;
    border: 1px solid #CCC;
    border-radius: 8px;
}

/* utility */
.sp__br{
    display: none;
}
@media screen and (max-width:600px){
.sp__br{
    display: block;
}
}