@charset "utf-8";

/* interview_menu********************************************************************** */
.interview_menu {
    margin: 4vw auto 8vw auto;
    width: 78vw;
    max-width: 1500px;
}

.interview_menu ul {
    margin-bottom: 8vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.interview_menu li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 4vw;
}


.interview_menu li .interview_btn_txt {
    background-color: #00a0e9;
    color: white;
    width: 22vw;
    max-width: 420px;
    position: relative;
    height: 100%;
}

.interview_menu li .interview_btn_img {
    width: 16vw;
    max-width: 300px;
    height: 100%;
}

.interview_menu li .interview_btn_img img {
    width: 100%;
    height: 100%;
}

.triangle_gray01 {
    height: 7vw;
    width: 7vw;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    background-color: #c9c5c0;
    position: absolute;
}

.interview_btn_no {
    position: absolute;
    color: #00a0e9;
    top: -4vw;
    left: 0.5vw;
}

.interview_btn_no p {
    font-size: 4vw;
}

.interview_btn_txt_box {
    align-items: center;
}


/* about_technica_lnk********************************************************************** */
.about_technica_lnk {
    width: 78vw;
    max-width: 1500px;
    height: 15vw;
    max-height: 300px;
    overflow: hidden;
    border: #00a0e9 1px solid;
    display: block;
    position: relative;
    z-index: 1;
}

.slide-text {
    position: absolute;
    bottom: 15%;
}

.about_technica_txt {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.triangle_blue {
    position: absolute;
    bottom: -3px;
    right: 0;
}

.triangle_blue img {
    width: 7vw;
}

.about_technica_txt img:first-child {
    width: 16.5vw;
    max-width: 300px;
    display: block;
}

.about_technica_txt img:last-child {
    width: 40vw;
    max-width: 710px;
    display: block;
}

.slide-text {
    display: flex;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.slide-text__item {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 11vw;
    font-weight: 600;
    color: #009fe949;
    opacity: 0.5;

    &:nth-child(odd) {
        animation: MoveLeft 24s -12s infinite linear;
    }

    &:nth-child(even) {
        animation: MoveLeft2 24s infinite linear;
    }
}

@keyframes MoveLeft {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes MoveLeft2 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

/* 個人エリア********************************************************************** */
#interview_inn {
    display: block;
    z-index: 1;
}

/* interview_box01 */
.interview_box01 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 4vw auto 8vw auto;
    width: 78vw;
    max-width: 1500px;
}

.interview_box01 h6 {
    display: block;
    border-bottom: 1px solid #00a0e9;
    color: #00a0e9;
    padding-bottom: 0.6vw;
    margin-bottom: 0.8vw;
}

.interview_box_name {
    background-color: rgba(0, 160, 233, 0.9);
    color: white;
    width: 20vw;
    padding-left: 2.4vw;
    padding-top: 2.6vw;
    padding-bottom: 2.6vw;
    position: absolute;
    bottom: 23px;
    right: -50px;
}

.interview_box_txt {
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.interview_box01_l {
    position: relative;
}

.interview_box01_l img {
    width: 39vw;
}

.interview_no {
    display: block;
    position: absolute;
    color: #00a0e9;
    font-size: 6.4vw;
    top: -6.5vw;
    left: 10px;
}

.triangle_gray02 {
    height: 10vw;
    width: 10vw;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    background-color: #c9c5c0;
    position: absolute;
}

.interview_box01_r {
    width: 35.5vw;
    padding-left: 3vw;
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .interview_box01 {
        flex-direction: column;
    }

    .interview_box_name {
        position: static;
        width: 36vw;
        height: 100%;
        padding-left: 3vw;
    }

    .interview_box_txt h6 {
        margin-top: 4vw;
    }

    .interview_box01_r {
        width: auto;
        padding-left: 0;
        height: 100%;
    }

    .interview_box01_l {
        display: flex;
        align-items: stretch;
        height: 36vw;
    }
}

/* interview_box02 */
.interview_box02 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 4vw auto 4vw auto;
    width: 90vw;
    max-width: 1720px;
}

.interview_box02 h6 {
    display: block;
    border-bottom: 1px solid #00a0e9;
    color: #00a0e9;
    padding-bottom: 0.8vw;
    margin-bottom: 0.8vw;
}

.interview_box02_l {
    width: 35.5vw;
    padding-right: 3vw;
    padding-left: 5vw;
}

.interview_box02_r {}

.interview_box02_r img {
    width: 100%;
    max-width: 50vw;
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .interview_box02 {
        flex-direction: column-reverse;
        margin: 4vw auto 8vw auto;
        width: 78vw;
    }

    .interview_box02_l {
        width: auto;
        padding-right: 0;
        padding-left: 0;
        margin-top: 4vw;
    }

    .interview_box02_r img {
        max-width: none;
    }
}

/* interview_box03 */
.interview_box03 {
    background-color: #f2f2f2;
    padding: 3vw;
    width: 62.5vw;
    max-width: 1200px;
    margin: 4vw auto 8vw auto;
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .interview_box03 {
        width: 78vw;
    }
}

/* interview_box04 */
.interview_box04 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 4vw auto 8vw auto;
    width: 78vw;
    max-width: 1500px;
}

