@charset "UTF-8";
html{
    font-size : 62.5%;
    scroll-behavior: smooth;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    background-color: #2A60AC;
}
img{
    max-width: 100%;
}
dt{
    font-weight: 400;
}
th{
    font-weight: 400;
}
.btn{
    transition: 0.2s;
}
.btn:hover{
    transition: 0.2s;
    transform: scale(1.1);
}

.notPc{
    display: none;
}

.SPtype{
    display: none;
}

section{
    padding: 80px 0 100px;
}

.section__title__box{
    border: 1px solid #FFF;
    display: flex;
    align-items: flex-end;
    gap: 17px;
    padding: 13px 19px 12px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.section__title{
    font-family: Akshar;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
}

.section__title__sub{
    font-size: 1.5rem;
    font-weight: 600;
}

@media screen and (max-width:1439px) {
    .section__title__box{
        width: 90%;
    }
    
    .section__title{
        font-size: 3rem;
    }
    
    .section__title__sub{
        font-size: 1.4rem;
    }
}
@media screen and (max-width:768px) {
    section{
        padding: 40px 0 60px;
    }
}

/* common
=============================================== */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    background-color: black;
}

.header__title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.site__logo{
    width: auto;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1000;
}

.site__logo img{
    width: auto;
    height: 100%;
}

.site__logo__txt{
    font-size: 3.5rem;
    font-weight: 700;
}

.nav{
    display: flex;
    align-items: flex-start;

    position: fixed;
    top: 20px;
    right: 10px;
    width: 450px;
    height: 400px;
    background-color: rgba(50,50,50,0.95);
    z-index: 600;

    transform: translateX(120%);
    opacity: 0;
    transition: 0.5s;
}

/* active */
.nav.active{
    transform: translateX(0);
    opacity: 1;
    transition: 0.5s;
}

.nav__list{
    display: flex;
    width: 100%;
    margin: 90px 5% 0 5%;
    opacity: 0;
    transition: 0.5s;
    gap: 20px;
    flex-direction: column;
}

/* active */
.nav__list.active{
    opacity: 1;
    transition: 0.5s;
}

.menu__txt{
    font-family: Akshar;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.menu__txt__jp{
    font-size: 2rem;
}

.header__toyu_e{
    font-size: 2.2rem;
    margin-top: 35px;
}

.bottom-line::after{
    content: '';
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 100%;
    height: 1px;
    background-color: white;
}

.last-line::after{
    content: '';
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100%;
    height: 1px;
    background-color: white;
}

.nav__btn{
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1000;
}

.nav__txt{
    font-size: 2rem;
    transition: 0.5s;
}

.nav__hamburger{
    width: 80px;
    height: 20px;
    position: relative;
}

.nav__hamburger::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: 0.5s;
}

.nav__hamburger::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: 0.5s;
}

/* active */
.nav__hamburger.active::after{
    transform: rotate(170deg)
    translateY(9.5px);
    transition: 0.5s;
}

/* active */
.nav__hamburger.active::before{
    transform: rotate(-170deg)
    translateY(-9.5px);
    transition: 0.5s;
}

@media screen and (max-width:767px) {
    .menu__txt{
        font-size: 2.4rem;
    }
    
    .menu__txt__jp{
        font-size: 1.6rem;
    }
    
    .header__toyu_e{
        font-size: 1.8rem;
    }

    .nav__txt{
        font-size: 1.4rem;
    }

    .nav__hamburger{
        width: 40px;
        height: 10px;
    }

    .nav__hamburger.active::after{
        transform: rotate(170deg)
        translateY(4px);
    }

    .nav__hamburger.active::before{
        transform: rotate(-170deg)
        translateY(-4.5px);
    }

    .site__logo{
        width: auto;
        height: 43px;
    }

    .nav{
        top: 5px;
        right: 2.5%;
        width: 95%;
    }
}
/* ========================================================== header end */

