/*職場紹介-start*/

.section_subtx {
    padding: 0 20px;
    
}

.slidein_title p {
    margin: 50px 0 10px;
    padding-left: 20px;
}

.career_area {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 5%;
    margin-top: -50px;
    margin-bottom: -100px;
}

/*左側*/

.career-contents_left {
    width: 75%;
}

.career_circle--area {
    width: 90%;
    margin-inline: auto;
    position: relative;
}

.career_circle--area::before {
    content: "";
    display: block;
    width: 40%;
    height: 250px;
    background-image: url(../images/rnew/ikkiseisan_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
    z-index: 3;

}

.career_circle {
    width: 90%;
    height: 350px;
    margin: 250px 5%;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    z-index: 2;

}

/* 擬似要素でグラデ背景 */
.career_circle::before {
    content: "";
    position: absolute;
    inset: -80%;
    /* はみ出させて切り取る */
    background: conic-gradient(from -10deg,
            rgba(144, 194, 30, 0.5),
            rgba(240, 147, 53, 0.5),
            rgba(75, 167, 204, 0.5),
            rgba(144, 194, 30, 0.5));
    animation: rotateGradient 8s linear infinite;
    z-index: -1;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.career_circle::after {
    content: "";
    position: absolute;
    display: block;
    background: #f9f9f9;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 40px;
}

/*矢印*/

.arrow {
    width: 30px;
    height: 30px;
    background-image: url(../images/rnew/circle-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;

}

.arrow.right {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow.down {
    top: 50%;
    right: -8px;
    transform: rotate(90deg);
}

.arrow.left {
    bottom: -8px;
    left: 50%;
    transform: rotate(180deg);
}

.arrow.up {
    top: 50%;
    left: -8px;
    transform: rotate(-90deg);
}


/*コンテンツ*/
.works_item--common {
    max-width: 100%;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    z-index: 4;
}

.works_item--common.upper {
    top: -130px;
}

.works_item--common.middle {
    display: block;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    right: -100px;
}

.works_item--common.lower {
    display: flex;
    bottom: -130px;
}

.works_item {
    width: auto;
}

.works_item.middle-margin {
    margin-bottom: 10px;
}

.works_item p,
.works_item--common p{
padding-left: 0px;
}

.btn_works {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 0px 3px 3px rgba(51, 51, 51, 0.3);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.5;
    padding-top: 30px;
    position: relative;
    transform: scale(1, 1);
    transform-origin: center;
    transition: transform .2s ease-in-out;
}

.btn_works.en {
    width: 130px;
    height: 125px;
    border-radius: 10px;
    box-shadow: 0px 3px 3px rgba(51, 51, 51, 0.3);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.5;
    padding-top: 30px;
    position: relative;
    transform: scale(1, 1);
    transform-origin: center;
    transition: transform .2s ease-in-out;
}

.btn_works:hover {
    transform: scale(1.1, 1.1);
}

.btn_works.upper {
    background-color: #90C21E;
}

.btn_works.middle {
    background-color: #F09335;
}

.btn_works.lower {
    background-color: #4BA7CC;
}

.works_tx-frame {
    width: 120px;
    height: 30px;
    background-color: #fff;
    text-align: center;
        display: flex;
    justify-content: center;
    align-items: center;
}

.works_tx-frame.en {
    width: 135px;
    height: 47px;
    background-color: #fff;
    text-align: center;
        display: flex;
    justify-content: center;
    align-items: center;
}

.works_tx-frame.en2 {
    width: 190px;
    height: 47px;
    background-color: #fff;
    text-align: center;
        display: flex;
    justify-content: center;
    align-items: center;
}

.works_tx-frame.upper {
    border: 1px #90C21E solid;
    color: #90C21E;
    margin-top: 35px;
}

.works_tx-frame.middle {
    border: 1px #F09335 solid;
    color: #F09335;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 170px;
    text-align: center;
}

.works_tx-frame.lower {
    border: 1px #4BA7CC solid;
    color: #4BA7CC;
    margin-bottom: 35px;
}

.works_tx-frame.lower {
    margin-bottom: 35px;
    text-align: center;
}

.btn_works.empty {
    width: 120px;
    height: 120px;
    background-color: transparent;
    box-shadow: none;

    user-select: none;
    touch-action: none;
    pointer-events: none;
}


.btn_works.empty::after {
    display: none;
}


.btn_works::after {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.btn_works.work01::after {
    top: 10px;
    background-image: url(../images/rnew/btn-icon01.svg);
}

.btn_works.work02::after {
    top: 5px;
    width: 60px;
    height: 60px;
    background-image: url(../images/rnew/btn-icon02.svg);
}

.btn_works.work03::after {
    background-image: url(../images/rnew/btn-icon03.svg);
}

.btn_works.work04::after {
    background-image: url(../images/rnew/btn-icon04.svg);
}

.btn_works.work05::after {
    background-image: url(../images/rnew/btn-icon05.svg);
}

.btn_works.work06::after {
    width: 45px;
    height: 45px;
    background-image: url(../images/rnew/btn-icon06.svg);
}

.btn_works.work07::after {
    background-image: url(../images/rnew/btn-icon07.svg);
}

.btn_works.work08::after {
    width: 45px;
    height: 38px;
    background-image: url(../images/rnew/btn-icon08.svg);
}

.btn_works.work09::after {
    width: 35px;
    height: 35px;
    background-image: url(../images/rnew/btn-icon09.svg);
}

.btn_works.work10::after {
    width: 45px;
    height: 38px;
    background-image: url(../images/rnew/btn-icon10.svg);
}

.btn_works.work11::after {
    background-image: url(../images/rnew/btn-icon11.svg);
}




.btn_down-arrow {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/rnew/chevron-down--white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);

}


/*right*/
.career-contents_right {
    width: 15%;
}

.works_item--common.right {
    display: block;
    position: relative;
    border: 1px #3278C2 solid;
    border-radius: 10px;
    padding: 40px 0 20px;
}

.btn_works.right {
    margin-left: 50%;
    transform: translateX(-50%) scale(1, 1);
    background-color: #4BA7CC;
    margin-bottom: 20px;
    text-align: center;
}

.btn_works.right.en {
    margin-left: 50%;
    transform: translateX(-50%) scale(1, 1);
    background-color: #4BA7CC;
    margin-bottom: 20px;
    text-align: center;
    width: 135px;
    height: 130px;
}

.btn_works.right:hover {
    transform: translateX(-50%) scale(1.1, 1.1);
}

.customer-icon {
    width: 65px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    text-align: center;
}

.customer-icon img {
    width: 100%;
    height: auto;
}

.customer-icon p {
    color: #3278C2;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    padding-left: 0px;
}

/*ポップアップ表示*/
.new-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}


.new-modal-content {
    display: block;
    position: fixed;
    top: 20%;
    left: 50%;
    max-width: 1000px;
    width: 80vw;
    max-height: 600px;
    height: 80vh;
    background-color: #fff;
    z-index: 100;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.3);
    transform: translate(-50%, 20px);
    transition: transform 0.3s ease-in-out;
}


.new-modal-content h5 {
    margin: 30px 0 50px 50px;
    display: flex;
    align-items: center;
    font-size: 2rem;
    padding-left: 0px;
    padding-top: 0px;
    border-left: transparent;
}

.new-modal-content.tab-content h5 {
    margin: 30px 0 30px 50px;
}

.new-modal.show {
    opacity: 1;
    visibility: visible;
}

.new-modal.show .new-modal-content {
    transform: translate(-50%, 0);
}

.modal-content_title {
    font-size: 0.9rem;
    padding: 3px 15px;
    display: inline-block;
    margin-left: 20px;
    line-height: 1;
}

.modal-content_title.sub01 {
    border: 2px #90C21E solid;
    color: #90C21E;
}


.modal-content_title.sub02 {
    border: 2px #F09335 solid;
    color: #F09335;
}

.modal-content_title.sub03 {
    border: 2px #4BA7CC solid;
    color: #4BA7CC;
}


.modal-content_flex {
    display: flex;
    padding: 0 50px;
    justify-content: space-between;
    gap: 5%;
    position: relative;
    z-index: 1;
}

.modal-content_flex::after {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 0px;
    left: 50px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;

}

.modal-content_flex-tab::after {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 0px;
    left: 50px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;

}

.modal-content_flex-tab2::after {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 0px;
    left: 50px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;

}


.modal-content_flex-tab2.work01::after {
    background-image: url(../images/rnew/popup_icon01.svg);
}

.modal-content_flex-tab2.work01a::after {
    background-image: url(../images/rnew/popup_icon01.svg);
    top: 95px;
}

.modal-content_flex.work02::after {
    width: 350px;
    height: 350px;
    background-image: url(../images/rnew/popup_icon02.svg);
}

.modal-content_flex.work03::after {
    background-image: url(../images/rnew/popup_icon03.svg);
}

.modal-content_flex.work04::after {
    background-image: url(../images/rnew/popup_icon04.png);
}

.modal-content_flex.work04a::after {
    background-image: url(../images/rnew/popup_icon04.svg);
}

.modal-content_flex.work05::after {
    background-image: url(../images/rnew/popup_icon05.svg);
}

.modal-content_flex.work05a::after {
    background-image: url(../images/rnew/popup_icon05.svg);
}

.modal-content_flex.work06::after {
    width: 300px;
    height: 300px;
    background-image: url(../images/rnew/popup_icon06.svg);
}

.modal-content_flex.work07::after {
    background-image: url(../images/rnew/popup_icon07.svg);
    top: 95px;
}

.modal-content_flex.work08::after {
    width: 320px;
    height: 320px;
    background-image: url(../images/rnew/popup_icon08.svg);
    top: 95px;
}

.modal-content_flex.work09::after {
    background-image: url(../images/rnew/popup_icon09.svg);
    top: 95px;
}

.modal-content_flex.work10::after {
    width: 320px;
    height: 320px;
    background-image: url(../images/rnew/popup_icon10.svg);
    top: 95px;
}

.modal-content_flex.work11::after {
    background-image: url(../images/rnew/popup_icon11.svg);
    top: 95px;
}


.modal-content_tx,
.modal-content_img {
    position: relative;
    z-index: 1;
}

.modal-content_tx {
    width: 60%;
    margin-top: 0px;
}

.modal-content_tx_2 {
    width: 100%;
    margin-top: 0px;
    padding-top:10px;
}

.modal-content_tx a {
    display: block;
    width: 240px;
    height: 50px;
    border: 1px #3278C2 solid;
    background-color: #fff;
    color: #3278C2;
    position: relative;
    margin-left: auto;
    margin-top: 0px;
    margin-right: 10px;
    line-height: 50px;
    padding-left: 20px;
    cursor: pointer;
    font-size: 1rem;

    transition: background-color 0.3s, color 0.3s;
}

.modal-content_tx_2 a {
    display: block;
    width: 200px;
    height: 50px;
    border: 1px #3278C2 solid;
    background-color: #fff;
    color: #3278C2;
    position: relative;
    margin-left: auto;
    margin-top: 0px;
    margin-right: 10px;
    line-height: 50px;
    padding-left: 20px;
    cursor: pointer;
    font-size: 1rem;

    transition: background-color 0.3s, color 0.3s;
}

.modal-content_tx a.en {
    display: block;
    width: 240px;
    height: 50px;
    border: 1px #3278C2 solid;
    background-color: #fff;
    color: #3278C2;
    position: relative;
    margin-left: auto;
    margin-right: 10px;
    line-height: 50px;
    padding-left: 20px;
    cursor: pointer;
    font-size: 1rem;

    transition: background-color 0.3s, color 0.3s;
}

.modal-content_tx a:hover {
    background-color: #3278C2;
    color: #fff;
}

.modal-content_tx_2 a:hover {
    background-color: #3278C2;
    color: #fff;
}

.modal-content_tx a::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../images/rnew/arrow-right--blue.svg);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto;

    transition: transform 0.3s ease-in-out;
}

