@charset "UTF-8";

/* 共通 */

:root {
    --primary-white: #fff;
    --primary-black: #333;
    --primary-green: #68A346;
    --primary-orange: #F4A876;
    --primary-yellow: #FAF966;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

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

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

a {
    /* text-decoration: none;
    color: var(--primary-white); */
    display: inline-block;
}

.SpBr {
    display: inline-block;
}

.TABBr {
    display: inline-block;
}

.pcBr {
    display: none;
}

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

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

    .pcBr {
        display: inline-block;
    }
}

/* ヘッダー */

.article__header {
    padding: 100px 0 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background-image: url(../images/mainImg.jpg);
    background-size: cover;
    background-position: top;
    filter: brightness(1.1);
}

.header__home {
    color: var(--primary-green);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 1);
}

.header__home:hover {
    transition: all 0.2s;
}

.header__arrow {
    width: 7px;
    height: 7px;
    align-self: center;
    filter: brightness(0) saturate(100%) invert(17%) sepia(4%) saturate(26%) hue-rotate(47deg) brightness(98%) contrast(91%);
}

.header__content {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 1);
}

/* header pc */
@media screen and (min-width:1024px) {

    .article__header {
        padding: 220px 0 60px;
    }

    .header__home {
        font-size: 2.7rem;
    }

    .header__arrow {
        width: 10px;
        height: 10px;
    }

    .header__content {
        font-size: 2.4rem;
    }
}

/* 採用情報 */

.section--information {
    padding: 0 5.6%;
    gap: 50px;
    position: relative;
}

.information__title {
    display: inline-block;
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
}

