@charset 'utf-8';

.school-search-box .tab_menu {
    z-index: 2;
    position: relative;
    width: 120px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    border: solid 1px #707070;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    color: #BBBBBB;
}

@media screen and (min-width: 768px) {
    .school-search-box .tab_menu {
        width: 175px;
    }
}

.school-search-box .tab_menu:hover {
    color: #838383;
}

.school-search-box .tab_menu:first-of-type {
    margin-right: 20px;
}

.school-search-box input:checked + .tab_menu {
    color: #1B1B1B;
    background: #fff;
}

.school-search-box input[name="tab_menu"] {
    display: none;
}

.school-search-box .tab_content {
    display: none;
}

.school-search-box #tab_a:checked ~ #tab_a_content,
.school-search-box #tab_b:checked ~ #tab_b_content {
    display: block;
}

.school-search-box .tab_contents_box {
    position: relative;
}

.school-search-box .tab_contents_box::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background-color: #707070;
    left: 50%;
    transform: translateX(-50%);
    top: 36px;
}

.school-search-box .tab_content h2 {
    text-align: left;
}

@media screen and ( min-width: 768px ) {
    .school-search-box .tab_content h2 {
        margin-top: 36px;
    }
}