.modal-content_tx_2 a::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../images/rnew/arrow-right--blue.svg);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto;

    transition: transform 0.3s ease-in-out;
}

.modal-content_tx a:hover::after {
    transform: translate(5px, -50%);
    background-image: url(../images/rnew/arrow-right--white.svg);
}

.modal-content_tx_2 a:hover::after {
    transform: translate(5px, -50%);
    background-image: url(../images/rnew/arrow-right--white.svg);
}

.modal-content_img {
    width: 35%;
    min-width: 200px;
    display: block;

}

.modal-content_img01,
.modal-content_img02 {
    width: 100%;
    overflow: hidden;
}

.modal-content_img02 {
    margin-top: 10px;
}

.modal-content_img01 img,
.modal-content_img02 img {
    display: block;
    width: 80%;
    object-fit: cover;
}



.modal-close_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #3278C2;
    border-radius: 8px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.modal-close_btn::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/rnew/open-close02.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto;
}

.modal-close_btn:hover {
    transform: scale(1.1);
}


.tab-container-radio input[type="radio"] {
    display: none;
}

.modal-content.tab-content h5 {
    margin: 30px 0 0px 50px;
}

.modal-content_flex-tab {
    display: grid;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}


.tab-labels {
    display: flex;
    background-color: transparent;
    width: 60%;
    max-width: 600px;
    border-radius: 10px 10px 0 0;
    margin-top: 0px;

}

