/* prdTabs */
#prdTabs {
    display: flex;
    flex-wrap: wrap;
}
#prdTabs li {
    width: 25%;
    text-align: center;
    border: 1px solid #ddd;
    margin-top: -1px;
    margin-right: -1px;
}
@media (max-width:768px){
    #prdTabs li {
        width: 33.3333%;
    }
}

/* prdInfo */
.prdInfo {
    display: flex;
}
.prdInfo > .prdFboxTop .img {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.prdInfo > .prdFboxTop .img:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.02);
    mix-blend-mode: multiply;
}
.prdInfo > .info .infoDetails {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
@media (min-width:992px){
    .prdInfo > .prdFboxTop {
        width: 50%;
    }
    .prdInfo > .info {
        width: 50%;
        padding-left: 50px;
    }
}
@media (max-width:992px){
    .prdInfo {
        flex-wrap: wrap;
    }
    .prdInfo > div {
        width: 100%;
    }
}
/* prdFboxTop */
.prdFboxTop .tabs ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
    margin-top: 10px;
}
.prdFboxTop .tabs ul li {
    padding: 0 2px;
    margin: 2px 0;
    width: 20%;
}
.prdFboxTop .tabs li {
    margin-bottom: 10px;
}
.prdFboxTop .tabs li .item {
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}
.prdFboxTop .tabs li .item:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/hover_plus.png) center center no-repeat;
	background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    z-index: 4;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.prdFboxTop > .img a {
    text-decoration: none;
    display: block;
    position: relative;
}
.prdFboxTop > .img .prdThum {
    width: 700px;
}
@media (min-width:992px){
    .prdFboxTop .tabs li .item:hover:before{
        opacity: 1;
    }
}


/* detailTabs */
#detailTabs {
    border-bottom: 1px solid #111;
    background-color: #fff;
}
.topSec.sticky-active {
    border-bottom: 1px solid #111;
    background-color: #fff;
    z-index: 10;
}
.topSec.sticky-active #detailTabs {
    border: 0px;
}
#detailTabs li {
    float: left;
    width: 160px;
    margin-right: -1px;
}
#detailTabs li a {
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 1em;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    border: 1px solid #ddd;
    border-bottom: 0px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#detailTabs li a:hover {
    background-color: #ddd;
    color: #666;
    border-color: #ddd;
}
#detailTabs li a.act {
    background-color: #111;
    color: #fff;
    border-color: #111;
}
@media (max-width:768px) {
    #detailTabs li {
        width: auto;
    }
    #detailTabs li a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* infoTit */
.infoTit {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #444;
}

/* table_basic */
.table.table_basic {
    border: 1px solid #ddd;
}
.table.table_basic.table_fx {
    table-layout: fixed;
}
.table.table_basic tr th,
.table.table_basic tr td {
    font-size: 17px;
    font-weight: 300;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}
.table.table_basic tr th:first-child,
.table.table_basic tr td:first-child {
    border-left: 0px;
}
.table.table_basic tr th:last-child,
.table.table_basic tr td:last-child {
    border-right: 0px;
}
.table.table_basic tr th {
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
}
.table.table_basic thead tr th {
    background-color: #f1f1f1;
    color: #111;
    font-weight: 600;
}
.table.table_basic tbody tr th {
    background-color: #fcfcfc;
}
.table.table_basic tr.this td {
    background-color: #fdf9ef;
}
@media (max-width:768px) {
    .table.table_basic tr th,
    .table.table_basic tr td {
        font-size: 14px;
        padding: 8px 5px;
        word-break: keep-all;
    }
}


/* preedTop */
.preedTop {
    display: flex;
    align-items: center;
}
.preedTop .lft .tag {
    display: inline-block;
    line-height: 45px;
    width: 150px;
    text-align: center;
    margin-right: 5px;
    border-radius: 0px 15px 0 15px;
    background-color: #3670c1;
    color: #fff;
}
.preedTop .lft .tag.tag0 {
    background-color: #019ad8;
}
.preedTop .lft .tag.tag2 {
    background-color: #2b559d;
}
.preedTop .lft .tag.tag3 {
    background-color: #1a3562;
}
@media (min-width:992px) {
    .preedTop > div {
        width: 50%;
    }
}
@media (max-width:992px) {
    .preedTop {
        flex-wrap: wrap;
    }
    .preedTop > div {
        width: 100%;
    }
    .preedTop .lft {
        text-align: center;
    }
    .preedTop .lft .tag {
        line-height: 35px;
        width: 80px;
        font-size: 15px;
        margin: 3px 0;
    }
    .preedTop .rt {
        padding-top: 30px;
    }
}

