@charset "utf-8";
/* CSS Document */

/* マウスオンする要素とツールチップを横並びにする */
.c-tooltip {
    display: inline-block;
    position: relative;
}

/* ツールチップ共通の設定 */
.c-tooltip::before,
.c-tooltip::after {
    -webkit-transition: all 0.2s;
    opacity: 0;
    position: absolute;
    transition: all 0.2s;
    visibility: hidden;
    z-index: 11;
}

/* ツールチップ吹き出しのひげ */
.c-tooltip::before {
    -webkit-transform: translateY(-50%);
    /* border-color: transparent #5f6368 transparent transparent; */
    border-color: #5f6368 transparent transparent transparent;
    border-style: solid;
    /* border-width: 3px 7px 3px 0; */
    border-width: 7px 7px 0 7px;
    content: "";
    height: 0;
    /* left: calc(100% + 6px); */
    right: 3px;
    /* top: 50%; */
    top: -6px;
    transform: translateY(-50%);
    width: 0;
}

/* ツールチップ吹き出しの本体 */
.c-tooltip::after {
    -webkit-transform: translateY(-50%);
    background: #fff;
    border-radius: 3px;
    color: #3A414D;
    content: attr(data-tooltip);
    display: block;
    font-size: 12px;
    right: -10px;
    padding: 10px 15px;
    top: -170%;
    transform: translateY(-50%);
    white-space: pre;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(217 223 227);
}


.c-tooltip_login::after {
    content: "現在表示中のお申し込みに対して、\Aログインできる生徒を限定することができます。";
}

.c-tooltip_teacher::after {
    content: "先生デモIDについては、ご利用料金が発生しません。\A先生デモIDは1つだけ登録できます。";
}

.c-tooltip_keijyo::after {
    content: "サービスが利用され、\A請求対象となった月を表示します。";
}

/* マウスオンしたときのカーソルの設定 */
.c-tooltip:hover {
    cursor: pointer;
}

.c-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

.c-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

.circle {
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: 1px solid #e7eeec;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    margin: 5px;
    color: #999999;

    /* position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid #e7eeec;
    font-family: "Hiragino Kaku Gothic ProN";
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #999999;
    border-radius: 50%;
    margin-left: 8px; */
}

.g-fixAccount-btn {
    background: linear-gradient(273deg, rgba(255, 242, 122, 0.40) 0%, rgba(255, 242, 122, 0.00) 52.15%), #F6A506;
    color: #ffffff;
    position: relative;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 4px #BFC7D34D;
    width: 200px;
    margin: 0 0 0 auto;
    padding: 10px 0px;
    font-weight: bold;
    font-size: 16px;
    border: 0;
    cursor: pointer;
}

.apply-wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

    background: #FFFFFF80;
    padding: 15px;
    border-radius: 6px;
    width: 70%;
    margin: 0 auto;
    
}

.apply {
    width: 24.38%;
}

.apply__ttl {
    border-radius: 14px;
    font-size: 14px;
    /* font-weight: bold; */
    line-height: 22.4px;
    background-color: #FFFFFF80;
    text-align: center;
    width: 100%;
    padding: 4px 0 5px;
    margin-bottom: 8px;
}

.apply__txt {
    text-align: center;
    font-size: 18px;
    line-height: 22.4px;
}

.apply__txt--num {
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-weight: 600;
}

.apply__txt--small {
    font-size: 12px;
}

.clsSelArea_text{
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 10px 10px 10px;
}
.clsSelArea_text_head{
    font-weight: bold;
    margin-top: 10px;
}


@media (max-width: 767px) {
    .clsSelArea-line {
        display: block;
    }

    #btnIdSearch {
        display: flex;
        margin: 0 auto;
        text-align: center;
    }

    #btnIdSearch p {
        margin: 0 auto;
    }

    .apply-wrap {
        margin-bottom: 20px;
    }

    .apply:not(:last-child) {
        margin-bottom: 10px;
    }

    .apply__ttl {
        border-radius: 14px;
        font-size: 14px;
        font-weight: bold;
        line-height: 22.4px;
        background-color: #FFFFFF80;
        text-align: center;
        width: 100%;
        padding: 4px 0 5px;
        margin-bottom: 8px;
    }

    .apply__txt {
        text-align: center;
        font-size: 18px;
        line-height: 22.4px;
    }

    .apply__txt--num {
        font-family: din-2014, sans-serif;
        font-style: normal;
        font-weight: 600;
    }
}