.tab-label {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transform: scale(1, 1);
    transform-origin: right;
    border-radius: 10px 10px 0 0;
    /*background-color: rgba(240, 147, 53, 0.5);*/
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    user-select: none;
    margin-bottom: 0px;
}

/*.tab-label:hover {
    background-color: rgba(240, 147, 53, 0.8);
}*/

.tab-container-radio input[id="tab1-radio-modal01"]:checked~.tab-labels label[for="tab1-radio-modal01"], 
.tab-container-radio input[id="tab2-radio-modal01"]:checked~.tab-labels label[for="tab2-radio-modal01"] {
    color: #fff;
    padding: 10px 0;
    background-color: #90C21E;
}


.tab-container-radio input[id="tab1-radio-modal04"]:checked~.tab-labels label[for="tab1-radio-modal04"],
.tab-container-radio input[id="tab2-radio-modal04"]:checked~.tab-labels label[for="tab2-radio-modal04"],
.tab-container-radio input[id="tab3-radio-modal04"]:checked~.tab-labels label[for="tab3-radio-modal04"],
.tab-container-radio input[id="tab4-radio-modal04"]:checked~.tab-labels label[for="tab4-radio-modal04"],
.tab-container-radio input[id="tab1-radio-modal05"]:checked~.tab-labels label[for="tab1-radio-modal05"],
.tab-container-radio input[id="tab2-radio-modal05"]:checked~.tab-labels label[for="tab2-radio-modal05"], 
.tab-container-radio input[id="tab3-radio-modal05"]:checked~.tab-labels label[for="tab3-radio-modal05"] {
    color: #fff;
    padding: 10px 0;
    background-color: #F09335;
}