.interview_box04 h6 {
    display: block;
    border-bottom: 1px solid #00a0e9;
    color: #00a0e9;
    padding-bottom: 0.6vw;
    margin-bottom: 0.8vw;
}

.interview_box04_txt {
    width: 36vw;
    max-width: 680px;
}

.interview_box04_txt table td {
    padding-left: 40px;
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .interview_box04 {
        flex-direction: column;
    }

    .interview_box04_txt {
        width: 78vw;
        margin-bottom: 4vw;
    }
}

/* interview_box05 */
.interview_box05 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin: 4vw auto 8vw auto;
    width: 100vw;
    max-width: 1920px;
    height: 100%;
}

.interview_box05 h6 {
    display: block;
    border-bottom: 1px solid white;
    padding-bottom: 0.6vw;
    margin-bottom: 0.8vw;
}

.interview_box05_l {
    width: 50vw;
    max-width: 960px;
}

.interview_box05_l img {
    width: 100%;
    height: 100%;
}

.interview_box05_r {
    background-color: #00a0e9;
    color: white;
    position: relative;
    width: 50vw;
    max-width: 960px;
}

.interview_box05_r img {
    width: 100%;
}

.interview_box05_r_img {
    position: absolute;
    top: 0;
    right: 0;
}

.interview_box05_txt {
    margin: 3vw 2vw auto 2vw;
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .interview_box05 {
        flex-direction: column;
    }

    .interview_box05_l {
        width: 100vw;
    }

    .interview_box05_r {
        width: 100vw;
    }

    .interview_box05_txt {
        margin: 4vw;
    }
}

/* slider */
.interview_slick_slider {
    padding-top: 50px;
    border-top: 1px solid #c9c5c0;
}

.interview_slider {
    width: 94vw;
    max-width: 1920px;
    margin: 4vw auto 8vw auto;
}

.interview_slider a {
    transition: all .3s;
}

.interview_slider a:hover {
    opacity: 0.5;
}

.interview_slider img {
    width: 100%;
    height: auto;
}