/* sub2 :: sec2 */
#sub2 .sec2 {
    background-color: #019ad8;
    padding: 40px 0;
    text-align: center;
}
#sub2 .sec2 ul {
    display: flex;
    margin: 0 -5px;
    justify-content: center;
}
#sub2 .sec2 ul li {
    width: 14.2857142857%;
    padding: 0 5px;
}
#sub2 .sec2 ul li .item {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 10px;
}
@media (max-width:992px) {
    #sub2 .sec2 ul {
        flex-wrap: wrap;
    }
    #sub2 .sec2 ul li {
        width: 25%;
        padding: 0 5px;
        margin: 5px 0;
    }
    #sub2 .sec2 ul li .item {
        padding: 10px 0;
    }
    #sub2 .sec2 ul li .item img {
        width: 40px;
    }
}
@media (max-width:500px) {
    #sub2 .sec2 {
        padding: 20px 0;
    }
    #sub2 .sec2 ul li .item {
        border-radius: 5px;
    }
    #sub2 .sec2 ul li .item h5 {
        font-size: 14px;
    }
}
/* sub2 :: sec3 */
#sub2 .sec3 #bookBt > ul > li:not(:last-child) {
    border-bottom: 1px solid #ccc; 
}
/* sub2 :: sec4 */
#sub2 .sec4 {
    padding: 40px 0;
    background-color: #f3f3f3;
    text-align: center;
}

#sub2 .sec3{
    background: #0c9fda;
}
#sub2 .sec3 .imgBox {
    position: relative;
    z-index: 3;
}
#sub2 .sec3 .imgBox > ul > li {
    position: relative;
}
#sub2 .sec3 .imgBox > ul > li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 1px);width: 100%;
    border-bottom: 2px dashed #fff;
}
#sub2 .sec3 .imgBox {
    padding: 60px;
    text-align: center;
}
#sub2 .sec3 .imgBox .circleBox {
    height: 310px;
    width: 310px;
    border: 2px dashed #000;
    border-radius: 50%;
    display: inline-block;
    background-color: #fff;
    position: relative;
    z-index: 3;
}
#sub2 .sec3 .imgBox .circleBox h4 {
   /* color: #fff;*/
    font-weight: 600;
    margin-top: 10px;
}
@media (max-width:1200px){
    #sub2 .sec3 .imgBox .circleBox {
        height: 250px;
        width: 250px;
    }
    #sub2 .sec3 .imgBox .circleBox img {
        width: 80px;
    }
}
@media (max-width:992px){
    #sub2 .sec3 .imgBox {
        padding: 40px 20px;
    }
    #sub2 .sec3 .imgBox .circleBox {
        height: 200px;
        width: 200px;
    }
    #sub2 .sec3 .imgBox .circleBox img {
        width: 50px;
    }
}
@media (max-width:768px){
    #sub2 .sec3 .imgBox {
        padding: 15px;
    }
    #sub2 .sec3 .imgBox ul li {
        padding: 5px !important;
    }
    #sub2 .sec3 .imgBox .circleBox {
        height: auto;
        width: 100%;
        border-radius: 0px;
        padding: 15px;
        border-width: 1px;
    }
    #sub2 .sec3 .imgBox > ul > li:not(:last-child)::after {    
        border-width: 1px;
        bottom: 100%;
        left: 50%;
        height: 100%;
        width: 1px;
        border-left: 1px dashed #fff;
    }
    #sub2 .sec3 .imgBox .circleBox h4 {
        font-size: 14px;
        line-height: 1.2em;
    }
}


/*thr_wrp thr_box*/
.thr_wrp .thr_box {
    margin-bottom: 15px;
}
.thr_wrp .thr_box .thr_top{
    background-color: #002f5d;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
}
.thr_wrp .thr_box .thr_bot{
    border: 2px solid #002f5d;
    border-radius: 0 0 10px 10px;
    padding: 30px 20px;  
	background: #fff;
}
.thr_wrp .thr_box .thr_bot h5{
    margin-top: 0;
    font-size: 17px;
}
@media (max-width: 768px){
    .thr_wrp .thr_box .thr_top{
        padding: 10px;
    }
    .thr_wrp .thr_box .thr_bot{
        padding: 15px;  
    }
    /*.thr_wrp > li:nth-child(3){
        margin-left: 25%;
    }*/
    .thr_wrp .thr_box{
        margin: 5px 0;
    }
}


/* tableovf */
@media (max-width:768px) {
    .tableovf {
        overflow-x: scroll;
    }
    .tableovf > .table {
        width: 800px;
    }
}
/* table_svc */
.table.table_svc {
    border: 1px solid #ddd;
}
.table.table_svc.table_fx {
    table-layout: fixed;
}
.table.table_svc tr th,
.table.table_svc tr td {
    font-size: 17px;
    font-weight: 300;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}
.table.table_svc tr th:first-child,
.table.table_svc tr td:first-child {
    border-left: 0px;
}
.table.table_svc tr th:last-child,
.table.table_svc tr td:last-child {
    border-right: 0px;
}
.table.table_svc tr th {
    font-weight: 600;
    text-align: center;
    word-break: keep-all;
}
.table.table_svc thead tr th {
    background-color: #fff;
    color: #111;
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    border-top-width: 2px;
    border-bottom-width: 2px;
    background-color: #019ad8;
    border-color: #019ad8;
}
.table.table_svc thead tr th.col1 {
    color: #fff;
    border-color: #3670c1;
    background-color: #3670c1;
}
.table.table_svc thead tr th.col2 {
    color: #fff;
    border-color: #2b559d;
    background-color: #2b559d;
}
.table.table_svc thead tr th.col3 {
    color: #fff;
    border-color: #1a3562;
    background-color: #1a3562;
}
.table.table_svc tbody tr th {
    background-color: #fdfeff;
}
.table.table_svc tr.this td {
    background-color: #fdf9ef;
}
.table.table_svc tr td.text-left {
    text-align: left;
}
@media (max-width:768px) {
    .table.table_svc tr th,
    .table.table_svc tr td {
        font-size: 14px;
        padding: 8px 5px;
        word-break: keep-all;
    }
}

