*------------------------------------------------------------
common
------------------------------------------------------------*
body {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
}

#jobs-content {
  font-size: 13px;
  font-weight: 500;
  color: red;
  overflow: hidden;
  background: #fff;
  position: relative;
}

#jobs-content * {
  box-sizing: border-box;
}

#jobs-content a {
  transition: opacity .3s;
}

#jobs-content a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#jobs-content a:hover {
  text-decoration: none;
}

#jobs-content a:focus-visible {
  outline: none;
}

#jobs-content img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#jobs-content .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#jobs-content .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#jobs-content .pc-br {
  display: none;
}

#jobs-content .sp-br {
  display: inline;
}

#jobs-content .inner {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) {

  #jobs-content .sp-br {
    display: none;
  }

  #jobs-content .pc-br {
    display: inline;
  }

}

.spacer {
    width: 100%;
}

.spacer--lg {
    height: 222px;
    background: #fff;
}


/* =========================
   SKILLED WORKER HERO
========================= */

.skilled-worker {
    width: 100%;
    overflow: hidden;
}

.skilled-worker__inner {
    display: flex;
}

/* LEFT AREA */
.skilled-worker__left {
    width: 37.5%;
    color: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
        90deg,
        #3576B7 0%,
        #70D6E5 160%
    );
}


.skilled-worker__title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: clamp(36px, 5vw, 100px);
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-left: 90px;
}

.skilled-worker__sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0;
    padding-left: 91px;
}

/* RIGHT IMAGE */
.skilled-worker__right {
    width: 62.5%;
    position: relative;
}

.skilled-worker__right::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: radial-gradient(
        45% 45% at 0% 0%,
        rgba(49, 107, 180, 0.7) 0%,
        rgba(49, 107, 180, 0.0) 100%
    );

    z-index: 1;
}

.skilled-worker__right::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: radial-gradient(
        45% 45% at 100% 100%,
        rgba(0, 167, 174, 0.6) 0%,
        rgba(0, 167, 174, 0.0) 100%
    );

    z-index: 1;
}



.skilled-worker__right picture,
.skilled-worker__right img {
    width: 100%;
    height: 100%;
    display: block;
}

.skilled-worker__right img {
    object-fit: cover;
}



/* =========================
   SKILLED WORKER SECTION
========================= */

.skilled-worker-section {
    background: #fff;
    padding: 80px 20px 205px;
}

.skilled-worker-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* TITLE */
.skilled-worker-section__title-wrap {
    position: relative;
    margin-bottom: 100px;
}

.skilled-worker-section__bg {
    position: absolute;
    top: -50.3%;
    left: 25%;
    transform: rotate(-9.6deg);
    font-family: "adobe-handwriting-ernie", sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #00A7AE;
    letter-spacing: 3.2px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.1;
}

.skilled-worker-section__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    position: relative;
    font-size: 36px;
    color: #316BB4;
    letter-spacing: 0.2em;
    margin-top: 6px;
    padding-left: 9px;
}

/* LIST */
.skilled-worker-section__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.skilled-worker-section__list li {
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 44px;
    padding-right: 61px;
    transition: opacity 0.3s ease;
}

/*.skilled-worker-section__list li:hover {*/
/*    opacity: 0.7;*/
/*}*/


/* Default state */
.skilled-worker-section__list li {
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Hover effect ONLY on devices with real hover (PC, laptop) */
@media (hover: hover) and (pointer: fine) {
    .skilled-worker-section__list li:hover {
        opacity: 0.7;
    }
}

/* Touch devices: force reset opacity */
@media (hover: none) and (pointer: coarse) {
    .skilled-worker-section__list li:hover {
        opacity: 1;
    }
}



.skilled-worker-section__list li::after {
    content: '';
    display: block;
    height: 32px;
    width: 32px;
    background-image: url("../images/jobs/skilled-worker/arrow_down.svg");
    position: absolute !important;
    top: 6px;
    right: 10px;
    transition: transform 0.3s ease;
}

.skilled-worker-section__list li:hover::after {
    transform: translateY(4px);
}

.skilled-worker-section__list li::before,
.skilled-worker-section__list li::after {
    pointer-events: none;
}



.skilled-worker-section__list a {
    font-family: "Noto Sans JP", sans-serif;
    color: #316BB4;
    font-size: 20px;
    font-weight: 700;
}

.skilled-worker-section__list a:hover {
    text-decoration: underline;
}


.skilled-worker-factory {
    background: #F3F8FB;
    padding: 77px 20px 120px;
}

/* =========================
   FACTORY INTRO
========================= */

.factory-intro {
    max-width: 1200px;
    margin: 0 auto 105px;
    position: relative;
}


.skilled-worker-factory_2 .factory-intro {
    margin: 0 auto 87px;
}


.factory-intro::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 200vw;
    height: 81%;
    background: #fff;
    z-index: 0;
}

