@charset "utf-8";
.btn::before {
    border-radius: 50px;
}

#footer .sec_btn .list_btn{
    width: 345px;
}
#footer .sec_btn .list_btn li, #footer .sec_btn .list_btn a {
    width: 345px;
    height: 80px;
    border-radius: 50px;
}
#footer .sec_btn .list_btn a {
    padding-left: 0;
    line-height: 80px;
}
#footer .sec_btn .list_btn a:after {
    display: none;
}

@media screen and (max-width: 767px) {
    #header {
        box-shadow: 0 0 5px rgba(0,0,0,.2);
    }
    .header_logo h1 a {
        display: flex;
        align-items: center;
    }
    .header_logo h1 img {
        width: 120px;
    }
    #footer .sec_btn .list_btn{
        width: 90%;
    }
    #footer .sec_btn .list_btn li, #footer .sec_btn .list_btn a {
        width: 100%;
    }
}

#sec_sns {
	padding-bottom: 20px;
}

.sns {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sns li {
	margin-right: 12px;
    margin-bottom: 0px;
    width: 60px;
}

.sns li:last-child {
    margin-right: 0!important;
}

@media screen and (max-width: 767px) {
.sns li {
	margin-right: 0px;
    margin-bottom: 0px;
    width: 13%;
}

}

/* ------------------------------
    page_title
------------------------------ */

.page_title {
    background-image: url('/recruit/assets/img/careers_jobs/page_title_pc.jpg');
}
.page_title .roboto {
    font-size: 5.5rem;
    font-style: inherit;
}
.leading_txt {
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 10px 0 40px;
}
.page_title .leading_btn {
    width: 195px;
    height: 50px;
    text-align: center;
    margin: 0 auto;
}
.page_title .leading_btn a {
    display: block;
    font-size: 1.4rem;
    line-height: 50px;;
    border-radius: 50px;
}

@media screen and (max-width: 767px) {
    .page_title .roboto {
        font-size: 2.5rem;
    }
    .leading_txt {
        font-size: 1.3rem;
        margin: 10px 0 10px;
    }
    .page_title .leading_btn {
        width: 120px;
        height: 30px;
        margin: 0 auto;
    }
    .page_title .leading_btn a {
        line-height: 30px;
        font-size: 1.2rem;
    }
}

/* ------------------------------
    entry
------------------------------ */

.entry {
    margin: 40px 0 60px;
}
.entry .btn_arrow .btn {
    width: 380px;
}

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

    .entry {
        margin: 5% 0 10%;
    }
    .entry .btn_arrow {
        width: 70vw;
    }
    .entry .btn_arrow .btn {
        width: 100%;
    }
}