.information__title::after {
    display: inline-block;
    content: 'Recruit';
    color: rgba(250, 249, 102, 0.8);
    text-align: center;
    font-family: Lato;
    font-size: 7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


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

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

.tab label {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    background-color: var(--primary-white, #fff);
    color: var(--primary-green, #68A346);
    padding: 10px;
    position: relative;
}

.tabRadio {
    display: none;
}

.tabList label {
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tabList label::after {
    position: absolute;
    background-color: var(--primary-green);
    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, #fff);
}

.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,
#tab_3:checked~.tabContentList #content_3,
#tab_4:checked~.tabContentList #content_4 {
    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,
#tab_3:checked~.tabList .tab #tab_label_3,
#tab_4:checked~.tabList .tab #tab_label_4 {
    background-color: var(--primary-green, #68A346);
    color: var(--primary-white, #fff);
    font-weight: bold;
}

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

.information__subTitle {
    display: inline-block;
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px 0;
}

.information__table {
    margin: 0 auto;
    width: 100%;
}

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

.table__name {
    background-color: var(--primary-green);
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-black);
    padding: 10px 2.6%;
}

.table__txt {
    color: var(--primary-black);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-black);
    padding: 20px 2.3%;
}

/* 採用情報 pc */

@media screen and (min-width:1024px) {
    .tab label {
        padding: 30px;
        font-size: 2rem;
    }

    .tab {
        width: 25%;
    }

    .section--information {
        padding: 0 5%;
    }

    .information__title {
        margin-top: 100px;
        font-size: 3rem;
    }

    .information__subTitle {
        padding: 70px;
        font-size: 3rem;
    }

    .information__table {
        margin: 0 auto;
    }

    .table__content {
        flex-direction: row;
        justify-content: center;
    }

    .table__name {
        width: 25%;
    }

    .table__longName {
        width: 25%;
        height: 110px;
    }

    .table__txt,
    .table__longTxt {
        width: 75%;
    }
}

/* 当社の魅力 */

.section--charm {
    padding: 70px 5.3% 0;
}

.charm__title {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.charm__title::after {
    content: 'charm';
    color: rgba(250, 249, 102, 0.8);
    text-align: center;
    font-family: Lato;
    font-size: 7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: -1;
    top: -35px;
    bottom: 0;
    right: 0;
    left: 0;
}

.charm__item {
    margin-top: 70px;
}

.charmImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    /* left: 50%;
    transform: translateX(-50%);
    border-radius: 50%; */
    transition: all 10s;
}

.charmImg:hover {
    transform: scale(1.2);
}

.charmImg__hover {
    width: 53.3%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.charm__name {
    color: var(--primary-green, #68A346);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 50px;
}

.charm__txt {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    /* 200% */
    margin-top: 30px;
}

/*　当社の魅力 pc */

@media screen and (min-width:1024px) {
    .section--charm {
        padding: 150px 3.5% 0;
    }

    .charm__content {
        display: flex;
        flex-direction: column;
        gap: 8%;
        justify-content: center;
        align-content: center;
        margin-top: 0px;
    }

    .charmImg {
        width: 100%;
        aspect-ratio: 1/1;
    }

    .charmImg__hover {
        width: 33%;
        aspect-ratio: 1/1;
        position: static;
        left: 0%;
        transform: none;
    }

    .charm__item {
        margin-top: 100px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8%;
    }

    .charm__title {
        font-size: 3rem;
    }

    .charm__title::after {
        top: -25px;
    }

    .charm__subTitle {
        padding-top: 0px;
        text-align: left;
        font-size: 3rem;
    }

    .charm__detail {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .charm__explain {
        margin-top: 70px;
    }

    .charm__name {
        text-align: left;
        font-size: 3rem;
        margin-top: 0px;
    }

    .charm__txt {
        text-align: left;
        margin-top: 50px;
    }
}

/* 入社後の流れ */

.section--flow {
    padding: 70px 5.3% 0;
}

.flow__title {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.flow__title::after {
    content: 'Career';
    color: rgba(250, 249, 102, 0.8);
    text-align: center;
    font-family: Lato;
    font-size: 7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    z-index: -1;
    top: -35px;
    bottom: 0;
    right: 0;
    left: 0;
}

.flow__item {
    margin-top: 70px;
    position: relative;
}

.flow__content li+li:after {
    content: '';
    display: block;
    position: absolute;
    top: -53px;
    /*矢印画像の高さと配置を考慮して設定*/
    width: 100%;
    height: 24px;
    background: url(../images/arrow02.png) no-repeat 50% 50%;
}

.flow__subTitle {
    color: var(--primary-green, #68A346);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 50px;
}

.flowImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    transition: all 10s;
}

.flowImg:hover {
    transform: scale(1.2);
}

.flowImg__hover {
    width: 53.3%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.flow__name {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 50px;
}

.flow__txt {
    color: var(--primary-black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    margin-top: 30px;
}

/* 入社後の流れ pc */

@media screen and (min-width:1024px) {
    .section--flow {
        padding: 150px 3.5% 0;
    }

    .flow__content {
        display: flex;
        flex-direction: column;
        gap: 8%;
        justify-content: center;
        align-content: center;
        margin-top: 0px;
    }

    .flow__content li+li:after {
        content: '';
        display: block;
        /*矢印画像の高さと配置を考慮して設定*/
        width: 100%;
        height: 36px;
        top: -85px;
        background: url(../images/arrow02.png) no-repeat 50% 50%;
    }

    .flowImg {
        width: 100%;
        aspect-ratio: 1/1;
    }

    .flowImg__hover {
        width: 33%;
        aspect-ratio: 1/1;
        position: static;
        left: 0%;
        transform: none;
    }

    .flow__item {
        margin-top: 150px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8%;
    }

    .flow__title {
        font-size: 3rem;
    }

    .flow__title::after {
        top: -25px;
    }

    .flow__subTitle {
        padding-top: 0px;
        text-align: left;
        font-size: 3rem;
    }

    .flow__detail {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .flow__explain {
        margin-top: 70px;
    }

    .flow__name {
        text-align: left;
        font-size: 3rem;
        margin-top: 0px;
    }

    .flow__txt {
        text-align: left;
        margin-top: 50px;
    }
}