/* topItro */
.topItro .lftTit .icon {
    display: inline-block;
    width: 80px;
    line-height: 80px;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(210, 218, 228, 0.5);
    text-align: center;
    margin-bottom: 15px;
}
.topItro .lftTit .icon img {
    width: 40px;
}
.topItro .row {
    margin: 0 -5px;
}
.topItro .row  > li {
    padding: 0 5px;
}
.topItro ul li img {
    width: 100%;
}
.topItro ul li h5 {
    margin-top: 8px;
}
@media (min-width:992px){
    .topItro {
        position: relative;
        padding-left: 450px;
    }
    .topItro .lftTit {
        position: absolute;
        left: 0;
        top: 0;
        width: 430px;
    }
}
@media (max-width:992px){
    .topItro {
        text-align: center;
    }
    .topItro .lftTit .icon {
        width: 40px;
        line-height: 40px;
        border-radius: 5px;
        margin-bottom: 15px;
    }
    .topItro ul {
        margin-top: 30px !important;
    }
}
@media (max-width:768px){
    .topItro .lftTit .icon img {
        width: 30px;
    }
}

/* stepList */
.stepList li {
    position: relative;
}
.stepList li .item {
    display: block;
    padding: 15px 5px;
    border: 2px solid #269fcf;
    text-align: center;
    border-radius: 15px;
    background-color: #f8fdff;
}
@media (min-width:992px){
    .stepList li:not(:last-child):after {
        content: "";
        position: absolute;
        right: -25px;
        top: calc(50% - 25px);
        width: 50px;
        height: 50px;
        background: url(../img/dt_arr.png) center center no-repeat;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 3px 3px rgba(0, 0, 0, 0.05);
        z-index: 3;
    }
}
@media (max-width:992px){
    .stepList li {
        margin:  15px 0;
    }
    .stepList li:not(:last-child):after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: calc(50% - 15px);
        width: 30px;
        height: 30px;
        background-size: 14px;
        transform: rotate(90deg);
        background: url(../img/dt_arr.png) center center no-repeat;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 3px 3px rgba(0, 0, 0, 0.05);
        z-index: 3;
    }
}

/* preedSvc */
.preedSvc .item.item0 .tit {
    border-radius: 0  20px 0 20px;
    background-color: #019ad8;
    padding: 15px;
}
.preedSvc .item.item0 .costBox {
    border: 3px solid #019ad8;
    padding: 55px 15px 40px;
    margin-top: -15px;
    border-radius: 0 0 20px 20px;
}
.preedSvc .item.item0 .costBox h1 {
    color: #019ad8;
}

.preedSvc .item .tit {
    border-radius: 0  20px 0 20px;
    background-color: #3670c1;
    padding: 15px;
}
.preedSvc .item .costBox {
    border: 3px solid #3670c1;
    padding: 55px 15px 40px;
    margin-top: -15px;
    border-radius: 0 0 20px 20px;
}
.preedSvc .item .costBox h1 {
    color: #3670c1;
}
.preedSvc .item.item2 .tit {
    background-color: #2b559d;
}
.preedSvc .item.item2 .costBox {
    border-color: #2b559d;
}
.preedSvc .item.item2 .costBox h1 {
    color: #2b559d;
}
.preedSvc .item.item3 .tit {
    background-color: #1a3562;
}
.preedSvc .item.item3 .costBox {
    border-color: #1a3562;
}
.preedSvc .item.item3 .costBox h1 {
    color: #1a3562;
}

.preedSvc .item.item4 .tit {
    background-color: #5d59b7;
}
.preedSvc .item.item4 .costBox {
    border-color: #5d59b7;
}
.preedSvc .item.item4 .costBox h1 {
    color: #5d59b7;
}
@media (min-width:992px){
    .preedSvc .item .last {
        min-height: 68px;
    }
}
@media (max-width:992px){
    .preedSvc > li {
        margin-bottom: 15px;
    }
    .preedSvc .item .tit {
        border-radius: 0  10px 0 10px;
        padding: 10px;
    }
    .preedSvc .item .costBox {
        border: 2px solid #019ad8;
        padding: 20px 15px;
        margin-top: -8px;
        border-radius: 0 0 10px 10px;
    }
}

