@charset "UTF-8";

/* FV */

#topPage #fv {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: -1;
}

#topPage #fv .movie {
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1;
}

#topPage #fv .movie video {
    width: 100%;
    height: auto;
}

#topPage #fv .scroll {
    position: absolute;
    z-index: 1;
    left: 40px;
    top: 0;
    bottom: 0;
    writing-mode: vertical-rl;
    color: #246BA2;
    display: flex;
    justify-content: center;
    align-items: center;
}

#topPage #fv .scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: #246BA2;
    animation: scroll 2s infinite;
    transform-origin: 0 0;
    position: static;
    margin-top: 10px;
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@media only screen and (max-width:768px) {

    #topPage #fv {
        background: #F6F6F6;
        height: auto;
        display: block;
        position: relative;
        z-index: -1;
        margin: auto;
    }

    #topPage #fv .movie {
        width: 100%;
        height: auto;
        position: static;
    }

    #topPage #fv .movie img {
        max-width: none;
        width: 100%;
        height: auto;
        position: static;
        transform: translateX(0%) translateY(0%);
    }

    #topPage #fv .scroll {
        position: static;
        padding: 10vw 0 7vw;
        font-size: 3.2vw;
        writing-mode: unset;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #topPage #fv .scroll::after {
        width: 1px;
        height: 6vw;
        background: #246BA1;
        position: absolute;
        right: 50%;
        top: auto;
        bottom: 0;
        margin-top: auto;
    }

}


/* お知らせ */

#topPage #information {
    background: #F6F6F6;
    padding-top: 120px;
}

#topPage #information .information_wrap {
    max-width: 1400px;
    margin: auto;
    padding: 60px 0;
    background: #fff;
    position: relative;
    border-radius: 20px;
}

#topPage #information .inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

#topPage #information .inner .flex {
    display: flex;
    justify-content: space-between;
}

#topPage #information .information_txt {
    width: 400px;
}

#topPage #information .information_txt .common_ttl01 {
    display: flex;
    flex-direction: column;
}

#topPage #information .information_txt .information_link a {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

#topPage #information .information_txt .information_link a .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid #246BA1;
    transition: .5s;
    margin-left: 15px;
}

#topPage #information .information_txt .information_link a .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #information .information_txt .information_link a .icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #information .information_txt .information_link a:hover {
    color: #246BA1;
}

#topPage #information .information_txt .information_link a:hover .icon::before {
    left: calc(150% - 8px);
}

#topPage #information .information_txt .information_link a:hover .icon::after {
    left: calc(50% - 8px);
}

#topPage #information .information_list {
    width: 100%;
    max-width: 600px;
    margin-left: 20px;
}

#topPage #information .information_list dl dt {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 20px 0 0 0;
}

#topPage #information .information_list dl dt::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    background: #246BA1;
}

#topPage #information .information_list dl dt .date {
    font-size: 16px;
    color: #246BA1;
}

#topPage #information .information_list dl dt .cat {
    font-size: 14px;
    color: #246BA1;
    border: 1px solid #246ba2;
    border-radius: 1em;
    padding: 0 1em;
    margin-left: 2em;
}

#topPage #information .information_list dl dd {
    padding: 20px 0;
    border-bottom: 1px solid #CCCCCC;
}

#topPage #information .information_list dl dd a {
    font-weight: bold;
}

#topPage #information .object {
    position: absolute;
    z-index: 1;
    left: -120px;
    bottom: 40px;
    width: 172px;
}

