@charset "utf-8";

/*footer*/
.ic_phone {
    font-size: 20px;
    color: #444444;
    margin: -9px 15px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.ic_phone:before {
    content: "\e1050";
    font-family: 'icon-font2' !important;
}

.ic_mail {
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -20px;
}

.ic_fax {
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -40px;
}

.ic_add {
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -60px;
}

.site-info .ic-phone {
    font-size: 20px;
    width: 20px;
    color: #FFF;
    margin-right: 5px;
    position: relative;
    top: 1px;
    display: inline-block;
}

.site-info .ic-envelope {
    font-size: 18px;
    width: 20px;
    color: #FFF;
    margin-right: 5px;
    position: relative;
    top: 2px;
    display: inline-block;
}

.site-info .ic-fax {
    font-size: 18px;
    width: 20px;
    color: #FFF;
    margin-right: 5px;
    position: relative;
    top: 2px;
    display: inline-block;
}

.site-info .ic-map-marker {
    font-size: 21px;
    width: 20px;
    color: #FFF;
    margin-right: 5px;
    text-align: center;
    position: relative;
    top: 3px;
    display: inline-block;
}

/*------------ about-editor ------------*/
.a_layout{
    position: relative;
    display: flex;
    flex-direction: column;
}

.a_layout .a_item1{
    position: relative;
    box-sizing: border-box;
    display: block;
    background: url('../../../images/layout04/common/about/a_pic.jpg') no-repeat;
    background-size:cover;
    max-width: 1040px;
    width: 100%;
    height: auto; 
    padding: 58px 0 98px;
}
.a_layout .a_item1 .a_tbox{
    position: relative;
    text-align: center;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 2;
    width: 600px;
    margin: 0 auto;
}
.a_layout .a_item1 .a_tbox h4{
    position: relative;
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 15px;
}
.a_layout .a_item2{
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 850px;
    background: #FFF;
    border: 1px solid #CCC;
    margin: -40px auto 0;
    padding: 45px 0 60px;
}
.a_layout .a_item2 .a_tbox{
    position: relative;
    text-align: center;
    color: #666;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 2;
    width: 400px;
    margin: 0 auto 30px;
}
.a_layout .a_item2 .a_tbox h4{
    position: relative;
    color: #333;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 15px;
}

.a_row {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 600px;
    margin: 0 auto;
}

.a_row .a_col {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 20%;
    max-width: 100px;
    text-align: center;
}

.a_row .a_col .a_ic {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 1px solid #cccccc;
    margin-bottom: 12px;
}

.a_row .a_col:first-child .a_ic img {
    position: relative;
    left: 2px;
    bottom: 2px;
}

.a_row .a_col .a_p {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    word-break: break-word;
    transition: all .3s ease;
}

.a_row .a_col:hover .a_p {
    color: #2E318B;
}

.a_row .a_col .a_ic::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #E62129;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: a_rotate 3.5s linear infinite;
    opacity: 0;
    transition: all .3s ease;
}

@keyframes a_rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translate(50px, 0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translate(50px, 0);
    }
}