/* sub3 */
#sub3 .sec4 {
    background-color: #f4f6f9;
}
/* preList */
.preList .item {
    box-shadow: 15px 15px 25px rgba(210, 218, 228, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    background-color: #fff;
}
.preList .item .topCon {
    display: flex;
    align-items: center;
    min-height: 100px;
}
.preList .item .topCon .icon span {
    display: inline-block;
    padding: 15px;
    border-radius: 10px;
    background-color: #e7f4fa;
    width: 70px;
}
.preList .item .topCon .tcon {
    padding-left: 15px;
}
.preList .item .topCon .tcon h4 {
    line-height: 1.2em;
}
.preList .item h5 {
    line-height: 1.3em;
    margin-top: 10px;
    min-height: 60px;
}
@media (max-width:768px){
    .preList > li {
        margin: 10px 0;
    }
    .preList .item {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .preList .item .topCon {
        min-height: auto;
        flex-wrap: wrap;
        text-align: center;
    }
    .preList .item .topCon > div {
        width: 100%;
    }
    .preList .item .topCon .icon span {
        padding: 10px;
        border-radius: 5px;
        width: 40px;
    }
    .preList .item .topCon .tcon {
        padding-left: 0px;
        padding-top: 10px;
    }
    .preList .item h5 {
        margin-top: 5px;
        min-height: auto;
    }
}

/* rcmList */
.rcmList > li {
    border-right: 1px dashed #aaa;
    border-bottom: 1px dashed #aaa;
}
.rcmList > li .item {
    padding: 50px 0;
}
@media (min-width:992px){
    .rcmList > li:nth-child(4),
    .rcmList > li:nth-child(8) {
        border-right: 0px;
    }
    .rcmList > li:nth-child(5),
    .rcmList > li:nth-child(6),
    .rcmList > li:nth-child(7),
    .rcmList > li:nth-child(8) {
        border-bottom: 0px;
    }
}
@media (max-width:992px) and (min-width:768px){
    .rcmList > li:nth-child(3),
    .rcmList > li:nth-child(6) {
        border-right: 0px;
    }
    .rcmList > li:nth-child(7) {
        border-bottom: 0px;
    }
}
@media (max-width:768px){
    .rcmList > li {
        border-right: 0px;
        border-color: #ddd;
    }
    .rcmList > li .item {
        padding: 20px 15px;
    }
    .rcmList > li .item img {
        width: 40px;
    }
}

/* sub3 :: sec2 */
#sub3 .sec2 {
    background-color: #019ad8;
    padding: 40px 0;
    text-align: center;
}
#sub3 .sec2 ul {
    display: flex;
    margin: 0 -5px;
    justify-content: center;
}
#sub3 .sec2 ul li {
    width: 14.2857142857%;
    padding: 0 5px;
}
#sub3 .sec2 ul li .item {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 10px;
}
@media (max-width:992px) {
    #sub3 .sec2 ul {
        flex-wrap: wrap;
    }
    #sub3 .sec2 ul li {
        width: 25%;
        padding: 0 5px;
        margin: 5px 0;
    }
    #sub3 .sec2 ul li .item {
        padding: 10px 0;
    }
    #sub3 .sec2 ul li .item img {
        width: 40px;
    }
}
@media (max-width:500px) {
    #sub3 .sec2 {
        padding: 20px 0;
    }
    #sub3 .sec2 ul li .item {
        border-radius: 5px;
    }
    #sub3 .sec2 ul li .item h5 {
        font-size: 14px;
    }
}
/* sub4 */
#sub4 .sec1 {
    background-color: #f4f6f9;
}
#sub4 .sec3,
#sub4 .sec5,
#sub4 .sec7 {
    background-color: #fcfcfc;
}
/* sub2_4 */
#sub2_4 .sec1,
#sub2_4 .sec3 {
    background-color: #f4f6f9;
}
#sub2_4 .sec4 {
    background-color: #fcfcfc;
}
#sub2_4 .sec3 ul li {
    margin: 15px 0;
}
#sub2_4 .sec3 ul li a {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
#sub2_4 .sec3 ul li a:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/hover_plus.png) center center no-repeat;
	background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: 4;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#sub2_4 .sec3 ul li a:hover:before{
	opacity: 1;
}
@media (max-width:768px){
    #sub2_4 .sec3 ul li {
        margin: 5px 0;
    }
    #sub2_4 .sec3 ul li a {
        border-radius: 10px;
    }
}
/* memShip */
.memShip > li {
    margin: 15px 0;
}
.memShip .item {
    box-shadow: 15px 15px 25px rgba(210, 218, 228, 0.5);
    padding: 36px 26px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    text-decoration: none;
    border: 2px solid #fff;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.memShip .item:hover {
    border-color: #019ad8;
}
.memShip .item .tcon {
    width: 70%;
}
.memShip .item .icon {
    width: 30%;
    padding-right: 15px;
}
.memShip .item .icon span {
    display: inline-block;
    padding: 10px;
    background-color: #f0f7fa;
    border-radius: 50%;
}
@media (min-width:768px){
    .memShip .item {
        min-height: 280px;
        align-items: center;
    }
}
@media (max-width:768px){
    .memShip .item {
        flex-wrap: wrap;
        padding: 20px;
        border-radius: 10px;
    }
    .memShip .item .tcon {
        width: 75%;
    }
    .memShip .item .icon {
        width: 25%;
        margin-bottom: 10px;
    }
    .memShip .item .icon span {
        border-radius: 5px;
    }
    .memShip .item .icon img {
        width: 30px;
    }
}