@media only screen and (max-width:768px) {

    #topPage #information {
        padding-top: 10vw;
    }

    #topPage #information .information_wrap {
        max-width: 100%;
        margin: auto 5vw;
        padding: 14vw 0;
        border-radius: 3vw;
    }

    #topPage #information .inner {
        max-width: 100%;
        padding: 0 4vw;
    }

    #topPage #information .inner .flex {
        display: block;
    }

    #topPage #information .information_txt {
        width: 100%;
    }

    #topPage #information .information_txt .common_ttl01 {
        display: flex;
        flex-direction: column;
    }

    #topPage #information .information_txt .information_link a {
        font-size: 3.7vw;
    }

    #topPage #information .information_txt .information_link a .icon {
        width: 5vw;
        height: 5vw;
        margin-left: 3vw;
    }

    #topPage #information .information_txt .information_link a .icon::before {
        width: 2vw;
        height: 2vw;
        left: calc(50% - 1vw);
        top: calc(50% - 1vw);
    }

    #topPage #information .information_txt .information_link a .icon::after {
        width: 2vw;
        height: 2vw;
        left: calc(-50% - 1vw);
        top: calc(50% - 1vw);
    }

    #topPage #information .information_txt .information_link a:hover .icon::before {
        left: calc(150% - 1vw);
    }

    #topPage #information .information_txt .information_link a:hover .icon::after {
        left: calc(50% - 1vw);
    }

    #topPage #information .information_list {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
    }

    #topPage #information .information_list dl dt {
        width: 100%;
        padding: 3vw 0 0 0;
    }

    #topPage #information .information_list dl dt::before {
        width: 1.2vw;
        height: 1.2vw;
        margin-right: 1vw;
    }

    #topPage #information .information_list dl dt .date {
        font-size: 3.7vw;
    }

    #topPage #information .information_list dl dt .cat {
        font-size: 3vw;
        line-height: 1.8em;
        border-radius: 1.5em;
        padding: 0 1em;
        margin-left: 1em;
    }

    #topPage #information .information_list dl dd {
        padding: 2vw 0 3vw;
        font-size: 3.7vw;
    }

    #topPage #information .object {
        position: absolute;
        z-index: 1;
        left: auto;
        top: 10vw;
        right: -12vw;
        bottom: auto;
        width: 24vw;
    }

}


/* 日本磁力選鉱について */

#topPage #about {
    background: #F6F6F6;
    padding: 200px 0 120px;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

#topPage #about .object01 {
    width: 740px;
    position: absolute;
    z-index: -1;
    right: -720px;
    top: -100px;
}

#topPage #about .object02 {
    width: 320px;
    position: absolute;
    z-index: -1;
    left: -460px;
    bottom: 190px;
    border-radius: 20px;
}

#topPage #about .object03 {
    width: 160px;
    position: absolute;
    z-index: -2;
    left: -230px;
    top: 40px;
    border-radius: 20px;
}

#topPage #about .object04 {
    width: 84px;
    position: absolute;
    z-index: -2;
    left: 0;
    bottom: 90px;
}

#topPage #about .inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

#topPage #about .about_box {
    width: 48%;
}

#topPage #about .about_box ul {
    max-width: 360px;
    margin-top: 80px;
}

#topPage #about .about_box ul li {
    margin-top: 20px;
}

#topPage #about .about_box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 20px;
    height: calc(100% - 20px);
    background: #fff;
}

#topPage #about .about_box ul li a .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

#topPage #about .about_box ul li a .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #about .about_box ul li a .icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #about .about_box ul li a:hover {
    color: #fff;
    background: #246BA1;
}

#topPage #about .about_box ul li a:hover .icon {
    background: #fff;
}

#topPage #about .about_box ul li a:hover .icon::before {
    left: calc(150% - 8px);
}

#topPage #about .about_box ul li a:hover .icon::after {
    background-image: url(../../assets/img/common/ico_arrow.svg);
    left: calc(50% - 8px);
}


#topPage #about .about_slide {
    width: 54%;
    margin-right: -6%;
    position: relative;

}

#topPage #about .about_slide .slick-dots {
    position: absolute;
    left: 0;
    bottom: -35px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: start;
}

#topPage #about .about_slide .slick-dots li {
    margin: 0 auto;
}

#topPage #about .about_slide .slick-dots li button:before {
    font-size: 12px;
    color: #BCBBBB !important;
    opacity: 1;
}

#topPage #about .about_slide .slick-dots li.slick-active button:before {
    color: #246BA1 !important;
}

