@charset "utf-8";
.terms-of-service-area {
    width: 90%;
    height: 94%;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    top: 3%;
    left: 5%;
    overflow: scroll;
}

.terms-of-service-text {
    width: calc(100% - 10px);
    height: 5%;
    display: flex;
    align-items: center;
    margin-left: 10px;
    /* justify-content: center; */
    font-size: 20px;
    font-weight: bold;
    color: #545454;
}

.terms-of-service-box-area {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid black; */
}

.terms-of-service-display-area {
    width: 94%;
    height: 95%;
    /*overflow-y: scroll;*/
    border: 1px solid black;
}

/* スクロールバーの幅と高さを設定する */
.scrollbar::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
/* スクロールバーの形を設定する */
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
    border-radius: 0.25rem;
}
/* スクロールバーの色を設定する */
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
    --bg-opacity: 1;
    background-color: #545454;
}

.terms-of-service-check-area {
    width: 100%;
    height: 20%;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.check-flex-area {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #545454;
    font-weight: bold;
}

.service-start-button {
    width: 240px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.service-start-icon-area {
    margin-right: 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.service-start-icon {
    width: 36px;
    height: auto;
}

.service-start-text {
    height: 45px;
    line-height: 45px;
}