/* numBox */
.numBox {
    padding-bottom: 25px;
}
.numBox span {
    display: inline-block;
    line-height: 60px;
    width: 60px;
    background-color: #2b559d;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    position: relative;
}
.numBox span:after {
    content: "";
    position: absolute;
    left: calc(50% - 5px);
    bottom: -3px;
    width: 8px;
    height: 8px;
    background-color: #2b559d;
    transform: rotate(45deg);
}
@media (max-width:768px){
    .numBox {
        padding-bottom: 15px;
    }
    .numBox span {
        line-height: 40px;
        width: 40px;
    }
}

/* mediConList */
.mediConList > li {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #aaa;
}
/* mediCon */
.mediCon .gallList li {
    margin-top: 25px;
}
.mediCon .gallList li h5 {
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0px;
}
@media (min-width:992px){
    .mediCon {
        position: relative;
        padding-left: 350px;
    }
    .mediCon .mediLogo {
        position: absolute;
        left: 0;
        top: 0;
        padding: 15px;
        border: 1px solid #ddd;
    }
    .mediCon .mediTiTle {
        position: absolute;
        left: 0;
        top: 0;
    }
}
@media (max-width:992px){
    .mediCon .mediLogo {
        display: block;
        max-width: 60%;
        padding: 15px;
        border: 1px solid #ddd;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .mediCon .gallList li {
        margin-top: 10px;
    }
    .mediCon .gallList li h5 {
        padding: 5px;
    }
}



/* prcList */
.prcList li {
    position: relative;
}
.prcList li .item {
    display: flex;
    padding: 15px 15px;
    border: 2px solid #269fcf;
    text-align: center;
    border-radius: 15px;
    background-color: #f8fdff;
    align-items: center;
    justify-content: center;
}
.prcList li .item p,
.prcList li .item h6,
.prcList li .item h5 {
    line-height: 1.2em;
}
.prcList li .item h6 {
    margin-top: 5px;
}
@media (min-width:992px){
    .prcList li:not(:last-child):after {
        content: "";
        position: absolute;
        right: -25px;
        top: calc(50% - 25px);
        width: 50px;
        height: 50px;
        background: url(../img/dt_arr.png) center center no-repeat;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 3px 3px rgba(0, 0, 0, 0.05);
        z-index: 3;
    }
    .prcList li .item {
        height: 200px;
    }
}
@media (max-width:992px){
    .prcList li {
        margin:  15px 0;
    }
    .prcList li:not(:last-child):after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: calc(50% - 15px);
        width: 30px;
        height: 30px;
        background-size: 14px;
        transform: rotate(90deg);
        background: url(../img/dt_arr.png) center center no-repeat;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 3px 3px rgba(0, 0, 0, 0.05);
        z-index: 3;
    }
}

/* membership4 */
#membership4 .preedSvc .item .costBox {
    padding: 25px 15px 25px;
}
#membership4 .preedSvc .item .costBox .pList h5 .fl {
    position: absolute;
    left: 10px;
    top: 0;
}
#membership4 .preedSvc .item .costBox .pList h5 {
    padding-left: 80px;
    font-weight: 700;
}
@media (min-width:992px){
    #membership4 .preedSvc .item .costBox {
        display: flex;
        align-items: center;
        height: 300px;
    }
}
/* logoBoxOut */
.logoBoxOut {
    display: flex;
    align-items: center;
}
.logoBoxOut .logoIn {
    border: 1px solid #ddd;
    padding: 30px;
    width: 30%;
}
.logoBoxOut .txtIn {
    padding-right: 20px;
    width: 70%;
}
@media (max-width:768px){
    .logoBoxOut {
        flex-wrap: wrap;
    }
    .logoBoxOut .logoIn {
        padding: 15px;
        width: 100%;
    }
    .logoBoxOut .txtIn {
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }
}
/* table_info */
.table.table_info {
    border-top: 2px solid #333;
}
.table.table_info tr th,
.table.table_info tr td {
    font-size: 17px;
    text-align: center;
    font-weight: 300;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px;
    vertical-align: middle;
}
.table.table_info tr th:first-child,
.table.table_info tr td:first-child {
    border-left: 0px;
}
.table.table_info tr th:last-child,
.table.table_info tr td:last-child {
    border-right: 0px;
}
.table.table_info tr th {
    font-weight: 500;
}
.table.table_info thead tr th {
    background-color: #fff;
    border-bottom: 2px solid #333;
}
.table.table_info tbody tr th {
    background-color: #fff;
    font-weight: 600;
}
.table.table_info tbody tr td {
    background-color: #fff;
    text-align: left;
}
@media (max-width:768px) {
    .table.table_info tr th,
    .table.table_info tr td {
        font-size: 13px;
        padding: 8px 5px;
    }
}