/* =========================================================== mv */
.mv{
    margin-top: 68px;
    width: 100%;
    height: 710px;
    background-color: black;
    background-image: url(../images/TOYU_S_top.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.SPtype_mv{
    display: none;
}

/* responsive */
@media screen and (max-width:768px) {
    .mv{
        height: 360px;
        position: relative;
        background-position: center;
    }
    
    .site__logo__title{
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        margin-left: 0;
        filter: drop-shadow(0 0 20px #DE4A11);
        
        font-size: 2.6rem;
        font-weight: 700;
    }

    .SPtype_mv{
        display: block;
    }

    .PCtype_mv{
        display: none;
    }
}
/* responsive end */

/* ============================================================== main caption */
.mainCaption{
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start;
    margin: 80px auto 100px;
    padding: 243px 0 166px;

    background-image: url(../images/TOYU_S_caption.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

.mainCaption__txt{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2;
    width: 38.2%;
    filter: drop-shadow(0 0 20px black);
}

/* responsive */
@media screen and (max-width:1439px) {
    .mainCaption{        
        padding: 0;
        margin: 0;
        height: 300px;
    }

    .mainCaption__txt{
        display: flex;
        justify-content: center;
        align-items: center;        
        font-weight: 300;
        margin: 0 auto;
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
        height: 100%;
        padding: 0 5%;
        background-color: rgba(42,96,172,0.8);
        filter: none;
    }
}
/* responsive end */


/* ============================================================== Company Profile */
.CP__table__flexBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 61px auto 139px;
}

.CP__img{
    width: 46%;
    height: 549px;

    background-image: url(../images/TOYU_S_CompanyProfile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.CP__table__box{
    width: 50%;
}

table{
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
}

tr{
    border-top: 1px white solid;
    border-bottom: 1px white solid;
    border-collapse: collapse;
}

th{
    width: 122px;
    padding: 15px 26px 16px 9px;
}

.th__flex{
    display: flex;
    justify-content: space-between;
}

td{
    padding: 15px 0 16px;
}

.flex__td{
    display: flex;
}

.CP__td__factory{
    margin-right: 26px;
}

.isioka__factory{
    letter-spacing: 10px;
}

.itoigawa__factory{
    letter-spacing: 4px;
}

.towada__factory{
    letter-spacing: 4px;
}

/* responsive */
@media screen and (max-width:1439px) {
    .CP__table__flexBox{
        width: 90%;
    }
}
@media screen and (max-width:768px) {
    .PCtype{
        display: none;
    }

    .SPtype{
        display: block;
    }

    .CP__table__flexBox{
        margin: 0 auto;
    }
    
    .CP__img{
        display: none;
    }

    .CP__table__box{
        width: 100%;
    }

    .CP__table{
        width: 100%;
        margin: 0 auto;
        border-bottom: 1px white solid;
        padding-bottom: 20px;
    }

    .CP__th{
        margin-top: 20px;
        border-top: 1px white solid;
        padding-top: 20px;
    }

    .CP__td,.CP__dd,.CP__dt{
        font-weight: 200;
        margin-top: 5px;
    }

    .CP__dt{
        border-top: 1px dotted white;
        margin-top: 20px;
        padding: 20px 5px 0;
    }

    .CP__dd{
        padding-left: 5px;
    }
}
/* responsive end */

/* ========================================================== access */
.map__flexBox{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.map{
    width: 654px;
    height: 441px;
    margin:50px 0 20px;
}

.map__name{
    font-weight: 600;
    margin-right: 25px;
}

/* responsive */
@media screen and (max-width:1400px) {
    .map__flexBox{
        flex-direction: column;
        text-align: center;
        width: 90%;
    }

    .map{
        width: 100%;
        margin:50px 0 5px;
    }
}
@media screen and (max-width:768px) {
    .map{
        height: 300px;
    }

    .map__address{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}
/* responsive end */


/* =============================================================== Group Company */
.GC__link{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px;
    background-color: #fff;
    color: #2A60AC;
    font-size: 3.2rem;
    font-weight: 500;
    width: 100%;
    max-width: 1340px;
    margin: 40px auto;
    transition: 0.2s;
}

.GC__link:hover{
    opacity: 0.8;
    transition: 0.2s;
}

@media screen and (max-width:1440px) {
    .GC__link{
        width: 85%;
    }
}
@media screen and (max-width:767px) {
    .GC__link{
        font-size: 2rem;
    }
}
@media screen and (max-width:389px) {
    .GC__title{
        width: 130px;
    }
}
/* =============================================================== Group Company end */

/* =============================================================== recruit */
.recruit{
    color: #0C376A;
    padding: 80px 0 0;
}

.recruit__box{
    padding: 78px 0 202px;
    width: 100%;
    height: 100%;
    background-image: url(../images/TOYU_S_recruitBack.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.recruit__section__box{
    border: 1px #0C376A solid;
}

.recruit__title__box{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.recruit__title{
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.6;
    width: 680px;
    margin: 100px 0;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 50px 0 50px 5%;
}

.recruit__title__sub{
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 0;
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: 400;
}

.PCtype_recruit{
    display: flex;
}

.SPtype_recruit{
    display: none;
}

/* responsive */
@media screen and (max-width:1439px) {
    .recruit__title__box{
        width: 90%;
    }
}
@media screen and (max-width:1023px) {
    .PCtype_recruit{
        display: none;
    }
    
    .SPtype_recruit{
        display: flex;
    }
    
    .recruit__title__box{
        width: 100%;
    }
    
    .recruit{
        background-color: #DCE7EF;
        padding-top: 50px;
        margin: 0;
    }
    
    .recruit__box{
        padding: 0;
        margin-top: 20px;
        border-radius: 10px;
    }
    
    .recruit__title{
        border-radius: 10px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.40) 0%, rgba(67, 67, 67, 0.40) 100%);
        margin:0;
        width: 100%;
        font-size: 3rem;
        padding: 55px 5% 100px;
    }
    
    .recruit__title__sub{
        font-size: 1.4rem;
    }
    
}
@media screen and (max-width:780px) {
    .recruit__box{
        background-size: auto 150%;
    }
}
@media screen and (max-width:500px) {
    .recruit__box{
        background-size: auto 130%;
    }

    .recruit__title{
        font-size: 1.8rem;
    }
    
}
/* responsive end */

/* ====================================================== recruitService */
.SPtype__375{
    display: none;
}

.recruit__table__section{
    background-color: #DCE7EF;
    color: black;
}

.recruitDesign,.recruitMechanic{
    background-color: #EBF5FC;
}

.sectionRecruitContents__title{
    border: none;
    background-color: #0C376A;
    color: white;
}

.section__title__recruit{
    font-size: 3.2rem;
    font-weight: 700;
}

.sectionRecruitContents__subTitle{
    width: 100%;
    max-width: 1400px;
    margin: 57px auto 24px;
    font-size: 2.7rem;
    font-weight: 700;
    position: relative;
    padding-left: 30px;
}

.sectionRecruitContents__subTitle::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-40%);
    width: 25px;
    height: 25px;
    background-color: black;
}

.recruit__tr{
    border-top: 1px solid #8a8a8a;
    border-bottom: 1px solid #8a8a8a;
}

.recruit__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 77px;
    max-width: 630px;
    margin: 81px auto 50px;
    background-color: #2F67B6;
    border-radius: 8px;

    color: #FFF;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.6px;
}

/* responsive */
@media screen and (max-width:1439px) {
    .recruit__table,
    .sectionRecruitContents__subTitle{
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    .sectionRecruitContents__title{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section__title__sub{
        font-weight: 400;
    }

    .section__title__recruit{
        font-size: 2rem;
    }

    .sectionRecruitContents__subTitle{
        font-size: 2rem;
        text-align: center;
        margin: 35px auto;
        font-weight: 600;
        padding-left: 0;
    }

    .sectionRecruitContents__subTitle::after{
        content: '';
        width: 0px;
        height: 0px;
    }

    .recruit__table,
    .recruit__table tbody,
    .recruit__tr,
    .recruit__th,
    .recruit__td{
        display: block;
    }

    .recruit__tr{
        display: flex;
        flex-direction: column;
        border-top: 1px solid #8a8a8a;
        border-bottom: none;
    }

    .recruit__tr:last-of-type{
        border-bottom: 1px solid #8a8a8a;
    }

    .recruit__th{
        padding: 10px 0 0;
        font-weight: 500;
    }

    .recruit__td{
        font-weight: 300;
    }

    .wpcf7-radio{
        display: flex;
        flex-direction: column;
    }

    .recruit__btn{
        margin: 50px auto 0;
        font-size: 2rem;
        width: 70%;
        height: 50px;
    }

    .history,
    .PR{
        width: 89%;
        background-color: white;
        margin-left: 10px;
    }
}
@media screen and (max-width:380px) {
    .SPtype__375{
        display: block;
    }
}
/* responsive end */

/* =========================================== recruitEx */
.recruitEx{
 background-color: #fff;
}

.recruitEx__table{
    margin: 62px auto 0;
    width: 100%;
    max-width: 1078px;
}

.recruitEx__flex{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 37px;
}

.recruitEx__dt{
    margin-left: 129px;
    width: 181px;
    background-color: #B1CDE2;
    border-radius: 22px;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.recruitEx__dt::after{
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-style: solid;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 13px solid #2f67b6;
    border-bottom: 0;
}

.recruitEx__dt__num{
    font-size: 2.8rem;
    font-weight: 700;
}

.recruitEx__dt__sending{
    letter-spacing: 7px;
}

.letter-spacing{
    width: 100px;
    display: flex;
    justify-content: space-between;
}

.hire{
    background-color: #2F67B6;
    color: white;
}

.hire::after{
    content: none;
}

/* responsive */
@media screen and (max-width:1023px) {
    .recruitEx__table{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

    .recruitEx__flex{
        justify-content: center;
        gap: 15px;
    }

    .recruitEx__dt__num,
    .recruitEx__dt{
        font-size: 1.6rem;
    }
 
    .recruitEx__dt{
        width: 130px;
        margin: 0;
        padding: 5px 0 5px 10px;
        letter-spacing: 3px;
        justify-content: flex-start;
        gap: 5px;
    }

    .recruitEx__dd{
        width: 50%;
        font-size: 1.2rem;
    }

    .letter-spacing{
        width: 85px;
    }
}
/* responsive end */

/* ========================================================= entry form */
.th__flex{
    display: flex;
    width: 114px;
}

input[type="radio"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

input[type="radio"]:checked:before {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 9px;
height: 9px;
border-radius: 50%;
background: #000;
content: '';
}

.wpcf7-text,
.wpcf7-number{
background-color: #fff;
margin-left: 10px;
}

.recruit__btn p{
width: 100%;
height: 100%;
}

.recruit__btn p input{
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}

.history,.PR{
    width: 80%;
    height: 200px;
    background-color: white;
}

.contactPage__txt{
    margin-top: 49px;
    text-align: center;
}

@media screen and (max-width:768px) {
    .th__flex{
        display: flex;
        width: auto;
        justify-content: flex-start;
    }

    .wpcf7-text,
    .wpcf7-number{
        background-color: #fff;
        margin-left: 0;
        width: 90%;
    }

    .history,
    .PR{
        width: 100%;
        background-color: white;
        margin: 0;
    }
}

.dialog__btn{
    display: block;
    position: fixed;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    background-color: #2A60AC;
    padding: 20px;
    margin-top: 20px;
    transition: 0.2s;
    border-radius: 20px;
    z-index: 1001;
}

.dialog__btn:hover{
    transition: 0.2s;
    background-color: #3884ef;
}

.wpcf7 form.sent .wpcf7-response-output{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background-color: #0C376A;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    padding-bottom: 160px;
}

@media screen and (max-width:767px) {
    .dialog__btn{        
        top: calc(50% + 40px);
        font-size: 1.6rem;
    }
    
    .wpcf7 form.sent .wpcf7-response-output{
        font-size: 1.6rem;
        width: 90%;
    }
}
/* ========================================================= entry form end */


/* ======================================================== contact */
.contact__txt{
    font-size: 1.8rem;
    text-align: center;
    margin-top: 38px;
}

.contact__box__flex{
    display: flex;
    justify-content: center;
    gap: 130px;
    margin-top: 45px;
}

.contact__box{
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.50);
    width: 33%;
    max-width: 635px;
}

.contact__factory{
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 15px;margin-top: 33px;
    position: relative;
}

.contact__factory::after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 93%;
    height: 1px;
    background-color: #fff;
}

.contact__tel{
    display: block;
    margin-top: 36px;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
}

.contact__fax{
    margin: 10px 0 30px;
    font-size: 2rem;
    text-align: center;
}

@media screen and (max-width:1300px) {
    .contact{
        padding: 117px 0 100px;
    }

    .contact__box__flex{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .contact__box{
        width: 80%;
    }
}
@media screen and (max-width:767px) {
    .contact{
        padding: 50px 0 100px;
    }

    .contact__txt{
        font-size: 1.4rem;
        width: 90%;
        margin: 30px auto 0;
    }

    .contact__factory{
        font-size: 2rem;
    }

    .contact__tel{
        font-size: 2.4rem;
    }
    
    .contact__fax{
        font-size: 1.4rem;
    }
}






/* ======================== footer ======================== */
.footer{
    background-color: white;
    color: black;
    padding: 52px 0 100px;
}

.footer__main{
    width: 100%;
    height: 98.5px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 42px;
}

.footer__logo{
    width: 113px;
    height: auto;
}

.site__logo__footer__title{
    font-size: 2.4rem;
    font-weight: 700;
}

.return__top__btn{
    position: fixed;
    z-index: 500;
    bottom: 100px;
    right: 100px;
    width: 75px;
    height: auto;
}

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

.copy{
    margin-top: 26px;
    width: 100%;
    max-width: 1440px;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
}

@media screen and (max-width:767px) {
    .footer__main{
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 26px;
        
        align-items: center;
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .footer__box{
        text-align: center;
    }

    .return__top__btn{
        bottom: 20px;
        right: 20px;
        width: 60px;
    }

    .copy{
        margin-top: 0px;
    }
}