@charset "utf-8";
/*------------ service-editor ------------*/
.s_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
}
.s_layout .s_col{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: calc(25% - 30px);
    border: 1px solid rgba(103,93,84,.75);
    text-align: center;
    height: auto;
    border-radius: 15px;
    padding: 40px 10px 60px;
    margin: 0 auto 30px;
    transition: all .3s ease;
    overflow: hidden;
}
.s_layout .s_col:hover{
    border: 1px solid rgba(103,93,84,1);
}
.s_layout .s_col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background:#675D54;
    z-index: 0;
    transition:all .3s linear;
}
.s_layout .s_col:hover:before {
    width: 100%;
}
.s_layout .s_col::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 13px;
    bottom: 30px;
    right: 30px;
    margin: auto 0;
    background: url(../../../images/layout06/common/index/s_arrow.webp);
    transition: all .3s ease;
    animation: none;
}
.s_layout .s_col:hover::after {
    animation: arrowFloat 1s ease-in-out infinite;
    background: url(../../../images/layout06/common/index/s_arrow_.webp);
}
.s_layout .s_col .s_ic{
    position: relative;
    box-sizing: border-box;
    width: 66px;
    height: 60px;
    margin: 0 auto 20px;
    transform: scaleX(1);
    transition:all .3s linear;
    z-index: 2;
}
.s_layout .s_col:hover .s_ic{
    transform: scaleX(-1);
}
.s_layout .s_col .s_ic .sp1{
    display: block;
}
.s_layout .s_col .s_ic .sp2{
    display: none;
}
.s_layout .s_col:hover .s_ic .sp1{
    display: none;
}
.s_layout .s_col:hover .s_ic .sp2{
    display: block;
}
.s_layout .s_col .s_txt{
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.s_layout .s_col .s_txt h4{
    position: relative;
    color: #4A4A4A;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 0;
    margin:  0 auto 24px;
    transition: all .3s ease;
}
.s_layout .s_col:hover .s_txt h4{
    color: #fff;
}
.s_layout .s_col .s_txt h4::before{
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: #D9D2CB;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    margin: 0 auto;
}
.s_layout .s_col .s_txt p{
    color: #666666;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.8;
    padding: 0;
    margin: 0;
    transition: all .3s ease;
}
.s_layout .s_col:hover .s_txt p{
    color: rgba(255,255,255,.9);
}
.s_layout .s_col .s_num{
    position: absolute;
    font-size: 124px;
    font-family: "Bellefair", serif;
    letter-spacing: normal;
    line-height: .6;
    color: rgba(102,93,83,.08);
    left: 20px;
    bottom: 0;
    transition: all .3s ease;
}
.s_layout .s_col:hover .s_num{
    color: rgba(255,255,255,.08);
}

@media screen and (max-width: 1280px){
    .s_layout .s_col{
        width: calc(25% - 15px);
    }
}
@media screen and (max-width: 1000px){
    .s_layout .s_col {
        width: calc(50% - 30px);
        padding: 30px 15px 40px;
    }
    .s_layout .s_col .s_txt h4{
        font-size: 18px;
        margin: 0 auto 20px;
    }
    .s_layout .s_col .s_txt h4::before {
        width: 25px;
        top: calc(100% + 10px);
    }
    .s_layout .s_col .s_txt p{
        font-size: 15px;
    }
    .s_layout .s_col .s_num{
        font-size: 86px;
    }
    .s_layout .s_col::after{
        width: 40px;
        height: 10px;
        background-size: contain;
    }
    .s_layout .s_col:hover:after{
        width: 40px;
        height: 10px;
        bottom: 25px;
        right: 25px;
        background-size: contain;
    }
}
@media screen and (max-width: 767px){
    .s_layout .s_col {
        width: calc(100% - 30px);
        padding: 30px 15px 40px;
    }
}

/*------------ about-editor ------------*/
.a_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.a_layout .a_row1{
    position: relative;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 76px;
}
.a_layout .a_row1 .a_pic{
    position: relative;
    box-sizing: border-box;
    max-width: 480px;
    width: 46.2%;
}
.a_layout .a_row1 .a_pic h3{
    position: relative;
    width: fit-content;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #4A4A4A;
    line-height: 1.2;
    margin: 30px auto 0;
}
.a_layout .a_row1 .a_pic h3 span{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin-left: 5px;
}
.a_layout .a_row1 .a_txt{
    position: relative;
    box-sizing: border-box;
    max-width: 500px;
    margin-left: auto;
    font-size: 16px;
    color: #666666;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 2;
}
.a_layout .a_row1 .a_txt .a_tit{
    position: relative;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 40px;
}
.a_layout .a_row1 .a_txt .a_tit span{
    position: relative;
    font-family: "Bellefair", serif;
    color: #665D53;
    font-size: 60px;
    line-height: .85;
    letter-spacing: normal;
    font-weight: normal;
    margin: 0;
}
.a_layout .a_row1 .a_txt ul{
    position: relative;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0 0 40px;
    padding: 0;
}
.a_layout .a_row1 .a_txt ul li{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: baseline;
}
.a_layout .a_row1 .a_txt ul li+li{
    margin: 8px 0 0;
}
.a_layout .a_row1 .a_txt ul li h4{
    position: relative;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #4A4A4A;
    width: 150px;
    margin: 0;
}
.a_layout .a_row1 .a_txt ul li h4::before{
    content: '//';
    font-size: 18px;
    color: rgba(74,74,74,.5);
    margin-right: 5px;
}
.a_layout .a_row1 .a_txt ul li span{
    position: relative;
    line-height: 2;
}
.a_layout .a_row2{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    height: 360px;
    background: url(../../../images/layout06/common/about/ap2.webp) 50% no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 65px 50px;
}
.a_layout .a_row2::before{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(96,87,79,.8);
}
.a_layout .a_row2 .a_tit{
    position: relative;
    font-family: "Bellefair", serif;
    font-size: 60px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.2;
    color: #fff;
    width: fit-content;
    margin: 0 auto 15px;
    z-index: 2;
}
.a_layout .a_row2 .a_txt{
    position: relative;
    box-sizing: border-box;
    font-size: 26px;
    font-weight: normal;
    letter-spacing: 0.3em;
    line-height: 1.5;
    color: rgba(255,255,255,.9);
    z-index: 2;
    width: fit-content;
    margin: 0 auto;
}
.a_layout .a_row2 .a_txt::before{
    content: '“';
    position: absolute;
    font-size: 56px;
    font-weight: normal;
    line-height: normal;
    color: rgba(255,255,255,.3);
    right: calc(100% - 40px);
    top: calc(0% - 25px);
}
.a_layout .a_row2 .a_txt::after{
    content: '”';
    position: absolute;
    font-size: 56px;
    font-weight: normal;
    line-height: normal;
    color: rgba(255,255,255,.3);
    left: calc(100% - 40px);
    top: calc(0% - 25px);
}
.a_layout .a_row1 .a_txt p,
.a_layout .a_row2 .a_txt p{
    padding: 0;
    margin: 0;
}
.a_layout .contact_more{
    position: relative;
    display: flex;
    text-align: left;
    margin: -25px auto 0;
}
.a_layout .contact_more a{
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    background: #E4E1DA;
    color: #665D53;
    letter-spacing: normal;
    font-family: "Bellefair", serif;
    padding: 0 25px;
    font-size: 0;
    text-align: left;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(103,93,84,.0);
    transition: all .3s ease;
    z-index: 5;
}
.a_layout .contact_more a:hover{
    background: #675D54;
    color: #FFFFFF;
    border: 1px solid #675D54;
}
.a_layout .contact_more a span{
    position: relative;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: normal;
    display: block;
    text-align: left;
    z-index: 2;
    transition: all .4s ease;
}
.a_layout .contact_more a:hover span{
    letter-spacing: 0.1em;
}
.a_layout .contact_more a::before{
    content: '';
    position: absolute;
    width: 8px;
    height: 15px;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    background: url('../../../images/layout06/common/index/more_arrow.webp');
    background-size: contain;
    transition: all .3s ease;
    animation: none;
}
.a_layout .contact_more a:hover:before {
    animation: arrowFloat 1s ease-in-out infinite;
    background: url('../../../images/layout06/common/index/more_arrow_.webp');
    background-size: contain;
}

@media screen and (max-width: 1280px){
    .a_layout .a_row1{
        flex-direction: column;
    }
    .a_layout .a_row1 .a_pic{
        width: fit-content;
        margin: 0 auto 30px;
    }
    .a_layout .a_row1 .a_txt{
        position: relative;
        max-width: 480px;
        width: fit-content;
        margin: 0 auto;
    }
    .a_layout .a_row1 .a_txt .a_tit{
        display: none;
    }
}
@media screen and (max-width: 1000px){
    .a_layout .a_row1 .a_pic h3{
        font-size: 28px;
        margin: 20px auto 0;
    }
    .a_layout .a_row1 .a_pic h3 span {
        font-size: 20px;
    }
    .a_layout .a_row1 .a_txt ul li h4{
        font-size: 18px;
        width: 120px;
    }
    .a_layout .a_row1 .a_txt ul li h4::before {
        font-size: 16px;
    }
    .a_layout .a_row1 .a_txt{
        font-size: 15px;
    }
    .a_layout .a_row1 .a_txt ul li+li {
        margin: 5px 0 0;
    }
    .a_layout .a_row1 .a_txt ul {
        margin: 0 0 30px;
    }
    .a_layout .a_row1 {
        margin-bottom: 60px;
    }
    .a_layout .a_row2 .a_txt{
        font-size: 20px;
    }
    .a_layout .a_row2 .a_tit{
        font-size: 50px;
    }
    .a_layout .a_row2 .a_txt::before{
        font-size: 40px;
        top: calc(0% - 15px);
    }
    .a_layout .a_row2 .a_txt::after{
        font-size: 40px;
        top: calc(0% - 15px);
    }
    .a_layout .a_row2 {
        height: 280px;
        padding: 45px 40px;
    }
    .a_layout .contact_more a{
        width: 225px;
        height: 45px;
        line-height: 45px;
    }
    .a_layout .contact_more a span{
        font-size: 14px;
    }
    .a_layout .contact_more a::before{
        width: 7px;
        height: 13px;
    }
    .a_layout .a_row1 .a_txt ul li{
        flex-direction: column;
    }
    .a_layout .a_row1 .a_txt{
        letter-spacing: 0.05em;
    }
}
@media screen and (max-width: 767px){
    .a_layout .a_row2 {
        height: 280px;
        padding: 35px 20px;
    }
    .a_layout .a_row2 .a_txt::before{
        font-size: 40px;
        top: calc(0% - 15px);
        right: calc(100% - 20px);
    }
    .a_layout .a_row2 .a_txt::after{
        font-size: 40px;
        top: calc(0% - 15px);
        left: calc(100% - 20px);
    }
    .a_layout .a_row1 {
        margin-bottom: 40px;
    }
}
/*------------ contact-editor ------------*/
.contact-editor .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.contact-editor .col {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}
.contact-editor .col.add {
    flex: 1 1 0;
    min-width: 250px;
}
.contact-editor i{
    width: 30px;
    height: 30px;
    background: #675D54;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    line-height: 30px;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-shrink:0;
    gap: 16px;
    transform: rotate(45deg); 
}
.contact-editor i:before{
    display: inline-block;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(-45deg); 
}
.contact-editor .tel i:before{
    content: "\ff001";
}
.contact-editor .fax i:before{
    content: "\ff002";
}
.contact-editor .mail i:before{
    content: "\ff003";
}
.contact-editor .add i:before{
    content: "\ff004";
    font-size: 18px;
    position: relative;
}
/*------------ video-editor ------------*/
.video-editor .pic{
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor{
    font-size: 15px;
    line-height: 2;
}
.terms-editor .title{
    font-size: 17px;
    color: #675D54;
    letter-spacing: 0.1em;
    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;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px){

}
@media screen and (max-width: 1100px){

    .contact-editor i{
        text-indent: 0px;
        line-height: 30px;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
}