@charset "utf-8";

/*====================
    ログイン周りのページ
====================*/
/*  全体
--------------------*/
body.p-authPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh !important;
    background: #F4F6F9;
}

.p-auth {
    width: 100%;
}

.p-auth_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
}

@media (max-width: 768px) {
    .contentsTop_column {
        display: block;
        height: auto;
        margin: 0;
    }
}

/*====================
    ロゴ
====================*/
.p-auth_logo {
    width: 24rem;
    max-width: 60dvw;
}

.p-auth_logo--link {
    display: block;
}

/*====================
    カード
====================*/
.p-auth_card {
    width: 100%;
    max-width: 42rem;
    margin-top: 3.2rem;
    padding: 1.6rem 1.2rem;
    background: #fff;
    border-radius: 0.8rem;
}

/*  ヘッド部分
--------------------*/
.p-auth_card--head {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
}

/*  コンテンツ部分
--------------------*/
.p-auth_card--body {
    margin-top: 2.4rem;
}

/*  フッター部分
--------------------*/
.p-auth_card--footer {
    margin-top: 2.4rem;
    padding-top: 1.2rem;
    border-top: solid 0.1rem #E6E6E6;
}

.p-auth_card--footer {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

.p-auth_card--footer a {
    color: #06c;
}

/*====================
    コンポーネント
====================*/
/*  フォーム：テキスト
--------------------*/
.c-auth_form-text {
    position: relative;
}

.c-auth_form-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 16px;
    background: #fff;
    border: solid 0.1rem #E0E1E3;
    border-radius: 0.4rem;
}

.c-auth_form-text input {
    line-height: 1;
    width: 100%;
    padding: 1.25em 0.75em 0.5em;
}

.c-auth_form-text input::placeholder {
    color: transparent;
}

.c-auth_form-text_label {
    transition: 0.3s;
    transform-origin: top left;
    opacity: 0.6;
    pointer-events: none;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    top: calc(50% - 0.5em);
    left: 0.75em;
    font-size: 1em;
    line-height: 1;
}

input:focus+.c-auth_form-text_label,
input:not(:placeholder-shown)+.c-auth_form-text_label {
    transform: scale(0.8);
    top: 0.35em;
}

/*  フォーム：アラート成功文
--------------------*/
.alert-success {
    color: #fff;
    background: #28a745;
    border-color: #23923d;
    border-radius: 0.4rem;
}

/*  フォーム：バリデーションエラー文
--------------------*/
.invalid-feedback {
    display: block;
    margin-top: 0.4rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #dc3545;
}

/*====================
    ログインページ
====================*/
/*  全体
--------------------*/
.l-login_inner {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* チェックボックス
--------------------*/
.l-login_remember {
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;
}

.l-login_remember--label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.l-login_remember--label input {
    -webkit-appearance: checkbox;
}

/* ログインボタン
--------------------*/
.l-login_btn {
    display: flex;
    justify-content: center;
}

.l-login_btn--btn {
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    color: #000;
    padding: 0.8rem 2.4rem;
    background: #fcd232;
    border-radius: 100em;
    border: solid 0.1rem #fcd232;
}

.l-login_btn--btn span {
    width: 1.4rem;
    height: auto;
}

.l-login_btn--btn:hover {
    color: #000;
    background: #fff;
    border-color: #000;
}

.sectionGroupList_table--btnEdit:hover::before {
    filter: brightness(100);
}