.interview_slider .slick-slide {
    margin: 0 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 55%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #00a0e9;
    border-right: 2px solid #00a0e9;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

.slick-dots li {
    display: inline-block;
    margin: 5px 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #ccc;
}

.slick-dots .slick-active button {
    background: #00a0e9;
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .interview_slick_slider {
        padding-bottom: 50px;
    }

    .slick-prev,
    .slick-next {
        border-top: 2px solid #009fe900;
        border-right: 2px solid #009fe900;
    }
}

/* テクニカってどんな会社？ */
.about_technica_ttl {
    position: relative;
    width: 100vw;
    max-width: 1920px;
    overflow: hidden;
}

.about_technica_ttl_txt {
    background-color: #009fe9;
    height: 29vw;
    max-height: 5000px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: -1;
}

.about_technica_ttl_txt img:first-child {
    width: 16.5vw;
    max-width: 300px;
    display: block;
    position: absolute;
    top: 5.2vw;
}

.about_technica_ttl_txt img:last-child {
    width: 40vw;
    max-width: 710px;
    display: block;
}

.slide-text__item_white {
    color: rgba(255, 255, 255, 0.1);
    font-size: 20vw;
}

.about_tecnica_sec {
    width: 100vw;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.about_technica_inn {
    background-color: #f2f2f2;
    padding-top: 150px;
    padding-bottom: 150px;
}

.about_technica_inn img {
    width: 100%;
}

.abpit_q_comp {
    text-align: center;
}

.about_q_no {
    font-size: 7.2em;
    font-weight: 500;
    color: #c9c5c0;
}

.about_q_ttl {
    font-size: 3.6em;
    font-weight: 500;
    color: #00a0e9;
}

.talk_comp {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 2vw 0;
}

.talk_comp_flip {
    flex-direction: row-reverse;
}

.talk_face {
    width: 13.5vw;
    max-width: 260px;
}

.talk_face figure {
    text-align: center;
}

.talk_face figcaption {
    font-size: 1.8vw;
    font-weight: 800;
    color: #999999;
}

.talk_fukidasi {
    width: 44vw;
    max-width: 850px;
    margin-left: 1.5vw;
    margin-right: 0vw;
    position: relative;
    transform: translateY(-1vw);
}

.talk_comp_flip .talk_fukidasi {
    margin-left: 0vw;
    margin-right: 1.5vw;
}

.talk_fukidasi .talk_fukidasi_txt2 {
    text-align: left;
    display: block;
    position: absolute;
    font-size: 1.1vw;
    bottom: 30%;
    left: 5vw;
}

.talk_fukidasi .talk_fukidasi_txt1 {
    text-align: left;
    display: block;
    position: absolute;
    font-size: 1.1vw;
    bottom: 42%;
    left: 5vw;
}

.talk_fukidasi .talk_fukidasi_txt4 {
    text-align: left;
    display: block;
    position: absolute;
    font-size: 1.1vw;
    bottom: 20%;
    left: 5vw;
}

.talk_fukidasi .talk_fukidasi_txt3 {
    text-align: left;
    display: block;
    position: absolute;
    font-size: 1.1vw;
    bottom: 20%;
    left: 5vw;
}

.talk_comp_flip .talk_fukidasi .talk_fukidasi_txt2 {
    left: 3vw;
}

.talk_comp_flip .talk_fukidasi .talk_fukidasi_txt1 {
    left: 3vw;
}

.talk_comp_flip .talk_fukidasi .talk_fukidasi_txt4 {
    left: 3vw;
}

.talk_comp_flip .talk_fukidasi .talk_fukidasi_txt3 {
    left: 3vw;
}

@media screen and (max-width:768px) {
    .about_technica_inn {
        background-color: #f2f2f2;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .about_q_no {
        font-size: 3em;
        font-weight: 500;
        color: #c9c5c0;
    }

    .about_q_ttl {
        font-size: 2em;
        font-weight: 500;
        color: #00a0e9;
        margin-bottom: 20px;
    }

    .talk_face {
        width: 20vw;
    }

    .talk_face figcaption {
        font-size: 2.5vw;
    }

    .talk_fukidasi {
        width: 70vw;
    }

    .talk_fukidasi .talk_fukidasi_txt2 {
        font-size: 1.75vw;
        left: 7vw;
    }

    .talk_fukidasi .talk_fukidasi_txt1 {
        font-size: 1.75vw;
        left: 7vw;
    }

    .talk_fukidasi .talk_fukidasi_txt4 {
        font-size: 1.75vw;
        left: 7vw;
    }

    .talk_fukidasi .talk_fukidasi_txt3 {
        font-size: 1.75vw;
        left: 7vw;
    }

    .talk_comp_flip .talk_fukidasi .talk_fukidasi_txt2 {
        left: 5vw;
    }

    .talk_comp_flip .talk_fukidasi .talk_fukidasi_txt1 {
        left: 5vw;
    }

    .talk_comp_flip .talk_fukidasi .talk_fukidasi_txt4 {
        left: 5vw;
    }

    .talk_comp_flip .talk_fukidasi .talk_fukidasi_txt3 {
        left: 5vw;
    }
}

/* 福利厚生********************************************************************** */
.welfare_sec {
    width: 86.5vw;
    max-width: 1660px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.welfare_sec .box_ttl_txt h7 {
    text-align: left;
    margin-bottom: 4vw;
}

.welfare_sec .box_ttl {
    border-left: 0px solid #c9c5c0;
    border-bottom: 0px solid #c9c5c0;
    padding-left: 60px;
    font-size: max(1.55vw, 30px);
}

.triangle_blue01 {
    height: max(2.6vw, 50px);
    width: max(2.6vw, 50px);
    clip-path: polygon(100% 0, 0 0, 0 100%);
    background-color: #009fe9;
    position: absolute;
}

.welfare_boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.welfare_box {
    background-color: #f2f2f2;
    border: 2px solid #009fe9;
    width: 42vw;
    max-width: 800px;
    margin-bottom: 30px;
    padding-left: 2vw;
    padding-right: 2vw;
}

.welfare_box_ttl {
    color: #009fe9;
    font-size: max(1.55vw, 20px);
    font-weight: bold;
    padding: 2vw;
    border-bottom: 1px solid #009fe9;
    line-height: 1;
}

.welfare_box_inn {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.welfare_box_inn p {
    display: inline-block;
    font-size: max(0.9vw, 17px);
}

.welfare_box_inn .welfare_box_inn_img {
    width: 14.6vw;
    max-width: 280px;
}

.welfare_box_inn .welfare_box_inn_img img {
    width: 14.6vw;
}

@media screen and (max-width:768px) {
    .triangle_blue01 {
        height: 30px;
        width: 30px;
    }

    .welfare_sec .box_ttl {
        padding-left: 30px;
        line-height: 1.5;
        font-size: max(1.8vw, 24px);
    }

    .welfare_boxes {
        flex-direction: column;
    }

    .welfare_box {
        width: 86.5vw;
    }

    .welfare_box_ttl {
        font-size: max(1.1vw, 15px);
    }

    .welfare_box_inn p {
        font-size: max(0.9vw, 12px);
    }
}

/* 募集要項**********************************************************************  */

.guideline_sec {
    width: 78vw;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4.5vw;
}

.guideline_sec h2 {
    font-size: min(1.875vw, 36px);
    color: #00a0e9;
    margin-bottom: 4.5vw;
    margin-top: 10vw;
}

.guideline_inn table {
    width: 78vw;
    max-width: 1500px;
}

.guideline_inn table .access_table {
    width: 60vw;
}

.guideline_inn table,
td,
th {
    font-size: max(1vw, 12px);
    line-height: 1.5;
    font-weight: 400;
}

.guideline_sec .guideline_inn th {
    width: 18vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-left: 1.5vw;
    vertical-align: middle;
    border-top: 1.5px solid #00a0e9;
    color: #00a0e9;
}

.guideline_sec .guideline_inn table .access_table th {
    width: 8vw;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    vertical-align: top;
    border-top: 0px solid #00a0e9;
    color: black;
}

.guideline_sec .guideline_inn table .access_table td {
    width: 52vw;
}

.guideline_sec .guideline_inn tr:last-child th {
    border-bottom: 1.5px solid #00a0e9;
}

.guideline_inn table .access_table tr:last-child th {
    border-bottom: 0px solid #00a0e9;
}

.guideline_sec .guideline_inn td {
    padding: 3vw 2.5vw;
    border-top: 1.5px solid #c9c5c0;
}

.guideline_inn table .access_table td {
    padding: 0px 2.5vw;
    border-top: 0px solid #c9c5c0;
}

.guideline_sec .guideline_inn tr:last-child td {
    border-bottom: 1.5px solid #c9c5c0;
}

.guideline_inn table .access_table tr:last-child td {
    border-bottom: 0px solid #c9c5c0;
}

@media screen and (max-width:768px) {
    .guideline_sec h2 {
        font-size: max(1vw, 12px);
    }

    .guideline_sec {
        width: 90vw;
    }

    .guideline_sec .guideline_inn table {
        width: 90vw;
    }

    .guideline_sec .guideline_inn th {
        width: 26vw;
    }

    .guideline_sec .guideline_inn table .access_table {
        width: 64vw;
    }

    .guideline_sec .guideline_inn table .access_table th {
        width: 16vw;
    }

    .guideline_sec .guideline_inn table .access_table td {
        width: 48vw;
    }
}

.guideline_table ol {
    margin-top: 2vw;
}

.guideline_table ol li {
    margin-left: 1em;
}

.guideline_table ol li span {
    font-weight: 700;
}

/*アコーディオンタイトル*/
.guideline_ttl {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.guideline_ttl::before,
.guideline_ttl::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    background-color: #00a0e9;
    border-radius: 1px;

}

.guideline_ttl::before {
    top: 48%;
    right: 15px;
    transform: rotate(0deg);

}

.guideline_ttl::after {
    top: 48%;
    right: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.guideline_ttl.close::before {
    transform: rotate(45deg);
}

.guideline_ttl.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.guideline_inn {
    display: none;
    /*はじめは非表示*/
}