/* ラベル */
.FormLabel_Input {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Form要素 */
.Form {
    display: grid;
    gap: 10px;
}

/* メッセージボックス */

.MessageBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding: 25px 10px;
    border-radius: 5px;
}

.MessageBox.Success {
    border: 1px solid var(--Blue11);
    color: var(--Blue11);
}
.MessageBox.Failure {
    border: 1px solid var(--NoticeColor);
    color: var(--NoticeColor);
}
.MessageBox.Hide {
    display: none;
}

/* テキストパーツ */

/* テキストを３行にまとめ、三点リーダーで省略表示 */
.Text3LineClamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 会員種別バッジ */

.Membership_BadgeBox {
    display: flex;
}

.Membership_BadgeBox .Badge {
    font-size: 10px;
    font-weight: 300;
    color: #bd1a73;
    border: 1px solid;
    border-radius: 3px;
    padding: 1px 6px;
}

.Membership_BadgeBox.NoBadge {
    display: none;
}

/* 都道府県名バッジ */

.Prefecture_BadgeBox {

}

.Prefecture_BadgeBox .Badge {
    font-size: 10px;
    font-weight: 300;
    color: #bd1a73;
    border: 1px solid;
    border-radius: 3px;
    padding: 1px 6px;
}

/* 案内のためのテキストボックス */
.InfoCard {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
}
.InfoCard .Title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.InfoCard .Content {
    font-size: 16px;
    color: #555;
}

/* 汎用メッセージ */
.CZ_Message {
    color: #555;
}

.CZ_Message.AlignCenter {
    text-align: center;
}