/* ヒーローセクションの画像 */
.hero{
    background-image: url(../img/requirements_hero.png);
}

@media screen and (max-width: 768px) {
    .hero-to-left {
        background-position: 60% center;
    }
}

.text-contents{
    margin-bottom:2em;
}
.text-contents h4 p:nth-child(1){
    font-size:1.75em;
    font-weight:bold;
}
.text-contents h4 p:nth-child(2){
    font-size:2em;
    font-weight:bold;
}
.text-contents h4 span{
    font-size:0.8em;
}
.text-contents div > p{
    line-height: 1.75;
}
.text-contents h4 p{
    margin-bottom:1em;
}
.text-contents > div:not(:last-child){
    margin-bottom:4em;
}

.tabs{
    display:flex;
    margin-bottom:6em;
}
.tabs div{
    background-color:#0E3267;
    color:#fff;
    flex:1;
    height:60px;
    border-radius:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 5px #00000044;
    cursor:pointer;
}
.tabs div:hover{
    transform: translateY(-3px);
    box-shadow: 0 7px 7px #00000044;
}
.tabs div:not(:last-child){
    margin-right:3.5em;
}
.tabs div:after{
    content:"";
    border-bottom:2px solid #fff;
    border-right:2px solid #fff;
    height:12px;
    width:12px;
    position:absolute;
    right:1.75em;
    transform: translate(0, -0.25em) rotate(45deg);
}
.tabs .tab.active.active{
    background-color: var(--theme-color-sub);
    color: #000;
}
.tabs .tab.active:after{
    border-bottom:2px solid #000;
    border-right:2px solid #000;
}
.tab-content{
    scroll-margin-top: 100px;
}
.tab-content table{
    line-height: 175%;
}
.tab-content table th,
.tab-content table td{
    border: solid 1px #BDBDBD;
    padding:2em;
}
.tab-content table th{
    background-color:#f6f6f6;
    width:12.5em;
}
.tab-content{
    display:none;
}
.tab-content.active{
    display:block;
}

.recruit-link .section-inner>div{
    display:flex;
    margin-bottom:6em;
    font-size:1.25em;
    font-weight:bold;
}
.recruit-link .section-inner>div a{
    background-color:var(--theme-color-sub);
    color:#000;
    flex:1;
    height:100px;
    border-radius:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 5px #00000044;
}
.recruit-link .section-inner>div a:not(:last-child){
    margin-right:3.5em;
}
.recruit-link .section-inner>div a:after{
    content:"";
    border-top:2px solid #000;
    border-right:2px solid #000;
    height:12px;
    width:12px;
    position:absolute;
    right:2.25em;
    transform:rotate(45deg);
}
.recruit-link .section-inner>div a::before{
    margin-right: 0.5em;
}
.recruit-link .section-inner>div a:nth-child(1)::before{
    /* content: url(../img/recruit-icon1.png); */
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../img/recruit-icon1.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.recruit-link .section-inner>div a:nth-child(2)::before{
    /* content: url(../img/recruit-icon2.png); */
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../img/recruit-icon2.png);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
    .recruit-link .section-inner>div {
        display:unset;
    }
    .recruit-link .section-inner>div a:not(:last-child) {
        margin-right: unset;
        margin-bottom:1.5em;
    }
    .tabs div:not(:last-child) {
        margin-right: 1.5em;
    }
}
@media screen and (max-width: 900px) {
    .tabs {
        display: block;
    }
    .tabs div:not(:last-child) {
        margin-right: unset;
        margin-bottom: 1.5em;
    }
}
@media screen and (max-width: 768px) {
    .label-sub {
        font-size:.6em;
    }
    .table-scroll{
        overflow-y: scroll;
    }
    .about-section table {
        border-collapse: collapse;
        white-space: nowrap;
        font-size: 0.875em;
    }
    .about-section table th, .about-section table td {
        padding: 1em;
    }
    .tab-content{
        scroll-margin-top: 80px;
    }
    .recruit-link .section-inner>div a:nth-child(1)::before{
        /* content: url(../img/recruit-icon1.png); */
        content: "";
        display: inline-block;
        width: 28px;
        height: 28px;
        background-image: url(../img/recruit-icon1.png);
        background-size: contain;
        background-repeat: no-repeat;
    }
    .recruit-link .section-inner>div a:nth-child(2)::before{
        /* content: url(../img/recruit-icon2.png); */
        content: "";
        display: inline-block;
        width: 28px;
        height: 28px;
        background-image: url(../img/recruit-icon2.png);
        background-size: contain;
        background-repeat: no-repeat;
    }
    .recruit-link .section-inner>div {
        font-size: 1em;
    }
}