@charset "UTF-8";
/* CSS Document */

/*==================
お知らせ
====================*/
#info h2 {
    margin-bottom: 45px;
}

@media (max-width: 768px) {
    #info h2 {
        margin-bottom: 30px;
    }
}

/* タブ本体 */
#info .tab_group {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    border-bottom: solid 1px #C8C8C8;
    margin-bottom: 40px;
}
#info .tab {
    padding: 6px 3px 12px;
    text-align: center;
    cursor: pointer;
    font-size:  1.8rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}
#info .tab::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--BL-color);
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}
#info .tab.is-active::after {
  transform: scaleX(1);
}
#info .tab.is-active {
    color: var(--BL-color);
}
#info .tab:hover {
    color: var(--BL-color);
}

@media (max-width: 768px) {
    #info .tab_group {
        gap: 16px;
    }
    #info .tab {
        font-size: 1.6rem;
    }
}

@media (max-width: 520px) {
    #info .tab_group {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        border-bottom: none;
        margin-bottom: 20px;
    }
    #info .tab {
        width: calc((100% - 16px) / 3);
        padding: 6px 0 8px;
        font-size:  1.3rem;
        letter-spacing: 0.5px;
        font-weight: 400;
        position: inherit;
        background: #F4F4F4;
        border-radius: 4px;
    }
    #info .tab::after {
        content: none;
    }
    #info .tab.is-active::after {
        content: none;
    }

    #info .tab.is-active {
        background: var(--BL-color);
        color: #FFFFFF;
    }
}


/* 記事 */
#info .panel{
    display: none;
}
#info .panel.is-show{
    display:block;
}

#info .panel li .box {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 26px 0;
    border-bottom: 1px solid #D7D7D7;
    position: relative;
}
#info .panel li a {
    transition: 0.3s;
}
#info .panel li .box p {
    margin-right: 50px;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}
#info .panel li a::after {
    content: '';
    background: url("/img/common_btn_arrow.svg") no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
}
#info .panel li .box .date {
    font-size: 1.5rem;
    color: #9D9D9D;
    letter-spacing: 0.5px;
    margin-right: 10px;
}
#info .panel li .box .category {
    display: inline-block;
    padding: 2px 0 3px;
    width: 10em;
    letter-spacing: 0.8px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--BL-color);
    color: var(--BL-color);
    margin-right: 1em;
}

#info .panel li a:hover {
    color: var(--BL-color);
}
#info .panel li a:hover::after {
    right: 16px;
}

#info .panel li .box .category.region {
    border: 1px solid #ED7217;
    color: #ED7217;
}
#info .panel li .box .category.important {
    border: 1px solid var(--P-color);
    color: var(--P-color);
}
#info .panel li .box .category.recruit {
    border: 1px solid #01CC57;
    color: #01CC57;
}

@media (max-width: 960px) {
    #info .panel li .box {
        flex-wrap: wrap;
        row-gap: 8px;
        padding: 16px 0;
    }
    #info .panel li a::after {
        top: 67%;
    }
}
@media (max-width: 768px) {
    #info .panel li .box .category {
        padding: 1px 0 2px;
        font-size: 1.4rem;
        width: 9em;
    }
}

/*ボタン*/
#info .info_btn {
    width: 340px;
    margin: 42px auto 0;
}
#info .info_btn a {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 15px 28px 16px 0;
    border: 2px solid var(--BL-color);
    border-radius: 40px;
    background: #FFFFFF;
    box-shadow: 2px 2px 8px rgba(0,0,0,.08);
    color: var(--BL-color);
    font-size: 1.8rem;
    letter-spacing: 1.2px;
    font-weight: 500;
}
#info .info_btn a .arrow {
    position: relative;
}
#info .info_btn a .arrow::after {
    content: '';
    background: url("/img/common_btn_arrow.svg") no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: -1.8em;
    transform: translateY(-50%);
    transition: 0.3s;
}

#info .info_btn a:hover {
    background: var(--BL-color);
    color: #FFFFFF;
}
#info .info_btn a:hover .arrow::after {
    right: -2em;
}

@media (max-width: 768px) {
    #info .info_btn {
        width: 300px;
    }
}