@media only screen and (max-width:768px) {
    #topPage #about {
        padding: 20vw 0 20vw;
        width: 100%;
    }

    #topPage #about .common_ttl01 {
        margin-bottom: 116vw;
    }

    #topPage #about .object01 {
        width: 98vw;
        right: -50vw;
        top: 0;
        z-index: -2;
    }

    #topPage #about .object02 {
        display: none;
    }

    #topPage #about .object03 {
        width: 22vw;
        z-index: -1;
        left: auto;
        right: 0;
        top: 0;
        border-radius: 3vw;
    }

    #topPage #about .object04 {
        width: 11vw;
        z-index: 2;
        left: 0;
        top: 57vw;
        bottom: auto;
    }

    #topPage #about .inner {
        max-width: 100%;
        margin: auto;
        padding: 0 5vw;
        display: block;
        position: relative;
    }

    #topPage #about .about_box {
        width: 100%;
    }

    #topPage #about .about_box p {
        font-size: 3.7vw;
    }

    #topPage #about .about_box ul {
        width: 75vw;
        max-width: 100%;
        margin-top: 10vw;
    }

    #topPage #about .about_box ul li {
        margin-top: 3vw;
    }

    #topPage #about .about_box ul li a {
        font-size: 4vw;
        text-decoration: none;
        padding: 4vw;
        height: auto;
        background: #fff;
    }

    #topPage #about .about_box ul li a .icon {
        width: 6.4vw;
        height: 6.4vw;
    }

    #topPage #about .about_box ul li a .icon::before {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #topPage #about .about_box ul li a .icon::after {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #topPage #about .about_box ul li a:hover .icon::before {
        left: calc(150% - 1.6vw);
    }

    #topPage #about .about_box ul li a:hover .icon::after {
        left: calc(50% - 1.6vw);
    }


    #topPage #about .about_slide {
        width: 87vw;
        margin-right: auto;
        position: absolute;
        top: 30vw;
        left: 8vw;

    }

    #topPage #about .about_slide .slick-dots {
        bottom: -8vw;
    }

    #topPage #about .about_slide .slick-dots li {
        width: 3vw;
        margin: auto 1vw;
    }

    #topPage #about .about_slide .slick-dots li button:before {
        font-size: 3vw;
    }
}



/* 日本磁力選鉱について */
#topPage #business {
    background: #fff;
    padding: 110px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

#topPage #business .object {
    width: 600px;
    position: absolute;
    z-index: -1;
    left: -520px;
    top: -300px;
}


#topPage #business .inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    position: relative;
}

#topPage #business .inner .flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#topPage #business .inner .flex .row2 {
    width: 48%;
    margin-bottom: 60px;
}

#topPage #business .inner .flex .row2 a {
    text-decoration: none;
}

#topPage #business .inner .flex .row2 a span {
    display: block;
}

#topPage #business .inner .flex .row2 a .image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 12px;
}

#topPage #business .inner .flex .row2 a .image img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
    display: block;
}

#topPage #business .inner .flex .row2 a:hover .image img {
    transform: scale(1.05);
}

#topPage #business .inner .flex .row2 a .en {
    color: #246BA1;
    font-size: 16px;
    margin-bottom: 5px;
}

#topPage #business .inner .flex .row2 a .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#topPage #business .inner .flex .row2 a .txt {
    font-size: 16px;
}


#topPage #business .inner .flex .row2 a .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: .5s;
    margin-left: 20px;
}

#topPage #business .inner .flex .row2 a .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #business .inner .flex .row2 a .icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #business .inner .flex .row2 a:hover .icon::before {
    left: calc(150% - 8px);
}

#topPage #business .inner .flex .row2 a:hover .icon::after {
    left: calc(50% - 8px);
}

@media only screen and (max-width:768px) {
    #topPage #business {
        padding: 0;
        background: #F6F6F6;
    }

    #topPage #business .object {
        width: 80vw;
        left: -28vw;
        top: -20vw;
    }

    #topPage #business .inner {
        position: relative;
        z-index: -1;
        max-width: 100%;
        padding: 14vw 5vw;
        background: #fff;
        border-radius: 0 20vw 20vw 0;
    }

    #topPage #business .inner .flex {
        width: 100%;
        display: block;
    }

    #topPage #business .inner .flex .row2 {
        width: 100%;
        margin-bottom: 12vw;
    }

    #topPage #business .inner .flex .row2 a .image {
        margin-bottom: 2vw;
        border-radius: 2vw;
    }

    #topPage #business .inner .flex .row2 a .en {
        font-size: 3.7vw;
        margin-bottom: 1vw;
    }

    #topPage #business .inner .flex .row2 a .title {
        font-size: 4.3vw;
        margin-bottom: 3vw;
    }

    #topPage #business .inner .flex .row2 a .txt {
        font-size: 3.7vw;
    }


    #topPage #business .inner .flex .row2 a .icon {
        width: 6.4vw;
        height: 6.4vw;
        margin-left: 3vw;
    }

    #topPage #business .inner .flex .row2 a .icon::before {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #topPage #business .inner .flex .row2 a .icon::after {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(-50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #topPage #business .inner .flex .row2 a:hover .icon::before {
        left: calc(150% - 1.6vw);
    }

    #topPage #business .inner .flex .row2 a:hover .icon::after {
        left: calc(50% - 1.6vw);
    }
}

