﻿@charset "utf-8";
/*===========================================================
=============================================================
This CSS file is applied to all existing pages.

index as follows;
1: Initialize
2: BugFix
3: Layout Boxes
4: Components
5: Utility
6: State

=============================================================
============================================================*/


/*==================================================

1: Init

====================================================*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, div,
img, dl, dt, dd, ol, ul, li, a,
fieldset, form, label, textarea, input, button,
table, caption, tbody, tfoot, thead, tr, th, td,
hgroup, iframe {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style-type: none;
}

body {
    font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    color: #1B2023;
    background-color: #F2F4F7;
    font-size: 15px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    /*outline: none; AA準拠のため無効に＝「視覚的に認識可能なフォーカスに関する達成基準」*/
    padding: 0;
    margin: 0;
    -ms-user-select: none;
    user-select: none;
}

a img {
    border: none;
}

a {
    color: #2A60B5;
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        color: #5285D5;
        text-decoration: underline;
    }

    a:focus {
        outline: thin dotted #AAB0B5;
    }

/*placeholder*/
input:-webkit-input-placeholder {
    color: #72757D;
}

input:-ms-input-placeholder {
    color: #72757D;
}

input:-moz-placeholder {
    color: #72757D
}

input, select {
    vertical-align: middle;
}

    input[type="text"],
    input[type="password"],
    textarea {
        padding: 10px 8px;
        border: 1px solid #AAB0B5;
        font-size: 16px;
    }

        input[type="text"]:focus,
        input[type="password"]:focus,
        textarea:focus {
            outline: #AAB0B5;
            box-shadow: 0 0 0 2px rgba(33,83,121,0.2);
        }

        input[type="text"][disabled],
        input[type="password"][disabled] {
            background: #f3f3f3;
            border-color: #dadada;
            color: #687078;
            cursor: not-allowed;
        }

    input[type="radio"],
    input[type="checkbox"] {
        cursor: pointer;
    }

        input[type="radio"]:focus,
        input[type="checkbox"]:focus {
            outline: thin dotted #AAB0B5;
        }

button:focus {
    outline: thin dotted #AAB0B5;
}

/*==================================================

2: Layout Boxes

==================================================*/

/*----------------------------------------------
footerを下部に固定
-----------------------------------------------*/
html, body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-flow: column;
    min-height: 100vh;
}

.layout_headBodyWrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/*----------------------------------------------
header
-----------------------------------------------*/
.layout_head {
    background-color: #fff;
    border-bottom: 1px solid #E8EAED;
    height: 54px;
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .layout_head {
        margin-bottom: 42px;
    }
}

/*----------------------------------------------
body
-----------------------------------------------*/

@media screen and (min-width: 768px) {
    .layout_body {
        width: 500px;
        margin: 0 auto;
    }
}

/*----------------------------------------------
footer
-----------------------------------------------*/
.layout_foot {
    background-color: #fff;
    border-top: 1px solid #E8EAED;
    padding: 10px;
    height: 42px;
}

.foot__logoWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .layout_foot {
        text-align: center;
        margin-top: 32px;
        height: 57px;
        padding: 10px;
    }

    .foot__logoWrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 6px;
    }
}

