/* トライアルライセンスページ */
.trialLicense_content table{
    border-collapse: collapse;
    border-spacing: 0;
    border: solid 2px rgba(207, 206, 206, 1);
    width: 100%;
}

.trialLicense_content table td {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border: solid 2px rgba(207, 206, 206, 1);
}

.trialLicense_content table .icon {
    width: 5%;
}

.trialLicense_content table .icon img {
    max-width: 40px;
    max-height: 40px;
}

.trialLicense_content table .text {
    padding: 0px 20px;
    width: 95%;
    text-align: left;
    font-size: 18px;
}

.trialLicense_content table .text b {
    font-weight: 600;
}

@media screen and (max-width: 820px) {
    .trialLicense_content table td{
        padding:10px;
    }

    .trialLicense_content table .icon {
        width: 10%;
    }

}

.trialLicense_content .step{
    max-width:600px;
    margin:40px auto 0px;
    padding:0px;
}

.trialLicense_content .step .box{
    border: solid 3px rgba(192, 0, 0, 1);
    background-color: #FFFFFF;
    border-radius: 20px;
    position: relative;
}

.trialLicense_content .step .box .number{
    background-color: rgba(192, 0, 0, 1);
    border-radius: 30px;
    font-family: "League Gothic", sans-serif;
    font-size:36px;
    color:rgba(246, 244, 244, 1);
    text-align: center;
    width:100px;
    position: absolute;
    transform: translateY(-50%) translateX(15%);
    top:0;
    left:0;
}

.trialLicense_content .step .box .text{
    text-align: center;
    margin:20px 0px;
}

.trialLicense_content .step .box .text .name{
    font-size:20px;
    font-weight: 700;
}

.trialLicense_content .step .box .text .detail{
    font-size:18px;
}

.trialLicense_content .step .triangle{
    margin:20px auto;
    width:40px;
    height:20px;
    background-color: rgba(192, 0, 0, 1);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (max-width: 820px) {
    .trialLicense_content .step .box .number{
        width:80px;
    }

    .trialLicense_content .step .box .text .name{
        font-size:18px;
    }

    .trialLicense_content .step .box .text .detail{
        font-size:14px;
    }
}

/* トライアルライセンスページ終了 */