/* 拠点のご案内 */
#topPage .bg01 {
    background: #F6F6F6;
    position: relative;
    z-index: 1;
}

#topPage #branch {
    padding: 110px 0 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

#topPage #branch .inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    position: relative;
}

#topPage #branch .flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#topPage #branch .flex .branch_box {
    width: 47%;
}

#topPage #branch .flex .branch_box p {
    margin-bottom: 40px;
}

#topPage #branch .flex .branch_box ul {
    max-width: 360px;
    margin-top: 50px;
}

#topPage #branch .flex .branch_box ul li {
    margin-top: 20px;
}

#topPage #branch .flex .branch_box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 20px;
    height: calc(100% - 20px);
    background: #fff;
}

#topPage #branch .flex .branch_box ul li a .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

#topPage #branch .flex .branch_box ul li a .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #branch .flex .branch_box ul li a .icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}

#topPage #branch .flex .branch_box ul li a:hover {
    color: #fff;
    background: #246BA1;
}

#topPage #branch .flex .branch_box ul li a:hover .icon {
    background: #fff;
}

#topPage #branch .flex .branch_box ul li a:hover .icon::before {
    left: calc(150% - 8px);
}

#topPage #branch .flex .branch_box ul li a:hover .icon::after {
    background-image: url(../../assets/img/common/ico_arrow.svg);
    left: calc(50% - 8px);
}

#topPage #branch .loop {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    display: flex;
    animation: textloop 60s linear infinite;
}

#topPage #branch .loop li {
    font-size: 100px;
    line-height: 1em;
    white-space: nowrap;
    color: #D3D5D8;
    margin: auto .2em;
    display: flex;
    align-items: center;
}

#topPage #branch .loop li span {
    font-weight: bold;
    line-height: 1em;
    margin-left: .2em;
}

@keyframes textloop {
    0% {
        translate: 0 0;
    }

    100% {
        translate: -50% 0;
    }
}

#topPage #branch .flex .branch_map {
    width: 50%;
}

@media only screen and (max-width:768px) {

    #topPage #branch {
        padding: 14vw 0 30vw;
        width: 100%;
    }

    #topPage #branch .inner {
        max-width: 100%;
        padding: 0 5vw;
    }

    #topPage #branch .flex {
        width: 100%;
        display: block;
    }

    #topPage #branch .flex .branch_box {
        width: 100%;
    }

    #topPage #branch .flex .branch_box p {
        margin-bottom: 8vw;
    }

    #topPage #branch .flex .branch_box ul {
        max-width: 75vw;
        margin: 6vw auto;
    }

    #topPage #branch .flex .branch_box ul li {
        margin-top: 4vw;
    }

    #topPage #branch .flex .branch_box ul li a {
        font-size: 18px;
        padding: 20px;
        height: calc(100% - 20px);
    }

    #topPage #branch .flex .branch_box ul li a .icon {
        width: 6.4vw;
        height: 6.4vw;
    }

    #topPage #branch .flex .branch_box ul li a .icon::before {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }

    #topPage #branch .flex .branch_box ul li a .icon::after {
        width: 3.2vw;
        height: 3.2vw;
        left: calc(-50% - 1.6vw);
        top: calc(50% - 1.6vw);
    }


    #topPage #branch .flex .branch_box ul li a:hover .icon::before {
        left: calc(150% - 1.6vw);
    }

    #topPage #branch .flex .branch_box ul li a:hover .icon::after {
        left: calc(50% - 1.6vw);
    }

    #topPage #branch .loop {
        bottom: 20vw;
    }

    #topPage #branch .loop li {
        font-size: 13vw;
    }

    #topPage #branch .flex .branch_map {
        width: 100%;
        margin-top: 8vw;
    }

}

/* 採用情報 */
#topPage #recruit {
    margin-top: -20px;
    padding: 110px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    background-image: url(../../assets/img/top/top_recruit_bg_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#topPage #recruit .inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    position: relative;
}