/* ------------------------------
    sec_flex
------------------------------ */
.sec_flex{
    justify-content: space-between;
    flex-wrap: wrap;
}
.sec_flex .item{
    position: relative;
    overflow: hidden;
    width:calc(33.3333333% - 34px / 3);
    height: 0;
    padding-top: 20.85%;
    margin-bottom: 53px;
}
.sec_flex .item .item_bg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.sec_flex .item .item_bg::after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all .3s ease-out;
    overflow: hidden;
}
.sec_flex .item:hover .item_bg::after{
    transform: scale(1.3);
}
.sec_flex a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.sec_flex a:before{
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #323C46;
    opacity: 0.4;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease-in-out;
}
.sec_flex a:hover:before,
.sec_flex a:focus:before{
    opacity: 0;
}
.sec_flex .item h3,h4{
    line-height: 1;
    font-size: 2rem;
    z-index: 3;
    width: 100%;
    text-align: center;
}
.sec_flex .item h3{
    margin-bottom: 30px;
    color: #323C46;
}
.sec_flex .item h4{
    color: #fff;
}
.sec_flex .item h4 span.small {
    display: block;
    font-size: 1.3rem;
    font-style: normal;
    line-height: 1.6;
}
.sec_container {
    width: 85.2%;
    margin: 0 auto;
}
.fadein{
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.fadein.is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


@media screen and (max-width: 767px) {
    .sec_container {
        width: 100%;
    }
    .sec_flex {
        padding: 0 10px;
    }
    .sec_flex .item h3,
    .sec_flex .item h4{
        font-size: 2.0rem;
        line-height: 1.2;
    }
    .sec_flex .item {
        width:calc(50% - 10px / 2);
        padding: 25% 0 20%;
        margin-bottom: 10px;
    }
}

/* ------------------------------
    sec_topbtn
------------------------------ */
.sec_topbtn{
    margin-top: 30px;
}
/*.sec_topbtn .item .item_bg::after{
    background:#0052A4;
}*/

@media screen and (max-width: 767px) {
    ._topbtn{
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

/* ------------------------------
    topbtn_sec_flex
------------------------------ */
.sec_topbtn .sec_flex{
    justify-content: space-between;
    flex-wrap: wrap;
}
.sec_topbtn .sec_flex .item{
    position: relative;
    overflow: hidden;
    width:calc(49.6% - 10px / 2);
    height: 0;
    padding-top: 7%;
	margin-bottom: 0px;
	/*border-radius: 50px;*/
}

@media screen and (min-width: 1081px) {
.sec_topbtn .sec_flex{
    justify-content: flex-end;
    flex-wrap: wrap;
    gap:2%;
    max-width:902px;
    margin:0 auto;
    }

.sec_topbtn .sec_flex .item{
    padding-top: 65px;
    width:49%;
    }
}

.sec_topbtn .sec_flex .item .item_bg {
    width: 100%;
    height: 100%;
    position: relative;
	overflow: hidden;
	background:#0052a4;
}
/*.sec_topbtn .sec_flex .item .item_bg::after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all .3s ease-out;
    overflow: hidden;
}
.sec_topbtn .sec_flex .item:hover .item_bg::after{
    transform: scale(1.3);
}*/
.sec_topbtn .sec_flex a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
	left: 0;
}
.sec_topbtn .sec_flex a:before{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.sec_topbtn .sec_flex .item h3,.sec_topbtn .sec_flex .item h4{
    line-height: 1;
    font-size: 1.4rem!important;
    z-index: 3;
    width: 100%;
    text-align: center;
}
.sec_topbtn .sec_flex .item h3{
    margin-bottom: 30px;
    color: #323C46;
}
.sec_topbtn .sec_flex .item h4{
    color: #fff;
}
.sec_topbtn .sec_flex .item h4 span.small {
    display: block;
    font-size: 1.3rem;
    font-style: normal;
    line-height: 1.6;
}
.sec_topbtn .sec_container {
    width: 85.2%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
.sec_topbtn .sec_flex .item{
    width:calc(50% - 10px / 2);
    height: 0;
	margin-bottom: 0px;
	padding:10% 0 0;
	}
}

/* ------------------------------
    sec_introduction
------------------------------ */
.sec_introduction{
    margin-top: 53px;
}
.vision.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec01.jpg);
}
.member.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec02.jpg);
}
.business.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec03.jpg);
}
.culture.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec04.jpg);
}
.benefits.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec05.jpg);
}
.about.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec06.jpg);
}
.csr.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_sec07.jpg);
}

@media screen and (max-width: 767px) {
    .sec_introduction{
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

/* ------------------------------
    sec_recruitment
------------------------------ */
.sec_recruitment .sec_flex .item{
    position: relative;
    overflow: hidden;
    width:calc(25% - 39px / 4);
    margin-bottom: 0;
    padding-top: 16%;
}

.engineer.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_small_sec01.jpg);
}
.analyst .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_small_sec02.jpg);
}
.disabilities.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_small_sec03.jpg);
}
.parttime.item .item_bg::after{
    background-image: url(/recruit/assets/img/careers_jobs/bg_small_sec04.jpg);
}

@media screen and (max-width: 767px) {
    .sec_recruitment .sec_flex .item{
        width:calc(50% - 10px / 2);
        padding: 17% 0;
        margin-bottom: 10px;
    }
}

/* ------------------------------
    footer
------------------------------ */
#footer .inner {
    border-top: none;
    background-color: #0A52A4;
}
#footer .sec_btn {
    padding: 53px 0 100px;
}
#footer .box_ft p, .box_ft a {
    color: #fff;
}
#footer .txt_copy {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .pagetop {
        bottom: 43vw;
    }
    #footer .inner {
        width: 100%;
        margin: 0;
    }
    #footer .sec_btn {
        padding: 7% 0 30%;
    }
}