/* hisItemList */
.hisItemWrp {
    position: relative;
}
.hisItemWrp .hisItem {
    padding-top: 50px;
    position: relative;
}
.hisItemWrp .hisItem:after {
    content: "";
    position: absolute;
    left: calc(50% - 15px);
    width: 31px;
    height: 31px;
    background-color: #31569f;
    opacity: 0.1;
    border-radius: 50%;
    top: 0;
    z-index: 1;
}
.hisItemWrp .hisItem:before {
    content: "";
    position: absolute;
    left: calc(50% - 4px);
    width: 9px;
    height: 9px;
    background-color: #31569f;
    border-radius: 50%;
    top: 11px;
    z-index: 3;
}
.hisItemWrp .hisItem h5 {
    line-height: 1.4em;
}
.hisItemWrp .hisItem .logoItem {
    padding: 30px 15px;
    text-align: center;
    box-shadow: 5px 5px 20px rgba(210, 218, 228, 0.6);
    border-radius: 20px;
    margin-top: 20px;
    background-color: #fff;
}
@media (min-width:992px){
    .hisItemWrp {
        text-align: center;
    }
    .hisItemWrp:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        top: 15px;
        height: 1px;
        background-color: #eee;
    }
}
@media (max-width:992px){
    .hisItemWrp {
        padding-left: 30px;
    }
    .hisItemWrp:after {
        content: "";
        position: absolute;
        left: 0;
        height: 100%;
        top: 15px;
        width: 1px;
        background-color: #eee;
    }
    .hisItemWrp li {
        margin: 25px 0;
    }
    .hisItemWrp .hisItem {
        padding-top: 0;
    }
    .hisItemWrp .hisItem:after {
        left: -45px;
    }
    .hisItemWrp .hisItem:before {
        left: -34px;
    }
    .hisItemWrp .hisItem .logoItem {
        padding: 15px;
    }
}
@media (max-width:500px){
    .hisItemWrp .hisItem .logoItem {
        border-radius: 10px;
    }
    .hisItemWrp .hisItem .logoItem img {
        width: 150px;
    }
}
/* spList */
.spList > li {
    margin: 15px 0;
}
.spList .item {
    box-shadow: 15px 15px 25px rgba(210, 218, 228, 0.5);
    padding: 36px 26px;
    border-radius: 20px;
    background-color: #f8f8f8;
    text-decoration: none;
    border: 2px solid #fff;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.spList .item h4,
.spList .item h5 {
    line-height: 1.2em;
}
.spList .item h5 {
    margin-top: 5px;
}
@media (min-width:768px){
    .spList .item h4 {
        margin-top: 15px;
    }
}
@media (max-width:768px){
    .spList .item {
        box-shadow: 5px 5px 15px rgba(210, 218, 228, 0.5);
        padding: 20px 15px;
    }
    .spList .item .img img {
        width: 75px;
    }
    .spList .item h4 {
        margin-top: 10px;
    }
}

/* chkListWrp */
.chkListWrp ul li {
    margin: 15px 0;
}
.chkListWrp .item {
    box-shadow: 15px 15px 25px rgba(210, 218, 228, 0.5);
    padding: 15px 15px 20px;
    border-radius: 20px;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #fff;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.chkListWrp .item h4 {
    background: url(../img/chk_icon.png) left 10px no-repeat;
    padding-left: 25px;
    margin: 5px 0;
    background-size: 15px !important;
}
.chkListWrp .item h5 {
    padding-left: 25px;
}
@media (max-width:768px){
    .chkListWrp .item {
        box-shadow: 5px 5px 15px rgba(210, 218, 228, 0.5);
        padding: 11px 15px 15px;
        border-radius: 10px;
    }
}

/* tList */
.tList > li {
    padding-left: 10px;
    margin: 5px 0;
}
.tList > li li {
    margin: 0px;
}
.tList > li > p,
.tList > li > h5 {
    padding-left: 15px;
    position: relative;
}
.tList > li > p > .hd,
.tList > li > h5 > .hd {
    position: absolute;
    left: -10px;
    top: 0;
}

/* snsItemWrp */
.snsItemWrp ul li {
    margin: 15px 0;
}
.snsItemWrp .snsItem {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 15px 15px 25px rgba(210, 218, 228, 0.5);
    padding: 30px 15px;
    border-radius: 20px;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #fff;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.snsItemWrp li:first-child .snsItem .icon {
    display: flex;
    align-items: center;
}
.snsItemWrp li:first-child .snsItem .icon .txt {
    padding-left: 20px;
}
.snsItemWrp .snsItem .txt h5 {
    text-align: center;
}
.snsItemWrp .snsItem .icon {
    text-align: center;
}
.snsItemWrp .snsItem .icon img {
    width: 80px;
}
@media (max-width:768px){
    .snsItemWrp .snsItem {
        padding: 15px;
        box-shadow: 5px 5px 15px rgba(210, 218, 228, 0.5);
    }
    .snsItemWrp .snsItem .txt {
        display: none;
    }
    .snsItemWrp .snsItem .icon img {
        width: 50px;
    }
}

/* rsvListWrp */
.rsvListWrp .item {
    display: flex;
    align-items: center;
}
.rsvListWrp .item .txt {
    padding-left: 30px;
}
.rsvListWrp .item .icon img {
    border-radius: 20px;
}
@media (min-width:992px){
    .rsvListWrp .item {
        height: 200px;
    }
}
@media (max-width:992px){
    .rsvListWrp li {
        margin-bottom: 15px;
    }
    .rsvListWrp .item .icon {
        width: 25%;
    }
    .rsvListWrp .item .txt {
        width: 75%;
        padding-left: 15px;
    }
}



/* faq */
#qnaWrp .qnaItem:first-child {
    border-top: 1px solid rgba(0,0,0,0.4);
}
#qnaWrp .qnaItem {
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.4);
    padding: 20px 0;
}
#qnaWrp .qnaItem > div {
    position: relative;
    padding: 15px;
    padding-left: 35px !important;
}
#qnaWrp .qnaItem .qna_q {
    padding: 8px 0;
    padding-right: 30px;
    cursor: pointer;
}
#qnaWrp .qnaItem .qna_q .actBtn {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: url(../img/qna_pls.png) center center no-repeat;
}
#qnaWrp .qnaItem.act .qna_q .actBtn {
    background: url(../img/qna_minus.png) center center no-repeat;
}
#qnaWrp .qnaItem .qna_q h3 {
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 5px;
}
#qnaWrp .qnaItem .qna_q h4 {
    font-weight: 500;
    margin-bottom: 0px;
}
@media (max-width:768px){
    #qnaWrp .qnaItem {
        padding: 15px 10px;
    }
    #qnaWrp .qnaItem > div {
        padding-left: 25px !important;
    }
    #qnaWrp .qnaItem .qna_q {
        padding: 2px;
        padding-right: 25px;
    }
    #qnaWrp .qnaItem .qna_q h3 {
        top: 0;
    }
    #qnaWrp .qnaItem .qna_q .actBtn {
        top: 2px;
        height: 20px;
        background-size: 10px !important;
    }
}
/* vdo */
.vdo {
    max-width: 1000px;
    margin: 0 auto;
}
.vdo video {
    width: 100%;
}
/* sub6_5 */
#sub6_5 .sec1 {
    background-color: #f4f6f9;
}

