@charset "utf-8";
/* css setting start */
.sec-wrap,
.sec-header,
.sec-content,
.sec-footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.color_primary {
    color: #0080c9;
}
.sp {
    display: none;
}
.tab_list .inner {
    display: flex;
}
.tab_list a {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 70px;
    color: #444444;
    background: #f7f9fa;
    border-right: 1px solid #ddd;
}
.tab_list a:last-child {
    border-right: none;
}
.tab_list a.on {
    color: #fff;
    background: #0080c9;
    border-right-color: #0080c9;
}
.tab_contents section {
    display: none;
    opacity: 0;
}
.tab_contents section.on {
    display: block;
    animation: tabcontent ease 0.3s forwards;
}
.scroll_top {
    z-index: 9;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.scroll_top .button {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #0080c9;
    background: none;
    transform: translateY(150px);
    visibility: hidden;
    opacity: 0;
    transition: ease-out 0.6s;
}
.scroll_top .button img {
    display: block;
    margin: 0 auto 10px;
}
[data-scroll-top="true"] .scroll_top .button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all ease-out 0.6s;
}
[data-scroll-top="false"] .scroll_top .button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: ease-out 0.6s;
}
@keyframes tabcontent {
    to {
        opacity: 1;
    }
}

/* contents */
.dv-conts-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/********************************************* contents *********************************************/
html {
    font-size: 18px;
}
.inner {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}
.scr-none {
    overflow-y: hidden;
}

/********************************************* header *********************************************/

