:root {
	--sub-border-radius20: 20px; 
}
@media (max-width:768px){
    :root {
        --sub-border-radius20: 10px;
    }
}

/* background */
.bg-gray {
    background-color: #fafafa;
}
.bg-mint {
    background-color: #f2f7f9;
}
/* subtop */
#subtop {
    height: 750px;
    position: relative;
    overflow: hidden;
    transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    -webkit-transition: all 2s;
}
#subtop.smHeight {
    height: 550px;
}
#subtop .subtopBg {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;

    -webkit-animation: zoomOutInBg 1.8s ease-out 1;
    -moz-animation: zoomOutInBg 1.8s ease-in 1;
    -ms-animation: zoomOutInBg 1.8s ease-in 1;
    -o-animation: zoomOutInBg 1.8s ease-in 1;
    animation: zoomOutInBg 1.8s ease-in 1;
}
@keyframes zoomOutInBg {
    0% {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }  
}
#subtop .subtopTxt {
    position: relative;
    z-index: 8;
    padding-bottom: 7.5%;
}
#subtop .subTxt {
    opacity: .85;
}
@media (min-width:992px){
    #subtop .mainTxt {
        font-size: 8.5em;
    }
}
@media (max-width:768px){
    #subtop.smHeight,
    #subtop {
        height: 40vh;
        min-height: 400px;
    }
}

/* subTabs */
#subTabs {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    z-index: 15;
}
#subTabs .con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 100px;
    text-align: center;

    transition: background-color 0.4s, transform 0.4s 0.2s;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
#subTabs .con > a {
    display: block;
    flex-grow: 1;
    flex-basis: 33.3333%;
    color: rgba(255,255,255,.5);
    font-size: 20px;
    padding: 18px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
/* #subTabs .con > a:not(:first-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    height: 30%;
    width: 2px;
    background-color: rgba(255,255,255,.3);
} */
#subTabs .con > a.act {
    color: rgba(255,255,255,1);
    background-color: #032b78;
    border-radius: 100px;
}
@media (max-width:992px){
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 5px;
    }
}

/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
}
#site_config .site {
    display: flex;
    align-items: center;
}
#site_config .site .home {
    display: inline-block;
    line-height: 50px;
    position: relative;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .slashed {
    color: #fff;
    display: inline-block;
    margin: 0 1px;
}
#site_config .site .home.home2,
#site_config .site .home.home3 {
    position: relative;
}
#site_config .site .home.home2:after,
#site_config .site .home.home3:after {
    
}
#site_config .site .home.act:before {
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 0px;
}
#site_config .site .home .site_toggle i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home.act .site_toggle i {
    transform: rotate(180deg);
}
#site_config .site .home.home1 {
    text-align: center;
}
#site_config .site .home > span {
    padding: 0px 5px;
    position: relative;
    z-index: 3;
    color: #fff;
}
#site_config .site .home i,
#site_config .site .home span {
    display: inline-block;
    vertical-align: middle;
}
#site_config .site .home > ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 0px;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}
#site_config .site .home > ul li a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    line-height: 1em;
    padding: 10px;
    color: #666;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home > ul li a.act {
    color: #333;
}
#site_config .site .home > ul li a:hover{
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
#site_config .site .home > ul li:hover a:after {
    width: 100%;
    left: 0%;
}
@media (max-width:992px) {
    #site_config .site .home {
        line-height: 50px;
        font-size: 15px;
    }
}
@media (max-width:768px) {
    #site_config .site .home {
        line-height: 40px;
        font-size: 12px;
    }
    #site_config .site .home.home2:after,
    #site_config .site .home.home3:after {
        right: 10px;
        width: 10px;
        background-size: 100%;
    }
    #site_config .site .home > span {
        padding: 0px 5px;
    }
}


/* company1 */
#company1 .sec1 {
    position: relative;
}
#company1 .sec1 .top,
#company1 .sec1 .bt {
    position: relative;
    z-index: 5;
}
#company1 .sec1 .top img {
    width: 100%;
}
#company1 .sec1 .bt {
    background-color: rgba(0,0,0,0.2);
}
#company1 .sec1 .floatTxt {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: 100%;
    z-index: 10;
}
#company1 .sec1 .bgVdo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#company1 .sec1 .bgVdo video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}
#company1 .sec3 {
    background-color: #f8f8f8;
}
@media (min-width:768px){
    #company1 .sec3 .stit {
        background: url(../img/high_logo.png) right center no-repeat;
        background-size: contain;
    }
}

