/* VitalGuard 専用 stylesheet */

/* 色 */
.my-main-color {
    background-color: #f29600;
}
.my-sidebar-color {
    background-color: #f29600;
    background-image: linear-gradient(180deg, #f29600 10%, #815001 100%);
    background-size: cover;
}

/* サイズ固定 */
.fixed-size-sm {
    width: 700px; /* 固定幅 */
    margin: 0 auto; /* 中央揃え */
}
.fixed-size-lg {
    width: 1600px; /* 固定幅 */
    margin: 0 auto; /* 中央揃え */
}

/* サイズ制限 */
.respo-size-md {
    min-width: 700px;   /* 固定幅 */
    margin: 0 auto;     /* 中央揃え */
}

/* スクロール設定 */
.scroll-card-x {
    overflow-x: auto; /* 水平方向のスクロールを有効にする */
}

/* 画像関係 */
/* 背景画像 */
.my-account-back-img {
    background-image: url(../img/VitalGuard_acount_back.png);
}
.my-main-back-img {
    background-image: url(../img/VitalGuard_main_back.png);
}

/* アイコン関係 */
.my-register-img {
    background: url("../img/VitalGuard_register_icon.png");
    background-position: center;
    background-size: contain;
}
.my-forgot-password-img {
    background: url("../img/VitalGuard_forgot_password_icon_short.png");
    background-position: left;
    background-repeat:no-repeat;
    background-size: contain;
}
.my-login-img {
    background: url("../img/VitalGuard_login_icon_short.png");
    background-position: left;
    background-repeat:no-repeat;
    background-size: contain;
}
.my-confirm-password-img {
    background: url("../img/VitalGuard_register_icon_short.png");
    background-position: left;
    background-repeat:no-repeat;
    background-size: contain;
}
.my-vital-photo-img {
    height: 10rem;
    background: url("../img/VitalGuard_photo.png");
    background-position: center;
    background-repeat:no-repeat;
    background-size: contain;
}
.my-logo-short-img {
    height: 2.5rem;
    background: url("../img/VitalGuard_logo_short.png");
    display: block;
    background-repeat:no-repeat;
    background-position: center;
    background-size: contain;
}
.my-logo-img {
    height: 2.5rem;
    background: url("../img/VitalGuard_logo.png");
    display: block;
    background-repeat:no-repeat;
    background-position: center;
    background-size: contain;
}