.spacer--lg_3 {
    height: 261px;
}

.skilled-worker-factory_3 {
    padding: 15px 20px 120px;
}

.skilled-worker-factory_3 .factory-intro__text {
    padding: 64px 48px;
}

.skilled-worker-factory_4 {
    padding: 58px 20px 120px;
}
.skilled-worker-factory_4 .factory-intro__text {
    padding: 61px 48px;
}

.skilled-worker-factory_5 {
    padding: 58px 20px 120px;
}
.skilled-worker-factory_5 .factory-intro__text {
    padding: 41px 48px;
}

.skilled-worker-factory_6 {
    padding: 58px 20px 120px;
}
.skilled-worker-factory_6 .factory-intro__text {
    padding: 57px 48px;
}

/* IMAGE OVERLAY */
.factory-intro__image {
    position: absolute;
    top: 29%;
    right: 0;
    transform: translateY(-50%);
    width: 75%;
}


.skilled-worker-factory_2 .factory-intro__image {
    top: 24%;
}

.skilled-worker-factory_2 .factory-intro__text {
    top: -18px;
    padding: 61px 50px;
}

/* IMAGE */
.factory-intro__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* TEXT OVERLAY */
.factory-intro__text {
    position: relative;
    left: 0;
    top: 65%;
    width: 590px;
    height: 390px;
    background: linear-gradient(90deg, #3475B7, #45A2C3);
    color: #fff;
    padding: 41px 50px;
    z-index: 2;
    /*box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);*/
}

/* TEXT STYLE */
.factory-intro__lead {
    font-family: "ten-mincho-text", serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.factory-intro__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.factory-intro__desc {
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1px;
}



/* =========================
   STAFF VOICE (MATCH IMAGE)
========================= */

.staff-voice-wrap {

}

.staff-voice {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ===== CONTENT = BASE ===== */

.staff-voice__content {
    background: #fff;
    padding: 56px 56px 35px 65px;
    position: relative;
    z-index: 1;
    max-width: 1030px;
    margin-left: auto;
}

/* ===== IMAGE OVERLAY ===== */

.staff-voice__image {
    position: absolute;
    top: -40px;
    left: 0;
    width: 590px;
    z-index: 2;
}

.staff-voice__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== HEAD ===== */

.staff-voice__intro {
    max-width: 538px;
    margin-left: auto;
    margin-bottom: 32px;
    padding-left: 43px;
    padding-top: 35px;
}

.staff-voice__qa {
    padding-top: 73px;
}
.staff-voice__head {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 4px;
}

.staff-voice__title {
    font-size: 36px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 1.8px;
    /* Gradient text */
    background: linear-gradient(90deg, #1A5BAC 0%, #019DA3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.staff-voice__en {
    font-family: "adobe-handwriting-ernie", sans-serif;
    font-size: 45px;
    font-weight: 400;
    transform: rotate(-9.6deg);
    color: #00A7AE;
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.2;
    padding-left: 30px;
    position: relative;
    top: -22px;
}

/* ===== META ===== */

.staff-voice__name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #1C2C43;
    margin-bottom: 9px;
}

.staff-voice__meta {
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1C2C43;
    margin-bottom: 36px;
}

/* ===== QA ===== */

.staff-voice__qa h4 {
    font-size: 24px;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 700;
    color: #00A7AE;
    margin: 0 0 6px;
    line-height: 1.6;
}

.staff-voice__qa p {
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #1C2C43;
    margin-bottom: 46px;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 767px) {

    /* HERO WRAP */
    .skilled-worker__inner {
        position: relative;
        display: block;
    }

    /* IMAGE */
    .skilled-worker__right {
        width: 100%;
        height: auto;
        position: relative;
    }

    .skilled-worker__right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* TẮT radial PC trên mobile */
    .skilled-worker__right::before,
    .skilled-worker__right::after {
    }

    .skilled-worker__right::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(45% 45% at 100% 34%, rgba(0, 167, 174, 0.6) 0%, rgba(0, 167, 174, 0.0) 36%);
        z-index: 1;
        bottom: -185px;
    }

    .staff-voice__en {
        top: -11px;
        font-size: 23px;
        padding-left: 0;
        letter-spacing: 2.2px;
    }
    .staff-voice__head {
        margin-bottom: 8px;
    }
    .staff-voice__qa {
        padding-top: 20px;
        padding-left: 3px;
        padding-right: 3px;
    }
    .staff-voice__meta {
        margin-bottom: 15px;
    }
    .staff-voice__meta {
        font-size: 15px;
    }

    .staff-voice__name {
        font-size: 15px;
        margin-bottom: 7px;
    }
    .staff-voice__qa h4 {
        font-size: 17px;
    }
    .staff-voice__qa p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    /* TEXT BANNER */
    .skilled-worker__left {
        position: absolute;
        bottom: -60px;
        left: 0;
        width: 100%;
        padding: 20px 20px 16px;
        background: linear-gradient(
            90deg,
            #3576B7 0%,
            #70D6E5 100%
        );
        z-index: 2;
    }

    .factory-intro__lead {
        font-size: 18px;
        letter-spacing: 0.6px;
        margin-bottom: 5px;
    }

    .factory-intro__title {
        font-size: 21px !important;
    }

    /* TITLE */
    .skilled-worker__title {
        font-size: 35px;
        line-height: 1.05;
        letter-spacing: 1.5px;
        padding-left: 0;
        position: absolute;
        top: -50px;
    }

    .text_fn {
        padding-left: 10px;
    }

    /* SUB */
    .skilled-worker__sub {
        font-size: 16px;
        padding-left: 0;
        margin: 0;
    }

    /* Factory Intro */
    .factory-intro__image {
        position: static;
        transform: none;
        width: 100%;
        /*margin-top: 20px;*/
    }

    .factory-intro__text {
        width: 100%;
        padding-top: 29px !important;
        padding-bottom: 44px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        height: auto;
    }

    .skilled-worker-factory_3 .factory-intro__text {
        padding-bottom: 32px !important;
    }

    /* Staff Voice */
    .staff-voice {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .staff-voice__image {
        position: relative;
        width: 100%;
        padding-right: 65px;
        margin-bottom: -25px;
        z-index: 9999;
        top: auto;
    }

    .skilled-worker-factory_2 .staff-voice__image {
        padding-right: 0;
        padding-left: 63px;
    }

    .skilled-worker-factory_4 .staff-voice__image {
        padding-right: 0;
        padding-left: 70px;
    }

    .skilled-worker-factory_6 .staff-voice__image {
        padding-right: 0;
        padding-left: 70px;
    }

    .staff-voice__content {
        padding: 24px 12px;
        margin: 0 12px;
        padding-bottom: 1px;
    }

    .staff-voice__intro {
        margin-left: 0;
        max-width: 100%;
        padding-left: 3px;
        padding-top: 30px;
        margin-bottom: 10px;
    }
    .staff-voice__title {
        font-size: 21px;
    }
    .skilled-worker-section {
        padding: 21px 16px 16px;
        padding-bottom: 55px;
    }

    .skilled-worker-section__bg {
        font-size: 35px;
        top: -12px;
        left: 11%;
        letter-spacing: 0.2px;
    }

    .skilled-worker-section__title {
        font-size: 21px;
        letter-spacing: 2.3px;
        padding-left: 2px;
    }

    .skilled-worker-section__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 46px;
        justify-items: start;
        padding-left: 7px;
    }

    .skilled-worker-section__list a {
        font-size: 15px;
    }
    .skilled-worker-section__list li::after {
        content: '';
        display: block;
        height: 27px;
        width: 29px;
        background-image: url(../images/jobs/skilled-worker/arrow_down_sp.svg);
        position: absolute !important;
        top: -2px;
        right: -30px;
        background-size: 100%;
    }

    .skilled-worker-section__list li {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .skilled-worker-section__title-wrap {
        margin-bottom: 38px;
        margin-top: 74px;
    }

    .factory-intro::before {
        display: none;
    }

    .skilled-worker-factory {
        background: #F3F8FB;
        padding: 20px 0;
        padding-top: 0;
        padding-bottom: 65px;
    }

    .skilled-worker-factory_4 {
        padding-bottom: 58px;
    }

    .factory-intro {
        margin-bottom: 41px;
    }
    .spacer--lg {
        height: 80px;
        display: none;
    }

    .factory-intro__desc {
        font-size: 15px;
    }
    .skilled-worker-factory_2 .factory-intro__text {
        top: 0;
        padding: 61px 50px;
        padding-bottom: 35px !important;
    }
    .skilled-worker-factory_2 .factory-intro__lead {
        margin-bottom: 0;
    }
    .skilled-worker-factory_2 .factory-intro {
        margin: 0 auto 46px;
    }

}

@media screen and (max-width: 767px) {

}


@media (min-width: 768px) and (max-width: 1240px) {
    .skilled-worker-section__list li {
        padding-right: 35px;
    }

    .skilled-worker-section__list li::after {
        right: -7px;
    }
    .skilled-worker-section__list {
        justify-content: center;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .skilled-worker__title {
        padding-left: 40px;
        font-size: 60px;
        margin-bottom: 7px;
    }
    .skilled-worker__sub {
        padding-left: 40px;
        font-size: 18px;
    }

    .skilled-worker-section__list li {
        font-size: 14px;
        letter-spacing: 1px;
        position: relative;
        padding-left: 35px;
        padding-right: 50px;
    }
    .skilled-worker-section__list {
        justify-content: center;
    }
}