/* jProcess */
.jProcess {
    position: relative;
}
.jProcess:after {
    content: "";
    position: absolute;
    left: -2px;
    background-color: #eee;
    top: 0;
    height: 100%;
    width: 3px;
}
.jProcess > li {
    margin: 10px 0;
    position: relative;
    padding-left: 50px;
}
.jProcess > li:after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    border: 3px solid #0a2543;
    background-color: #fff;
    border-radius: 50%;
    left: -6px;
    height: 12px;
    width: 12px;
    z-index: 3;
}
.jProcess > li .conItem {
    background-color: #eff5f8;
    border-radius: 20px;
    padding: 20px 30px;
}
@media (min-width:992px){
    .jProcess .containImg {
        display: flex;
        align-items: center;
    }
    .jProcess .containImg .txt {
        padding-left: 30px;
    }
}
@media (max-width:768px){
    .jProcess > li {
        padding-left: 30px;
    }
    .jProcess .containImg .img {
        text-align: center;
        margin-bottom: 10px;
    }
}
/* condiList */
.condiList li {
    position: relative;
}
.condiList li .item {
    text-align: center;
}
.condiList li .item h3 {
    display: block;
    padding: 15px 5px;
    border: 3px solid #269fcf;
    text-align: center;
    border-radius: 15px;
    background-color: #f8fdff;
}
.condiList li .item .txt {
    padding: 15px 0;
}
/* ptsvc */
@media (min-width:768px){
    .ptsvc .containImg {
        display: flex;
        align-items: center;
        background-color: #f1f7fa;
        padding: 50px;
    }
    .ptsvc .containImg .txt {
        padding-left: 30px;
    }
}
@media (max-width:768px){
    .ptsvc .containImg {
        background-color: #f1f7fa;
        padding: 40px 20px;
        border-radius: 15px;
    }
    .ptsvc .containImg .img {
        text-align: center;
        padding-bottom: 15px;
    }
    .ptsvc .containImg .txt {
        
    }
}
/* dftSvc */
.dftSvc > li {
    margin: 15px 0;
}
.dftSvc .item {
    display: flex;
    align-items: center;
}
.dftSvc .item h5 {
    padding-left: 20px;
    width: 85%;
}
.dftSvc .item .icon {
    width: 20%;
}
.dftSvc .item .icon span {
    display: inline-block;
    width: 80px;
    line-height: 80px;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(210, 218, 228, 0.5);
    text-align: center;
}
.dftSvc .item .icon img {
    width: 60px;
}
@media (max-width:500px){
    .dftSvc .item .icon span {
        width: 60px;
        line-height: 60px;
    }
    .dftSvc .item .icon img {
        width: 40px;
    }
}
/* table_strt */
.table.table_strt {
    border-top: 2px solid #333;
}
.table.table_strt tr th,
.table.table_strt tr td {
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px;
    vertical-align: middle;
    word-break: keep-all;
    background-color: #fff;
}
.table.table_strt tr th:first-child,
.table.table_strt tr td:first-child {
    border-left: 0px;
}
.table.table_strt tr th:last-child,
.table.table_strt tr td:last-child {
    border-right: 0px;
}
.table.table_strt tr th {
    font-weight: 600;
}
.table.table_strt thead tr th {
    background-color: #fff;
    border-bottom: 2px solid #333;
}
.table.table_strt tbody tr th {
    background-color: #f8f8f8;
}
.table.table_strt tr th.bg2 ,
.table.table_strt tr td.bg2 {
    background-color: #f3faff;
}
.table.table_strt tr.this td {
    background-color: #f7f7f7;
}
.table.table_strt tr th.bg1,
.table.table_strt tr td.bg1 {
    background-color: #f5f3ff;
}
.table.table_strt tr.lp_t th {
    border-top: 3px solid #333;
}
.table.table_strt tr.lp_t th:nth-child(1) {
    border-left: 3px solid #333;
    border-bottom: 3px solid #333;
}
.table.table_strt tr.lp_t td {
    border-top: 3px solid #333;
}
.table.table_strt tr.lp_t td:last-child {
    border-right: 3px solid #333;
}
.table.table_strt tr.lp_m td:last-child {
    border-right: 3px solid #333;
}
.table.table_strt tr.lp_bt td:last-child {
    border-right: 3px solid #333;
}
.table.table_strt tr.lp_bt td,
.table.table_strt tr.lp_bt th {
    border-bottom: 3px solid #333;
}
@media (min-width:1000px){
    .exTxt {
        display: none;
    }
}
@media (max-width:1000px){
    .ovf {
        overflow-x: scroll;
    }
    .ovf > .table {
        width: 1000px;
    }
}
@media (max-width:768px) {
    .table.table_strt tr th,
    .table.table_strt tr td {
        font-size: 15px;
        padding: 8px 5px;
    }
}
/* sub7 */
#sub7 .sec1 {
    background-color: #fcfcfc;
}
/* pyList */
.pyList li {
    display: flex;
    margin: 5px 0;
}
.pyList li > div {
    width: 50%;
    padding: 15px;
}
.pyList li > .lt {
    border-radius: 20px 0 0 20px;
    background-color: #f1f7fa;
    border: 1px solid #ddd;
}
.pyList li > .rt {
    border-radius: 0 20px 20px 0;
    border: 1px solid #ddd;
    border-left: 0px;
}
/* table_cost */
.table.table_cost {
    border: 1px solid #ddd;
}
.table.table_cost.table_fx {
    table-layout: fixed;
}
.table.table_cost tr th,
.table.table_cost tr td {
    font-size: 17px;
    font-weight: 300;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}