/********************************************* footer *********************************************/
.sec-footer {
    padding: 80px 0;
    background-color: #333;
}
.sec-footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sec-footer .left {
    width: 60%;
}
.sec-footer .right {
    width: 40%;
}
.sec-footer .ft-info {
    overflow: hidden;
    margin: 40px 0 20px;
    display: flex;
    flex-wrap: wrap;
}
.sec-footer .ft-info li {
    padding-right: 16px;
    margin-bottom: 10px;
    color: #fff;
}
.sec-footer .ft-info li:nth-child(1) a {
    color: #0088c6;
    font-weight: 600;
}
.sec-footer .ft-info li:nth-child(4) {
    clear: both;
}
.sec-footer .copy {
    color: rgb(255, 255, 255, 0.4);
    font-size: 0.875rem;
}
.sec-footer .copy b {
    color: #fff;
    font-weight: 400;
}
.sec-footer .family {
    width: 240px;
    padding: 15px 24px;
    background: #444444;
    margin-left: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.sec-footer .family.on {
    overflow: unset;
}
.sec-footer .family span {
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec-footer .family span::after {
    content: "";
    width: 12px;
    height: 7px;
    background: url(/images/down.png) no-repeat;
    opacity: 0.5;
    display: inline-block;
}
.sec-footer .family .sub_family {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    border: 1px solid #666666;
    background-color: #333;
}
.sec-footer .family .sub_family li a {
    padding: 15px 24px;
    display: block;
    border-top: 1px solid #666666;
    color: #aaa;
}
.sec-footer .family .sub_family li a:hover {
    background-color: #fff;
}
.sec-footer .link {
    margin: 120px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.sec-footer .link li {
    padding-left: 30px;
    margin-bottom: 10px;
}
.sec-footer .link li a {
    color: #fff;
}
.sec-footer .link li:nth-child(1) a {
    color: #0088c6;
}

.sec-footer .link_first li:nth-child(1) a {
    color: #fff;
}
.sec-footer .link_second {
    margin: 20px 0 0;
}
/********************************************* main *********************************************/
/* section 00 */
.main_tit {
    color: #222;
    margin-bottom: 80px;
}
.main_tit h2 {
    font-size: 46px;
    line-height: 1.4;
}
.main_tit p {
    font-size: 1rem;
    color: #0099e5;
    margin-bottom: 20px;
    font-weight: 700;
}
.more {
    font-weight: 800;
    color: #222;
    position: relative;
    display: inline-block;
}
.more:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #222;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all ease 0.3s;
}
.more:hover:after {
    width: 0;
}

/* section 01 */
.main_visual .visual_tit {
    width: 100%;
    color: #fff;
}
.main_visual .visual_tit h2 {
    font-size: 65px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.main_visual .visual_tit h2 b {
    font-size: 80px;
    line-height: 1.4;
}
.main_visual .visual_tit p {
    font-size: 1.5rem;
}

.main_visual .swiper-slide .visual_tit h2 {
    transform: translateY(40px);
    opacity: 0;
    transition: all ease 0.6s;
}
.main_visual .swiper-slide .visual_tit p {
    transform: translateY(40px);
    opacity: 0;
    transition: all ease 0.6s;
    transition-delay: 0.4s;
}
.main_visual .swiper-slide-active .visual_tit h2 {
    transform: translateY(0);
    opacity: 1;
}
.main_visual .swiper-slide-active .visual_tit p {
    transform: translateY(0);
    opacity: 1;
}

.main_visual .swiper-slide {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_visual .swiper-slide .inner {
    height: 100%;
    display: flex;
    align-items: center;
}
.main_visual .page_wrap {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1500px;
    z-index: 100;
}
.main_visual .swiper-pagination {
    display: flex;
    justify-content: flex-start;
}
.main_visual .swiper-pagination-bullet {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex !important;
    align-items: center;
    text-align: left;
    border-radius: 0;
    opacity: 1;
    background-color: transparent;
    display: felx;
    justify-content: center;
}
.main_visual .swiper-pagination-bullet em {
    font-size: 1rem;
    letter-spacing: -0.38px;
    color: #fff;
    opacity: 0.3;
}
.main_visual .swiper-pagination-bullet-active em {
    opacity: 1;
}
.main_visual .swiper-pagination-bullet svg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.main_visual .swiper-pagination-bullet-active svg {
    opacity: 1;
}
.main_visual .swiper-pagination-bullet-active #path {
    animation: dash 3s linear forwards;
    stroke-dasharray: 300;
}
@keyframes dash {
    from {
        stroke-dashoffset: 300;
    }
    to {
        stroke-dashoffset: 0;
    }
}
/* 메인 백그라운드 */
.main_visual .swiper-slide .background {
    width: 100%;
    height: 100vh;
    position: absolute;
    background-size: cover;
}
.main_visual .swiper-slide .background.mo {
    display: none;
}

/* section 02 */
.main_service {
    position: relative;
    padding: 150px 0;
    background-color: #fff;
}
.main_service:before {
    content: "";
    width: 45%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #f7f9fa;
}
.main_service .service_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main_service .service_box .s_box {
    width: 31%;
    background-color: #fff;
    padding: 60px 40px 100px;
    border-radius: 15px;
    position: relative;
    border: 1px solid #ddd;
}
.main_service .service_box * {
    transition: all ease 0.6s;
}
.main_service .service_box .s_box h3 {
    font-size: 26px;
    color: #222;
}
.main_service .service_box .s_box h3 small {
    vertical-align: baseline;
    transition: none;
}
.main_service .service_box .s_box p {
    font-size: 1.125rem;
    margin: 10px 0 20px;
    min-height: 54px;
}
.main_service .service_box .s_box ul {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}
.main_service .service_box .s_box ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 12px;
}
.main_service .service_box .s_box ul li:after {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #1d7cb4;
    position: absolute;
    top: 20px;
    left: 0;
}
.main_service .service_box .s_box img {
    display: block;
    margin: 0 0 30px;
}
.main_service .service_box .s_box .more {
    position: absolute;
    left: 60px;
    bottom: 60px;
}
.main_service .service_box .s_box:hover {
    background: #0089cf;
    border-color: #0089cf;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    color: #fff;
}
.main_service .service_box .s_box:hover img {
    filter: brightness(0) invert(1);
}
.main_service .service_box .s_box:hover h3 {
    color: #fff;
}
.main_service .service_box .s_box:hover p {
    color: #fff;
}
.main_service .service_box .s_box:hover ul {
    border-color: rgba(255, 255, 255, 0.3);
}
.main_service .service_box .s_box:hover ul li {
    color: #fff;
}
.main_service .service_box .s_box:hover ul li:after {
    background: #fff;
}
.main_service .service_box .s_box:hover .more {
    color: #fff;
}
.main_service .service_box .s_box:hover .more:after {
    background: #fff;
}

/* section 03 */
.main_core {
    padding: 150px 0;
}
.main_core .more {
    position: absolute;
    right: 0;
    bottom: 0;
}
.main_core .swiper-slide {
    width: 100%;
    height: 700px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0;
}
.main_core .bg01 {
    background-image: url(/images/main_core_bg01.jpg);
}
.main_core .bg02 {
    background-image: url(/images/main_core_bg02.jpg);
}
.main_core .bg03 {
    background-image: url(/images/main_core_bg03.jpg);
}
.main_core .bg04 {
    background-image: url(/images/main_core_bg04.jpg);
}
.main_core .bg05 {
    background-image: url(/images/main_core_bg05.jpg);
}
.main_core_txt {
    width: 100%;
    color: #fff;
}
.main_core_txt h3 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}
.main_core_txt h3:after {
    content: "";
    width: 30px;
    height: 2px;
    display: block;
    margin: 20px 0;
    background: #fff;
}
.main_core_txt b {
    font-size: 20px;
    font-weight: 500;
}
.main_core_txt p {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
}
.main_core_txt p .mo-br {
    display: none;
}
.main_core .swiper-pagination {
    max-width: 1500px;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 50px;
    display: flex;
    gap: 1%;
}
.main_core .swiper-pagination-bullet {
    width: auto;
    height: auto;
    flex: 1;
    background-color: transparent;
    opacity: 1;
    position: relative;
}
.main_core .swiper-pagination-bullet em {
    color: #fff;
    padding: 20px 0;
    white-space: nowrap;
}
.main_core .swiper-pagination-bullet .gage {
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.main_core .swiper-pagination-bullet b {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: 1;
}
.main_core .swiper-pagination-bullet i {
    width: 0;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.main_core .swiper-pagination-bullet-active i {
    animation-name: countingBar;
    animation-duration: 6s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}
@keyframes countingBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* section 04 */
.animated-title {
    font-size: 120px;
    color: #0089cf;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 200px 0 0;
    overflow-x: hidden;
    overflow-y: hidden;
    font-weight: 800;
}
.animated-title b {
    color: #fff;
    -webkit-text-stroke: 1px #0089cf;
    vertical-align: baseline;
    margin-right: 3%;
}
.animated-title .track {
    position: absolute;
    top: 0;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 60s linear infinite;
}
.animated-title .content {
    line-height: 1;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* section 05 */
.main_certifi {
    padding: 150px 0;
    background: url("/images/main_certifi_bg.png") no-repeat left bottom;
}
.main_certifi .tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main_certifi .tabs .tab_menu {
    width: 30%;
    border-top: 2px solid #333;
}
.main_certifi .tabs .tab_menu li {
    border-bottom: 1px solid #ddd;
}
.main_certifi .tabs .tab_menu li a {
    display: block;
    padding: 40px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}
.main_certifi .tabs .tab_menu li a:after {
    content: "→";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #aaa;
    font-weight: 400;
}
.main_certifi .tabs .tab_menu li a.active {
    color: #0089cf;
    background: #f7f9fa;
}
.main_certifi .tabs .tab_menu li a.active:after {
    color: #0089cf;
}
.main_certifi .tabs .tab_menu li a sup {
    font-size: 0.938rem;
    margin: -10px 20px 0 0;
    display: inline-block;
    font-weight: 700;
}
.main_certifi .tabs .tab_box {
    width: 65%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main_certifi .tabs .tab_box .tab {
    background: #333;
    width: 100px;
    transition: all ease 0.6s;
    height: 560px;
    overflow: hidden;
}
.main_certifi .tabs .tab_box .tab a {
    display: block;
    padding: 100px 60px;
    opacity: 0;
    transition: all ease 0.6s;
}
.main_certifi .tabs .tab_box .tab img {
    white-space: nowrap;
    display: block;
    margin-bottom: 20px;
}
.main_certifi .tabs .tab_box .tab h3 {
    color: #fff;
    font-size: 30px;
    white-space: nowrap;
}
.main_certifi .tabs .tab_box .tab p {
    color: #fff;
    margin: 20px 0 60px;
    white-space: nowrap;
    font-size: 1.125rem;
}
.main_certifi .tabs .tab_box .more {
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}
.main_certifi .tabs .tab_box .more:after {
    background: #fff;
}
.main_certifi .tabs .tab_box .tab:nth-of-type(1) {
    background: url("/images/main_certifi_bg01.jpg") no-repeat center center /
        cover;
}
.main_certifi .tabs .tab_box .tab:nth-of-type(2) {
    background: url("/images/main_certifi_bg02.jpg") no-repeat center center /
        cover;
}
.main_certifi .tabs .tab_box .tab:nth-of-type(3) {
    background: url("/images/main_certifi_bg03.jpg") no-repeat center center /
        cover;
}
.main_certifi .tabs .tab_box .tab.active {
    width: calc(100% - 250px);
}
.main_certifi .tabs .tab_box .tab.active a {
    opacity: 1;
}

/* section 06 */
.main .sitemap {
    padding: 150px 0;
}
.main_contact {
    background: url("/images/main_contact_bg.jpg") no-repeat center center /
        cover;
    padding: 150px 0;
    color: #fff;
}
.main_contact .main_tit {
    color: #fff;
}
.main_contact .main_tit p {
    color: #fff;
}
.main_contact .accord {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 80px 0 0;
}
.main_contact .accord .left {
    width: 30%;
}
.main_contact .accord .left p {
    font-size: 20px;
    margin: 0 0 20px;
}
.main_contact .accord .left ul li {
    margin: 10px 0;
    padding-left: 15px;
    position: relative;
}
.main_contact .accord .left ul li:after {
    content: "";
    width: 3px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}
.main_contact .accord .right {
    width: 70%;
}
.main_contact .accord .right ul {
    border-top: 2px solid #fff;
}
.main_contact .accord .right ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.main_contact .accord .right ul li h3 {
    font-size: 26px;
    padding: 30px 60px 30px 30px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}
.main_contact .accord .right ul li h3.on:after {
    display: none;
}
.main_contact .accord .right ul li h3:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 30px;
    top: 46px;
}
.main_contact .accord .right ul li h3:after {
    content: "";
    width: 2px;
    height: 20px;
    background: #fff;
    position: absolute;
    right: 39px;
    top: 37px;
}
.main_contact .accord .right ul li div {
    padding: 0 30px 30px;
    display: none;
}
.main_contact .accord .right ul li div p {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
}
.main_contact .accord .right ul li div p:after {
    content: "";
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}

/********************************************* sub *********************************************/
/* head title */
.head_title {
    text-align: center;
    margin-bottom: 70px;
}
.head_title h2 {
    font-size: 30px;
    color: #0099e5;
    font-weight: 500;
    margin-bottom: 10px;
}
.head_title p {
    font-size: 46px;
    font-weight: bold;
    color: #222;
}

/* sub title */
.sub_tit {
    margin: 120px 0 50px;
}
.sub_tit:has(h3) {
    margin: 75px 0 35px;
}
.sub_tit h2 {
    font-size: 46px;
    line-height: 1.4;
    color: #222;
    text-align: center;
}
.sub_tit h2 b {
    color: #0088c6;
    vertical-align: baseline;
}
.sub_tit h3 {
    font-size: 36px;
    line-height: 1.4;
    color: #222;
    text-align: center;
    position: relative;
    text-align: left;
}
.sub_tit h3::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    width: 6px;
    height: 6px;
    background: #0080c9;
    border-radius: 50%;
    margin-left: 5px;
}
.sub_tit p {
    font-size: 1.125rem;
    margin-top: 20px;
    text-align: center;
}

/* sub head */
.sub_head {
    padding: 200px 0 50px;
    z-index: 2;
    position: relative;
}
.sub_head .sub_position {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.sub_head .sub_position > li {
    position: relative;
    font-size: 1.125rem;
    height: 40px;
}
.sub_head .sub_position > li img {
    margin-top: 4px;
}
.sub_head .sub_position > li + li::before {
    content: "·";
    display: inline-block;
    margin: 0 20px;
    font-weight: 800;
}
.sub_head .sub_position > li > ul {
    position: absolute;
    top: 40px;
    background: #fff;
    left: 30px;
    border: 1px solid #ddd;
    padding: 15px;
    width: 230px;
    display: none;
    background: #fff;
}
.sub_head .sub_position > li > ul > li {
    font-size: 0.938rem;
    display: block;
    padding: 3px 0;
}
.sub_head .sub_position > li > ul > li:hover {
    color: #0088c6;
}
.sub_head .sub_position > li:last-child {
    color: #0088c6;
    font-weight: 500;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
}
.sub_head .sub_position > li:last-child::after {
    content: ">";
    position: absolute;
    right: 0;
    top: -3px;
    font-weight: 800;
    transform: rotate(90deg) scaleX(0.8);
    color: #0088c6;
}
.sub_head h1 {
    font-size: 54px;
    color: #222;
}
.sub_visual {
    background: #ddd;
    width: 100%;
    height: 480px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.sub_visual.bg01 {
    background-image: url("/images/sub/sub_visual01.jpg");
}
.sub_visual.bg02 {
    background-image: url("/images/sub/sub_visual02.jpg");
}
.sub_visual.bg03 {
    background-image: url("/images/sub/sub_visual03.jpg");
}
.sub_visual.bg04 {
    background-image: url("/images/sub/sub_visual04.jpg");
}
.sub_visual.bg05 {
    background-image: url("/images/sub/sub_visual05.jpg");
}

/* download btn */
.download {
    font-size: 0;
    text-align: right;
}
.download .btn {
    display: inline-block;
    margin-right: 10px;
}
.download .btn a {
    width: 270px;
    text-align: center;
    border: 1px solid #0080c9;
    font-size: 1.125rem;
    color: #0080c9;
    font-weight: 400;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all ease 0.3s;
}
.download .btn a i {
    margin-left: 10px;
}
.download .btn a em {
    font-weight: 500;
}
.download .btn a:hover {
    background: #0080c9;
    color: #fff;
}
.download .btn a:hover i {
    filter: brightness(0) invert(1);
}

/* greeting */
.greeting {
    padding-bottom: 150px;
    overflow: hidden;
}
.greeting .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
}
.greeting .txt {
    width: 45%;
    padding: 0;
    position: relative;
}
.greeting .txt::before {
    content: "";
    width: 200%;
    height: 100%;
    position: absolute;
    left: -30%;
    top: 160px;
    height: 100%;
    z-index: -1;
    background: #f7f9fa;
}
.greeting .txt p {
    font-size: 1.125rem;
    line-height: 1.8;
}
.greeting .txt strong {
    font-size: 1.5rem;
    line-height: 1.8;
    vertical-align: baseline;
    color: #222;
}
.greeting .img {
    width: 45%;
    text-align: center;
}
.greeting .img img {
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.2);
}

/* corporate */
.corporate .corpor_info {
    padding: 100px 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.corporate .corpor_info > div {
    display: flex;
    max-width: 600px;
    margin: 20px auto;
    flex-wrap: wrap;
}
.corporate .corpor_info h3 {
    color: #222;
    font-weight: 600;
    line-height: 1.8;
    font-size: 1.125rem;
    width: 140px;
}
.corporate .corpor_info p {
    color: #666;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.125rem;
    width: calc(100% - 140px);
}
/*.corporate .corpor_info .left{width:50%; position:relative; z-index: 10;}*/
/*.corporate .corpor_info .left::after{content:''; width:135%; height:41vw; background-color:#f7f9fa; position:absolute; top:100px; left:-50%; z-index: -1;}*/
/*.corporate .corpor_info .right{width:50%; padding-left:7%;}*/
/*.corporate .corpor_info .right dl{display:flex; padding:28px 0; border-bottom:1px solid #ddd;}*/
/*.corporate .corpor_info .right dl:last-child{border-bottom:0;}*/
/*.corporate .corpor_info .right dl dt{width:130px; font-size:1.063rem; color:#222; font-weight:700;}*/
/*.corporate .corpor_info .right dl dd{ color:#666; font-weight:400; line-height:1.8; width:calc(100% - 130px);}*/
.corporate .corpor_safety {
    padding-bottom: 100px;
    border-bottom: 1px solid #ddd;
}
.corporate .corpor_safety .txt_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.8;
}
.corporate .corpor_safety .txt_container .ceo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.corporate .corpor_safety .txt_container .ceo strong {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #222;
    margin-left: 6px;
}
.corfor_sec01 {
    padding: 30px 0 150px;
}
.corfor_sec01 .flex ul {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    justify-content: center;
}
.corfor_sec01 .flex ul li {
    width: 23%;
}
.corfor_sec01 .flex ul li .img_wrap {
    border: 1px solid #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.corfor_sec01 .flex ul li .txt {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: #222;
    padding: 25px 0;
}
.corfor_sec02 {
    padding: 30px 0 150px;
    background-color: #f7f9fa;
}
.corfor_sec02 .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.corfor_sec02 .flex .box {
    padding: 60px 4% 60px 300px;
    position: relative;
    background-color: #fff;
    border-top: 2px solid #222;
    border-bottom: 1px solid #ddd;
}
.corfor_sec02 .flex .box h4 {
    font-size: 27px;
    color: #222;
    margin-bottom: 20px;
}
.corfor_sec02 .flex .box.center .txt {
    padding-left: 15px;
}
.corfor_sec02 .flex .box .txt {
    margin-bottom: 20px;
}
.corfor_sec02 .flex .box .txt p {
    font-size: 1.063rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    position: relative;
}
.corfor_sec02 .flex .box .txt p::before {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #0088c6;
    position: absolute;
    left: -12px;
    top: 11px;
}
.corfor_sec02 .flex .box .txt span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}
.corfor_sec02 .flex .box .icon_img {
    position: absolute;
    left: 60px;
    top: 50%;
    margin-top: -90px;
}
.corfor_sec02 .flex .box.center {
    width: 100%;
    margin-bottom: 60px;
}
.corfor_sec02 .flex .box.left {
    width: 48%;
}
.corfor_sec02 .flex .box.right {
    width: 48%;
}

/* ci */
.ci .ci_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ci .ci_flex > div {
    width: 50%;
}
.ci .ci_sec01 {
    padding: 0 0 150px;
}
.ci .ci_sec01 .ci_flex .txt {
    padding: 0 50px;
}
.ci .ci_sec01 .ci_flex .txt h3 {
    font-size: 30px;
    margin: 30px 0;
    color: #222;
}
.ci .ci_sec01 .ci_flex .txt p {
    font-size: 1.125rem;
}
.ci .ci_sec02 {
    background: #f7f9fa;
    padding: 30px 0 150px;
}
.ci .ci_sec03 {
    padding: 30px 0 150px;
}
.ci .ci_sec03 .download {
    margin-top: 30px;
    text-align: center;
}

/* history */
.history {
    padding-bottom: 150px;
}
.history .history_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #333;
    margin-top: 70px;
}
.history .history_cont .tab-menu {
    position: sticky;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 0;
}
.history .history_cont .tab-menu li a {
    color: #ddd;
    font-size: 26px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 30px 0;
    position: relative;
}
.history .history_cont .tab-menu li a.active {
    color: #222;
    font-size: 36px;
    font-weight: 700;
    border-bottom: 2px solid #222;
}
.history .history_cont .sections {
    width: calc(100% - 400px);
}
.history .history_cont section {
    position: relative;
    padding: 50px 0;
    border-bottom: 1px solid #ddd;
}
.history .history_cont section strong {
    font-size: 2.625rem;
    line-height: 1;
    color: #258bc4;
    position: absolute;
    left: 0;
    top: 60px;
}
.history .history_cont section ul {
    padding-left: 300px;
}
.history .history_cont section ul li {
    padding-left: 100px;
    margin: 15px 0;
    position: relative;
}
.history .history_cont section ul li b {
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "Noto Sans KR";
}
.history .history_cont section ul li p {
    position: relative;
    font-size: 1.063rem;
    font-weight: 400;
    margin: 10px 0;
}
.history .history_cont .tab {
    display: none;
}
.history .history_cont .tab.active {
    display: block;
}

/* location */
.location {
    padding-bottom: 160px;
}
.location .map_info {
    background: #0080c9;
    color: #fff;
    padding: 40px 60px;
    position: relative;
}
.location .map_info h3 {
    font-size: 30px;
    display: block;
}
.location .map_info h3 small {
    font-size: 1rem;
    vertical-align: baseline;
    margin-left: 10px;
    font-weight: 400;
}
.location .map_info .info_content {
    width: calc(100% - 120px);
}
.location .map_info dl {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}
.location .map_info dl dt {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    margin-right: 30px;
}
.location .map_info dl dd {
    display: inline-block;
    font-size: 1.125rem;
    vertical-align: bottom;
    margin-right: 60px;
}
.location .map_info dl i {
    position: absolute;
    left: 0;
    top: 4px;
}
.location .map_info .map_go img {
    vertical-align: middle;
    margin: -3px 10px 0 0;
}
.location .map_info .map_go {
    background: #fff;
    color: #0080c9;
    text-decoration: underline;
    padding: 20px 30px;
    font-weight: 500;
    position: absolute;
    right: 60px;
    top: 40px;
}
.location .line_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}
.location .line_flex .box {
    position: relative;
    padding: 60px 60px 60px 260px;
    width: 48%;
    border-top: 3px solid #d9dbdb;
    border-bottom: 3px solid #d9dbdb;
    min-height: 260px;
}
.location .line_flex .box .icon_img {
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -90px;
}
.location .line_flex .box h4 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #222;
}
.location .line_flex .box p {
    margin: 10px 0;
}
.location .line_flex .box p .subway {
    display: inline-block;
    color: #fff;
    background: #222;
    padding: 3px 10px;
    margin-right: 10px;
}
.location .line_flex .box p .bus {
    color: #222;
    margin-right: 20px;
    position: relative;
}
.location .line_flex .box p .bus::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 50%;
    background-color: #222;
    right: -10px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
}
/* business */
/* set title */
.business h3 {
    position: relative;
    margin: 75px 0 35px;
}
.business p {
    margin: 35px 0 20px;
    line-height: 1.8;
    font-size: 1.125rem;
}
.business hr {
    margin: 80px 0;
    height: 1px;
    background: #ddd;
    border: none;
}
.business .h4 {
    margin: 60px 0 40px;
    font-size: 26px;
    color: #222;
}
.business .head_title {
    text-align: center;
    margin-bottom: 70px;
}
.business .head_title h2 {
    font-size: 30px;
    color: #0099e5;
    font-weight: 500;
    margin-bottom: 10px;
}
.business .head_title p {
    margin: 0;
    font-size: 46px;
    font-weight: bold;
    color: #222;
}