#tab1-radio-modal04:hover ~ .tab-labels label[for="tab1-radio-modal04"],
#tab2-radio-modal04:hover ~ .tab-labels label[for="tab2-radio-modal04"],
#tab3-radio-modal04:hover ~ .tab-labels label[for="tab3-radio-modal04"],
#tab4-radio-modal04:hover ~ .tab-labels label[for="tab4-radio-modal04"],
#tab1-radio-modal04:hover ~ .tab-labels label[for="tab1-radio-modal04"],
#tab2-radio-modal04:hover ~ .tab-labels label[for="tab2-radio-modal04"],
#tab3-radio-modal04:hover ~ .tab-labels label[for="tab3-radio-modal04"] {
    background-color: rgba(240, 147, 53, 0.8);
}

#tab1-radio-modal01:hover ~ .tab-labels label[for="tab1-radio-modal01"],
#tab2-radio-modal01:hover ~ .tab-labels label[for="tab2-radio-modal01"] {
    background-color: rgba(144, 194, 30, 0.8);
}

#tab1-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab1-radio-modal04"],
#tab2-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab2-radio-modal04"],
#tab3-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab3-radio-modal04"],
#tab4-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab4-radio-modal04"],
#tab1-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab1-radio-modal04"],
#tab2-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab2-radio-modal04"],
#tab3-radio-modal04:not(:checked):not(:hover) ~ .tab-labels label[for="tab3-radio-modal04"] {
    background-color: rgba(240, 147, 53, 0.5);
}