#topPage #recruit .common_ttl01 a {
    color: #fff;
}

#topPage #recruit .common_ttl01 .jp::before {
    background: #fff;
}

#topPage #recruit .common_ttl01 a .icon {
    background-image: linear-gradient(90deg, #246BA2, #31ABE2);
}

#topPage #recruit .common_ttl01 a .icon::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../../assets/img/common/ico_window_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    top: calc(50% - 7px);
    transition: .5s;
}

#topPage #recruit .common_ttl01 a .icon::after {
    display: none;
}

#topPage #recruit p {
    color: #F9A504;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

#topPage #recruit ul {
    display: flex;
    justify-content: space-between;
}

#topPage #recruit ul li {
    width: 48.5%;
}

#topPage #recruit ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    width: auto;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

#topPage #recruit ul li a .en {
    color: #246BA1;
    font-size: 16px;
    margin-left: 20px;
    padding: 12px 0 4px;
}

#topPage #recruit ul li a .icon {
    width: 36px;
    height: 36px;
    background-image: linear-gradient(90deg, #246BA2, #31ABE2);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 18px);
    right: 20px;
}

#topPage #recruit ul li a .icon::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../../assets/img/common/ico_window_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    top: calc(50% - 7px);
    transition: .5s;
}

#topPage #recruit ul li a:hover {
    color: #fff;
    background: #246BA1;
}

#topPage #recruit ul li a:hover .en {
    color: #fff;
}

#topPage #recruit ul li a:hover .icon {
    background: #fff;
}

#topPage #recruit ul li a:hover .icon::before {
    background-image: url(../../assets/img/common/ico_window.svg);
}

@media only screen and (max-width:768px) {

    #topPage #recruit {
        padding: 14vw 0;
        background-image: url(../../assets/img/top/top_recruit_bg_sp.png);
    }

    #topPage #recruit .inner {
        max-width: 100%;
        padding: 0 5vw;
    }


    #topPage #recruit .common_ttl01 a .icon::before {
        content: '';
        width: 2.4vw;
        height: 2.4vw;
        left: calc(50% - 1.2vw);
        top: calc(50% - 1.2vw);
    }

    #topPage #recruit p {
        font-size: 4.6vw;
        margin-bottom: 8vw;
    }

    #topPage #recruit ul {
        display: block;
    }

    #topPage #recruit ul li {
        width: 100%;
        margin-top: 4vw;
    }

    #topPage #recruit ul li a {
        padding: 5vw 3vw;
        font-size: 4vw;
    }

    #topPage #recruit ul li a .en {
        font-size: 3.7vw;
        margin-left: 4vw;
        padding: 1.5vw 0 .5vw;
    }

    #topPage #recruit ul li a .icon {
        width: 6.4vw;
        height: 6.4vw;
        top: calc(50% - 3.2vw);
        right: 3vw;
    }

    #topPage #recruit ul li a .icon::before {
        width: 2.4vw;
        height: 2.4vw;
        left: calc(50% - 1.2vw);
        top: calc(50% - 1.2vw);
    }

}


/* スポーツへの取り組み */
#topPage #baseball {
    padding: 110px 40px;
    position: relative;
    z-index: 1;
    width: 100%;
}

#topPage #baseball .inner {
    max-width: 1400px;
    margin: auto;
    padding: 60px 100px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

#topPage #baseball .baseball_box01 {
    width: 47.5%;
}

#topPage #baseball .baseball_box02 {
    width: 50%;
}

#topPage #baseball .baseball_box01 .common_ttl01 {
    flex-direction: column;
    margin-bottom: 1em;
}

#topPage #baseball .baseball_box01 .common_ttl01 .en {
    padding-top: 0;
}


#topPage #baseball .baseball_box01 .btn {
    max-width: 360px;
    margin-top: 50px;
}

#topPage #baseball .baseball_box01 .btn a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #F6F6F6;
    width: auto;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

#topPage #baseball .baseball_box01 .btn a .en {
    color: #246BA1;
    font-size: 16px;
    margin-left: 20px;
    padding: 12px 0 4px;
}

#topPage #baseball .baseball_box01 .btn a .icon {
    width: 36px;
    height: 36px;
    background-image: linear-gradient(90deg, #246BA2, #31ABE2);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 18px);
    right: 20px;
}