/* dot list */
.dot_txt li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 14px;
    font-size: 1.125rem;
}
.dot_txt li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #0080c9;
}
.dot_txt li:last-child {
    margin-bottom: 0;
}

/* grid */
.logo_grid {
    display: flex;
    flex-wrap: wrap;
    margin: -17px;
    justify-content: flex-start;
}
.logo_grid li {
    flex: 0 1 20%;
    padding: 17px;
    text-align: center;
}
.logo_grid li .img_wrap {
    border: 1px solid #dddddd;
}
.logo_grid li .img_wrap img {
    display: block;
    margin: auto;
}
.logo_grid li h4 {
    margin-top: 24px;
    text-align: center;
    font-size: 1.125rem;
    color: #222;
}

/* top intro section */
.intro_sec {
    padding: 60px 0 120px;
    background: #f7f9fa;
}
.intro_sec .img_wrap,
.intro_sec .diagram_wrap {
    position: relative;
    top: -15vw;
    margin: 20vw 0 -15vw;
}
.intro_sec .txt {
    margin-top: 45px;
}
.intro_sec .txt p {
    margin: 0 13%;
    text-align: center;
}

/* overview */
/*.business_overview_sec01{display: flex;flex-wrap:wrap;justify-content: space-between;padding-bottom: 120px;background: url('/images/sub/business/overview_sec01_bg.png') no-repeat bottom right;}*/
/*.business_overview_sec01 .box:nth-child(1){width: 51.7%;}*/
/*.business_overview_sec01 .box:nth-child(2){margin-top: 180px;margin-left: 8%;width: 40.3%;}*/
/*.business_overview_sec01 .box:nth-child(3){margin-top: -225px;}*/
/*.business_overview_sec01 .box h3{margin: 50px 0 15px;font-size: 36px;}*/
/*.business_overview_sec01 .box h3::after{content: none;}*/
/*.business_overview_sec01 .box h3 small{vertical-align: middle;font-size:1.25rem;}*/
/*.business_overview_sec01 .box h4{position: relative;margin-bottom: 20px;padding-bottom: 24px;font-size:1.5rem;font-weight: 500;}*/
/*.business_overview_sec01 .box h4::before{content: '';position: absolute;bottom: 0;left: 0;width: 30px;height: 2px;background: #0080c9;}*/
/*.business_overview_sec01 .box ul li{position: relative;margin-bottom: 20px;padding-left: 15px;font-size: 1.125rem;}*/
/*.business_overview_sec01 .box ul li::before{content: '';position: absolute;top: 13px;left: 0;width: 3px;height: 3px;background: #0080c9;}*/
/*.business_overview_sec01 .box ul li:last-child{margin-bottom: 0;}*/
/*.business_overview_sec01 .box .more{margin-top: 40px;}*/
.business_overview_sec01 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 80px 0 150px;
}
.business_overview_sec01 .s_box {
    width: 31%;
    background-color: #fff;
    padding: 60px 40px 100px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.business_overview_sec01 * {
    transition: all ease 0.6s;
}
.business_overview_sec01 .s_box h3 {
    font-size: 26px;
    color: #222;
    margin: 0;
}
.business_overview_sec01 .s_box h3 small {
    vertical-align: baseline;
    transition: none;
}
.business_overview_sec01 .s_box p {
    font-size: 1.125rem;
    margin: 10px 0 20px;
    min-height: 54px;
}
.business_overview_sec01 .s_box ul {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}
.business_overview_sec01 .s_box ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 12px;
}
.business_overview_sec01 .s_box ul li:after {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #1d7cb4;
    position: absolute;
    top: 20px;
    left: 0;
}
.business_overview_sec01 .s_box img {
    display: block;
    margin: 0 0 30px;
}
.business_overview_sec01 .s_box .more {
    position: absolute;
    left: 60px;
    bottom: 60px;
}
.business_overview_sec01 .s_box:hover {
    background: #0089cf;
    border-color: #0089cf;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    color: #fff;
}
.business_overview_sec01 .s_box:hover img {
    filter: brightness(0) invert(1);
}
.business_overview_sec01 .s_box:hover h3 {
    color: #fff;
}
.business_overview_sec01 .s_box:hover p {
    color: #fff;
}
.business_overview_sec01 .s_box:hover ul {
    border-color: rgba(255, 255, 255, 0.3);
}
.business_overview_sec01 .s_box:hover ul li {
    color: #fff;
}
.business_overview_sec01 .s_box:hover ul li:after {
    background: #fff;
}
.business_overview_sec01 .s_box:hover .more {
    color: #fff;
}
.business_overview_sec01 .s_box:hover .more:after {
    background: #fff;
}
.business_overview_sec02 {
    padding-bottom: 160px;
    background: #f7f9fa;
    border-top: 1px solid transparent;
}
.business_overview_sec02 .flex {
    display: flex;
    flex-wrap: wrap;
    margin: -18px;
}
.business_overview_sec02 .flex .box {
    position: relative;
    margin: 18px;
    padding: 52px 52px 52px 200px;
    width: calc(50% - 36px);
    background: #fff;
    border: 1px solid #dddddd;
    border-top: 2px solid #222222;
}
.business_overview_sec02 .flex .box:last-child {
    width: 100%;
}
.business_overview_sec02 .flex .box .icon_img {
    position: absolute;
    top: 56px;
    left: 60px;
}
.business_overview_sec02 .flex .box h4 {
    display: flex;
    margin-bottom: 24px;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
}
.business_overview_sec02 .flex .box h4 small {
    flex: 0 0 auto;
    padding-right: 10px;
    font-size: 1rem;
    color: #0080c9;
    font-weight: 600;
}
.business_overview_sec02 .flex .box .txt span {
    font-size: 1.125rem;
    color: #444444;
}

/* van service */
.service_van_sec01 .diagram_wrap {
    padding: 80px;
    background: #fff;
    border: 1px solid #dddddd;
}
.service_van_sec01 .diagram_wrap ul {
    display: flex;
    flex-wrap: wrap;
}
.service_van_sec01 .diagram_wrap ul li {
    margin-right: 15.8445441%;
    width: calc(100% / 4 - 11.8834081%);
}
.service_van_sec01 .diagram_wrap ul li:last-child {
    margin-right: 0;
}
.service_van_sec01 .diagram_wrap ul li .icon_img {
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    border: 1px solid #0080c9;
    border-radius: 50%;
    box-shadow: 0px 2px 20px 0px rgba(0, 136, 198, 0.1);
}
.service_van_sec01 .diagram_wrap ul li .icon_img img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.service_van_sec01 .diagram_wrap ul li .box {
    position: relative;
}
.service_van_sec01 .diagram_wrap ul li:not(:last-child) .box::after {
    content: "";
    z-index: 2;
    position: absolute;
    top: 50%;
    left: calc(100% + 30px);
    margin-top: -5px;
    width: 86%;
    height: 11px;
    background: url("/images/sub/arrow_large.png") no-repeat;
    background-size: 100% auto;
}
.service_van_sec01 .diagram_wrap ul li p {
    margin-top: 30px;
    margin-left: -10%;
    width: 120%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.1em;
}
.service_van_sec02 {
    padding: 80px 0 160px;
}
.service_van_sec02 h4 {
    margin-top: 10px;
    font-size: 1.125rem;
    color: #222;
}
.service_van_sec02 .footnote {
    display: block;
    position: relative;
    padding-left: 22px;
}
.service_van_sec02 .footnote span {
    position: absolute;
    top: 0;
    left: 0;
}
.service_van_sec02 .line_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.service_van_sec02 .line_flex .box {
    position: relative;
    padding: 60px 60px 60px 260px;
    width: 48%;
    border-top: 3px solid #d9dbdb;
    border-bottom: 3px solid #d9dbdb;
}
.service_van_sec02 .line_flex .box .icon_img {
    position: absolute;
    left: 40px;
    top: 60px;
}
.service_van_sec02 .line_flex .box .more {
    margin-top: 20px;
}
.service_van_sec02 .line_flex .box h4 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 600;
}
.service_van_sec02 .line_flex .box span {
}
.service_van_sec02 .step {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service_van_sec02 .step > li {
    position: relative;
    margin: 0 0 10%;
    padding: 40px;
    width: 45%;
    min-height: 360px;
    background: #f7f9fa;
    transition: all ease 0.3s;
}

/* board */
.srboardView .viewArea .viewTitle .day {
    margin-bottom: 20px;
}
.srboardView .viewArea .viewTitle .day span {
    padding: 0 20px;
    position: relative;
}
.srboardView .viewArea .viewTitle .day span:nth-child(1) {
    font-size: 16px;
    font-weight: 700;
    color: #0080c9;
    padding-left: 0;
}
.srboardView .viewArea .viewTitle .day span:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}
/* .srboardView .viewArea .viewCont{display:flex; } */
.srboardView .viewArea .viewCont .left {
    width: 19%;
    padding-right: 20px;
}
.srboardView .viewArea .viewCont .left h5 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
}
.srboardView .viewArea .viewCont .right > div span {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
    position: relative;
    display: flex;
}
.srboardView .viewArea .viewCont .right .txt01 span {
    padding-left: 15px;
}
.srboardView .viewArea .viewCont .right .txt01 span::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #0080c9;
    position: absolute;
    left: 0;
    top: 10px;
}
.srboardView .viewArea .viewCont .right .txt02 span em.num {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}
.srboardView .viewArea .viewCont .right .txt02 span p.sub {
    display: flex;
    flex-direction: column;
}
.srboardView .viewArea .viewCont .right .txt02 span p.sub em {
    font-size: 16px;
    margin-top: 15px;
    display: block;
}

@media screen and (min-width: 767px) {
    .service_van_sec02 .step > li:not(:last-child)::after {
        content: "";
        z-index: 2;
        position: absolute;
        bottom: 50%;
        right: -19%;
        margin-bottom: -5px;
        width: 15%;
        height: 11px;
        background: url("/images/sub/arrow_short.png") no-repeat;
        background-size: 100% auto;
    }
    .service_van_sec02 .step > li:nth-child(2)::after {
        transform: rotate(90deg);
        right: 50%;
        margin-right: -55px;
        bottom: -4vw;
    }
    .service_van_sec02 .step > li:nth-child(3)::after {
        transform: rotate(180deg);
        margin-right: 122%;
    }
    .service_van_sec02 .step > li:nth-child(4)::after {
        transform: rotate(90deg);
        right: 50%;
        margin-right: -55px;
        bottom: -4vw;
    }
    .service_van_sec02 .step > li:nth-child(1) {
        order: 1;
    }
    .service_van_sec02 .step > li:nth-child(2) {
        order: 2;
    }
    .service_van_sec02 .step > li:nth-child(3) {
        order: 4;
    }
    .service_van_sec02 .step > li:nth-child(4) {
        order: 3;
    }
    .service_van_sec02 .step > li:nth-child(5) {
        order: 5;
        margin-bottom: 3%;
    }
    .service_van_sec02 .step > li:nth-child(6) {
        order: 6;
        margin-bottom: 3%;
    }
}

.service_van_sec02 .step > li h4 {
    margin-bottom: 22px;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
}
.service_van_sec02 .step > li h4 small {
    display: block;
    margin-bottom: 15px;
    color: #0080c9;
    font-weight: bold;
}
.service_van_sec02 .step > li .txt {
    margin-top: 0;
    margin-bottom: 25px;
}
.service_van_sec02 .step > li ul li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 14px;
    font-size: 1rem;
}
.service_van_sec02 .step > li ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #0080c9;
}
.service_van_sec02 .step > li ul li:last-child {
    margin-bottom: 0;
}
.service_van_sec02 .step > li:hover {
    background: #0080c9;
    box-shadow: 0px 2px 20px 0px rgba(0, 136, 198, 0.3);
}
.service_van_sec02 .step > li:hover,
.service_van_sec02 .step > li:hover h4,
.service_van_sec02 .step > li:hover h4 small {
    color: #fff;
}
.service_van_sec02 .step > li:hover ul li::before {
    background: #fff;
}