#tab1-radio-modal01:not(:checked):not(:hover) ~ .tab-labels label[for="tab1-radio-modal01"],
#tab2-radio-modal01:not(:checked):not(:hover) ~ .tab-labels label[for="tab2-radio-modal01"] {
    background-color: rgba(144, 194, 30, 0.5);
}
 



.tab-content-radio {
    display: none;
    padding: 0px;
    border-top: #F09335 2px solid;

}

.tab-content-radio.pop-left{
    display: none;
    padding: 0px;
    border-top: #90C21E 2px solid;

}

.tab-content-radio h6 {
    margin: 0;
    font-size: 1.5rem;
    margin: 7px 0;
}

.tab-container-radio input[id="tab1-radio-modal01"]:checked~.tab-contents-radio #content1-radio-modal01,
.tab-container-radio input[id="tab2-radio-modal01"]:checked~.tab-contents-radio #content2-radio-modal01,
.tab-container-radio input[id="tab1-radio-modal04"]:checked~.tab-contents-radio #content1-radio-modal04,
.tab-container-radio input[id="tab2-radio-modal04"]:checked~.tab-contents-radio #content2-radio-modal04,
.tab-container-radio input[id="tab3-radio-modal04"]:checked~.tab-contents-radio #content3-radio-modal04,
.tab-container-radio input[id="tab4-radio-modal04"]:checked~.tab-contents-radio #content4-radio-modal04,
.tab-container-radio input[id="tab1-radio-modal05"]:checked~.tab-contents-radio #content1-radio-modal05,
.tab-container-radio input[id="tab2-radio-modal05"]:checked~.tab-contents-radio #content2-radio-modal05,
.tab-container-radio input[id="tab3-radio-modal05"]:checked~.tab-contents-radio #content3-radio-modal05 {
    display: block;
}

.tab-contents_flex {
    display: flex;
    justify-content: space-between;
}

.modal-content_img.tab_img {
    width: 30%;
}





.br_wdh_600 {
    display: contents;
}


/*職場紹介-fin*/