@keyframes a_rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translate(40px, 0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translate(40px, 0);
    }
}
.a_row .a_col:hover .a_ic::before{
    opacity: 1;
}
@media screen and (max-width: 1280px) {
    .a_layout .a_item1{
        height: 395px;
        padding: 40px 0;
    }
    .a_layout .a_item2{
        width: 600px;
        margin: -100px auto 0 ;
        padding: 30px 0 40px;
    }
    .a_layout .a_item1 .a_tbox{
        width: 480px;
    }
    .a_row{
        width: 480px;
    }
    .a_row .a_col{
        width: 100px;
        align-items: center;
    }
    .a_row .a_col .a_ic{
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    .a_row .a_col .a_ic img{
        transform: scale(.8);
    }
    .a_row .a_col .a_p {
        color: #333333;
        font-size: 15px;
        letter-spacing: 0.025em;
    }
    .a_row .a_col .a_ic::before{
        animation: s_rotate2 3.5s linear infinite;
    }
    .a_layout .a_item1 .a_tbox h4,.a_layout .a_item2 .a_tbox h4{
        font-size: 18px;
        margin: 0 0 12px;
    }
    .a_layout .a_item1 .a_tbox,
    .a_layout .a_item2 .a_tbox{
        font-size: 13px;
        line-height: 1.8;
    }
    .a_layout .a_item2 .a_tbox{
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 767px) {
    .a_layout{
        align-items: center;
    }
    .a_layout .a_item1 .a_tbox,
    .a_layout .a_item2 .a_tbox{
        width: 100%;
    }
    .a_layout .a_item1{
        height: auto;
        padding:  30px 30px 60px;
    }
    .a_layout .a_item2{
        width: 100%;
        padding: 30px  15px 20px;
    }
    .a_layout .a_item2{
        width: calc(100% - 30px);
        margin: -30px auto 0;

    }
    .a_row{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .a_row .a_col {
        margin: 0 15px 30px;
    }
}

/*------------ !about-editor ------------*/
/*------------ service-editor ------------*/
.s_row {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.s_row .s_col {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 20%;
    max-width: 100px;
    text-align: center;
}

.s_row .s_col .s_ic {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 1px solid #cccccc;
    margin-bottom: 12px;
}

.s_row .s_col:first-child .s_ic img {
    position: relative;
    left: 2px;
    bottom: 2px;
}

.s_row .s_col .s_p {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.2;
    word-break: break-word;
    transition: all .3s ease;
}

.s_row .s_col:hover .s_p {
    color: #2E318B;
}

.s_row .s_col .s_ic::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #E62129;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: s_rotate 3.5s linear infinite;
    opacity: 0;
    transition: all .3s ease;
}

@keyframes s_rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translate(50px, 0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translate(50px, 0);
    }
}

@keyframes s_rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translate(40px, 0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translate(40px, 0);
    }
}
.s_row .s_col:hover .s_ic::before{
    opacity: 1;
}

@media screen and (max-width: 1280px) {
    .s_row .s_col{
        width: 100px;
        align-items: center;
    }
    .s_row .s_col .s_ic{
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    .s_row .s_col .s_ic img{
        transform: scale(.8);
    }
    .s_row .s_col .s_p {
        color: #333333;
        font-size: 15px;
        letter-spacing: 0.025em;
    }
    .s_row .s_col .s_ic::before{
        animation: s_rotate2 3.5s linear infinite;
    }
}
@media screen and (max-width: 480px) {
    .s_row{
        justify-content: center;
        flex-wrap: wrap;
    }
    .s_row .s_col {
        margin: 0 15px 30px;
    }
}
/*------------ !service-editor ------------*/
/*------------ contact-editor ------------*/
.contact-map iframe {
    border: 10px solid#fff;
    width: 100%;
    box-sizing: border-box;
    height: 300px;
    margin: 0px 0 20px;
}

.contact-editor {
    text-align: center;
    margin: 5px 0;
}

.contact-editor .row {
    display: table;
    width: 100%;
    table-layout: fixed;
    border: 0;
}

.contact-editor .col {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    position: relative;
}

.contact-editor .col+.col:before {
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    left: 0;
    top: 0;
    background: #bbbbbb;
}

.contact-info-txt {
    max-width: 200px;
    margin: 0 auto;
}

.contact-info-txt .img-ic {
    display: inline-block;
    margin-bottom: 20px;
}

.contact-info-txt a:hover {
    color: #B20000;
    text-decoration: underline;
}

.info-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #2F318B;
    color: #fff;
}

.contact-info-txt .info-icon-box [class^="ic-"] {
    font-size: 18px;
}

/*------------ video-editor ------------*/
.video-editor .pic {
    float: left;
    margin-right: 25px;
}

/*------------ terms-editor ------------*/
.terms-editor {
    font-size: 15px;
    line-height: 2;
    /*max-width: 1045px;*/
    margin: 0 auto;
}

.terms-editor .title:before {
    content: '/';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
}

.terms-editor .title {
    color: #2F318B;
    font-size: 16px;
    margin: 0;
}

.terms-editor p {
    text-indent: 0em;
    margin: 0 0 50px;
}

.terms-editor .row {
    margin: 0 -27px;
}

.terms-editor .col {
    padding: 0 27px;
    width: 50%;
    float: left;
    box-sizing: border-box;
}
.contact-editor .col+.col:before{
    background: #CCC;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px) {
    .about-editor .row_2 .txt_box {
        padding: 50px 90px 50px 50px;
    }
}

@media screen and (max-width: 1000px) {

    .about-editor .tb01 td,
    .about-editor .tb02 td,
    .service-table td,
    .service-table .pic {
        width: 100%;
        float: left;
        padding: 0;
        box-sizing: border-box;
    }

    .about-editor .pic2 {
        top: 0;
    }

    .contact-editor .row,
    .contact-editor .col {
        display: block;
        width: auto;
    }

    .contact-editor .col {
        padding: 15px 0;
    }

    .contact-map iframe {
        border: 5px solid#fff;
        height: 200px;
        margin: 0px;
    }

    .contact-editor .col+.col:before {
        height: 1px;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .terms-editor .row {
        margin: 0;
    }

    .terms-editor .col {
        padding: 0;
        width: 100%;
    }

    .contact-map {
        height: 200px;
    }
}