@charset "utf-8";
/* チーム作成確認画面 */
.create-confirmation-area {
    width: 90%;
    height: 94%;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    top: 3%;
    left: 5%;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* チーム名表示エリア */
.team-name-display-area {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 10%;
    min-height: 50px;
    margin-top: 20px;
    /* border: 1px solid black; */
}

/* 各オプション表示エリア */
.team-numberofpeople-display-area,
.team-time-display-area,
.team-distance-display-area,
.team-update-display-area,
.team-coupon-display-area {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 10%;
    min-height: 50px;
    /* border: 1px solid black; */
}

/* 利用料金表示エリア */
.team-usagefee-display-area {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 12%;
    min-height: 66px;
    /* border: 1px solid black; */
}

/* 各項目名 */
.team-name-display-text,
.team-numberofpeople-display-text,
.team-time-display-text,
.team-distance-display-text,
.team-update-display-text,
.team-coupon-display-text,
.team-usagefee-display-text {
    font-size: 15px;
    font-weight: bold;
    padding-left: 25px;
    color: #545454;
}

/* 各オプション表示 */
.team-name-display-value,
.team-numberofpeople-display-value,
.team-time-display-value,
.team-distance-display-value,
.team-coupon-display-value,
.team-update-display-value {
    width: 85%;
    height: 90%;
    min-height: 25px;
    margin: 0 auto;
    font-size: 15px;
    color: #545454;
    text-align: center;
    /* border: 1px solid black; */
    word-break: break-all;
}

/* 利用料金表示 */
.team-usagefee-display-value {
    width: 80%;
    height: 90%;
    min-height: 32px;
    margin: 0 auto;
    /* font-size: clamp(30px, 5vh, 45px); */
    font-size: 30px;
    color: #545454;
    text-align: center;
    /* border: 1px solid black; */
}

/* ボタンエリア */
.finish-confirmation-button-area {
    width: 100%;
    height: 25%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    /* border: 1px solid black; */
}

.flex-area {
    width: 100%;
    height: 30%;
    min-height: 45px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* この条件で開始するボタン */
.finish-confirmation-button1 {
    width: 61%;
    height: 34%;
    min-width: 200px;
    min-height: 42px;
    background-color: white;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #545454;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.finish-confirmation-icon-area {
    margin-right: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.finish-confirmation-icon {
    width: 25px;
    height: auto;
}

/* 戻るボタン */
.finish-confirmation-button2 {
    width: 29.5%;
    height: 95%;
    min-width: 95px;
    background-color: white;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #545454;
    border-radius: 10px;
    text-align: center;
    margin-right: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 中止ボタン */
.finish-confirmation-button3 {
    width: 29.5%;
    height: 95%;
    min-width: 95px;
    background-color: white;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #545454;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.finish-confirmation-text-area1,
.finish-confirmation-text-area2,
.finish-confirmation-text-area3{
    height: 45px;
    line-height: 45px;
    color: #545454;
}

/* チーム作成APIが失敗したときに出す要素 */
.error-create-team {
    width: 224px;
    height: 150px;
    border-radius: 15px;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -75px 0px 0px -112px;
    background-color: white;
    z-index: 1100;
}

.error-create-team-x-button {
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #545454;
}

.error-create-team-text {
    width: 93%;
    color: red;
    text-align: center;
}