#topPage #baseball .baseball_box01 .btn a .icon::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../../assets/img/common/ico_window_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    top: calc(50% - 7px);
    transition: .5s;
}

#topPage #baseball .baseball_box01 .btn a:hover {
    color: #fff;
    background: #246BA1;
}

#topPage #baseball .baseball_box01 .btn a:hover .en {
    color: #fff;
}

#topPage #baseball .baseball_box01 .btn a:hover .icon {
    background: #fff;
}

#topPage #baseball .baseball_box01 .btn a:hover .icon::before {
    background-image: url(../../assets/img/common/ico_window.svg);
}
@media only screen and (min-width:769px)and (max-width:1400px) {
    #topPage #baseball .baseball_box01 .common_ttl01 .en {
        font-size: 60px;
    }
}
@media only screen and (min-width:769px)and (max-width:1200px) {
    #topPage #baseball {
        padding: 110px 40px;
    }

    #topPage #baseball .inner {
        padding: 60px 40px;
    }

    #topPage #baseball .baseball_box01 .common_ttl01 .en {
        font-size: 54px;
    }
}

@media only screen and (min-width:769px)and (max-width:1000px) {
    #topPage #baseball .inner {
        padding: 60px 30px;
    }
    #topPage #baseball .baseball_box01 {
        width: 57.5%;
    }

    #topPage #baseball .baseball_box02 {
        width: 40%;
    }
    #topPage #baseball .baseball_box01 .common_ttl01 .en {
        font-size: 48px;
    }
}

@media only screen and (max-width:768px) {

    #topPage #baseball {
        padding: 0 5vw 18vw;
    }

    #topPage #baseball .inner {
        max-width: 100%;
        margin: auto;
        padding: 10vw 4vw;
        border-radius: 3vw;
        display: block;
    }

    #topPage #baseball .baseball_box01 {
        width: 100%;
    }

    #topPage #baseball .baseball_box02 {
        width: 100%;
    }

    #topPage #baseball .baseball_box01 .common_ttl01 {
        flex-direction: column;
        margin-bottom: 1em;
    }

    #topPage #baseball .baseball_box01 .common_ttl01 .en {
        padding-top: 0;
    }

    #topPage #baseball .baseball_box01 p {
        font-size: 3.4vw;
    }

    #topPage #baseball .baseball_box01 .btn {
        max-width: 90%;
        margin: 6vw auto 8vw;
    }

    #topPage #baseball .baseball_box01 .btn a {
        padding: 3vw;
        font-size: 4vw;
    }

    #topPage #baseball .baseball_box01 .btn a .en {
        font-size: 3.7vw;
        margin-left: 4vw;
        padding: 1.5vw 0 .5vw;
    }

    #topPage #baseball .baseball_box01 .btn a .icon {
        width: 6.4vw;
        height: 6.4vw;
        top: calc(50% - 3.2vw);
        right: 3vw;
    }

    #topPage #baseball .baseball_box01 .btn a .icon::before {
        width: 2.4vw;
        height: 2.4vw;
        left: calc(50% - 1.2vw);
        top: calc(50% - 1.2vw);
    }

}

/*  ========================
    *********  English version  *********
=============================================  */
.en_page .common_ttl01 .en {
    line-height: 1.5;
}
@media only screen and (min-width:769px) {
    .en_page #main.pages {
        padding-top: 0;
    }
}
.en_page #topPage #branch {
    background: #F6F6F6;
}
.btn_box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 66px;
    margin-top: 80px;
}
.btn_box li {
    max-width: 356px;
    width: 100%;
}
.en_page .btn_normal a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 20px;
    height: calc(100% - 20px);
    background: #fff;
}
.en_page .btn_normal a .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #246BA1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: .5s;
}
.en_page .btn_normal a .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}
.en_page .btn_normal a .icon::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../assets/img/common/ico_arrow_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    left: calc(-50% - 8px);
    top: calc(50% - 8px);
    transition: .5s;
}
.en_page .btn_normal a:hover {
    color: #fff;
    background: #246BA1;
}
.en_page .btn_normal a:hover .icon {
    background: #fff;
}
.en_page .btn_normal a:hover .icon::before {
    left: calc(150% - 8px);
}
.en_page .btn_normal a:hover .icon::after {
    background-image: url(../../assets/img/common/ico_arrow.svg);
    left: calc(50% - 8px);
}