/* btImageBox */
.btImageBox {
    position: relative;
    display: flex;
    gap: 20px;
}
.btImageBox .lft {
    display: block;
    height: 400px;
    width: 400px;
    max-width: 40vw;
    max-height: 40vw;
    overflow: hidden;
    border-radius: var(--sub-border-radius20);
    background-color: #eae6e1;
    background-color: #0a3072;
    padding: 40px;
    position: relative;
}
.btImageBox .lft .tt {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 700;
}
.btImageBox .lft > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.btImageBox .lft .sym_trans img {
    width: 100px;
}
.btImageBox .floatTxtBt {
    position: absolute;
    left: 0;
    bottom: 10%;
    color: #a8a096;
    white-space: nowrap;
}
.btImageBox .rt {
    height: 400px;
    width: calc(100% - 420px);
    max-width: calc(60vw - 20px);
    max-height: 40vw;
    background: url(../img/com1btImg.jpg) center center no-repeat;
    background-size: cover;
    border-radius: var(--sub-border-radius20);
}
@media (max-width:992px){
    .btImageBox {
        gap: 10px;
        flex-wrap: wrap;
    }
    .btImageBox .lft {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        padding: 30px 20px;
    }
    .btImageBox .rt {
        width: 100%;
        max-width: 100%;
        max-height: auto;
    }
}
@media (max-width:500px){
    .btImageBox .lft .sym_trans img {
        width: 60px;
    }
}

/* philosophy */
.philosophy .psItem {
    padding-top: 25px;
    border-top: 1px solid #444;
}
.philosophy .psItem .tt {
    color: #1d53b2;
    font-weight: 600;
}
@media (min-width:768px){
    .philosophy .psItem .bb {
        min-height: 100px;
    }
}

/* vmItem_mission */
.vmItem {
    height: 500px;
    border-radius: var(--sub-border-radius20);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vmItem.vmItem_mission {
    background: url(../img/vmItem_mission.png) right top no-repeat;
    background-color: #00328a;
}
.vmItem.vmItem_vision {
    background: url(../img/vmItem_vision.png) right top no-repeat;
    background-color: #f6f6f6;
}
@media (max-width:768px) {
    .vmItem.vmItem_mission,
    .vmItem.vmItem_vision {
        height: 60vw;
        background-size: 100%;
        padding: 50px 30px;
    }
}

/* yyTop */
.yyTop {
    display: flex;
    gap: 30px;
}
.yyTop a {
    display: inline-block;
    color: #c0c0c0;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    line-height: 1em;
    padding-bottom: 10px;
    text-decoration: none;
    
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.yyTop a.act {
    color: #0a47b7;
    border-color: #0a47b7;
}
.yyTop:hover a.act {
    display: inline-block;
    color: #c0c0c0;
    border-color: transparent;
}
.yyTop:hover a:hover,
.yyTop:hover a.act:hover {
    color: #0a47b7;
    border-color: #0a47b7;
}


/* hisBox */
.hisBoxWrp {
    position: relative;
}
.hisBoxWrp .line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #ddd;
}
.hisBox {
    position: relative;
}
.hisBox > li {
    padding: 30px 0;
}
.hisBox .hidItem > div {
    padding-left: 80px;
}
.hisBox .hidItem .top {
    position: relative;
}
.hisBox .hidItem .top .dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #666;
}
.hisBox .hidItem .top .dot::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 60px;
    height: 1px;;
    background-color: rgba(102, 102, 102, 0.2);
}
.hisBox .hidItem .top .dot:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(5);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(102, 102, 102, 0.1);
}
.hisBox .hidItem .hisCon {
    display: flex;
}
.hisBox .hidItem .hisCon img {
    border-radius: var(--sub-border-radius20);
}
.hisBox .hidItem .hisCon .yy {
    width: 100px;
    font-weight: 700;
}
.hisBox .hidItem .hisCon .cc {
    width: calc(100% - 100px);
}
@media (min-width:992px){
    .hisBox > li:nth-child(odd) {
        margin-left: 50%;
    }
    .hisBox > li:nth-child(even) {
        margin-right: 50%;
    }
    .hisBox > li:nth-child(even) .hidItem > div {
        padding-right: 80px;
        padding-left: 0;
    }
    .hisBox > li:nth-child(even) .hidItem .hisCon .yy {
        order: 2;
        text-align: right;
    }
    .hisBox > li:nth-child(even) .hidItem .hisCon .cc {
        order: 1;
        text-align: right;
    }
    .hisBox > li:nth-child(even) .hidItem .top {
        text-align: right;
    }
    .hisBox > li:nth-child(even) .hidItem .top .dot {
        left: auto;
        right: 0;
        top: 50%;
        transform: translate3d(50%, -50%, 0);
    }
    .hisBox > li:nth-child(even) .hidItem .top .dot::before {
        left: auto;
        right: 7px;
    }
}
@media (max-width:992px){
    .hisBoxWrp .line {
        left: 0px;
    }
}
@media (max-width:768px){
    .hisBox .hidItem > div {
        padding-left: 40px;
    }
    .hisBox .hidItem .top .dot::before {
        width: 30px;
    }
}