@media screen and (min-width: 768px) {
    .layout_foot {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 52px;
    }

    .foot__logoWrapper {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

/*==================================================

4: Components

==================================================*/

/*----------------------------------------------
Header
-----------------------------------------------*/
.head__logo {
    display: inline-block;
    height: 100%;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .head__logo,.head__logo_with_testname {
        /*padding: 9px 20px;*/
        height: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .head__logo {
        width: 46px;
        height: 48px;
    }
    .head__logo_with_testname {
        width: auto;
        height: 48px;
    }

}

.head__language span {
    padding: 0 10px;
    font-size: 14px;
}

    .head__language span + span {
        border-left: 1px solid #A0A4AA;
    }


/*----------------------------------------------
Footer
-----------------------------------------------*/
.foot__logo {
    font-size: 12px;
    width: 96px;
    padding-right: 8px;
}

.foot__contact {
    font-size: 12px;
    line-height: 1;
    padding-left: 8px;
    border-left: 1px solid #A0A4AA;
}

.foot__cr {
    line-height: 1;
    background-color: #fff;
    color: #696B6F;
    font-size: 10px;
}

/*----------------------------------------------
wrapper
-----------------------------------------------*/
.contents-wrapper {
    background-color: #fff;
    padding: 16px;
    margin-bottom: 8px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .contents-wrapper {
        border-top: 1px solid #E5E7EA;
        border-bottom: 1px solid #E5E7EA;
    }
}

@media screen and (min-width:768px) {
    .contents-wrapper {
        border: 1px solid #E5E7EA;
        border-radius: 2px;
    }
}

/*----------------------------------------------
Title
-----------------------------------------------*/
@media screen and (max-width: 767px) {
    .ttl01 {
        font-size: 20px;
        margin: 16px 16px 4px;
    }
}

@media screen and (min-width: 768px) {
    .ttl01 {
        font-size: 22px;
        margin-bottom: 4px;
    }
}

@media screen and (max-width: 767px) {
    .ttl02 {
        font-size: 18px;
        margin: 0 16px;
    }
}

@media screen and (min-width: 768px) {
    .ttl02 {
        font-size: 20px;
    }
}

.ttl03 {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .ttl03 {
        margin: 0 16px;
    }
}

@media screen and (max-width: 767px) {
    .ttl04 {
        font-size: 14px;
        margin-bottom: 2px;
    }
}

.ttl--systemError {
    color: #CF1556;
    font-size: 20px;
    font-weight: bold;
}
/*----------------------------------------------
TextBox
-----------------------------------------------*/
.txt-instruction {
    line-height: 1.5;
}

@media screen and (max-width:767px) {
    .txt-instruction {
        margin: 0 16px 18px;
        font-size: 15px;
    }
}

@media screen and (min-width:768px) {
    .txt-instruction {
        margin: 0 0 18px;
    }
}

.txt-sub {
    font-size: 14px;
}

@media screen and (max-width:767px) {
    .txt-sub {
        margin: 4px 0 0;
    }
}

@media screen and (min-width:768px) {
    .txt-sub {
        line-height: 1.6;
        margin: 2px 0 0;
    }
}

.txt-errorMessage {
    color: #CF1556;
    font-weight: bold;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #CF1556;
    border-radius: 2px;
    padding: 6px 10px 5px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 31px;
    line-height: 1.5;
}

    .txt-errorMessage::before {
        content: "";
        background-image: url("../images/icon_error.svg");
        background-size: 16px;
        display: inline-block;
        width: 16px;
        height: 16px;
        position: absolute;
        top: 9px;
        left: 10px;
    }

@media screen and (max-width:767px) {
    .txt-errorMessage {
        margin: 0 16px 18px;
    }
}

/*----------------------------------------------
Form
-----------------------------------------------*/
/*
パーツ
---------------------*/
/* textbox */
.form-input__textbox {
    width: 100%;
    border: 1px solid #AAB0B5;
    background-color: #fff;
    border-radius: 2px;
}

/* テキストフィールドエラー時 */
.form-input__textbox--isError {
    background-color: #FAECF1 !important;
    border-color: #CF1556;
}

/* selectbox */
.form-input__selectbox {
    position: relative;
}

    .form-input__selectbox select {
        padding: 0 10px;
        height: 40px;
        font-size: 14px;
        color: #1B2028;
        width: 100%;
        cursor: pointer;
        border: 1px solid #AAB0B5;
        border-radius: 2px;
        background: #ffffff;
        background-image: none;
        box-shadow: none;
        -webkit-appearance: none;
        appearance: none;
    }

        .form-input__selectbox select:focus {
            outline: #AAB0B5;
            box-shadow: 0 0 0 2px rgba(33,83,121,0.2);
        }

        .form-input__selectbox select::-ms-expand {
            display: none;
        }

    .form-input__selectbox::before {
        position: absolute;
        top: 17px;
        right: 12px;
        width: 0;
        height: 0;
        padding: 0;
        content: '';
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid #88939B;
        pointer-events: none;
    }

.group_identification_code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width:768px) {
    .group_identification_code + .layout_btn {
        border-top: 1px solid #E4E5E5;
        padding-top: 16px;
        margin: 0 -16px;
    }
}

.hyphen {
    width: 24px;
    text-align: center;
    padding-top: 5px;
}

.first_code {
    flex-grow: 1;
}

.second_code {
    width: 72px;
}

.helper_txt {
    font-size: 12px;
    color: #49505C;
    margin: 4px 0 0;
}


/*
form style
---------------------*/
.form-input label {
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

    .form-input label.examination {
        margin-bottom: 6px !important;
        flex: 1;
    }

@media screen and (max-width:414px) {
    .form-input .examination span {
        display: block;
    }
}

.form-input .examination_year {
    background-color: #EFF1F5;
    border-radius: 0 2px 2px 0;
    padding: 8px;
    border-left: 2px solid #D0D4DD;
    margin-bottom: 18px;
    font-weight: bold;
    font-size: 16px;
}

.form-input input,
.form-input .form-input__selectbox {
    margin-bottom: 18px;
}

.form-input > input:last-child {
    margin-bottom: 0;
}

/* radio button */
.form-input__radioLabel {
    position: relative;
    margin-bottom: 6px !important;
    font-weight: normal !important;
    cursor: pointer;
}

.form-input__radioHidden {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
}

    .form-input__radioHidden + .form-input__radioL:after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../images/component_radio.svg);
        background-repeat: no-repeat;
        background-size: contain;
        vertical-align: -5px;
    }

    .form-input__radioHidden:checked + .form-input__radioL:after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../images/component_radio_checked.svg);
        background-repeat: no-repeat;
        background-size: contain;
        vertical-align: -5px;
    }

    .form-input__radioHidden:disabled + .form-input__radioL:after {
        content: '';
        border: 1px solid #DADADA;
        background-color: #eaeaea;
        border-radius: 50%;
        background-image: none;
        cursor: not-allowed;
    }

