@charset "utf-8";
/* メイン画面のメニュー選択エリア */
.select_menu_area {
    width: 100%;
    height: 100%;
    position: relative;
}

/* チーム作成ボタン */
.create-team-button {
    width: 220px;
    height: 60px;
    background-color: white;
    font-size: 25px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -110px;
    display: flex;
}

.create-icon-area {
    margin-right: 10px;
    margin-left: 10px;
}

.create-icon {
    width: 36px;
    height: auto;
    margin-top: 10px;
}

.create-text-area {
    margin-top: 10px;
    height: 50px;
    line-height: 40px;
    color: #545454;
}

/* チーム参加ボタン */
.join-team-button {
    width: 220px;
    height: 60px;
    background-color: white;
    font-size: 25px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 15px;
    margin-left: -110px;
    display: flex;
}

.join-icon-area {
    margin-right: 10px;
    margin-left: 10px;
}

.join-icon {
    width: 36px;
    height: auto;
    margin-top: 10px;
}

.join-text-area {
    margin-top: 10px;
    height: 50px;
    line-height: 40px;
    color: #545454;
}