/* payment */
.sercvice_payment .head_title,
.sercvice_partnership .head_title {
    padding: 70px 0 0;
}
.privacy {
    margin-bottom: 150px;
}
.privacy .tab_list .inner,
.sercvice_payment .tab_list .inner,
.sercvice_partnership .tab_list .inner {
    max-width: 600px;
}
.sercvice_payment_sec02 {
    padding: 45px 0 160px;
}
.sercvice_payment_sec02 .dot_txt {
    margin-top: 40px;
}
.privacy .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: right;
    padding-top: 60px;
}

.precaution .area_cont .b_txt {
    font-weight: bold;
}
.precaution .area_cont .caution {
    margin-left: 26px;
}
/*.sercvice_payment_sec02 .diagram{position: relative;padding: 80px 650px 80px 80px;background: #f7f9fa;}*/
/*.sercvice_payment_sec02 .diagram .img_wrap{position: absolute;top: 50%;right: 80px;margin-top: -161px;}*/
/*.sercvice_payment_sec02 .diagram .line_flex{display: flex;}*/

.sercvice_payment_sec02 .diagram {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.sercvice_payment_sec02 .diagram .img_wrap {
    text-align: center;
}
.sercvice_payment_sec02 .diagram .line_flex {
    display: flex;
    justify-content: center;
}
.sercvice_payment_sec02 .diagram .line_flex .icon_img {
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.sercvice_payment_sec02 .diagram .line_flex .box {
    padding: 30px 26px;
    width: 50%;
    border-top: 3px solid #d9dbdb;
    border-bottom: 3px solid #d9dbdb;
}
.sercvice_payment_sec02 .diagram .line_flex .box h4 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}
.sercvice_payment_sec02 .diagram .line_flex .box ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 14px;
}
.sercvice_payment_sec02 .diagram .line_flex .box ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #0080c9;
}
.sercvice_payment_sec02 .diagram .line_flex .box ul li:last-child {
    margin-bottom: 0;
}
.sercvice_payment_sec02 .diagram .foot {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background: #0080c9;
}
.sercvice_payment_sec02 .diagram .foot span {
    font-size: 1.25rem;
    color: #fff;
}
.sercvice_payment_sec02 .service {
    margin-top: 60px;
}
.sercvice_payment_sec02 .service .line_flex {
    display: flex;
    justify-content: space-between;
}
.sercvice_payment_sec02 .service .line_flex .box {
    padding: 30px 26px;
    width: 48%;
    border-top: 3px solid #d9dbdb;
    border-bottom: 3px solid #d9dbdb;
}
.sercvice_payment_sec02 .service .line_flex .box h4 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}
.sercvice_payment_sec02 .service .line_flex .box ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 14px;
}
.sercvice_payment_sec02 .service .line_flex .box ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #0080c9;
}
.sercvice_payment_sec02 .service .line_flex .box ul li:last-child {
    margin-bottom: 0;
}
.sercvice_payment_sec02 .service .line_flex .box .brand {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
}
.sercvice_payment_sec02 .service .line_flex .box .brand > div {
    flex: 1 1 33.33333%;
    padding: 6px;
    text-align: center;
}
.sercvice_payment_sec02 .service .line_flex .box .brand > div .img_wrap {
    position: relative;
}
.sercvice_payment_sec02 .service .line_flex .box .brand > div .img_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #dddddd;
}
.sercvice_payment_sec02 .service .line_flex .box .brand > div .img_wrap img {
    display: block;
}
.sercvice_payment_sec02 .service .line_flex .box .brand > div h5 {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
}

/* product */
.product {
    padding-bottom: 150px;
}
.product .prd_list ul {
    display: flex;
    flex-wrap: wrap;
}
.product .prd_list ul > li {
    width: 23%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.product .prd_list ul > li:nth-child(4n) {
    margin-right: 0;
}
.product .prd_list .thumb {
    width: 100%;
    padding-bottom: 120%;
    background: url("/images/no_image.png") no-repeat center center / cover;
    border: 1px solid #ddd;
    position: relative;
}
.product .prd_list .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product .prd_list .desc {
    padding: 30px 0;
}
.product .prd_list .cate {
    margin-bottom: 10px;
}
.product .prd_list .cate span + span:before {
    content: "";
    width: 1px;
    height: 10px;
    background: #ddd;
    margin: 0 10px;
    display: inline-block;
}
.product .prd_list .name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}
.prd_category {
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}
.prd_category ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.prd_category ul li a {
    text-align: center;
    display: block;
    padding: 20px;
    font-size: 1.125rem;
}
.prd_category ul li {
    position: relative;
}
.prd_category ul li + li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #aaa;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -2px;
}
.prd_category ul li.on a {
    color: #0088c6;
    border-bottom: 2px solid #0088c6;
}
.prd_tabs {
    margin-bottom: 50px;
}
.prd_tabs ul {
    display: flex;
}
.prd_tabs ul li {
    margin-right: 20px;
}
.prd_tabs ul li a {
    display: block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.125rem;
    background: #f2f4f5;
    min-width: 100px;
    text-align: center;
}
.prd_tabs ul li.on a {
    background: #0088c6;
    color: #fff;
}
.product_view .prd_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 70px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 100px;
    border-top: 2px solid #222;
}
.product_view .prd_img {
    width: 44%;
}
.product_view .prd_img .swiper-button-next {
    background: #cccccc;
    color: #fff;
    right: 0;
    height: 80px;
    width: 40px;
    margin-top: -40px;
}
.product_view .prd_img .swiper-button-prev {
    background: #cccccc;
    color: #fff;
    left: 0;
    height: 80px;
    width: 40px;
    margin-top: -40px;
}
.product_view .prd_img .swiper-button-next::after,
.product_view .prd_img .swiper-button-prev::after {
    font-size: 1.125rem;
    font-weight: 800;
}
.product_view .thumb {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border: 1px solid #ddd;
}
.product_view .thumb > img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}
.product_view .thumb-swiper {
    margin-top: 10px;
}
.product_view .thumb-swiper .swiper-slide-thumb-active .thumb {
    border: 2px solid #0088c6;
}

/* view 공통 */
.product_view .prd_info {
    width: 48%;
}
.product_view .prd_info h3 {
    font-size: 36px;
    margin: 40px 0 10px;
    color: #222;
}
.product_view .prd_info h4 {
    font-size: 26px;
    margin: 40px 0 10px;
    color: #222;
    position: relative;
    display: inline-block;
}
.product_view .prd_info h4::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #0088c6;
    position: absolute;
    right: -10px;
    top: 0;
    border-radius: 50%;
}
.product_view .prd_info p {
    font-size: 1.125rem;
}
.product_view .prd_info ul {
    max-height: 370px;
    overflow-y: auto;
    margin-bottom: 50px;
}
.product_view .prd_info ul li {
    font-size: 1.125rem;
    padding-left: 14px;
    margin: 14px 0;
    position: relative;
}
.product_view .prd_info ul li::before {
    content: "";
    width: 3px;
    height: 3px;
    background: #0088c6;
    position: absolute;
    left: 0;
    top: 12px;
}
.product_view .prd_info .btn_area a {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.125rem;
    color: #0088c6;
    border: 1px solid #0088c6;
}
.product_view .prd_info .btn_area a + a {
    margin-left: 10px;
}
.product_view .prd_info .btn_area a img {
    margin-left: 10px;
}
.product_view .prd_info table {
    border-top: 2px solid #222;
    width: 100%;
    margin: 20px 0;
}
.product_view .prd_info table th {
    background: #444;
    color: #fff;
    font-size: 1.125rem;
    padding: 25px;
    border-bottom: 1px solid #ddd;
}
.product_view .prd_info table td {
    font-size: 1rem;
    padding: 25px;
    border-bottom: 1px solid #ddd;
}
.product_view .prd_info table tr:nth-child(2n + 1) td {
    background: #fff;
}
.product_view .prd_info .line {
    width: 100%;
    height: 1px;
    background: #ddd;
}
.product_view .prd_cont {
    background: #f7f9fa;
    padding: 50px 0 150px;
}
.product_view .prd_cont h4 {
    font-size: 36px;
    margin: 60px 0 20px;
}
.product_view .prd_cont h4::after {
    width: 6px;
    height: 6px;
}
.product_view .prd_cont .prd_info {
    width: 100%;
}

/* faq */
.faq {
    padding-bottom: 150px;
}
.faq .faq_list {
    border-top: 2px solid #222;
    margin-bottom: 100px;
}
.faq .faq_list .list_item .list {
    display: flex;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid #d4d9dc;
    cursor: pointer;
    position: relative;
    transition: all ease 0.3s;
}
.faq .faq_list .list_item .list::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/images/sub/faq_arrow.png) no-repeat center center;
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -12px;
}
.faq .faq_list .list_item .list:hover {
    background-color: rgb(0, 128, 201, 0.1);
}
.faq .faq_list .list_item .list .num {
    width: 115px;
    text-align: center;
}
.faq .faq_list .list_item .list .num span {
    width: 55px;
    height: 55px;
    border: 1px solid #ddd;
    font-size: 21px;
    font-weight: 700;
    color: #0088c6;
    text-align: center;
    line-height: 53px;
    border-radius: 50%;
    transition: all ease 0.3s;
}
.faq .faq_list .list_item .list:hover .num span,
.faq .faq_list .list_item.on .list .num span {
    background-color: #0088c6;
    color: #fff;
    border-color: #0088c6;
}
.faq .faq_list .list_item.on .list::after {
    transform: rotate(180deg);
}
.faq .faq_list .list_item .list p {
    width: calc(100% - 200px);
    font-size: 1.125rem;
    position: relative;
    display: flex;
    align-items: center;
}
.faq .faq_list .list_item .list p em {
    color: #0088c6;
    font-weight: 700;
    margin-right: 10px;
    white-space: nowrap;
}
.faq .faq_list .list_item .sub_list {
    background-color: #f7f9fa;
    padding: 30px 0 40px;
    display: none;
}
.faq .faq_list .list_item .sub_list .inner {
    width: 84%;
}
.faq .faq_list .list_item .sub_list p {
    font-size: 1.063rem;
    font-weight: 300;
    color: #666;
}
.faq .faq_list .list_item .sub_list .file_wrap {
    background-color: #fff;
    border-left: 2px solid #0088c6;
    margin-top: 30px;
}
.faq .faq_list .list_item .sub_list .file_wrap dl {
    display: flex;
    padding: 25px 0;
}
.faq .faq_list .list_item .sub_list .file_wrap dl dt {
    padding: 0 30px;
    position: relative;
}
.faq .faq_list .list_item .sub_list .file_wrap dl dt span {
    font-size: 1.125rem;
    color: #222;
    position: relative;
    display: flex;
    align-items: center;
}
.faq .faq_list .list_item .sub_list .file_wrap dl dt::after {
    content: "";
    width: 1px;
    height: 90%;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.faq .faq_list .list_item .sub_list .file_wrap dl dd {
    padding: 0 35px;
}
.faq .faq_list .list_item .sub_list .file_wrap dl dd a {
    position: relative;
    margin-right: 26px;
}
.faq .faq_list .list_item .sub_list .file_wrap dl dd a::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #0088c6;
    position: absolute;
    top: 12px;
    left: -12px;
}
.faq .faq_list .list_item[data-item="file"] .list p::after {
    content: "";
    width: 18px;
    height: 16px;
    background: url(/images/sub/clip.png) no-repeat;
    display: block;
    margin-left: 10px;
}
.faq
    .faq_list
    .list_item[data-item="file"]
    .sub_list
    .file_wrap
    dl
    dt
    span::before {
    content: "";
    width: 18px;
    height: 16px;
    background: url(/images/sub/clip.png) no-repeat;
    display: block;
    margin-right: 10px;
}