/* prjTabs */
.prjTabs {
    display: flex;
    gap: -1px;
    text-align: center;
}
.prjTabs > a {
    flex-basis: 16.666666%;
    flex-grow: 1;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 15px;
    text-decoration: none;
}
.prjTabs > a.act {
    background-color: #373641;
    border-color: #373641;
}
.prjTabs > a .dft {
    color: #888;
    margin-top: 4px;
}
.prjTabs > a.act img {
    filter: brightness(10);
}
.prjTabs > a.act .dft {
    color: #fff;
}
@media (max-width:768px){
    .prjTabs {
        flex-wrap: wrap;
    }
    .prjTabs > a {
        flex-basis: 33.33333%;
        padding: 10px;
    }
    .prjTabs > a img {
        width: 40px;
    }
}

/* prjList */
.prjList .prjListItem {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
}
.prjList .prjListItem .img {
    position: relative;
}
.prjList .prjListItem .img .yyyy {
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: #032b78;
    border-radius: 5px;
    color: #fff;
    padding: 3px 15px;
}
.prjList .prjListItem .txt {
    padding: 40px 30px;
}
.prjList .prjListItem .txt .cate span {
    display: inline-block;
    border: 1px solid #0c974a;
    border-radius: 4px;
    line-height: 1em;
    padding: 7px 15px;
    color: #0c974a;
    transform: translateX(-5px);
    margin-bottom: 8px;
}
.prjList .prjListItem .txt .cate.cate_done span {
    color: #999;
    border-color: transparent;
    background-color: rgba(0,0,0,0.1);
}
.prjList .prjListItem .txt .tit {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}
.prjList .prjListItem .txt .tit:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: -30px;
    width: calc(100% + 30px);
    height: 1px;
    background-color: #aaa;
}
.prjList .prjListItem .txt .con .ll {
    display: flex;
    align-items: flex-start;
    padding: 3px 0;
}
.prjList .prjListItem .txt .con .ll .tt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    padding-right: 20px;
}
.prjList .prjListItem .txt .con .ll .cc {
    width: calc(100% - 100px);
    color: #666;
    font-weight: 400;
}
@media (max-width:768px){
    .prjList .prjListItem {
        border-radius: 10px;
        box-shadow: 0 0 0;
        border: 1px solid #ddd;
    }
    .prjList .prjListItem .txt {
        padding: 30px 20px;
    }
    .prjList .prjListItem .txt .tit:after {
        left: -20px;
        width: calc(100% + 20px);
    }
    .prjList .prjListItem .txt .con .ll .tt {
        width: 80px;
        padding-right: 15px;
    }
    .prjList .prjListItem .txt .con .ll .cc {
        width: calc(100% - 80px);
    }
}


