/* システム情報ボックス ---------------------------------------- */
.mainSection01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 30px 0 55px 0;
    background-color: #efefef;
}

.mainSection01__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: auto;
}

.mainSection01__systemInfoGroupName{
    display: block;
    width: 95%;
    max-width: 600px;
    height: auto;
    margin-bottom: 8px;
}

.mainSection01__systemInfoGroupName h2{
    display: inline;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    color: #eb5050;
    padding-bottom: .5px;
    border-bottom: solid 1.5px #e57b7b;
}

.mainSection01__systemInfoBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 600px;
    height: auto;
    padding: 20px 0;
    border-right: solid #4c4c4c 1px;
    border-left: solid #4c4c4c 1px;
    border-bottom: solid #4c4c4c 1px;
    background-color: #fefefe;
}

.mainSection01__systemInfoTitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 130px;
    height: auto;
    padding: 0 18px;
    font-weight: 600;
    font-size: 14px;
    color: #505050;
    border-right: #616161 solid .5px;
}

.mainSection01__systemInfoTitle--EN{
    display: inline;
    font-weight: 400;
    font-size: 10px;
    color: #606060;
    margin-top: 1px;
}

.mainSection01__systemInfo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 130px);
    height: auto;
    padding: 0 18px;
    font-weight: 400;
    font-size: 12px;
    color: #505050;
}

.mainSection01__caution{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    max-width: 600px;
    height: auto;
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #fefefe;
    border-radius: 12px;
}

.mainSection01__caution p{
    display: inline;
    font-weight: 600;
    font-size: 14px;
    color: #383838;
    margin-bottom: 4px;
}

.mainSection01__caution span{
    display: inline;
    font-weight: 400;
    font-size: 10px;
    color: #616161;
}

.mainSection01__cautionBR{
    display: none;
}

@media screen and (max-width: 400px) {
    .mainSection01__cautionBR{
        display: inline;
    }
}