/* recruit */
.recruit .rec_ideal {
    width: 100%;
    height: 700px;
    background: url(/images/sub/rec_ideal_bg.jpg) no-repeat;
    background-position: top center;
    overflow: hidden;
    position: relative;
}
.recruit .rec_ideal:after {
    content: "";
    width: 100%;
    height: 50%;
    background: #f5fafd;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.recruit .rec_ideal ul {
    position: relative;
    height: 100%;
}
.recruit .rec_ideal li {
    position: absolute;
    top: 27%;
}
.recruit .rec_ideal li strong {
    font-size: 1.875rem;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    background: #0088c6;
    position: absolute;
    right: 0;
}
.recruit .rec_ideal li h3 {
    font-size: 1.25rem;
    color: #222;
    margin: 10px 0;
}
.recruit .rec_ideal li h3 b {
    color: #0088c6;
}
.recruit .rec_ideal li p {
    color: #222;
}
.recruit .rec_ideal li:nth-child(1) {
    padding-right: 90px;
    left: 50%;
    margin-left: -550px;
    text-align: right;
}
.recruit .rec_ideal li:nth-child(2) {
    padding-right: 90px;
    left: 50%;
    margin-left: -400px;
    top: 46%;
    text-align: right;
}
.recruit .rec_ideal li:nth-child(3) {
    padding-top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 54%;
    text-align: center;
}
.recruit .rec_ideal li:nth-child(3) strong {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
.recruit .rec_ideal li:nth-child(4) {
    padding-left: 90px;
    right: 50%;
    margin-right: -440px;
    top: 46%;
}
.recruit .rec_ideal li:nth-child(5) {
    padding-left: 90px;
    right: 50%;
    margin-right: -493px;
}
.recruit .rec_ideal li:nth-child(4) strong,
.recruit .rec_ideal li:nth-child(5) strong {
    right: auto;
    left: 0;
}
.recruit .system01 {
    padding: 30px 0 70px;
}
.recruit .system01 .process {
    padding-top: 15px;
}
.recruit .system01 .process .box {
    display: flex;
    padding: 80px 0;
    border-bottom: 1px solid #ddd;
}
.recruit .system01 .process .box:first-child {
    padding-top: 0;
}
.recruit .system01 .process .box:last-child {
    border-bottom: 0;
}
.recruit .system01 .process .box .left {
    width: 255px;
}
.recruit .system01 .process .box .left .sub_tit {
    margin: 0;
}
.recruit .system01 .process .box .right {
    width: calc(100% - 225px);
}
.recruit .system01 .process .box .right ul li {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #b6d2e3;
    margin-right: 90px;
    position: relative;
    transition: all ease 0.6s;
}
.recruit .system01 .process .box .right ul li::after {
    content: "";
    width: 60px;
    height: 15px;
    background: url(/images/sub/recruit_arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: calc(100% + 18px);
    transform: translateY(-50%);
    transition: all ease 0.6s;
}
.recruit .system01 .process .box .right ul li:last-child::after {
    display: none;
}
.recruit .system01 .process .box .right ul li:last-child {
    margin-right: 0;
}
.recruit .system01 .process .box .right ul li.on {
    background-color: #0080c9;
    border-color: #0080c9;
}
.recruit .system01 .process .box .right ul li.on span {
    color: #fff;
}
.recruit .system01 .process .box .right ul li span {
    line-height: 120px;
    color: #666;
    font-size: 20px;
    font-weight: 500;
    transition: all ease 0.6s;
}
.recruit .system01 .process .box .right .txt {
    padding-top: 15px;
    transition: all ease 0.6s;
}
.recruit .system01 .process .box .right .txt span {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #666;
    position: relative;
    padding-left: 15px;
}
.recruit .system01 .process .box .right .txt span::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #0088c6;
    position: absolute;
    left: 0;
    top: 11px;
}
.recruit .system01 .process .box .right .txt span em {
    color: #0080c9;
    font-weight: 600;
}
.recruit .system02 {
    background-color: #f7f9fa;
    padding: 30px 0 150px;
}
.recruit .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.recruit .flex .box {
    width: 48%;
    border: 1px solid #ddd;
    border-top: 2px solid #222;
    padding: 70px 20px 70px 200px;
    position: relative;
    background-color: #fff;
    margin-bottom: 60px;
}
.recruit .flex .box h4 {
    margin-bottom: 24px;
    font-size: 20px;
    color: #222;
}
.recruit .flex .box .txt span {
    font-size: 1.125rem;
    color: #666;
}
.recruit .flex .box:nth-child(2n) {
    margin-right: 0;
}
.recruit .flex .box .icon_img {
    position: absolute;
    top: 50%;
    left: 60px;
    margin-top: -40px;
}

/* talent */
.talent_list {
    padding-bottom: 150px;
}
.talent_list .selArea {
    text-align: right;
}
.talent_list .list {
    margin-bottom: 100px;
}
.talent_list .list ul {
    border-top: 2px solid #222;
}
.talent_list .list ul li {
    border-bottom: 1px solid #d4d9dc;
}
.talent_list .list ul li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    flex-wrap: wrap;
}
.talent_list .list ul li .left {
    width: calc(100% - 120px);
}
.talent_list .list ul li .right {
    width: 100px;
}
.talent_list .list ul li .left .day {
    margin-bottom: 10px;
}
.talent_list .list ul li .left .day span {
    padding: 0 20px;
    position: relative;
    font-size: 1rem;
}
.talent_list .list ul li .left .day span::after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.talent_list .list ul li .left .day span:nth-child(1) {
    font-weight: 700;
    color: #0080c9;
    padding-left: 0;
}
.talent_list .list ul li .left .day span:nth-child(2) {
    font-weight: 500;
    color: #666;
}
.talent_list .list ul li .left .day span:nth-child(2)::after {
    display: none;
}
.talent_list .list ul li .left p.title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.talent_list .list ul li .left .employ_info span {
    font-size: 1rem;
    color: #666;
    display: inline-block;
    padding: 0 20px;
    position: relative;
}
.talent_list .list ul li .left .employ_info span::after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.talent_list .list ul li .left .employ_info span:nth-child(1) {
    padding-left: 0;
}
.talent_list .list ul li .left .employ_info span:last-child::after {
    display: none;
}
.talent_list .list ul li .right .box {
    width: 100px;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #0080c9;
}
.talent_list .list ul li .right .box.on {
    background-color: #bababa;
}
.talent_list .list ul li:hover {
    background-color: rgb(0, 128, 201, 0.1);
}
.talent_view .viewArea .viewTitle .day {
    margin-bottom: 20px;
}
.talent_view .viewArea .viewTitle .day span {
    padding: 0 20px;
    position: relative;
}
.talent_view .viewArea .viewTitle .day span:nth-child(1) {
    font-size: 1rem;
    font-weight: 700;
    color: #0080c9;
    padding-left: 0;
    position: relative;
}
.talent_view .viewArea .viewTitle .day span:nth-child(1)::after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.talent_view .viewArea .viewTitle .day span:nth-child(2) {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}
.talent_view .viewArea .viewCont {
    display: flex;
    flex-wrap: wrap;
}
.talent_view .viewArea .viewCont .left {
    width: 20%;
    padding-right: 20px;
}
.talent_view .viewArea .viewCont .left h5 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
}
.talent_view .viewArea .viewCont .right {
    width: 80%;
}
.talent_view .viewArea .viewCont .right > div span {
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.talent_view .viewArea .viewCont .right .txt01 span {
    padding-left: 15px;
}
.talent_view .viewArea .viewCont .right .txt01 span::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #0080c9;
    position: absolute;
    left: 0;
    top: 10px;
}
.talent_view .viewArea .viewCont .right .txt02 span {
    padding-left: 35px;
}
.talent_view .viewArea .viewCont .right .txt02 span em.num {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: 1px;
}
.talent_view .viewArea .viewCont .right .txt02 span p.sub {
    display: flex;
    flex-direction: column;
}
.talent_view .viewArea .viewCont .right .txt02 span p.sub em {
    font-size: 1rem;
    margin-top: 15px;
    display: block;
}

/* pravicy & service*/
.area_cont {
    padding: 60px;
    background: #f8f8f8;
    margin: 50px 0 60px;
}
.area_select {
    padding: 20px 40px 20px 20px;
    border: 1px solid #ddd;
    font-size: 1.125rem;
    position: relative;
    background: url(/images/down_b.png) no-repeat right 14px center;
    margin: 20px 0;
    display: block;
}

/* sitemap */
.sitemap {
    padding: 200px 0 150px;
}
.sitemap .top {
    margin-bottom: 60px;
}
.sitemap .top .flex {
    display: flex;
}
.sitemap .top .flex .box {
    width: calc(50% - 16px);
    background-color: #0080c9;
    margin-right: 32px;
    padding: 40px;
    position: relative;
}
.sitemap .top .flex .box::after {
    content: "";
    width: 233px;
    height: 218px;
    background: url(/images/sub/sitemap_bg.png) no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}
.sitemap .top .flex .box:last-child {
    margin-right: 0;
}
.sitemap .top .flex .box .txt {
    margin-bottom: 110px;
}
.sitemap .top .flex .box .txt h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}
.sitemap .top .flex .box .txt p {
    font-size: 1.125rem;
    color: #fff;
}
.sitemap .top .flex .box .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 999;
}
.sitemap .top .flex .box .item a {
    width: calc(100% / 3 - 13.333333px);
}
.sitemap .bottom .flex {
    display: flex;
    flex-wrap: wrap;
}
.sitemap .bottom .flex .box {
    width: calc(25% - 24px);
    margin-right: 32px;
    border: 1px solid #ddd;
    padding: 40px;
    position: relative;
    background: #fff;
}
.sitemap .bottom .flex .box:last-child {
    margin-right: 0;
}
.sitemap .bottom .flex .box .txt {
    margin-bottom: 100px;
}
.sitemap .bottom .flex .box .txt h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.sitemap .bottom .flex .box .txt p {
    font-size: 1rem;
    color: #444;
    font-weight: 400;
}
.sitemap .bottom .flex .box .btn {
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0;
    padding: 0 40px;
}
.sitemap .bottom .flex .box .btn a {
    color: #0080c9;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #0080c9;
    display: block;
    padding: 15px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}
.sitemap .bottom .flex .box .btn a::after {
    content: "";
    width: 17px;
    height: 12px;
    background: url(/images/sub/arrow.png) no-repeat;
    display: block;
}
.sitemap .bottom .flex .box .btn a:hover {
    background-color: #0080c9;
    color: #fff;
}
.sitemap .bottom .flex .box .btn a:hover::after {
    filter: brightness(0) invert(1);
}

