@charset "utf-8"; :root {
    --accent-color:hsl(18 100% 46%);/* 現行 */
    --border-color: #E2E2E2;
    --black: #333333;
	--yellow: #FFDD86;
    --gray: #8E8E8E;
    --navy:navy;
    /* --navy:#002f70; *//* 高校受験テーマカラー */
    --weight__regular: 400;
    --weight__medium: 600;
    --weight__bold: 800;
}

.pc_display {
    display: none;
}

.jyuken_top_box .login__wrap .btn {
    cursor: pointer;
}

.jyuken_top_box .login__wrap .hidden {
	display: none;
}

.jyuken_top_box .login__wrap.hidden {
	display: none;
}
.hidden {
  display: none !important;
}

/*========== icon ==========*/
.jyuken_top_box .login__wrap .icon__report {
    display: block;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(icon__report.svg);
    -webkit-mask-size: contain;
    -weblit-mask-repeat: no-repeat;
    mask-image: url(icon__report.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    background: var(--accent-color);
}

.jyuken_top_box .login__wrap .link__box .title span::before {
    content: "";
    display: block;
    width: 80%;
    height: 80%;
    -webkit-mask-size: contain;
    -weblit-mask-repeat: no-repeat;
    mask-size: contain;
    mask-repeat: no-repeat;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*===== login__wrap =====*/
.jyuken_top_box .login__wrap {
    /* background: #fff9f6; */
    background: hsl(60, 74%, 95%);/* うす黄色 */
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    padding: 24px 16px;
    display: grid;
    place-items: center;
    gap: 16px;
    /* margin-top: 42px; */
    margin: 1rem 0;
}

.jyuken_top_box .login__text {
    position: relative;
}

.jyuken_top_box .login__text .icon__report {
    position: absolute;
    /* top: 11px;
    left: 0; */
}

.jyuken_top_box .login__wrap p {
    line-height: 1.6;
    font-size: 15px;
    padding-left: 32px;
    color: var(--accent-color);
}

.jyuken_top_box .login__wrap p span {
    color: var(--accent-color);
    font-weight: bold;
    /* font-weight: var(--weight__medium); */
    /* -webkit-text-emphasis: filled;
    text-emphasis: filled; */
}

.jyuken_top_box .login__wrap a {
    font-size: 14px;
    font-weight: var(--weight__medium);
    padding: 6px 24px;
    border-radius: 40px;
}

.jyuken_top_box .login__wrap ul {
    display: flex;
    flex-direction: column;
    gap: 16px
}
.jyuken_top_box .login__wrap ul li {
    border-bottom: none;
}
.jyuken_top_box .login__wrap ul li:before {
    content: none;
}

.jyuken_top_box .login__wrap ul li a{
    color: #fff;
    align-items: center;
    background: hsl(25 90% 46%); /* NEXT使用カラーのオレンジをベースに、彩度を90％に下げた */
    /* background: hsl(36 100% 43%); 黄みオレンジ */
}

/* .jyuken_top_box .login__wrap ul li:first-child a {
    color: #fff;
    background: var(--accent-color);
}

.jyuken_top_box .login__wrap ul li:last-child a {
    color: var(--black);
    background: #fff;
    border: 1px solid var(--black);
} */

.jyuken_top_box .login__wrap .textlink{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--navy);
}
.jyuken_top_box .login__wrap .textlink::after{
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--navy);
    border-right: 1px solid var(--navy);
    transform: rotate(45deg);
}

/*=============================
min-width: 768px
==============================*/
@media (min-width: 768px) {
    .sp_display {
        display: none;
    }

    .pc_display {
        display: block;
    }

    /*== login_wrap ==*/
    .jyuken_top_box .login__wrap p, .jyuken_top_box .login__wrap a {
        font-size: 16px;
    }

    .jyuken_top_box .login__wrap ul {
        flex-direction: row;
        gap: 40px;
    }

}

/*=============================
hover-animation
==============================*/
.jyuken_top_box .login__wrap a{
    transition: .5s all;
}


@media (hover: hover) and (pointer: fine) {
    .jyuken_top_box .login__wrap ul li:first-child a:hover, .jyuken_top_box .login__wrap ul li:last-child a:hover {
        background: #5c5c5c;
        color: #fff;
    }
}