/* contactForm */
.contactForm .fTit {
    margin-bottom: 20px !important;
    padding-left: 10px;
    position: relative;
}
.contactForm .fTit:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #000;
    transform: translateY(-50%);
}
.contactForm ul li {
    margin: 40px 0;
}
.contactForm .form-item {
    position: relative;
}
.contactForm .form-item > label {
    /* position: absolute; */
    gap: 5px;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;
    font-weight: 600;
    margin: 0;
}
.contactForm .checkbox-custom-wrp,
.contactForm select.form-common,
.contactForm input.form-common[type="tel"],
.contactForm input.form-common[type="email"],
.contactForm input.form-common[type="text"] {
    height: 48px;
}
.contactForm .checkbox-custom-wrp {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contactForm .checkbox-custom-wrp .checkbox-custom,
.contactForm .checkbox-custom-wrp .checkbox-custom label {
    margin: 0px;
}
.contactForm .form-common {
    box-shadow: 0 0 0;
    border-radius: 0px;
    border: 0px solid #444;
    border-bottom-width: 1px;
    font-weight: 500;
    font-size: 1.7rem;
    background-color: transparent;
}
.contactForm input.form-common[type="file"] {
    border-width: 1px;
    padding: 1px;
    height: auto;
    padding: 10px;
}
.contactForm .checkWrp {
    line-height: 29px;
}
.contactForm .form-item .form-common {
    /* padding-left: 95px; */
}
.contactForm label {
    font-size: 1.9rem;
    line-height: 1em;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    padding-left: 5px;
}
.contactForm .btnItem {
    width: 100%;
}
.contactForm .agrees input,
.contactForm .agrees label,
.contactForm .agrees strong {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
}
.contactForm .agrees label {
    margin-left: 5px;
}
.contactForm .agrees strong {
    font-weight: 600;
    cursor: pointer;
    margin-left: 5px;
}
.contactForm .btnWrp .btnItem {
    justify-content: center;
}

@media (max-width:768px){
    .contactForm {
        padding: 3rem 1rem;
    }
    .contactForm .fTit {
        margin-bottom: 10px !important;
    }
    .contactForm .checkWrp {
        line-height: 30px;
    }
    .contactForm .checkWrp .checkbox-custom {
        margin: 0px !important;
        margin-right: 5px !important;
    }
    .contactForm .checkbox-custom-wrp {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 15px;
    }
}


/* contBoxs */
.contBoxs {
    padding: 3rem 5rem;
    background-color: #222;
    border-radius: 20px;
}
.contBoxs .item {
    /* border: 1px solid #aaa; */
    display: flex;
    align-items: center;
    padding: 20px;
}
.contBoxs .item.kakao {
    background-color: rgba(250, 234, 98, 0.2);
}
@media (max-width:768px) {
    .contBoxs {
        padding: 3rem 2rem;
        border-radius: 10px;
    }
    .contBoxs .item {
        padding: 10px;
    }
    .contBoxs .item .icon {
        font-size: 30px;
        width: 30px;
    }
    .contBoxs .item .txt {
        width: calc(100% - 30px);
    }
}


/* com_loc_info */
.com_loc_info {
    background-color: #f4f6fa;
}
@media (max-width:768px) {
    .com_loc_info {
        flex-wrap: wrap;
    }
    .com_loc_info > div {
        width: 100%;
    }
    .com_loc_info .rt {
        padding: 20px;
    }
}

/* mapbox */
.mapbox .root_daum_roughmap_landing {
    width: 100% !important;
}
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 550px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}

/* rcBtBox */
.rcBtBox {
    border-left: 1px solid #ddd;
    padding: 0 30px;
}

/* crConBox */
.crConBoxWrp {
    position: relative;
}
.crConBoxWrp:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    width: 1px;
    background-color: #ddd;
}
.crConBox {
    position: relative;
    z-index: 4;
}
.crConBox .crConTit {
    padding-left: 30px;
}
.crConBox .crConTit .top {
    position: relative;
}
.crConBox .crConTit .top:after {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 7px;
    height: 7px;
    background-color: #032b78;
    border-radius: 50%;
}
@media (min-width:991px){
    .crConBox {
        display: flex;
        align-items: flex-start;
    }
    .crConBox .crConTit {
        width: 300px;
    }
    .crConBox .crConRt {
        width: calc(100% - 300px);
        padding-left: 40px;
    }
}
@media (max-width:991px){
    .crConBox .crConRt {
        padding-left: 30px;
    }
}

/* crProList */
.crProList > li {
    padding: 15px;
}
.crProList .item {
    padding: 40px 15px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
    border-radius: var(--sub-border-radius20);
    text-align: center;
    position: relative;
    background-color: #fff;
}
.crProList .item .arr {
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translate3d(-50%, -50%, 0);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00328a;
    border-radius: 50%;
    color: #fff;
    z-index: 9;
}
.crProList .item .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-top: 5px;
}
.crProList .item .txt .dft {
    line-height: 1.2em;
}
@media (max-width:768px){
    .crProList .item {
        padding: 20px 15px;
        box-shadow: 0 0 0;
        border: 1px solid #ddd;
    }
    .crProList li:nth-child(2) .item .arr {
        display: none;
    }
}
@media (max-width:768px){
    .crProList .item .icon img {
        width: 45px;
    }
}

