@charset "UTF-8";

/*==================
画面設計
768px をブレイクポイントとし
それ以上はPCレイアウト
768px以下はスマホレイアウトととする
@media screen and ( max-width:48rem) { }
@media screen and ( max-width:767px) {  }
==================*/

html {
    font-size: 10px;
    background-color: #131D33;
    height: 100%;
    color: #fff;
    /* padding-top: 80px; */
    scroll-behavior: smooth;
}
body {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}
section, header, footer, div, ul, li, dl, dt, dd {
    box-sizing: border-box;
}
.wfontSan {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.wfontSerif {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-style: normal;
}
.spDispOnly {
    display: none;
}
.pcDispOnly {
    display: inline;
}
@media screen and (max-width:767px) {
    html {
        font-size: 9px;
        /* padding-top: 60px; */
    }
    .spDispOnly {
        display: block;
    }
    .pcDispOnly {
        display: none;
    }
    img {
        max-width: 100%;
    }
}
a:hover img {
    opacity: 0.8;
}
a.pagetopBtn {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 20px;
    padding: 5px;
    background-color: #474747;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transform: scale(0.8);
    opacity: 0.8;
    border-radius: 100%;
    z-index: 999;
    text-decoration: none;
    cursor: pointer;
}

.normalTextStyle{
    font-size: 1.5rem;
    line-height: 2;
}
.shopInfo{
    width: 1100px;
    padding: 40px;
    margin: 60px auto;
    box-sizing: border-box;
    background-color: #1B2844;

    display: flex;
    justify-content: center;
    gap: 90px;
    align-items: center;

    background-image: url(../image/mark_u.svg);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center center;
}
.shopInfo ul{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gmap{
    width: 100%;
    height: 800px;
}

/* トップページ */
.allWrapper{
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    background-color: #1B2844;
}


.mainvisualArea{
    width: 100%;
    min-height: 900px;
    background-image: url(../image/topmv_pc.png);
    background-repeat: no-repeat;
    background-color: #131D33;
    background-size: contain;
    background-position: center bottom;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    position: relative;
}
.mainvisualArea .info1{
    position: absolute;
    top: 30px;
    left: 30px;
}
.mainvisualArea .info2{
    position: absolute;
    top: 30px;
    right: 30px;
}
.mainvisualArea .info2{
    position: absolute;
    top: 30px;
    right: 30px;
}
.mainvisualArea .title{
    padding-right: 20px;
}
.deviderArea{
    width: 100%;
    text-align: center;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.unagi_yakiArea{
    width: 100%;
    min-height: 740px;
    background-image: url(../image/sankaku.svg), url(../image/unagi_yaki.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom, center bottom;
    background-size: contain, cover;
}

.menuArea{
    width: 100%;
    text-align: center;
}











.headerSection{
    width: 100%;
    padding: 0 20px;
    height: 160px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.headerSection .linkList ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.headerSection .linkList ul li span{
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 0 14px;
    color: #ddd;
    text-decoration: none;
}

.headerSection .subject{
    margin-right: 40px;
}
.headerSection .info{
    margin-left: auto;
}

@media screen and ( max-width:767px) {
    .headerSection{
        height: 120px;
    }
    .headerSection .subject{
        margin-right: 20px;
    }
}

/*トグルボタンのスタイルを指定*/
.Toggle{
    display: none;
}

@media screen and ( max-width:767px) {
    .Toggle {
        display: block;
        position: fixed;    /* bodyに対しての絶対位置指定 */
        width: 34px;
        height: 42px;
        cursor: pointer;
        z-index: 10;
        top: 10px;
        right:15px;
    }
    .Toggle span {
        display: block;
        position: absolute;
        width: 34px;
        border-bottom: solid 4px #333;
        -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
        -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
        transition: .35s ease-in-out;			/*変化の速度を指定*/
    }
    /*各ボーダー少しずつずらす*/
    .Toggle span:nth-child(1) {
        top:5px;
    }
    .Toggle span:nth-child(2) {
        top: 17px;
    }
    .Toggle span:nth-child(3) {
        top: 30px;
    }
    .Toggle.active span:nth-child(1) {
        top: 18px;
    /* 1番目のspanをマイナス45度に */
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* 2番目と3番目のspanを45度に */
    .Toggle.active span:nth-child(2),
    .Toggle.active span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }


    .headerSection .linkList{
        width: 100vw;
        height: auto;
        min-height: 100vh;
        background-color: rgba(255, 255, 255, 0.8);
        color: #fff;
        position: fixed; 
        top: 0;
        left: 0;
        z-index: 9;
        text-align:center;
        transition: 0.5s ease;/*滑らかに表示*/
        -webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
    /*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
    }
    /*OPEN時の動き*/
    .headerSection .linkList.open {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);/*メニューを元の位置へ戻す*/
    }
    .headerSection .linkList ul{
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 0;
    }
    .headerSection .linkList ul li{
        width: 100%;
    }
    .headerSection .linkList ul li a{
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
        padding: 26px 0 22px;
        color: #FFF;
        text-decoration: none;
        background-color: #333;
        border-radius: 4px;
        border-bottom: #ccc 4px solid;
    }
}












.topMainvisualSection{
    padding: 0px 0 0px;
    position: relative;
}
.topMainvisualSection .slideimgList ul li{
    margin: 0 0px;
    text-align: center;
}
.topMainvisualSection .slideimgList ul li img{
    /* width: 560px; */
    width: calc( 100% - 160px );
    max-width: 1300px;
    border-radius: 30px;
}
@media screen and ( max-width:767px) {
    .topMainvisualSection .slideimgList ul li img{
        /* width: 560px; */
        width: calc( 100% - 40px );
        max-width: 1300px;
        border-radius: 10px;
    }
}


.topAboutSection{
    margin: 160px 0 160px;
    width: 100%;
    text-align: center;
}
.topAboutSection .textGroup{
    width: 100%;
    font-size: 1.6rem;
    line-height: 2;
    color: #595757;
}
.topAboutSection .textGroup img{
    max-width: 100%;
}
.topAboutSection .textGroup .topAboutCopy{
    font-weight: 100;
    font-size: 2.8rem;
    line-height: 1.8;
    margin: 40px 0 20px;
}
.topAboutSection .textGroup .roundLinkBtn{
    display: block;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    width: 200px;
    text-align: center;
    background-color: #F99728;
    padding: 12px 0;
    margin: 40px auto 0 0;
    border-radius: 100px;
}
.topAboutSection .imgWrapper{
    text-align: right;
}
.topAboutSection .imgWrapper img{
    max-width: 100%;
}
.topAboutSection .imgWrapper ul li:nth-child(2){
    padding: 40px;
}

@media screen and ( max-width:767px) {
    .topAboutSection{
        width: 100%;
        margin: 0;
        padding: 0px 20px;
        box-sizing: border-box;
    }
    .topAboutSection .textGroup{
        font-size: 1.4rem;
        line-height: 2;
        text-align: left;
    }
    .topAboutSection .textGroup .topAboutCopy{
        font-weight: 100;
        font-size: 2.2rem;
        line-height: 1.8;
        margin: 40px 0 20px;
    }
}


.topInfoSection{
    margin: 80px auto 120px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 90px; */
    max-width: 1100px;
}
.topInfoSection .leftGroup,
.topInfoSection .rightGroup{
    width: 100%;
    max-width: 480px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}
.topInfoSection .leftGroup .title{
    margin-bottom: 40px;
}
.topInfoSection .leftGroup p{
    margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 1.6;
}
.topInfoSection .leftGroup .wBox{
    background-color: #FFF;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    text-align: center;
}
.topInfoSection .rightGroup .infoUnit{
    padding: 40px 20px;
    font-size: 1.6rem;
    border-top: #ccc 1px dotted;
    color: #00AFCC;
}
.topInfoSection .rightGroup .infoUnit a{
    display: block;
    text-decoration: none;
    color: inherit;
}
.topInfoSection .rightGroup .infoUnit a:hover{
    text-decoration: underline;
}
.topInfoSection .rightGroup .infoUnit:last-child{
    border-bottom: #ccc 1px dotted;
}
.topInfoSection .rightGroup .infoUnit .date{
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #707070;
}
@media screen and ( max-width:767px) {
    .topInfoSection{
        flex-direction: column;
        gap: 30px;
    }
    .topInfoSection .leftGroup .title{
        margin-bottom: 20px;
    }
    .topInfoSection .leftGroup .title img{
        width: 160px;
    }
    .topInfoSection .leftGroup .wBox{
        padding: 20px;
        border-radius: 10px;
    }
}

.topAccessSection{
    background-color: #FFF;
    text-align: center;
}
.topAccessSection .title{
    padding: 60px 0;
}
.topAccessSection iframe{
    width: 100%;
    height: 400px;
}
@media screen and ( max-width:767px) {
    .topAccessSection{
        padding: 0 20px;
    }
}





















.footerSection{
    width: 100%;
    padding: 0 0px;
    border-bottom: #00AFCC 6px solid;
    background-color: #FFF;
}
.footerSection .inner{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0px 80px;

    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footerSection .footerEndInfo{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
}
.footerSection .copyright{
    font-size: 1.2rem;
    margin-top: 8px;
}
@media screen and (max-width:767px) {
    .footerSection .inner{
        padding: 60px 20px 80px;
    
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
        gap: 60px;
    }
    .footerSection .inner .leftGroup{
        text-align: center;
    }
}
































































/* 頁別コンテンツ */
.pageHeader{
    width: 100%;
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.pageHeader .siteCopy{
    width: 260px;
    height: 260px;
    background-color: #FFF;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -30px;
    left: 5vw;
}
.pageHeader.pageCompany{
    background-image: url("../image/pagehead-company.png");
}
.pageHeader.pageCulture{
    background-image: url("../image/pagehead-culture.png");
}
.pageHeader.pageTeam{
    background-image: url("../image/pageHeader-teammate.png");
}
.pageHeader.pageJob{
    background-image: url("../image/pagehead-recruitment.png");
}
.pageHeader.pageFaq{
    background-image: url("../image/pagehead-faq.png");
}
.pageHeader.pagePrivacy{
    background-image: url("../image/pagehead-privacy.png");
}
.pageHeader .pageTitle{
    color: #fff;
    font-size: 5rem;
    text-align: left;
    padding: 30px;
}
.pageHeader .pageTitle .sub{
    display: block;
    font-size: 2rem;
    margin: 10px 0;
}





.secTitleStyle{
    display: block;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;

    position: relative;
}
.secTitleStyle::after{
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    background-color: #DB5425;
    position: absolute;
    bottom: 0;
    left: calc( 50% - 80px );
}
@media screen and (max-width:767px) {
    .pageHeader{
        min-height: 160px;
    }
}

/* company page */
.visionSection{
    width: 100%;
    padding: 120px 0;
    background-color: #F99728;
    background-image: url("../image/textsvg_vision.svg");
    background-size: auto;
    background-position: right bottom;
    background-repeat: no-repeat;
}
.visionSection .inner{
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
.visionSection .label{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}
.visionSection .sectionTitle{
    font-size: 4rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}
.visionSection .sectionDisc{
    font-size: 1.6rem;
    line-height: 2;
}

.missionSection{
    width: 100%;
    padding: 120px 0;
    background-color: #FFF;
    background-image: url("../image/textsvg_mission.svg");
    background-size: auto;
    background-position: left top;
    background-repeat: no-repeat;
}
.missionSection .inner{
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
.missionSection .label{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}
.missionSection .sectionTitle{
    font-size: 3rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 60px;
    color: #F99728;
}
.missionSection .sectionDisc{
    font-size: 1.6rem;
    line-height: 2;
}
@media screen and (max-width:767px) {
    .visionSection{
        padding: 40px 0 120px;
        background-size: auto 70px;
        background-position: center bottom;
    }
    .missionSection{
        background-size: auto 70px;
        background-position: center top;
    }
    
}
.companyDeviderSection{
    width: 100%;
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../image/company_deviderbg.png");
}

.companyPolicySection{
    width: 100%;
    margin: 120px 0;
}
.companyPolicySection .inner{
    width: 100%;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.companyPolicySection .textGroup{
    width: 50%;
    background-image: url("../image/carpointimg.png");
    background-repeat: no-repeat;
    background-position: left bottom;
}
.companyPolicySection .textGroup .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
}
.companyPolicySection .textGroup .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.companyPolicySection .textGroup ul{
    margin: 40px 0;
    padding-bottom: 60px;
    font-size: 2.2rem;
    line-height: 2;
    color: #F99728;
}
.companyPolicySection .imgWrapper{
    width: 50%;
}
@media screen and (max-width:767px) {
    .companyPolicySection .inner{
        display: block;
    }
    .companyPolicySection .textGroup{
        width: 100%;
        padding-bottom: 30px;
        background-position: right bottom;
    }
    .companyPolicySection .imgWrapper{
        width: 100%;
    }
    .companyPolicySection .imgWrapper img{
        width: 100%;
    }
}
.messageSection{
    width: 100%;
    margin: 120px 0;
}
.messageSection .inner{
    width: 100%;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}
.messageSection .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
    text-align: center;
    margin-bottom: 60px;
}
.messageSection .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.messageSection .copy{
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 900;
    margin-bottom: 60px;
}
.messageSection .fBox{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}
.messageSection .fBox .textGroup{
    font-size: 1.6rem;
    line-height: 2;
}
.messageSection .fBox .imgWrapper{
    font-size: 1.6rem;
    text-align: center;
}
@media screen and (max-width:767px) {
    .messageSection .fBox{
        display: flex;
        flex-direction: column-reverse;
    }
    .messageSection .fBox .imgWrapper{
        margin-bottom: 30px;
    }
}
.companyBusinessSection{
    width: 100%;
    margin: 120px auto 0;
    padding-bottom: 120px;
    background-image: url("../image/trianglebg.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
}
.companyBusinessSection .inner{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
}
.companyBusinessSection .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
    text-align: center;
    margin-bottom: 60px;
}
.companyBusinessSection .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.companyBusinessSection .fBox{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.companyBusinessSection .fBox ul{
    width: 50%;
    margin-top: 60px;
}
.companyBusinessSection .fBox ul li{
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    background-color: #F2F2E3;
    padding: 30px 0;
    border-radius: 100px;
}
@media screen and (max-width:767px) {
    .companyBusinessSection .fBox{
        gap: 20px;
    }
    .companyBusinessSection .fBox ul li{
        font-size: 1.8rem;
    }
}

.companyCarHistorySection{
    width: 100%;
    padding: 80px 20px;
    background-image: url("../image/company_historybg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.companyCarHistorySection .inner{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    background-color: #FFF;
    
    background-image: url("../image/textsvg_automobile.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
}
.companyCarHistorySection .sectionTitle{
    text-align: center;
    color: #F99728;
    font-size: 2.6rem;
    margin-bottom: 40px;
}
.companyCarHistorySection p{
    font-size: 1.6rem;
    line-height: 2;
}
.companyCarHistorySection .imgWrapper{
    text-align: center;
    margin: 80px auto 0
}

.jobtypeSection{
    width: 100%;
    margin: 120px auto 0;
    padding-bottom: 120px;
}
.jobtypeSection .inner{
    width: 100%;
    /* max-width: 800px; */
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
}
.jobtypeSection .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
    text-align: center;
    padding-bottom: 60px;

    background-image: url("../image/carpointimg.png");
    background-repeat: no-repeat;
    background-position: right 30% bottom 0;
}
.jobtypeSection .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.jobtypeSection .listBox{
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    border: #FFF5EA 10px solid;
    box-sizing: border-box;
    margin: 0 auto;
}
.jobtypeSection .listBox .unit{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    margin: 60px 0;
}
.jobtypeSection .listBox .unit .jobName{
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.jobtypeSection .listBox .unit .disc{
    font-size: 1.5rem;
    line-height: 1.8;
}
.jobtypeSection .listBox .unit .jobName::before {
    content: '';
    width: 3px;
    height: 40px;
    background-color: #F99728;
    margin-right: 30px;
    transform: rotate(30deg);
}
@media screen and (max-width:767px) {
    .jobtypeSection .listBox{
        padding: 20px;
    }
    .jobtypeSection .sectionTitle{
        background-image: none;
    }
    .jobtypeSection .listBox .unit{
        display: block;
    }
    .jobtypeSection .listBox .unit .imgWrapper{
        margin-bottom: 20px;
    }
    .jobtypeSection .listBox .unit .imgWrapper img{
        width: 100%;
    }
}
.comInformationSection{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.comInformationSection .imgWrapper{
    width: 50%;
    margin-bottom: -1px;
}
.comInformationSection .imgWrapper img{
    width: 100%;
    object-fit: cover;
}
.comInformationSection .textGroup{
    width: 50%;
    padding-left: 80px;
    text-align: left;
}
.comInformationSection .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
    text-align: left;
    padding-bottom: 60px;
}
.comInformationSection .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.comInformationSection dl{
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 800px;
}
.comInformationSection dl .row{
    display: flex;
    justify-content: flex-start;
    padding: 20px ;
    border-top: #ccc 1px solid;
}
.comInformationSection dl .row dt{
    width: 200px;
}
@media screen and (max-width:767px) {
    .comInformationSection{
        flex-direction: column-reverse;
    }
    .comInformationSection .imgWrapper{
        width: 100%;
    }
    .comInformationSection .textGroup{
        width: 100%;
        padding: 0 20px;
    }
    .comInformationSection dl .row{
        flex-direction: column;
        padding: 20px 0;
    }
    .comInformationSection dl .row dt{
        color: #999;
        margin-bottom: 10px;
    }
}

.cultureFirstSection{
    width: 100%;
    padding: 120px 0;
    background-color: #FFF;

    background-image: url("../image/trianglebg.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
}
.cultureFirstSection .inner{
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
.cultureFirstSection .sectionTitle{
    font-size: 4rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 60px;
    color: #F99728;
}
.cultureFirstSection .sectionTitle .sub{
    font-size: 1.8rem;
    display: block;
    margin-bottom: 20px;
}
.cultureFirstSection .sectionDisc{
    font-size: 1.6rem;
    line-height: 2;
}
.cultureDevider{
    width: 100%;
    height: 35vw;
    min-height: 600px;
    background-image: url("../image/culture_deviderimg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.cultureSecondSection{
    width: 100%;
    padding: 120px 0;
    background-color: #F99728;
}
.cultureSecondSection .inner{
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
.cultureSecondSection .sectionTitle{
    font-size: 4rem;
    text-align: center;
    margin-bottom: 60px;
    color: #FFF;
}
.cultureSecondSection .sectionDisc{
    font-size: 1.6rem;
    line-height: 2;
}
@media screen and (max-width:767px) {
    .cultureFirstSection{
        padding: 40px 0 120px;
    }
    .cultureDevider{
        height: 65vw;
        min-height: auto;
    }
}

.culturethirdSection{
    width: 100%;
    margin: 0 auto;
}
.culturethirdSection .inner{
    width: 100%;
    max-width: 800px;
    padding: 30px 20px;
    margin: 0 auto;
}
.culturethirdSection .unit{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 30px;
}
.culturethirdSection .unit .subject{
    color: #F99728;
    font-size: 2rem;
}

.credoSection{
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;

    background-image: url("../image/culture_credobg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.credoSection .inner{
    width: 100%;
    max-width: 800px;
    background-color: #FFF;
    padding: 40px 40px;
    margin: 0 auto;
}
.credoSection .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
    text-align: center;
    padding-bottom: 60px;
}
.credoSection .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.credoSection ul{
    font-size: 2rem;
    line-height: 1.8;
    padding-left: 2em;
}
.credoSection ul li{
    margin-bottom: 20px;
    text-indent: -2em;
}

.cultureTopicheadSection{
    width: 100%;
    margin: 0 auto;
}
.cultureTopicheadSection .inner{
    width: 100%;
    max-width: 800px;
    padding: 80px 20px;
    margin: 0 auto;
}
.cultureTopicheadSection .sectionTitle{
    text-align: center;
    color: #F99728;
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 30px 0;
    background-color: #FFF9F2;
    margin-bottom: 60px;
}
.cultureTopicheadSection .sectionDisc{
    font-size: 1.6rem;
    line-height: 2;
}
.cultureTopicSection{
    width: 100%;
    margin: 0 auto;
}
.cultureTopicSection .inner{
    width: 100%;
    max-width: 800px;
    padding: 80px 20px;
    margin: 0 auto;
}
.cultureTopicSection .sectionTitle{
    text-align: center;
    color: #F99728;
    font-size: 2.4rem;
    margin-bottom: 60px;
}
.cultureTopicSection .unit{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}
.cultureTopicSection .textGroup .subject{
    color: #F99728;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.cultureTopicSection .textGroup .disc{
    font-size: 1.6rem;
    line-height: 1.8;
}
@media screen and (max-width:767px) {
    .cultureTopicSection .unit{
        display: block;
    }
    .cultureTopicSection .unit .imgWrapper{
        margin-bottom: 20px;
    }
    .cultureTopicSection .unit .imgWrapper img{
        width: 100%;
    }
}


.cultureWelfareSection{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cultureWelfareSection .imgWrapper{
    width: 50%;
    margin-bottom: -1px;
}
.cultureWelfareSection .imgWrapper img{
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.cultureWelfareSection .textGroup{
    width: 50%;
    padding-left: 80px;
    text-align: left;
}
.cultureWelfareSection .sectionTitle{
    font-size: 3.4rem;
    color: #F99728;
    text-align: left;
    padding-bottom: 60px;
}
.cultureWelfareSection .sectionTitle .sub{
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}
.cultureWelfareSection ul{
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 800px;
}
.cultureWelfareSection ul li{
    display: flex;
    justify-content: flex-start;
    padding: 20px ;
    border-top: #ccc 1px solid;
}
@media screen and (max-width:767px) {
    .cultureWelfareSection{
        flex-direction: column-reverse;
        gap: 0;
    }
    .cultureWelfareSection .imgWrapper{
        width: 100%;
    }
    .cultureWelfareSection .textGroup{
        width: 100%;
        padding: 0 20px;
    }
    .cultureWelfareSection ul li{
        flex-direction: column;
        padding: 20px 0;
    }
}



/* team */
.teamHeadCopy{
    width: 100%;
    text-align: center;
    min-height: 300px;
    background-color: #F99728;
    color: #FFF;
    font-size: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.teamMemberSection{
    width: 100%;
    /* max-width: 1000px; */
    padding: 40px 20px;
    box-sizing: border-box;
    margin: 80px auto;
}
.teamMemberSection ul li{
    border-bottom: #eee 1px solid;
    padding: 30px 0;
}
.teamMemberSection ul li:hover{
    background-color: #F2F2E3;
}
.teamMemberSection ul li a{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}
.teamMemberSection ul li a:hover img{
    opacity: 1;
}
.teamMemberSection ul li:nth-child(even) a{
    flex-direction: row-reverse;
}
.teamMemberSection ul li a dl{
    width: 50%;
}
.teamMemberSection ul li:nth-child(even) a dl{
    text-align: right;
}
.teamMemberSection ul li a dl dt{
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #F99728;
}
.teamMemberSection ul li a dl dd{
    font-size: 3.2rem;
    font-weight: 900;
}
.teamMemberSection ul li a .imgWrapper{
    position: relative;
}
.teamMemberSection ul li a .imgWrapper img{
    z-index: 7;
    position: inherit;
}
.teamMemberSection ul li a .imgWrapper::before{
    width: 400px;
    height: 100px;
    display: block;
    position: absolute;
    left: -20px;
    bottom: -20px;
    content: "";
    z-index: 6;
    background-color: #F99728;
}
@media screen and (max-width:767px) {
    .teamHeadCopy{
        font-size: 5.5vw;
        min-height: 200px;
    }
    .teamMemberSection ul li a{
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    .teamMemberSection ul li a .imgWrapper::before{
        display: none;
    }
    .teamMemberSection ul li:nth-child(even) a{
        flex-direction: column;
    }
    .teamMemberSection ul li a dl{
        width: 100%;
        text-align: center;
    }
    .teamMemberSection ul li a dl dt{
        font-size: 2.2rem;
    }
    .teamMemberSection ul li:nth-child(even) a dl{
        text-align: center;
    }
}















/* interviewpage */
.staffSection{
    margin: 120px auto;
    width: 100%;
    max-width: 980px;
    padding: 0 20px;
}
.staffSection .staffHeader{
    display: flex;
    /* flex-direction: row-reverse; */
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;

    font-size: 1.8rem;
    line-height: 1.8;
}
.staffSection .staffHeader .parsonalInfo{
    flex: 1;
}
.staffSection .staffHeader .staffName{
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: #ccc 1px solid;
    font-size: 2.4rem;

    background-image: url("../image/team-bglogomark.png");
    background-position: right 0 bottom 20px;
    background-repeat: no-repeat;
    background-size: 160px;
}
.staffSection .staffHeader .staffName .jobClass{
    display: block;
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #DB5425;
}
.staffSection .staffHeader .cpt{
    margin-top: 20px;
    width: 100%;
}
.staffSection .staffMore{
    margin-top: 100px;
}
.staffSection .staffMore .talkImgWrapper{
    margin-bottom: 60px;
}
.staffSection .staffMore .talkImgWrapper img{
    width: 100%;
}
.staffSection .staffMore .question{
    padding: 30px 0;
    border-top: #333 1px solid;
    border-bottom: #333 1px solid;
    font-size: 2.2rem;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
}
.staffSection .staffMore .answer{
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 20px 0;
    margin-bottom: 80px;
}
.staffSection .roundLinkBtn{
    display: block;
    color: #333;
    font-size: 1.6rem;
    text-decoration: none;
    width: 200px;
    text-align: center;
    /* background-color: rgb(255, 255, 255); */
    border: #333 1px solid;
    padding: 14px 0;
    margin: 30px auto 0;
    border-radius: 100px;
}
@media screen and (max-width:767px) {
    .staffSection{
        margin: 40px auto 120px;
    }
    .staffSection .staffHeader{
        display: block;
    }
    .staffSection .staffHeader .imgWrapper{
        width: 80%;
        margin: 0 auto 30px;
        text-align: center;
    }
    .staffSection .staffMore .talkImgWrapper img{
        width: auto;
        height: 60vw;
        object-fit: cover;
    }
    .staffSection .staffMore .question{
        text-align: left;
    }
}


/* jobList */
.jobListSection{
    width: 100%;
    padding: 0 20px;
    max-width: 980px;
    margin: 120px auto;
}
.jobListSection .jobListHeader{
    margin-bottom: 80px;
}
.jobListSection .jobListHeader .titleLine{
    font-size: 2.2rem;
    padding: 30px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jobListSection .jobListHeader .serchedNum{
    padding: 30px;
    font-size: 1.6rem;
    text-align: center;
    border: #ccc 1px solid;
}
.jobListSection .jobListHeader .form-select{
	padding: 4px;
	font-size: 1.6rem;
	border-radius: 3px;
}

.jobListSection .jobinfoUnit{
    width: 100%;
    padding: 30px 0;
    border-bottom: #ccc 1px solid;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.jobListSection .jobinfoUnit .textWrapper{
    font-size: 1.5rem;
    line-height: 1.8;
	flex: 1;
}
.jobListSection .jobinfoUnit .textWrapper .jobTitle{
    font-size: 2.2rem;
    font-weight: 700;
}
.jobListSection .jobinfoUnit .textWrapper .jobTitle a{
	color:inherit;
	text-decoration: none;
}
.jobListSection .jobinfoUnit .textWrapper .jobTagUl{
    display: flex;
    gap: 10px;
    margin: 20px 0 10px;
}
.jobListSection .jobinfoUnit .textWrapper .jobTagUl li{
    padding: 5px 10px;
    border: #ccc 1px solid;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
}
.jobListSection .jobinfoUnit .imgWrapper img{
    width: 340px;
    height: 220px;
    object-fit: cover;
}
.jobListSection .jobinfoUnit .gotoDetail{
	padding-top:10px;
	color: inherit;
	margin-top: 10px;
	display: inline-block;
}
@media screen and (max-width:767px) {
    .jobListSection .jobinfoUnit{
        display: block;
    }
    .jobListSection .jobinfoUnit .imgWrapper{
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    .jobListSection .jobinfoUnit .imgWrapper img{
    }
}

.nav-links {
	margin: 40px auto;
}
.nav-links .page-numbers{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 1.6rem;
}
.nav-links .page-numbers li a{
	text-decoration: none;
	color: inherit;
	padding: 10px;
	border: #eee 1px solid;
	border-radius: 3px;
}
.nav-links .page-numbers li span.current{
	color: orange;
	font-weight: bold;
}




/* job detail */
.jobDetailSection{
    width: 100%;
    padding: 0 20px;
    max-width: 800px;
    margin: 120px auto;
}
.jobDetailSection .jobDetailTitle{
    font-size: 2.8rem;
    line-height: 1.4;
    padding-bottom: 20px;
    border-bottom: #ccc 1px solid;
}
.jobDetailSection .jobDetailHead{
    margin-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jobDetailSection .jobDetailHead .gotoList{
    font-size: 1.4rem;
    text-decoration: none;
    color: inherit;
}
.jobDetailSection .jobDetailHead .jobTagUl{
    display: flex;
    gap: 10px;
    margin: 20px 0 10px;
}
.jobDetailSection .jobDetailHead .jobTagUl li{
    padding: 5px 10px;
    border: #ccc 1px solid;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
}
.jobDetailSection .jobDetailImgWrapper{
    width: 100%;
    text-align: center;
    margin: 10px auto;
}
.jobDetailSection .jobDetailImgWrapper img{
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
}
.jobDetailSection .jobCaption{
    margin: 30px 0;
    font-size: 1.8rem;
    line-height: 1.8;
}
.jobDetailSection .jobCaption .jobCaptionTitle{
    text-align: center;
    color: #F99728;
    margin: 40px auto;
}
@media screen and (max-width:767px) {
    .jobDetailSection{
        margin: 40px auto 120px;
    }
    .jobDetailSection .jobDetailTitle{
        font-size: 2.4rem;
    }
}


.jobTermSection {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
}
.jobTermSection .jobTermTable{
    margin-top: 60px;
    font-size: 1.6rem;
    line-height: 1.6;
    border-top: #ccc 1px solid;
}
.jobTermSection .jobTermTable .row{
    width: 100%;
    border-bottom: #ccc 1px solid;
    padding: 18px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.jobTermSection .jobTermTable .row dt{
    width: 180px;
}


.footFormArea{
	width: 100%;
	margin: 120px auto;
	text-align: center;
	
	font-size: 1.6rem;
	line-height: 1.8;
}
.footFormArea .back{
	width: 100%;
	padding: 40px 20px;
	background-color: #F7F6F4;
	margin-top: 30px;
}
.formWrapper{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.formWrapper .row{
	padding: 10px 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.formWrapper .row dt{
	width: 30%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.formWrapper .row dt .hissu{
	display: block;
	color: #F99728;
	font-size: 14px;
}
.formWrapper .row dd{
	width: 60%;
	text-align: left;
}
.formWrapper .row dd input{
	width: 100%;
	padding: 6px;
	font-size: 1.6rem;
}
.formWrapper .row dd input.form-text-min{
	width: 40%;
}




/* faq */
.faqSection{
    width: 100%;
    padding: 0 20px;
    max-width: 980px;
    margin: 60px auto 120px;
}
.faqSection p{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 0px;
}
.faqSection dl{
    margin: 60px auto;
    font-size: 1.6rem;
    line-height: 1.8;
}
.faqSection dl .qaUnit{
    margin-bottom: 80px;
}
.faqSection dl dt{
    font-size: 2rem;
    font-weight: 700;
    border-bottom: #ccc 1px solid;
    padding: 0 0 10px;
}
.faqSection dl dd{
    padding: 10px 20px 0;
}
@media screen and (max-width:767px) {
    .faqSection{
        margin: 40px auto 120px;
    }
    .faqSection dl dd{
        padding: 10px 0px 0;
    }
}

/*  */
.jobentrythanksSection{
    margin: 80px auto 160px;
    width: 100%;
    max-width: 980px;
    padding: 0 20px;

    font-size: 1.6rem;
    line-height: 1.8;
}
/* privacyPolicy */
.privacyPolicySection{
    margin: 80px auto 160px;
    width: 100%;
    max-width: 980px;
    padding: 0 20px;

    font-size: 1.6rem;
    line-height: 1.8;
}
.privacyPolicySection .privacyGroup{
    margin: 80px 0;
}
.privacyPolicySection .privacyGroup .title{
    margin: 0px 0 10px;
    font-size: 1.8rem;
    font-weight: 700;
}