.table.table_cost tr th:first-child,
.table.table_cost tr td:first-child {
    border-left: 0px;
}
.table.table_cost tr th:last-child,
.table.table_cost tr td:last-child {
    border-right: 0px;
}
.table.table_cost tr th {
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
}
.table.table_cost thead tr th {
    background-color: #f1f1f1;
    color: #111;
    font-weight: 600;
}
.table.table_cost tbody tr th {
    background-color: #fcfcfc;
}
.table.table_cost tr.imp th,
.table.table_cost tr.imp td {
    background-color: #f2fbff;
    color: #019ad8 !important;
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-color: #019ad8;
    font-weight: 600;
}
@media (max-width:768px) {
    .table.table_cost tr th,
    .table.table_cost tr td {
        font-size: 14px;
        padding: 8px 5px;
        word-break: break-all;
    }
}
/* web_faq */
#web_faq .pfTabs {
    text-align: center;
}
#web_faq .pfTabs > a {
    display: inline-block;
    font-size: 20px;
    text-align: center;
    line-height: 1em;
    padding: 20px 0;
    border-radius: 55px;
    text-decoration: none;
    font-weight: 600;
    width: 250px;
    letter-spacing: -0.03em;
    background-color: #eff7fd;
    color: #b8cbd9;
    margin: 5px 8px;
    cursor: pointer;

    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
#web_faq .pfTabs > a.act {
    color: #fff;
    background-color: #019ad8;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
@media (max-width:768px){
    #web_faq .pfTabs > a {
        font-size: 15px;
        padding: 8px 15px;
        border-radius: 55px;
        margin: 2px 0;
        width: auto;
    }
}

#sub6_6 .pfTabs {
    text-align: center;
}
#sub6_6 .pfTabs > a {
    display: inline-block;
    font-size: 20px;
    text-align: center;
    line-height: 1em;
    padding: 20px 0;
    border-radius: 55px;
    text-decoration: none;
    font-weight: 600;
    width: 250px;
    letter-spacing: -0.03em;
    background-color: #eff7fd;
    color: #b8cbd9;
    margin: 5px 8px;
    cursor: pointer;

    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
#sub6_6 .pfTabs > a.act {
    color: #fff;
    background-color: #019ad8;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
@media (max-width:768px){
    #sub6_6 .pfTabs > a {
        font-size: 15px;
        padding: 8px 15px;
        border-radius: 55px;
        margin: 2px 0;
        width: auto;
    }
}