/* wantedList */
.wantedList > li {
    padding: 15px;
}
.wantedList .item {
    padding: 30px 30px 40px;
    background-color: #f4f4f4;
}
.wantedList .item .nmWrp {
    display: flex;
    align-items: center;
    gap: 6px;
}
.wantedList .item .nmWrp .num {
    display: inline-block;
    line-height: 1em;
    padding: 4px 10px;
    background-color: #032b78;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
}
.wantedList .item .nmWrp .c_dft {
    font-size: .85em;
}
.wantedList .item .top .ic {
    background-color: #fff;
    border-radius: var(--sub-border-radius20);
}
.wantedList .item .txt .ss {
    height: 70px;
    display: flex;
    align-items: flex-end;
}
@media (max-width:768px){
    .wantedList .item {
        padding: 20px 20px 30px;
    }
    .wantedList .item .top .ic img {
        width: 45px;
    }
    .wantedList .item .txt .ss {
        height: auto;
    }
}


/* introList */
.introList img {
    margin-bottom: 15px;
    border-radius: 8px;
}

/* recruit */
#recruit .sec2 {
    background-color: #fcfcfc;
}
/* sec3 */
#recruit_view2 .sec2,
#recruit_view1 .sec2,
#recruit .sec3 {
    background: url(../img/rc_bg3.png) right center no-repeat;
    background-color: #0a3072;
}
/* sec4 */
#recruit .sec4 .tableWrp {
    position: relative;
}
#recruit .sec4 .tableWrp:after {
    content: "";
    position: absolute;
    top: -2px;
    left: calc(60% - 2px);
    width: calc(40% + 4px);
    height: calc(100% + 4px);
    border: 4px solid #0a3072;
    
	animation: bk 1.2s linear infinite;
}

@keyframes bk{
	0%{
        opacity: 0;
	}
	30%{
        opacity: 1;
	}
}
/* whyHdBox */
.whyHdBox {
    padding: 40px 20px;
    border-radius: var(--sub-border-radius20);
    background-color: #fff;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.05);
    text-align: center;
}
@media (min-width:768px){
    .whyHdBox .tcon {
        margin-top: 15px;
    }
}
@media (max-width: 768px) {	
    .whyHdBox {
        display: flex;
        align-items: center;
        padding: 20px;
    }
    .whyHdBox .icon {
        width: 40px;
    }
    .whyHdBox .tcon {
        width: calc(100% - 40px);
        padding-left: 15px;
    }
}