@media screen and (max-width: 900px) {

    .career_area {
        max-width: 1200px;
        margin-inline: auto;
        display: block;
        align-items: center;
        width: 100%;
        gap: 5%;
        margin-top: -70px;
        margin-bottom: -50px;
    }

    .slidein_title p {
    margin: 30px 0 10px;
    padding-left: 0;
}

.customer-icon p{
    margin-top: 10px;
}
    .career-contents_left {
        width: 80%;
    }

    .career_circle--area {
        width: 90%;
    }

    .career_circle {
        width: 100%;
        margin: 250px 5% 150px;
    }


    .works_item--common {
        max-width: 120%;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }

    .works_item--common.upper {
        top: -110px;
    }

    .works_item--common.middle {
        right: -140px;
    }



    .works_item--common.lower {
        bottom: -110px;
    }

    .customer-icon {
        width: 55px;
        left: -40px;

    }

    .btn_works {
        width: 100px;
        height: 100px;
    }


    .btn_works.right {
        margin-bottom: 0px;
    }

    .works_tx-frame {
        width: 100px;
        height: 30px;
    }

    .works_tx-frame.middle {
        right: 150px;
    }

    .career-contents_right {
        width: 90%;
        margin-inline: auto;
        margin-bottom: 50px;
    }

    .works_item--common.right {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        padding: 20px;
    }

    .btn_works.work09::after {
        width: 30px;
        height: 30px;
    }

    .btn_down-arrow {
        bottom: 0px;
    }

    .new-modal-content {
        width: 90vw;
        top: 50%;
        overflow: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .new-modal-content .main_navi::-webkit-scrollbar {
        display: none;
    }


    .new-modal.show .new-modal-content {
        transform: translate(-50%, -50%);
    }



}


@media screen and (max-width: 600px) {

    .career-contents_left {
        width: 100%;
    }

    .career_circle--area {
        width: 95%;
    }

    .career_circle {
        width: 80%;
        height: 430px;
        margin-left: 40px;
    }

    .works_item--common {
        max-width: 90%;
        gap: 8px;
    }


    .works_item--common.middle {
        top: 15%;
        transform: translateY(0%);
        right: -15px;
    }


    .btn_works::after {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .btn_works.work02::after {
        top: 3px;
        width: 50px;
        height: 50px;
    }

    .btn_works.work09::after {
        width: 25px;
        height: 25px;
    }

    .btn_works.work10::after {
        width: 40px;
        height: 40px;
    }

    .section_subtx {
        margin: 20px 0 10px;
        padding: 0 20px;
    }

    .career_circle {
        grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
    }

    .works_item--common {
        max-width: 110%;
        gap: 5px;
    }


    .customer-icon {
        left: -20px;

    }


    .btn_works {
        width: 95px;
        height: 95px;
    }

    .works_tx-frame {
        width: 95px;
        height: 30px;
    }

    .works_tx-frame.middle {
        top: auto;
        bottom: -50px;
        right: 0;
        transform: none;
    }

    .works_item--common.right {
        grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));

    }

    .empty {
        display: contents;
    }

    .new-modal-content {
        padding: 20px;
    }

    .modal-content_flex,
    .tab-contents_flex {
        display: grid;
        gap: 5%;
        z-index: 1;
        padding: 0 10px;
    }

    .modal-content_tx {
        width: 100%;
        margin-top: 0px;
    }

    .modal-content_tx a {
        width: 285px;
        height: 40px;
        line-height: 40px;
    }


    .new-modal-content h5 {
        margin: 30px 0 30px 10px;
        display: block;
    }

    .new-modal-content.tab-content h5 {
        margin: 30px 0 30px 10px;
        display: block;
    }

    .modal-content_title {
        margin-left: 0px;
    }

    .modal-content_img {
        width: 80%;
        margin-inline: auto;
        margin-bottom: 50px;
    }

    .modal-content_img02 {
        margin-top: 10px;
    }

    .modal-content_flex::after {
        top: 100px;
        bottom: auto;
        left: 20px;
        width: 200px;
        height: 200px;
    }

    .modal-content_flex-tab::after {
        top: 150px;
        bottom: auto;
        left: 20px;
        width: 200px;
        height: 200px;

    }

    .modal-content_flex.work02::after,
    .modal-content_flex.work06::after,
    .modal-content_flex.work08::after,
    .modal-content_flex.work10::after {
        width: 300px;
        height: 300px;
        top: -20px;
        bottom: auto;
        left: 0px;
    }

    .modal-content_flex-tab {
        display: grid;
        padding: 0px;
        position: relative;
        z-index: 1;
    }

    .tab-labels {
        width: 100%;
    }

    .modal-close_btn {
        width: 30px;
        height: 30px;
        top: 20px;
        right: 20px;
    }

    .br_wdh_600 {
        display: block;
    }

    
}