/* checkbox */
.form-input__checkBoxLabel {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: normal !important;
}

.form-input__checkBoxHidden {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 3px;
}

    .form-input__checkBoxHidden + .form-input__checkBoxL:after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../images/component_Cbox.svg);
        background-size: contain;
        vertical-align: -5px;
    }

    .form-input__checkBoxHidden:checked + .form-input__checkBoxL:after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../images/component_Cbox_checked.svg);
        background-size: contain;
        vertical-align: -5px;
    }

    .form-input__checkBoxHidden:disabled + .form-input__checkBoxL:after {
        content: '';
        display: inline-block;
        width: 18px;
        height: 18px;
        border: 1px solid #DADADA;
        background-color: #eaeaea;
        border-radius: 2px;
        background-size: contain;
        vertical-align: -5px;
        background-image: none;
        cursor: not-allowed;
    }

.register-confirm__contents {
    margin: 0 -16px 16px !important;
}

    .register-confirm__contents dt {
        font-weight: bold;
        border-bottom: 1px solid #E5E7EA;
        padding: 0 16px 2px;
        margin-top: 20px;
    }

    .register-confirm__contents dd {
        border-bottom: 1px solid #E5E7EA;
        padding: 10px 16px;
    }

.examination_name span + span,
.belongs span + span {
    margin-left: 6px;
}

.form-input input {
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .form-input label {
        display: block;
        margin-bottom: 3px;
    }
}