/* pgcheck */
.pgcheck {
    padding-bottom: 150px;
}
.pgcheck .tab_wrap .tab_title {
    background-color: #f7f9fa;
    padding: 30px 40px;
}
.pgcheck .tab_wrap .tab_title.on {
    background-color: #0080c9;
}
.pgcheck .tab_wrap .tab_title.on p {
    color: #fff;
}
.pgcheck .tab_wrap .tab_title p {
    color: #222;
    font-size: 1rem;
    display: flex;
    align-items: end;
}
.pgcheck .tab_wrap .tab_title p em {
    font-size: 1.375rem;
    font-weight: 600;
    margin-right: 15px;
}
.pgcheck .tab_wrap .tab_category {
    padding-bottom: 120px;
}
.pgcheck .tab_wrap .tab_category ul {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 0;
}
.pgcheck .tab_wrap .tab_category ul li {
    width: calc(100% / 5 - 24px);
    margin-right: 30px;
    border: 1px solid #ddd;
    text-align: center;
    position: relative;
    cursor: pointer;
    padding: 40px 0;
}
.pgcheck .tab_wrap .tab_category ul li.on {
    border: 2px solid #0080c9;
    color: #0080c9;
}
.pgcheck .tab_wrap .tab_category ul li:last-child {
    margin-right: 0;
}
.pgcheck .tab_wrap .tab_category ul li .tab_icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pgcheck .tab_wrap .tab_category ul li p {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
}
.pgcheck .tab_wrap .tab_sec {
    display: none;
}
.pgcheck .tab_wrap .tab_sec.on {
    display: block;
}
.pgcheck .tab_wrap .tab_sec .tab_list {
    margin: 40px 0 0;
    border-top: 2px solid #222;
}
.pgcheck .tab_wrap .tab_sec .tab_list a {
    height: auto;
    text-align: center;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl {
    display: flex;
    border-bottom: 1px solid #ddd;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dt {
    width: 240px;
    background-color: #f7f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
}
.date-picker {
    width: 296px;
    height: auto;
    background: white;
    position: relative;
    transition: all 0.3s 0s ease-in-out;
    position: relative;
    margin-right: 38px;
}
.date-picker::after {
    content: "~";
    position: absolute;
    top: 50%;
    left: calc(100% + 14px);
    line-height: 1px;
    font-weight: 700;
}
.date-picker:last-child::after {
    display: none;
}
.date-picker .input {
    width: 100%;
    height: 56px;
    font-size: 0;
    cursor: pointer;
}
.date-picker .input .result,
.date-picker .input button {
    display: inline-block;
    vertical-align: top;
}
.date-picker .input .result {
    width: calc(100% - 56px);
    height: 100%;
    line-height: 50px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #d8d8d8;
}
.date-picker .input button {
    width: 56px;
    height: 56px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-left: none;
    position: relative;
}
.date-picker .input button::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(/images/calendar_icon01.png) no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
}
.date-picker .calendar {
    width: 100%;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    display: none;
    position: absolute;
    z-index: 999;
}
.date-picker .ui-datepicker-inline {
    position: relative;
    width: 100%;
}
.date-picker .ui-datepicker-header {
    height: 100%;
    line-height: 50px;
    background: #0080c9;
    color: #fff;
    margin-bottom: 10px;
}
.date-picker .ui-datepicker-prev,
.date-picker .ui-datepicker-next {
    width: 20px;
    height: 20px;
    text-indent: 9999px;
    border: 2px solid #fff;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
}
.date-picker .ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}
.date-picker .ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin: -43px 0px 0px 8px;
}
.date-picker .ui-datepicker-next {
    float: right;
    margin-right: 12px;
}
.date-picker .ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin: -43px 0px 0px 6px;
}
.date-picker .ui-datepicker-prev:after,
.date-picker .ui-datepicker-next:after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.date-picker .ui-datepicker-prev:hover,
.date-picker .ui-datepicker-next:hover,
.date-picker .ui-datepicker-prev:hover:after,
.date-picker .ui-datepicker-next:hover:after {
    border-color: #68768a;
}
.date-picker .ui-datepicker-title {
    text-align: center;
}
.date-picker .ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}
.date-picker .ui-datepicker-calendar thead tr th span {
    display: block;
    width: 100%;
    color: #0080c9;
    margin-bottom: 5px;
    font-size: 13px;
}
.date-picker .ui-state-default {
    display: block;
    text-decoration: none;
    color: #b5b5b5;
    line-height: 40px;
    font-size: 12px;
}
.date-picker .ui-state-default:hover {
    background: rgba(0, 0, 0, 0.02);
}
.date-picker .ui-state-highlight {
    color: #68768a;
}
.date-picker .ui-state-active {
    color: #fff;
    background-color: #0080c9;
    font-weight: 600;
}
.date-picker .ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent;
}
.date-picker.open .input .result {
    border-color: #0080c9;
}
.date-picker.open .input button {
    border-color: #0080c9;
}
.date-picker.open .input button::after {
    background: url(/images/calendar_icon02.png) no-repeat center center;
}
.date-picker.open .calendar {
    display: block;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
    border: 1px solid #d8d8d8;
}
.date-picker .ui-state-active {
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd {
    width: calc(100% - 240px);
    display: flex;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd {
    padding: 30px;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box {
    width: 180px;
    position: relative;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.num {
    margin-right: 42px;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.num::after {
    content: "";
    width: 12px;
    height: 1px;
    background-color: #444;
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.num:last-child::after {
    display: none;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box input {
    height: 56px;
    padding: 0 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box input::placeholder {
    font-size: 1rem;
    color: rgb(68, 68, 68, 0.5);
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box input:focus-visible {
    outline: none;
    border-color: #0080c9;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.size01 {
    width: 420px;
    position: relative;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.size01.m::before {
    content: "원";
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%);
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.size02 {
    width: 600px;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .select_box {
    width: 420px;
    margin-right: 42px;
    position: relative;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .select_box::after {
    content: ">";
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .select_box select {
    width: 100%;
    height: 56px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.88888rem;
    color: #444;
    padding: 0 20px;
}
.pgcheck .tab_wrap .tab_sec .tab_list dl dd .select_box select:focus-visible {
    border: 1px solid #0080c9;
}
.pgcheck .tab_wrap .tab_sec .note {
    padding: 40px;
    border: 1px solid #ddd;
    margin: 40px 0 0;
}
.pgcheck .tab_wrap .tab_sec .note .title {
    position: relative;
    padding-left: 70px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.pgcheck .tab_wrap .tab_sec .note h4 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #222;
}
.pgcheck .tab_wrap .tab_sec .note .img {
    position: absolute;
    top: -19px;
    left: 0;
}
.pgcheck .tab_wrap .tab_sec .note .txt {
    margin: 40px 0 0;
}
.pgcheck .tab_wrap .tab_sec .note .txt p {
    font-size: 1rem;
    position: relative;
    padding-left: 35px;
    margin: 15px 0;
}
.pgcheck .tab_wrap .tab_sec .note .txt p em {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #666;
    text-align: center;
    font-weight: 500;
    line-height: 22px;
    font-size: 0.875rem;
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
}
.pgcheck .tab_wrap .tab_sec .note .txt p b {
    color: #222;
    font-weight: 500;
}
.check_btn {
    text-align: center;
    margin-top: 60px;
}
.check_btn a {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    background-color: #0080c9;
    padding: 24px 88px;
    display: inline-block;
    cursor: pointer;
}

/* pop */
.pop_wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
}
.pop_wrap .pop {
    width: 82%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pop_wrap .pop .top p {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 500;
    background-color: #0080c9;
    padding: 30px 60px;
}
.pop_wrap .pop .bottom {
    padding: 60px 60px 40px;
    background-color: #fff;
}
.pop_wrap .pop .bottom .pop_list {
    height: 414px;
    overflow-y: auto;
}
.pop_wrap .pop .bottom .pop_list ul {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.pop_wrap .pop .bottom .pop_list ul li {
    text-align: center;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(1),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(1) {
    width: 11%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(2),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(2) {
    width: 11%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(3),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(3) {
    width: 12%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(4),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(4) {
    width: 17%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(5),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(5) {
    width: 10%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(6),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(6) {
    width: 10%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(7),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(7) {
    width: 9%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(8),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(8) {
    width: 10%;
}
.pop_wrap .pop .bottom .pop_list ul.title li:nth-child(9),
.pop_wrap .pop .bottom .pop_list ul.txt li:nth-child(9) {
    width: 10%;
}
.pop_wrap .pop .bottom .pop_list ul.title {
    border-top: 2px solid #222;
}
.pop_wrap .pop .bottom .pop_list ul.title li {
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    background-color: #f7f9fa;
    padding: 22px 0;
}
.pop_wrap .pop .bottom .pop_list ul.txt li {
    font-weight: 400;
    padding: 24px 10px;
}
.pop_wrap .pop .bottom .pop_list ul.txt li a {
    text-decoration: underline;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop_wrap .close {
    position: absolute;
    right: -70px;
    top: -8px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.pop_wrap .close span:first-child {
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}
.pop_wrap .close span:last-child {
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(-45deg);
}

/********************************************* responsive *********************************************/

@media screen and (max-width: 1200px) {
    .recruit .rec_ideal {
        height: auto;
        padding-bottom: 50px;
    }
    .recruit .rec_ideal ul {
        margin-top: 300px;
    }
    .recruit .rec_ideal li {
        right: auto !important;
        left: auto !important;
        top: auto !important;
        position: relative;
        margin-left: 0 !important;
        margin-right: 0;
        text-align: left !important;
        padding-right: 0 !important;
        padding-left: 70px !important;
        margin: 0 0 20px !important;
        padding-top: 0 !important;
        transition-delay: 0s !important;
    }
    .recruit .rec_ideal li strong {
        left: 0 !important;
        right: auto;
        margin: 0 !important;
        font-size: 1.25rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

    .tab_list .inner {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        justify-content: flex-start;
    }

    .intro_sec {
        padding: 10px 0 60px;
    }

    .logo_grid li {
        flex: 0 1 33.33333%;
    }

    .intro_sec .txt p {
        margin: 0;
    }

    /* business */
    /* overview */
    .business_overview_sec01 {
        background-size: 45% auto;
    }
    .business_overview_sec01 .box:not(:last-child) {
        margin-bottom: 120px;
    }
    .business_overview_sec01 .box:nth-child(1) {
        width: 100%;
    }
    .business_overview_sec01 .box:nth-child(2) {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }
    .business_overview_sec01 .box:nth-child(3) {
        margin-top: 0;
    }
    .business_overview_sec02 .flex .box {
        padding: 42px;
    }
    .business_overview_sec02 .flex .box .icon_img {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 25px;
        text-align: center;
    }

    /* van service */
    /* .service_van_sec01 .diagram_wrap ul li{margin-right: 102px;width: 25%;}
    .service_van_sec01 .diagram_wrap ul li:not(:last-child) .box::after{right: -105px;width: 108px;background-size: 100% auto}
    .service_van_sec01 .diagram_wrap ul li p{font-size:1.25rem;}
    .service_van_sec02 .line_flex .box{padding: 60px 60px 60px 180px;}
    .service_van_sec02 .line_flex .box .icon_img{left: 25px;width: 120px;} */
    .service_van_sec01 .diagram_wrap ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .service_van_sec01 .diagram_wrap ul li {
        margin-right: 62px;
        width: calc(50% - 32px);
    }
    .service_van_sec01 .diagram_wrap ul li:not(:last-child) .box::after {
        left: calc(100% + 8px);
        width: 46px;
        background-image: url("/images/sub/arrow_large.png") no-repeat;
        background-size: 100% auto;
    }
    .service_van_sec01 .diagram_wrap ul li:nth-child(2) {
        margin-right: 0;
    }
    .service_van_sec01 .diagram_wrap ul li:nth-child(2) .box::after {
        content: none;
    }
    .service_van_sec01 .diagram_wrap ul li:nth-child(3),
    .service_van_sec01 .diagram_wrap ul li:nth-child(4) {
        margin-bottom: 0;
    }
    .service_van_sec01 .diagram_wrap ul li:nth-child(2) .box::before {
        content: "";
        z-index: 2;
        position: absolute;
        bottom: -36px;
        left: -58px;
        margin-top: -5px;
        width: 46px;
        height: 11px;
        background: url("/images/sub/arrow_large.png") no-repeat;
        background-size: 100% auto;
        transform: rotate(135deg);
    }
    .service_van_sec01 .diagram_wrap ul li p {
        margin-top: 20px;
        font-size: 1rem;
    }

    .sitemap .bottom .flex .box {
        width: calc(100% / 2 - 10px);
        margin-right: 20px;
        margin-bottom: 30px;
    }
    .sitemap .bottom .flex .box:nth-child(2n) {
        margin-right: 0;
    }

    .main_visual .swiper-slide .background.mo {
        display: block;
    }

    .main_service .service_box .s_box {
        width: 100%;
        margin-bottom: 30px;
    }

    .main_certifi .tabs .tab_menu {
        display: none;
    }
    .main_certifi .tabs .tab_box {
        width: 100%;
    }
    .main_certifi .tabs .tab_box .tab {
        width: 100%;
        margin-bottom: 30px;
    }
    .main_certifi .tabs .tab_box .tab.active {
        width: 100%;
    }
    .main_certifi .tabs .tab_box .tab a {
        opacity: 1;
    }

    .main_core .swiper-pagination-bullet em {
        font-size: 13px;
    }

    .history .history_cont section strong {
        position: unset;
    }
    .history .history_cont section ul {
        padding-left: 0;
    }
    .history .history_cont section ul li {
        padding-left: 40px;
        font-size: 1rem;
    }

    .corfor_sec02 .flex .box.center {
        margin-bottom: 30px;
    }
    .corfor_sec02 .flex .box.left {
        width: 100%;
        margin-bottom: 30px;
    }
    .corfor_sec02 .flex .box.right {
        width: 100%;
    }

    .location .line_flex .box {
        width: 100%;
        margin-bottom: 30px;
    }
    .precaution .area_cont .caution {
        margin-left: 0;
    }
}

@media screen and (max-width: 1660px) {
    .recruit .system01 .process .box .right ul li {
        width: 96px;
        height: 96px;
        margin-bottom: 30px;
    }
    .recruit .system01 .process .box .right ul li span {
        font-size: 18px;
    }

    .service_van_sec01 .diagram_wrap ul li p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 16px;
    }

    /* css setting */
    .tab_list a {
        height: 50px;
        font-size: 1rem;
    }

    /* footer */
    .sec-footer {
        padding: 40px 0;
    }
    .sec-footer .inner {
        flex-wrap: wrap;
    }
    .sec-footer .left {
        width: 100%;
    }
    .sec-footer .right {
        width: 100%;
    }
    .sec-footer .family {
        width: 100%;
        margin-top: 20px;
    }
    .sec-footer .link {
        margin: 20px 0 0;
        justify-content: flex-start;
    }
    .sec-footer .link_second {
        margin: 0;
    }
    .sec-footer .link li {
        padding-right: 10px;
        padding-left: 0;
    }
    .sec-footer .ft-info li:nth-child(5) {
        width: 100%;
    }
    /* main */
    .main_visual .visual_tit h2 {
        font-size: 30px;
    }
    .main_visual .visual_tit p {
        font-size: 1rem;
    }
    .main_tit {
        margin-bottom: 40px;
    }
    .main_tit h2 {
        font-size: 26px;
    }
    .main_tit h2 br {
        display: none;
    }
    .main_service {
        padding: 70px 0 35px;
    }
    .main_service .service_box {
        margin: 0 0 40px;
    }
    .main_service .service_box .s_box {
        width: 100%;
        padding: 40px 30px;
        margin-bottom: 20px;
    }
    .main_service .service_box .s_box img {
        max-width: 50px;
        margin: 0 0 10px;
    }
    .main_service .service_box .s_box h3 {
        font-size: 22px;
    }
    .main_service .service_box .s_box p {
        font-size: 0.875rem;
        min-height: auto;
    }
    .main_service .service_box .s_box ul li {
        padding: 5px 0 5px 10px;
    }
    .main_service .service_box .s_box ul li:after {
        top: 14px;
    }
    .main_service .service_box .s_box .more {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 0;
    }
    .main_core {
        padding: 35px 0 70px;
    }
    .main_core .more {
        position: relative;
        margin: 30px 0 0;
    }
    .main_core .swiper-slide {
        padding: 70px 0;
        height: 500px;
        background-position: center right 8%;
    }
    .main_core_txt h3 {
        font-size: 1.5rem;
    }
    .main_core_txt p {
        font-size: 1rem;
    }
    .main_core_txt p .pc-br {
        display: none;
    }
    .main_core_txt p .mo-br {
        display: block;
    }
    .main_core_txt b {
        font-size: 1rem;
    }
    .main_core .swiper-pagination-bullet em {
        display: none;
    }
    .animated-title {
        font-size: 60px;
        padding: 100px 0 0;
    }
    .main_certifi {
        padding: 70px 0;
    }
    .main_certifi .tabs .tab_menu {
        width: 100%;
        display: none;
    }
    .main_certifi .tabs .tab_box {
        width: 100%;
    }
    .main_certifi .tabs .tab_menu li a {
        padding: 20px;
        font-size: 1.125rem;
    }
    .main_certifi .tabs .tab_box .tab {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .main_certifi .tabs .tab_box .tab.active {
        width: 100%;
    }
    .main_certifi .tabs .tab_box .tab a {
        padding: 40px 30px;
        opacity: 1;
    }
    .main_certifi .tabs .tab_box .tab img {
        max-width: 40px;
    }
    .main_certifi .tabs .tab_box .tab h3 {
        font-size: 22px;
    }
    .main_certifi .tabs .tab_box .tab p {
        font-size: 1rem;
        white-space: normal;
        margin: 10px 0 20px;
    }
    .main .sitemap {
        padding: 70px 0;
    }
    .main_contact {
        padding: 70px 0;
    }
    .main_contact .accord {
        margin: 40px 0 0;
    }
    .main_contact .accord .left {
        width: 100%;
        margin-bottom: 20px;
    }
    .main_contact .accord .right {
        width: 100%;
    }
    .main_contact .accord .left p {
        font-size: 1rem;
    }
    .main_contact .accord .right ul li h3 {
        font-size: 1.125rem;
        padding: 20px 40px 20px 20px;
    }
    .main_contact .accord .right ul li h3:after {
        top: 22px;
    }
    .main_contact .accord .right ul li h3:before {
        top: 31px;
    }

    /********************************************* sub *********************************************/
    .sub_head .sub_position > li {
        font-size: 1rem;
    }
    .sub_head .sub_position > li + li::before {
        margin: 0 10px;
    }
    .sub_head .sub_position > li:last-child {
        padding-right: 20px;
    }
    .sub_head .sub_position > li > ul {
        left: 10px;
    }

    .download .btn {
        margin-bottom: 10px;
    }
    .download .btn a {
        width: 200px;
        padding: 15px;
        font-size: 1rem;
    }

    .sub_head {
        padding: 120px 0 30px;
    }
    .sub_head h1 {
        font-size: 30px;
    }
    .sub_visual {
        height: 200px;
    }

    .sub_tit {
        margin: 70px 0 30px;
    }
    .sub_tit:has(h3) {
        margin: 50px 0 20px;
    }
    .sub_tit h2 {
        font-size: 30px;
    }
    .sub_tit h2 br {
        display: none;
    }
    .sub_tit h3 {
        font-size: 1.5rem;
    }
    .sub_tit p {
        font-size: 1rem;
    }

    .head_title h2 {
        font-size: 20px;
    }
    .head_title p {
        font-size: 30px;
    }

    /* greeting */
    .greeting {
        padding-bottom: 70px;
    }
    .greeting .inner {
        margin-top: 50px;
    }
    .greeting .txt {
        width: 100%;
    }
    .greeting .img {
        width: 100%;
        margin-top: -50px;
    }
    .greeting .txt {
        padding: 50px 0 80px;
    }
    .greeting .txt::before {
        top: 0;
    }
    .greeting .txt p {
        font-size: 1rem;
    }

    /* corporate */
    .corporate .corpor_info {
        padding: 40px 20px;
    }
    .corporate .corpor_info h3 {
        font-size: 1rem;
        width: 100px;
    }
    .corporate .corpor_info p {
        font-size: 1rem;
        width: calc(100% - 100px);
    }
    .corporate .corpor_safety .txt_container {
        font-size: 1rem;
    }
    .corfor_sec01 {
        padding: 10px 0 70px;
    }
    .corfor_sec01 .flex ul li {
        width: 48%;
    }
    .corfor_sec01 .flex ul li .img_wrap {
        height: 100px;
        padding: 20px;
    }
    .corfor_sec01 .flex ul li .txt {
        font-size: 0.875rem;
        padding: 10px 0;
    }
    .corfor_sec02 {
        padding: 10px 0 50px;
    }
    .corfor_sec02 .flex .box .icon_img {
        width: 80px;
        margin-top: 0;
        margin-bottom: 20px;
        top: auto;
        left: auto;
        position: relative;
    }
    .corfor_sec02 .flex .box {
        padding: 30px;
        margin-bottom: 20px;
    }
    .corfor_sec02 .flex .box h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .corfor_sec02 .flex .box.center {
        margin-bottom: 20px;
    }
    .corfor_sec02 .flex .box.left {
        width: 100%;
    }
    .corfor_sec02 .flex .box.right {
        width: 100%;
    }

    /* ci */
    .ci .ci_flex > div {
        width: 100%;
    }
    .ci .ci_sec01 .ci_flex .txt {
        padding: 0;
    }
    .ci .ci_sec01 .ci_flex .txt h3 {
        font-size: 20px;
    }
    .ci .ci_sec01 {
        padding-bottom: 70px;
    }
    .ci .ci_sec02 {
        padding: 10px 0 70px;
    }
    .ci .ci_sec03 {
        padding: 10px 0 70px;
    }

    /* history */
    .history {
        padding-bottom: 70px;
    }
    .history .history_cont {
        margin-top: 30px;
        flex-direction: column;
    }
    .history .history_cont .tab-menu {
        width: 100%;
        position: unset;
        padding: 10px 0;
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .history .history_cont .tab-menu li {
        flex: 0 0 auto;
        margin-right: 20px;
    }
    .history .history_cont .tab-menu li a.active,
    .history .history_cont .tab-menu li a {
        margin: 15px 0;
        font-size: 1.125rem;
    }
    .history .history_cont .sections {
        width: 100%;
        padding: 0;
    }
    .history .history_cont section {
        padding: 30px 0;
    }
    .history .history_cont section strong {
        position: unset;
        font-size: 1.5rem;
    }
    .history .history_cont section ul {
        padding-left: 10px;
        padding-top: 10px;
    }
    .history .history_cont section ul li {
        padding-left: 40px;
    }

    /* location */
    .location {
        padding-bottom: 70px;
    }
    .location iframe {
        height: 200px;
    }
    .location .map_info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .location .map_info {
        padding: 40px 30px;
    }
    .location .map_info .map_go {
        position: relative;
        right: auto;
        top: auto;
        margin: 20px 0 0;
        display: inline-block;
        padding: 15px 30px;
    }
    .location .map_info .info_content {
        width: 100%;
    }
    .location .map_info dl {
        display: block;
        margin-bottom: 10px;
    }
    .location .map_info dl dt {
        margin-right: 0;
    }
    .location .map_info dl dd {
        font-size: 0.875rem;
        width: 100%;
        margin-right: 0;
    }
    .location .line_flex {
        margin-top: 30px;
    }
    .location .line_flex .box {
        padding: 30px 30px 30px 130px;
        width: 100%;
    }
    .location .line_flex .box .icon_img {
        width: 80px;
        margin-top: 0;
        margin-bottom: 20px;
        top: auto;
        left: auto;
        position: relative;
    }
    .location .line_flex .box {
        padding: 30px;
        margin-bottom: 20px;
    }
    .location .line_flex .box h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .location .line_flex .box p .bus {
        margin-right: 10px;
    }
    .location .line_flex .box p .bus::after {
        right: -5px;
    }

    /* business */
    .business .head_title {
        margin-bottom: 50px;
    }
    .business .head_title h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .business .head_title p {
        font-size: 30px;
    }
    .sercvice_payment .head_title,
    .sercvice_partnership .head_title {
        padding-top: 50px;
    }

    .dot_txt li {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .logo_grid {
        margin: -10px;
    }
    .logo_grid li {
        flex: 0 1 50%;
        padding: 10px;
    }
    .logo_grid li h4 {
        margin-top: 14px;
        font-size: 1rem;
    }

    .business hr {
        margin: 50px 0;
    }
    .business h3 {
        margin-bottom: 0;
    }
    .business .h4 {
        margin: 40px 0 30px;
        font-size: 1.25rem;
    }
    .business p {
        margin: 20px 0;
        font-size: 1rem;
    }

    /* overview */
    .business_overview_sec01 {
        padding-bottom: 35px;
    }
    .business_overview_sec01 {
        margin: 40px 0;
    }
    .business_overview_sec01 .s_box {
        width: 100%;
        padding: 40px 30px;
        margin-bottom: 20px;
    }
    .business_overview_sec01 .s_box img {
        max-width: 50px;
        margin: 0 0 10px;
    }
    .business_overview_sec01 .s_box h3 {
        font-size: 22px;
    }
    .business_overview_sec01 .s_box p {
        font-size: 0.875rem;
        min-height: auto;
    }
    .business_overview_sec01 .s_box ul li {
        padding: 5px 0 5px 10px;
    }
    .business_overview_sec01 .s_box ul li:after {
        top: 14px;
    }
    .business_overview_sec01 .s_box .more {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 0;
    }
    /*    .business_overview_sec01 .box:not(:last-child){margin-bottom: 60px;}*/
    /*    .business_overview_sec01 .box h3{font-size:1.5rem;}*/
    /*    .business_overview_sec01 .box h3 small{font-size:1rem;}*/
    /*    .business_overview_sec01 .box h4{font-size: 1.125rem;}*/
    /*    .business_overview_sec01 .box ul li{margin-bottom: 10px;font-size:1rem;}*/
    /*    .business_overview_sec01 .box .more{margin-top: 25px;}*/
    .business_overview_sec02 {
        padding-bottom: 70px;
    }
    .business_overview_sec02 .flex {
        margin: -10px 0;
    }
    .business_overview_sec02 .flex .box {
        margin: 10px 0;
        padding: 30px;
        width: 100%;
    }
    .business_overview_sec02 .flex .box h4 {
        margin-bottom: 14px;
        font-size: 1.125rem;
    }
    .business_overview_sec02 .flex .box h4 small {
        padding-right: 5px;
    }
    .business_overview_sec02 .flex .box .txt span {
        font-size: 1rem;
    }
    .business_overview_sec02 .flex .box .icon_img img {
        width: 60px;
    }

    /* van service */
    .service_van_sec02 {
        padding: 60px 0 70px;
    }
    .service_van_sec02 .line_flex {
        flex-wrap: wrap;
    }
    .service_van_sec02 .line_flex .box {
        margin-bottom: 20px;
        padding: 30px;
        width: 100%;
    }
    .service_van_sec02 .line_flex .box:last-child {
        margin-bottom: 0;
    }
    .service_van_sec02 .line_flex .box .icon_img {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 0 20px;
    }
    .service_van_sec02 .line_flex .box .icon_img img {
        width: 100px;
    }
    .service_van_sec02 .step > li {
        margin: 0 0 30px;
        padding: 30px;
        width: 100%;
        min-height: auto;
    }
    .service_van_sec02 .step > li:not(:last-child)::after {
        content: none;
    }
    .service_van_sec02 .step > li h4 {
        margin-bottom: 15px;
    }
    .service_van_sec02 .step > li .txt {
        margin-bottom: 20px;
    }
    .service_van_sec02 .step > li ul li {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    /* payment */
    .sercvice_payment_sec02 .sub_tit {
        margin-top: 0;
    }
    .sercvice_payment_sec02 {
        padding-bottom: 70px;
    }
    .business .sercvice_payment_sec02 h3 {
        margin-top: 0;
    }
    .sercvice_payment_sec02 .diagram {
    }
    .sercvice_payment_sec02 .diagram .line_flex {
        order: 2;
        flex-wrap: wrap;
    }
    .sercvice_payment_sec02 .diagram .line_flex .box {
        width: 100%;
        border-width: 2px;
    }
    .sercvice_payment_sec02 .diagram .line_flex .icon_img {
        justify-content: center;
        margin: 15px 0;
        width: 100%;
    }
    .sercvice_payment_sec02 .diagram .line_flex .icon_img img {
        transform: rotate(90deg);
    }
    .sercvice_payment_sec02 .diagram .img_wrap {
        order: 1;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0;
        margin-bottom: 50px;
        padding: 0 10%;
        text-align: center;
    }
    .sercvice_payment_sec02 .diagram .foot {
        order: 3;
    }
    .sercvice_payment_sec02 .diagram .foot span {
        font-size: 1rem;
    }
    .sercvice_payment_sec02 .service .line_flex {
        flex-wrap: wrap;
    }
    .sercvice_payment_sec02 .service .line_flex .box {
        margin-bottom: 15px;
        width: 100%;
        padding: 20px 0;
        border-top-width: 2px;
        border-bottom-width: 0;
    }
    .sercvice_payment_sec02 .service .line_flex .box:last-child {
        margin-bottom: 0;
        border-top-width: 0;
        border-bottom-width: 2px;
    }

    /* product */
    .prd_category {
        margin-bottom: 30px;
    }
    .prd_category ul {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    .prd_category ul li {
        flex: 0 0 auto;
    }
    .prd_category ul li a {
        font-size: 0.875rem;
        padding: 10px;
    }
    .product {
        padding-bottom: 70px;
    }
    .product .prd_list ul > li {
        width: 48%;
        margin-right: 4%;
    }
    .product .prd_list ul > li:nth-child(2n) {
        margin-right: 0;
    }
    .product .prd_list .name {
        font-size: 1rem;
    }
    .product .prd_list .cate {
        margin-bottom: 5px;
    }
    .product .prd_list .cate span {
        font-size: 14px;
    }
    .product .prd_list .cate span + span:before {
        margin: 0 8px;
    }
    .product .prd_list .desc {
        padding: 15px 0;
    }

    .prd_tabs {
        margin-bottom: 30px;
    }
    .prd_tabs ul {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    .prd_tabs ul li {
        flex: 0 0 auto;
        margin-right: 10px;
    }
    .prd_tabs ul li a {
        font-size: 0.875rem;
        padding: 10px 20px;
        min-width: auto;
    }

    .product_view .prd_img {
        width: 100%;
    }
    .product_view .prd_info {
        width: 100%;
    }
    .product_view .prd_top {
        padding: 40px 0;
        margin-bottom: 70px;
    }
    .product_view .prd_info h3 {
        font-size: 30px;
    }
    .product_view .prd_info h4 {
        font-size: 20px;
        margin: 30px 0 5px;
    }
    .product_view .prd_info ul {
        margin-bottom: 20px;
    }
    .product_view .prd_info ul li {
        font-size: 1rem;
    }
    .product_view .prd_info ul li::before {
        top: 10px;
    }
    .product_view .prd_info ul {
        height: 200px;
    }
    .product_view .prd_cont {
        padding: 30px 0 70px;
    }
    .product_view .prd_info table th {
        font-size: 0.875rem;
        padding: 10px;
    }
    .product_view .prd_info table td {
        font-size: 0.875rem;
        padding: 10px;
    }

    /* recruit */
    .recruit .system01 {
        padding: 10px 0 30px;
    }
    .recruit .system01 .process .box {
        flex-wrap: wrap;
        padding: 60px 0;
    }
    .recruit .system01 .process .box .left {
        width: 100%;
    }
    .recruit .system01 .process .box .right {
        width: 100%;
    }
    .recruit .system01 .process .box .right ul li {
        width: 130px;
        height: 130px;
        display: block;
        margin: 0 auto 60px;
    }
    .recruit .system01 .process .box .right ul li::after {
        top: 100%;
        left: 50%;
        transform: rotate(90deg);
        transform-origin: left;
    }
    .recruit .system01 .process .box .right ul li:last-child {
        margin: 0 auto;
    }
    .recruit .system01 .process .box .right .txt span {
        font-size: 1rem;
    }
    .recruit .system02 {
        padding: 10px 0 70px;
    }
    .recruit .flex .box {
        padding: 30px;
        margin-bottom: 20px;
        width: 100%;
    }
    .recruit .flex .box .icon_img {
        width: 50px;
        margin-top: 0;
        margin-bottom: 20px;
        top: auto;
        left: auto;
        position: relative;
    }
    .recruit .flex .box h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .recruit .flex .box .txt span {
        font-size: 0.875rem;
    }

    /* talent */
    .talent_list {
        padding-bottom: 70px;
    }
    .talent_list .list {
        margin-bottom: 50px;
    }
    .talent_list .list ul li > a {
        padding: 30px 20px;
    }
    .talent_list .list ul li .left {
        width: 100%;
    }
    .talent_list .list ul li .right {
        width: 100%;
        margin-top: 20px;
    }
    .talent_list .list ul li .left .day span {
        font-size: 0.813rem;
        padding: 0 7px;
    }
    .talent_list .list ul li .left .employ_info span {
        padding: 0 10px;
        font-size: 0.875rem;
    }
    .talent_list .list ul li .left p.title {
        font-size: 1.125rem;
    }
    .talent_view .viewArea .viewCont .left {
        width: 100%;
    }
    .talent_view .viewArea .viewCont .right {
        width: 100%;
    }
    .talent_view .viewArea .viewCont .left h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .talent_view .viewArea .viewCont .right > div span {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    /* faq */
    .faq {
        padding-bottom: 70px;
    }
    .faq .faq_list {
        margin-bottom: 50px;
    }
    .faq .faq_list .list_item .list {
        padding: 14px 0;
    }
    .faq .faq_list .list_item .list .num span {
        width: 40px;
        height: 40px;
        line-height: 38px;
        font-size: 1rem;
    }
    .faq .faq_list .list_item .list .num {
        width: 70px;
    }
    .faq .faq_list .list_item .list p {
        width: calc(100% - 100px);
        font-size: 0.875rem;
    }
    .faq .faq_list .list_item .list::after {
        right: 10px;
        background-size: 12px;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl {
        padding: 15px 0;
        display: block;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl dt {
        padding: 0 20px 0 10px;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl dt::after {
        display: none;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl dt span {
        font-size: 0.813rem;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl dd {
        padding: 5px 20px 0;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl dd a {
        margin-right: 10px;
    }
    .faq .faq_list .list_item .sub_list .file_wrap dl dd a::after {
        top: 10px;
    }
    .faq .faq_list .list_item .sub_list p {
        font-size: 0.875rem;
    }

    /* sitemap */
    .sitemap {
        padding: 140px 0 50px;
    }
    .sitemap .top {
        margin-bottom: 20px;
    }
    .sitemap .top .flex {
        flex-wrap: wrap;
    }
    .sitemap .top .flex .box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 30px;
    }
    .sitemap .top .flex .box .txt h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .sitemap .top .flex .box .txt p {
        font-size: 1rem;
    }
    .sitemap .top .flex .box .txt {
        margin-bottom: 30px;
    }
    .sitemap .top .flex .box .item {
        position: relative;
        padding: 0;
        bottom: 0;
    }
    .sitemap .bottom .flex .box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 30px;
    }
    .sitemap .bottom .flex .box .txt {
        margin-bottom: 30px;
    }
    .sitemap .bottom .flex .box .txt h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .sitemap .bottom .flex .box .txt p {
        font-size: 1rem;
    }
    .sitemap .bottom .flex .box .btn {
        position: relative;
        padding: 0;
        bottom: 0;
    }

    /* board */
    .srboardTop .selArea div.dv-select {
        width: 100%;
        margin: 0 0 10px;
    }
    .srboardTop .selArea span.input {
        width: calc(100% - 110px);
        float: left;
    }
    .srboardTop ul.tab {
        margin-bottom: 20px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    .srboardTop ul.tab li {
        flex: 0 0 auto;
    }
    .srboardTop ul.tab li a {
        font-size: 1rem;
    }
    .srboardView .viewArea .viewTitle {
        padding: 30px 20px;
    }
    .srboardView .viewArea .viewTitle h4 {
        padding: 0;
        font-size: 20px;
    }
    .srboardView .viewArea .viewCont {
        padding: 30px 20px;
        flex-wrap: wrap;
    }
    .srboardView .viewArea .viewCont .left {
        width: 100%;
    }
    .srboardView .viewArea .viewCont .left h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .srboardView .viewArea .viewCont .right {
        width: 100%;
    }
    .srboardView .viewArea .viewCont .right > div span {
        font-size: 14px;
    }
    .boardListArea {
        padding: 0;
    }
    .srboardView .viewArea .preViewTitle dl {
        padding: 20px;
    }
    .srboardView .viewArea .preViewTitle dl.left {
        padding-left: 40px;
    }
    .srboardView .viewArea .preViewTitle dl.right {
        padding-right: 40px;
    }
    .srboardView .viewArea .preViewTitle dl dt {
        margin-bottom: 0;
    }
    .srboardView .viewArea .preViewTitle dl dt.prev:before {
        left: 20px;
    }
    .srboardView .viewArea .preViewTitle dl dt.next:after {
        right: 20px;
    }
    .srboardView .bottomBtn {
        width: 200px;
        margin: 30px auto 0;
    }
    .srboardView .bottomBtn a {
        padding: 15px;
        font-size: 1rem;
    }
    .srboardList .listTable .colTbl td {
        padding: 20px;
        width: 50%;
    }

    /* pg check */
    .pgcheck {
        padding-bottom: 70px;
    }
    .pgcheck .tab_wrap .tab_title p {
        flex-direction: column;
        align-items: unset;
        font-size: 0.875rem;
    }
    .pgcheck .tab_wrap .tab_title p em {
        font-size: 1.25rem;
    }
    .pgcheck .tab_wrap .tab_title {
        padding: 20px;
    }
    .pgcheck .tab_wrap .tab_category {
        padding-bottom: 30px;
        overflow-x: auto;
    }
    .pgcheck .tab_wrap .tab_category ul {
        width: 150%;
    }
    .pgcheck .tab_wrap .tab_category ul li {
        width: calc(100% / 5 - 8px);
        margin-right: 10px;
        padding: 10px 0;
    }
    .pgcheck .tab_wrap .tab_category ul li .tab_icon {
        height: 50px;
    }
    .pgcheck .tab_wrap .tab_category ul li .tab_icon img {
        max-width: 40px;
        max-height: 40px;
    }
    .pgcheck .tab_wrap .tab_category ul li p {
        font-size: 0.875rem;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl {
        flex-direction: column;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dt {
        width: 100%;
        padding: 15px 0;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl.date dd {
        flex-direction: column;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd {
        width: 100%;
        padding: 15px 0;
        justify-content: space-between;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.num {
        width: 22%;
        margin-right: 0;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.num::after {
        width: 5px;
        left: calc(100% + 8%);
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box input {
        padding: 0 5px;
        height: 50px;
    }
    .pgcheck .tab_wrap .tab_sec .note {
        padding: 30px 20px 10px;
    }
    .pgcheck .tab_wrap .tab_sec .note h4 {
        font-size: 1.125rem;
    }
    .pgcheck .tab_wrap .tab_sec .note .txt {
        margin: 20px 0 0;
    }
    .pgcheck .tab_wrap .tab_sec .note .txt p {
        font-size: 0.875rem;
        padding-left: 30px;
    }
    .pgcheck .tab_wrap .tab_sec .note .txt p em {
        width: 20px;
        height: 20px;
        line-height: 18px;
        font-size: 0.75rem;
    }
    .check_btn {
        margin-top: 30px;
    }
    .check_btn a {
        font-size: 1rem;
        padding: 15px 50px;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .select_box select {
        height: 50px;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd.select .input_box.size01 {
        width: 48%;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd.select .select_box {
        width: 48%;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .select_box {
        margin-right: 0;
        display: flex;
        justify-content: space-between;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.size01 {
        width: 100%;
    }
    .pgcheck .tab_wrap .tab_sec .tab_list dl dd .input_box.size01.m {
        width: 88%;
    }
    .date-picker {
        width: 100%;
    }
    .date-picker::after {
        position: unset;
        display: block;
        line-height: 30px;
        text-align: center;
    }
    .date-picker .input {
        height: 50px;
    }
    .date-picker .input .result {
        width: calc(100% - 50px);
    }
    .date-picker .input button {
        width: 50px;
        height: 50px;
    }

    .pop_wrap .pop .top p {
        font-size: 1.125rem;
        padding: 20px;
    }
    .pop_wrap .pop .bottom {
        padding: 20px;
    }
    .pop_wrap .pop .bottom .pop_list {
        overflow-x: auto;
    }
    .pop_wrap .pop .bottom .pop_list ul {
        width: 350%;
    }
    .pop_wrap .pop .bottom .pop_list ul li {
        font-size: 0.875rem;
    }
    .pop_wrap .pop .bottom .pop_list ul.title li {
        font-size: 0.875rem;
    }
    .pop_wrap .pop .bottom .pop_list ul.txt li {
        padding: 20px 0;
    }
    .pop_wrap .close {
        right: -2px;
        top: -32px;
        width: 25px;
        height: 25px;
    }
    .pop_wrap .close span:first-child,
    .pop_wrap .close span:last-child {
        width: 25px;
    }

    .area_cont {
        margin: 30px 0 30px;
        padding: 30px 20px;
    }
    .area_cont p {
        font-size: 14px;
    }
    .area_cont p span {
        font-size: 14px !important;
    }

    .privacy {
        margin-bottom: 60px;
    }
    .privacy .flex {
        padding-top: 30px;
    }
    .area_select {
        margin: 0;
    }
}

@media screen and (max-height: 500px) {
    .main_visual .visual_tit h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .main_visual .visual_tit p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .location .line_flex .box p {
        display: flex;
        flex-direction: column;
    }
    .location .line_flex .box p .subway {
        align-self: flex-start;
        margin-right: 0;
        margin-bottom: 6px;
    }
    .location .line_flex .box p .bus {
        margin-right: 0;
        margin-bottom: 6px;
    }
    .location .line_flex .box p .bus::after {
        display: none;
    }
}
