@charset "UTF-8";

/* 共通 */

:root {
    --primary-white: #fafafa;
    --primary-black: #333333;
    --primary-lightgreen: #4CAF50;
    --primary-green: #2E7D32;
    --primary-orange: #FFA726;
    --primary-subBlack: #666666;
    --section-padding: 60px 5.3%;
    scroll-padding: 190px;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    min-height: 0;
    min-width: 0;
}

body {
    font-family:
        "Noto Sans JP",
        "Noto Serif JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #333333);
    background-color: var(--primary-white, #fafafa);
    line-height: 1.5;
}

.font-size-logo {
    font-size: clamp(3.6rem, 2.966rem + 2.7vw, 5.4rem);
}

.font-size-title {
    font-size: clamp(2.4rem, 1.977rem + 1.8vw, 3.6rem);
}

.font-size-button {
    font-size: clamp(1.6rem, 1.318rem + 1.2vw, 2.4rem);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

.anchor {
    display: inline-block;
}

.SpBr {
    display: inline-block;
}

.TABBr {
    display: none;
}

.pcBr {
    display: none;
}

/* 共通 pc */

@media screen and (min-width: 768px) {
    .SpBr {
        display: none;
    }

    .TABBr {
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) {
    .TABBr {
        display: none;
    }

    .pcBr {
        display: inline-block;
    }

    :root {
        --section-padding: 90px 5.3%;
    }
}

/* 求人情報 */

.section--information {
    padding: var(--section-padding);
}

.information__title {
    position: relative;
    display: flex;
    gap: 1%;
    align-items: center;
}

.information__mainTitle {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
    position: relative;
}

.information__titleImg {
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../images/futaba.png);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(7234%) hue-rotate(338deg) brightness(102%) contrast(104%);
}

.information__subTitle {
    color: var(--primary-orange, #FFA726);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
}

.recruit__table {
    margin: 50px auto 0;
    width: 100%;
}

.table__content {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
}

.table__content:first-of-type {
    margin: 0 auto;
}

.table__name {
    background-color: var(--primary-lightgreen, #4CAF50);
    color: var(--primary-white, #fafafa);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
    padding: 10px;
    display: inline-block;
    width: 100%;
}

.table__txt {
    color: var(--primary-black, #333333);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin: 20px 0px;
}

.tabList {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 50px;
}

.tab {
    display: block;
    width: 50%;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.tab label {
    display: block;
    text-align: center;
    background-color: var(--primary-white, #fff);
    color: var(--primary-lightgreen, #4CAF50);
    padding: 20px;
    position: relative;
}

.tabRadio {
    display: none;
}

.tabList label {
    background: var(--primary-white, #fafafa);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tabList label::after {
    position: absolute;
    background-color: var(--primary-lightgreen, #4CAF50);
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.tabList label:hover {
    color: var(--primary-white, #fafafa);
}

.tabList label:hover::after {
    transform: scale(1, 1);
}

.tabContentList {
    display: block;
}

.tabContentList .tabContent {
    display: none;
    font-size: 1.6rem;
    line-height: 2;
    text-align: center;
    color: var(--primary-white);
}

#tab_1:checked~.tabContentList #content_1,
#tab_2:checked~.tabContentList #content_2 {
    display: block;
    animation: panel-show .9s ease-in-out forwards;
}

@keyframes panel-show {
    from {
        transition: 0.8s ease-in-out;
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1.0;
    }
}

#tab_1:checked~.tabList .tab #tab_label_1,
#tab_2:checked~.tabList .tab #tab_label_2 {
    background-color: var(--primary-lightgreen, #4CAF50);
    color: var(--primary-white, #fafafa);
    font-weight: 700;
}

#tab_1:checked~.tabList .tab #tab_label_1:hover,
#tab_2:checked~.tabList .tab #tab_label_2:hover {
    cursor: auto;
    opacity: 1;
}

/* 求人情報 pc */

@media screen and (min-width:1024px) {

    .recruit__table {
        margin: 75px auto 0;
    }

    .table__content {
        flex-direction: row;
        align-items: center;
        padding: 0;
        border: solid var(--primary-black, #333333);
        border-width: 1px 1px 0px 1px;
    }

    .table__content:last-of-type {
        border-width: 1px;
    }

    .table__name {
        width: 30%;
        padding: 15px;
        height: -webkit-fill-available;
        border-right: 1px solid var(--primary-black, #333333);
    }

    .table__txt {
        display: inline-block;
        margin-top: 0;
        width: 70%;
        padding: 15px;
        margin: 0;
    }

    .table__mainTitle {
        margin-left: 15px;
    }

    .table__subTitle {
        margin-left: 15px;
    }

    .table__titleImg {
        width: 40px;
        height: auto;
    }
}

/* 協力会社 */

.section--partner {
    padding: var(--section-padding);
}

.partner__title {
    position: relative;
    display: flex;
    gap: 1%;
    align-items: center;
}

.partner__mainTitle {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
    position: relative;
}

.partner__titleImg {
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../images/futaba.png);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(7234%) hue-rotate(338deg) brightness(102%) contrast(104%);
}

.partner__subTitle {
    color: var(--primary-orange, #FFA726);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
}

.partner__content {
    margin-top: 50px;
}

.partnerImg img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    clip-path: inset(0 100% 0 0);
    display: inline-block;
    transition: 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

.partnerImg img.is-animated {
    clip-path: inset(0);
}

.partner__txt {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 30px;
}

/* 協力会社募集  pc */

@media screen and (min-width:1024px) {
    .partner__content {
        display: flex;
        gap: 5%;
        margin-top: 75px;
        align-items: center;
    }

    .partnerImg {
        width: 47.5%;
    }

    .partnerImg img {
        height: 100%;
    }

    .partner__detail {
        width: 47.5%;
    }

    .partner__txt {
        margin-top: 0px;
    }

    .partner__mainTitle {
        margin-left: 15px;
    }

    .partner__subTitle {
        margin-left: 15px;
    }

    .partner__titleImg {
        width: 40px;
        height: auto;
    }
}

/* 会社の強み */

.section--strength {
    padding: var(--section-padding);
}

.strength__mainTitle {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    text-align: center;
}

.strength__subTitle {
    color: var(--primary-orange, #FFA726);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.orange {
    color: var(--primary-orange, #FFA726);
}

.strength__content {
    margin-top: 75px;
}

.strength__item {
    margin: 50px auto 0;
    padding: 50px 20px;
    position: relative;
    max-width: 360px;
    background-color: rgba(76, 175, 80, 0.3);
}

.strengthImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.strengthImg img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.strength__point {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
}

.strength__txt {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    margin-top: 50px;
    font-size: 1.6rem;
}

/* 会社の強み　pc */

@media screen and (min-width:1024px) {

    .strength__content {
        display: flex;
        gap: 2%;
    }

    .strength__item {
        width: 32%;
        position: static;
        left: 0;
        transform: none;
        margin-top: 0px;
        max-width: 480px;
    }

    .strength__title {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 110px;
    }

    .strength__title::before {
        position: absolute;
        content: "";
        width: 100px;
        height: 3px;
        background-color: var(--primary-orange, #FFA726);
        margin: 0px 4px 4px;
        top: 60px;
        left: 0;
    }

    .strength__title::after {
        position: absolute;
        content: "";
        width: 100px;
        height: 3px;
        background-color: var(--primary-orange, #FFA726);
        margin: 0px 4px 4px;
        top: 60px;
        right: 0;
    }

    .strength__title::before {
        transform: rotate(45deg);
    }

    .strength__title::after {
        transform: rotate(-45deg);
    }

    .strength__mainTitle {
        text-align: center;
    }

    .strength__subTitle {
        text-align: center;
    }
}

/* 1日の流れ */

.section--day {
    padding: var(--section-padding);
}

.day__title {
    position: relative;
    display: flex;
    gap: 1%;
    align-items: center;
}

.day__mainTitle {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
    position: relative;
}

.day__titleImg {
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../images/futaba.png);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(7234%) hue-rotate(338deg) brightness(102%) contrast(104%);
}

.day__subTitle {
    color: var(--primary-orange, #FFA726);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
}

.day__content {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5%;
}

.day__main {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    border: solid 1px var(--primary-lightgreen, #4CAF50);
    border-radius: 20px;
}

.day__item {
    position: relative;
    margin-top: 30px;
    display: flex;
    gap: 5%;
}

.day__item:first-of-type {
    margin-top: 0px;
}

.day__content li+li::before {
    content: '';
    display: block;
    width: auto;
    height: 24px;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: -26px;
    left: 42%;
    transform: translateX(-42%);
    background: url(../images/flowArrow.png) no-repeat 50% 50%;
    background-size: cover;
}

.day__time {
    width: 40%;
    color: var(--primary-black, #333333);
    text-align: right;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
}

.day__txt {
    color: var(--primary-black, #333333);
    text-align: left;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    width: 47.5%;
}

@media screen and (min-width:1024px) {

    .day__content {
        margin-top: 75px;
        flex-direction: row;
    }

    .day__main {
        width: 47.5%;
        padding: 30px;
    }

    .day__time {
        width: 40%;
    }

    .day__content li+li::before {
        left: 42%;
        transform: translateX(-42%);
    }

    .dayImg {
        width: 47.5%;
    }

    .dayImg img {
        object-fit: contain;
        width: 100%;
        height: 400px;
    }

    .day__mainTitle {
        margin-left: 15px;
    }

    .day__subTitle {
        margin-left: 15px;
    }

    .day__titleImg {
        width: 40px;
        height: auto;
    }
}

/* 入社後の流れ */

.section--career {
    padding: var(--section-padding);
}

.career__title {
    position: relative;
    display: flex;
    align-items: center;
}

.career__mainTitle {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
    position: relative;
}

.career__titleImg {
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../images/futaba.png);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(7234%) hue-rotate(338deg) brightness(102%) contrast(104%);
}

.career__subTitle {
    color: var(--primary-orange, #FFA726);
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 10px;
}

.career__content {
    margin-top: 75px;
    position: relative;
}

.career__item {
    margin: 70px auto 0;
    position: relative;
    border: 1px solid var(--primary-black, #333333);
    width: 100%;
    max-width: 480px;
}

.careerImg {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.career__detail {
    margin-top: 50px;
}

.career__name {
    color: var(--primary-white, #fafafa);
    text-align: center;
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    padding: 10px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.first {
    background-color: #6CEF71;
}

.second {
    background-color: var(--primary-lightgreen, #4CAF50);
}

.third {
    background-color: var(--primary-green, #2E7D32);
}

.career__txt {
    color: var(--primary-black, #333333);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    padding: 20px;
    text-align: left;
}

.career__content li+li::before {
    content: '';
    display: block;
    width: auto;
    height: 24px;
    aspect-ratio: 1/1;
    position: absolute;
    top: -47px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/flowArrow.png) no-repeat 50% 50%;
    background-size: cover;
}

/* 入社後の流れ pc */

@media screen and (min-width:1024px) {
    .career__content {
        display: flex;
        gap: 5%;
    }

    .career__item {
        margin: 0 auto;
        position: relative;
        border: 1px solid var(--primary-black, #333333);
        max-width: none;
    }

    .career__name {
        padding: 15px;
        position: static;
        left: 0;
        transform: none;
    }

    .career__txt {
        text-align: left;
        padding: 15px;
    }

    .career__content li+li::before {
        left: -13%;
        top: 50%;
        transform: rotate(-90deg) translateX(13%);
    }

    .career__mainTitle {
        margin-left: 15px;
    }

    .career__subTitle {
        margin-left: 15px;
    }

    .career__titleImg {
        width: 40px;
        height: auto;
    }
}