.school_year_class {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .school_year_class select {
        font-size: 14px;
    }

    .school_year_class > div {
        width: 33.3%;
    }

        .school_year_class > div dt,
        .school_year_class > div dd {
            padding: 0;
        }


        .school_year_class > div + div {
            margin-left: 8px;
        }

.divider {
    border: none;
    border-top: 1px solid #E5E7EA;
    margin: 18px 0;
}

@media screen and (max-width:767px) {
    .groups {
        margin: 28px 16px 10px;
    }
}

@media screen and (min-width:768px) {
    .groups {
        margin: 28px 0 10px;
    }
}

.groups dt {
    font-size: 16px;
    font-weight: bold;
}


/*
エラー
---------------------*/
.form-errorTxt {
    color: #CF1556;
    font-size: 14px;
    margin-top: -13px;
}

/*
規約
---------------------*/
.terms {
    height: 80px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #c8ced8;
    background-color: #fff;
    border-radius: 2px;
    padding: 10px 12px;
    overflow-y: auto;
    margin: 0 0 16px;
}

/*----------------------------------------------
Button
-----------------------------------------------*/
.layout_btn {
    text-align: center;
}

/*
structure
---------------------*/
.btn {
    display: inline-block;
    line-height: 1;
    border: 1px solid transparent;
    background-color: transparent;
    transition: background 0.2s ease 0s;
    text-decoration: none;
    text-align: center;
    border-radius: 0px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 2px;
}
/*
modifier
---------------------*/
.btn--primary {
    background-color: #C92828;
    color: #fff;
}

    .btn--primary:hover {
        background-color: #DD3D3D;
    }

    .btn--primary.-disable {
        pointer-events: none;
        background-color: #fff;
        border-color: #c4c4c4;
        color: #c4c4c4;
    }
/* secondary */
.btn--secondary {
    border-color: #2A60B5;
    background-color: #fff;
    color: #2A60B5;
}

    .btn--secondary:hover {
        background-color: #F5F8FC;
    }

.btn--text {
    color: #2A60B5;
    font-size: 15px;
    padding: 6px 8px 6px 0;
}

    .btn--text:hover {
        color: #5285D5;
    }

@media screen and (max-width:767px) {
    .btn--addGroup {
        margin: 0 16px 12px;
    }
}

@media screen and (min-width:768px) {
    .btn--addGroup {
        margin: 0 0 14px;
    }
}

.btn--delete {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn--settingCopy {
    top: -1px;
    right: 0;
    width: 106px !important;
    height: 37px !important;
    font-size: 10px;
    line-height: 1.3;
    font-weight: normal;
    padding: 0 4px;
}

@media screen and (min-width:768px) {
    .btn--settingCopy {
        width: auto !important;
        font-size: 11px;
        padding: 0 8px !important;
    }
}

.add_icon {
    font-size: 22px;
    margin-right: 2px;
}

.delete_icon {
    vertical-align: -1px;
    width: 13px;
    margin-right: 4px;
}

.dialog-btn__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
}

@media screen and (max-width: 767px) {
    .btn {
        width: 100%;
        height: 44px;
    }
}

@media screen and (min-width: 768px) {
    .btn {
        height: 44px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn--primary,
    .btn--secondary {
        width: 284px;
    }
}

/*----------------------------------------------
List
-----------------------------------------------*/
.list {
    border-top: 1px solid #E5E7EA;
}

@media screen and (min-width:768px) {
    .list {
        border-left: 1px solid #E5E7EA;
        border-right: 1px solid #E5E7EA;
        border-radius: 2px;
    }
}

.list li {
    padding: 10px 16px;
    background-color: #fff;
    border-bottom: 1px solid #E5E7EA;
}


@media screen and (min-width:768px) {
    .list li:first-child {
        border-radius: 2px 2px 0 0;
    }

    .list li:last-child {
        border-radius: 0 0 2px 2px;
    }
}

.group_name {
    color: #1B2028;
    margin-bottom: 8px;
}

.btn--edit__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn--edit {
    height: 32px !important;
    font-size: 14px;
    font-weight: normal;
    padding-top: 8px;
}

    .btn--edit:hover {
        text-decoration: none;
    }

    .btn--edit + .btn--edit {
        margin-left: 8px;
    }

/*----------------------------------------------
Dialog
-----------------------------------------------*/
.dialog,
.dialog--message {
    border-radius: 4px;
    background-color: #fff;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px 2px rgba(0,0,0,0.3);
}

.dialog--message {
    min-height: 132px;
}

@media screen and (max-width:767px) {
    .dialog,
    .dialog--message {
        width: 90%;
        padding-bottom: 16px;
    }
}

@media screen and (min-width:768px) {
    .dialog,
    .dialog--message {
        width: 500px;
        padding-bottom: 16px;
    }

    .dialog--message {
        padding: 16px;
    }
}


.dialog-registrarion__wrapper,
.dialog-modify__wrapper {
    overflow-y: auto;
}

@media screen and (max-width:767px) {
    .dialog-registrarion__wrapper,
    .dialog-modify__wrapper,
    .dialog-release__wrapper {
        padding: 16px 16px 0;
    }

        .dialog-registrarion__wrapper * {
            margin-left: 0;
            margin-right: 0;
        }

        .dialog-modify__wrapper *,
        .dialog-release__wrapper * {
            margin-left: 0;
            margin-right: 0;
        }
}

@media screen and (min-width:768px) {
    .dialog-registrarion__wrapper,
    .dialog-modify__wrapper,
    .dialog-release__wrapper {
        padding: 16px 16px 0;
    }
}

/* dialog height */
@media screen and (min-height: 668px) {
    .dialog-modify__wrapper {
        height: 480px;
    }
}

@media screen and (max-height: 667px) {
    .dialog-modify__wrapper {
        height: 475px;
    }
}

@media screen and (max-height: 568px) {
    .dialog-modify__wrapper {
        height: 460px;
    }
}

@media screen and (max-height: 414px) { /* landscape */
    .dialog-modify__wrapper {
        height: 230px;
    }
}


@media screen and (max-height: 667px) {
    .dialog-registrarion__wrapper {
        height: 530px;
    }
}

@media screen and (max-height: 568px) {
    .dialog-registrarion__wrapper {
        height: 460px;
    }
}

@media screen and (max-height: 414px) {
    .dialog-registrarion__wrapper {
        height: 230px;
    }
}


.dialog .ttl01 {
    margin-top: 0;
}

.dialog--btn__wrapper {
    padding: 0 16px;
}

@media screen and (min-width:768px) {
    .dialog--btn__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
    }
}

.dialog--btn__wrapper .btn {
    height: 36px;
    font-weight: normal;
    padding: 10px 0;
    font-size: 14px;
}

@media screen and (max-width:350px) {
    .dialog--btn__wrapper .btn {
        font-size: 12px;
    }
}


.dialog--btn__wrapper .btn:hover {
    text-decoration: none;
}

@media screen and (max-width:767px) {
    .dialog--btn__wrapper .btn + .btn {
        margin-top: 8px;
    }
}

@media screen and (min-width:768px) {
    .dialog--btn__wrapper .btn + .btn {
        margin-left: 8px;
    }
}

.dialog__overlay {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

/*----------------------------------------------
Back
-----------------------------------------------*/
.back {
    font-size: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #D9DBDE;
}

@media screen and (min-width:768px) {
    .back {
        width: 500px;
        font-size: 14px;
        border-bottom: none;
        margin: 0 auto;
        padding: 12px 0;
    }
}

.back::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #2A60B5;
    border-left: 1px solid #2A60B5;
    transform: rotate(-45deg);
    vertical-align: 1px;
    margin-right: -2px;
}

/*----------------------------------------------
ErrorScreen
-----------------------------------------------*/
.errorScreen {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
}

@media screen and (max-width:767px) {
    .errorScreen {
        height: calc(100vh - 143px);
        padding: 0 16px;
    }
}

@media screen and (min-width:768px) {
    .errorScreen {
        height: calc(100vh - 190px);
    }
}

@media screen and (max-width:320px) {
    .errorScreen .ttl01 {
        font-size: 16px;
    }
}

@media screen and (max-width:320px) {
    .errorScreen .txt_instruction {
        font-size: 14px;
    }
}
/*----------------------------------------------
password forget
-----------------------------------------------*/
.form-input__forget {
    font-size: 14px;
    color: #2A60B5;
    position: relative;
    cursor: pointer;
    width: fit-content;
    background-image: url(../images/icon_arrow_down.svg);
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 18px;
    background-size: 14px;
    display: block;
}

    .form-input__forget.open {
        background-image: url(../images/icon_arrow_up.svg);
    }

.form-input__forget--link {
    display: none;
    margin-top: 7px;
}

    .form-input__forget--link p {
        display: inline-block;
        width: 230px;
    }

        .form-input__forget--link p + p {
            margin-top: 4px;
        }

        .form-input__forget--link p a {
            font-size: 12px;
            display: block;
            height: 30px;
            padding-top: 6px;
        }

        .form-input__forget--link p a:hover {
            padding-bottom: 1px;
        }

@media screen and (min-width:768px) {
    .form-input__forget--link p + p {
        margin-top: 3px;
    }
}

/*======================================================================

5: Utility  

======================================================================*/

.u_h150 {
    height: 150px;
}

/*
font size
---------------------*/
.u_fwB {
    font-weight: bold;
}

.u_fwN {
    font-weight: normal;
}

.u_fz14 {
    font-size: 14px;
}

.u_fz12 {
    font-size: 12px;
}

/*
color
---------------------*/
.u_red {
    color: #CF1556;
}

/*
text align
---------------------*/
.u_center {
    text-align: center;
}
.u_wordBreak {
    word-break: break-all;
}

/*
margin
---------------------*/
.u_maAuto {
    margin-left: auto;
    margin-right: auto;
}

.u_maT5 {
    margin-top: 5px;
}

.u_maT10 {
    margin-top: 10px;
}

.u_maT18 {
    margin-top: 18px;
}

.u_maT28 {
    margin-top: 28px;
}

.u_maL6 {
    margin-left: 6px;
}

.u_maL36 {
    margin-left: 36px;
}

.u_maB0 {
    margin-bottom: 0px !important;
}

.u_maTB10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.u_maLR3 {
    margin-left: 3px;
    margin-right: 3px;
}

.u_maLR16 {
    margin-left: 16px;
    margin-right: 16px;
}

.u_maB8 {
    margin-bottom: 8px !important;
}

.u_maB12 {
    margin-bottom: 12px !important;
}

.u_maB15 {
    margin-bottom: 15px !important;
}

.u_maB18 {
    margin-bottom: 18px !important;
}

.u_maB28 {
    margin-bottom: 28px !important;
}

/*
display
---------------------*/
.u_hidden {
    display: none;
}

@media screen and (max-width: 767px) {
    .u_hidden-SP {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .u_hidden-PC {
        display: none;
    }
}


/*
position
---------------------*/
.posRelative {
    position: relative;
}