/* table  */
.table.table_cost {
    border: 1px solid #ddd;
}
.table.table_cost thead tr th {
    text-align: center;
    color: #111;
    border: 1px solid #ddd;
    font-size: 20px;
    font-weight: 700;
    padding: 15px;
}
.table.table_cost thead tr th strong {
    display: inline-block;
    padding: 6px 25px;
    border-radius: 50px;
}
.table.table_cost thead tr th.imp strong {
    background-color: #0a3072;
}
.table.table_cost tbody tr th,
.table.table_cost tbody tr td,
.table.table_cost tfoot tr th,
.table.table_cost tfoot tr td {
    text-align: center;
    font-size: 18px;
    vertical-align: middle;
    color: #444;
    border: 1px solid #ddd;
    font-weight: 500;
    padding: 15px;
    line-height: 1.4em;
    word-break: keep-all;
}
.table.table_cost thead tr .imp {
    background-color: #f9fbff !important;
}
.table.table_cost tbody tr .imp {
    background-color: rgba(249, 251, 255, 0.4) !important;
}
.table.table_cost tbody tr th {
    color: #111;
    font-weight: 500;
}
.table.table_cost tbody tr td span,
.table.table_cost tbody tr td strong {
    display: inline-block;
    vertical-align: middle;
}
.table.table_cost tbody tr td .del {
    font-weight: 300;
    color: #aaa;
    display: inline-block;
    padding: 0px 10px 0px 3px;
    position: relative;
}
.table.table_cost tbody tr td .del::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    background-color: #aaa;
}
.table.table_cost tbody tr td .del::before {
    content: "";
    position: absolute;
    border-width: 3px;
    border-color: transparent transparent transparent #aaa;
    border-style: solid;
    right: -5px;
    top: calc(50% - 3px);
}
.table.table_cost tbody tr td .sm {
    font-size: .8em;
}
.table.table_cost tfoot tr th,
.table.table_cost tfoot tr td {
    background-color: #c80214;
    color: #fff;
    font-size: 22px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
@media (min-width:1200px){
    .tableListWrp {
        max-width: 1630px;
        margin: 0 auto;
    }
    .tableListWrp .pList {
        max-width: 90%;
        margin: 0 auto;
    }
    .cost {
        width: 80%;
        margin: 0 auto;
    }
}
@media (max-width:1200px){
    .tableListWrp {
        padding: 0 15px;
    }
}
@media (max-width:992px){
    .tableList li:not(:first-child) {
        margin-top: 40px;
    }
}
@media (max-width:767px){
    .table.table_cost tbody tr th,
    .table.table_cost tbody tr td {
        padding: 7px;
    }
    .table.table_cost thead tr th,
    .table.table_cost tbody tr:last-child th,
    .table.table_cost tbody tr:last-child td {
        font-size: 16px;
        vertical-align: middle;
    }
    .table.table_cost tbody tr th,
    .table.table_cost tbody tr td {
        font-size: 14px;
    }
    .table.table_cost thead tr th strong {
        padding: 3px 15px;
        border-radius: 30px;
    }
}

/* chkItem */
.chkItem {
    padding: 25px 0 0;
    display: flex;
    align-items: center;
    border-top: 2px solid #333;
}
.chkItem .chk {
    width: 35px;
}
.chkItem .chk img {
    background-color: #0a3072;
}
.chkItem .con {
    width: calc(100% - 35px);
    padding-left: 25px;
}
@media (max-width: 768px) {	
    .chkItem {
        padding: 15px;
    }
    .chkItem .chk {
        width: 25px;
    }
    .chkItem .con {
        width: calc(100% - 25px);
        padding-left: 15px;
    }
}
/* pList */
.pList li {
    position: relative;
    padding-left: 15px;
    margin: 2px 0;
}
.pList li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: #aaa;
}

/* chkList */
.chkList li > .dft,
.chkList li > .item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* company4 */
#company4 .sec1 .grBox {
    padding: 50px;
    border-radius: var(--sub-border-radius20);
    background-color: #f8f9fc;
}
#company4 .sec1 .dashed {
    padding: 70px 50px;
    border-radius: var(--sub-border-radius20);
    border: 2px dashed #0a3072;
}
#company4 .sec1 .dashed .item {
    padding: 50px 15px;
    border-radius: var(--sub-border-radius20);
    background-color: #fff;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.05);
}
@media (max-width:768px){
    #company4 .sec1 .grBox {
        padding: 30px 15px;
    }
    #company4 .sec1 .dashed {
        padding: 30px 25px;
        border: 1px dashed #0a3072;
    }
    #company4 .sec1 .dashed .item {
        padding: 30px 15px;
    }
    #company4 .sec1 .dashed .item img {
        max-width: 12vw;
    }
}

/* story1 */
#story1 .sec1 .borderBox {
    border: 1px solid #ddd;
    border-radius: var(--sub-border-radius20);
}
#story1 .sec2 {
    background-color: #f8f8f8;
}

/* aboutSun */
.aboutSun {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
    justify-content: center;
    position: relative;
}
.aboutSun .centImg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.aboutSun .centImg img {
    background-color: rgba(10, 48, 114, 0.2);
    border-radius: 50%;
    max-width: 25vw;
}
.aboutSun .sumItem {
    width: calc(50% - 20px);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 200px;
    border-radius: 200px;
    border: 2px solid #0a3072;
}
@media (max-width:768px){
    .aboutSun {
        flex-direction: column;
    }
    .aboutSun .sumItem {
        width: 100%;
        height: 100px;
        border-radius: 10px;
        border: 2px solid #0a3072;
    }
}

/* story2 */
#story2 .row {
    margin: 0 -1px;
}
#story2 .row > div {
    padding: 1px;
}

/* hisConBox */
.hisConBox {
    background-color: rgba(147, 157, 172, 0.1);
    padding: 50px;
    border-radius: var(--sub-border-radius20);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width:768px){
    .hisConBox {
        display: block;
        padding: 30px 20px;
    }
    .hisConBox .icon {
        text-align: right;
    }
    .hisConBox .icon img {
        width: 40px;
        margin-top: 10px;
    }
}