@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
/* -------------------------------- 

basic style

-------------------------------- */
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a, a:focus, a:active, a:hover, object, embed { 
    outline: none;
    text-decoration: none; 
}
a {
    color: inherit;
    text-decoration: none;
}
html {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 17px;
    -ms-overflow-style: scrollbar;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Microsoft JhengHei UI', 'Microsoft JhengHei', 'Arial', sans-serif;
    color: #333;
    background: #fff;
    font-size: 1rem;
    line-height: 2rem;
    letter-spacing: 1px;
    overflow-x: hidden;    
}
section {
    position: relative;
    display: block;
}
.container-1200 {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.mw-100 {
    position: relative;
    display: block;
    max-width: 100%;
    margin: auto;
}
.w-100 {
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
}
.flist { 
    position: relative;    
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
.row-reverse {
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row reverse;
    -ms-flex-direction: row reverse;
    flex-direction: row-reverse;
}
.half-box {
	width: 100%;
}
@media only screen and (min-width: 992px) {
	.half-box {
		width: 50%;
	}
}




/* -------------------------------- 

        menu

 -------------------------------- */
html {
    scroll-padding: 62px;
}
.cm-header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    text-align: right;
    padding: 5px;   
    background: rgba(0,0,0,.8);
}
.cm-header:before {
    position: absolute;
    content: '';
    display: block;
    width: calc(100% - 70px);
    /*max-width: 250px;*/
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
}
.cm-main-cont {
    margin-top: 0;
}
#logo {
    position: relative;
    top: 0;
    left: 0;
    width: 65%;
    max-width: 250px;
    padding: .5em 1em;
    z-index: 3;
}
.hamburger {
    position: absolute;
    display: block;
    right: 1em;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    cursor: pointer;
    z-index: 100;
}
.hamburger span {
    background: #fff;
    display: block;
    position: absolute;
    height: 2px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all .25s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 1;
    width: 100%;
    left: 0;
}
.hamburger span:nth-child(1) {
    top: 0px;
}
.hamburger span:nth-child(2) {
    top: 10px;
}
.hamburger span:nth-child(3) {
    top: 20px;
}
.hamburger.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.hamburger.open span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    display: table;
    visibility: hidden;
    z-index: 99;
    text-align: center;
    -webkit-transition: visibility 0.5s ease, opacity 1s ease;
    -moz-transition: visibility 0.5s ease, opacity 1s ease;
    -o-transition: visibility 0.5s ease, opacity 1s ease;
    transition: visibility 0.5s ease, opacity 1s ease;
}
.menu-overlay.menuopen {
    opacity: 1;
    visibility: visible;
}
.nav-sp {
    display: table-cell;
    vertical-align: middle;
}
.nav-sp li {
    margin: 20px 0;
    -moz-transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.menuopen .nav-sp li {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.menuopen .nav-sp li:nth-child(1) {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.menuopen .nav-sp li:nth-child(2) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}
.menuopen .nav-sp li:nth-child(3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.menuopen .nav-sp li:nth-child(4) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}
.menuopen .nav-sp li:nth-child(5) {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}
.menuopen .nav-sp li:nth-child(6) {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
.menuopen .nav-sp li:nth-child(7) {
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}
.menuopen .nav-sp li:nth-child(8) {
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}
.nav-sp a {
    display: none;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menuopen .nav-sp li a {
    display: block;
}
.menuopen .nav-sp li a span {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #BBAA9B;
    padding: 0 8px;
    font-family: "Barlow", serif;
}
.nav-sp a:hover {
    opacity: 0.7;
}
.navigation {
    position: relative;
    display: none;
}
.navigation ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.navigation ul li {
    position: relative;
    margin: 0.734em 0;
}
.navigation ul li a {
    display: block;
    min-width: 80px;
    padding: 5px 2em;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}
.navigation ul li a span {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.navigation ul li a:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    font-size: 15px;
    opacity: 0;
    -webkit-transition: .3s,opacity .6s;
    -moz-transition: .3s,opacity .6s;
    -o-transition: .3s,opacity .6s;
    transition: .3s,opacity .6s;
}
.navigation ul li a:before {
    content: attr(data-hover);
    -webkit-transform: translate(0,-5px);
    -moz-transform: translate(0,-5px);
    -ms-transform: translate(0,-5px);
    -o-transform: translate(0,-5px);
    transform: translate(0,-5px);
}
/*.navigation ul li a:hover span {
    opacity: 0;
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transform: scale(0.2);
}
.navigation ul li a:hover:before {
    opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}*/
@media only screen and (min-width: 992px) {
    html {
        scroll-padding: 142px;
    }
    .hamburger {
        display: none;
    }
    .cm-header {
        padding: 15px;
    }
    .cm-header:before {
        width: 27%;
        max-width: initial;
    }
    #logo {
        position: fixed;
        width: 27%;
        max-width: 385px;
    }
    .menu-overlay {
        display: none;
    }
    .navigation {
        display: block;
    }
    @media only screen and (min-width: 1200px) {
        .navigation ul li {
            margin: 20px 0;
        }
        @media only screen and (min-width: 1400px) {
            #logo {
                max-width: initial;
            }
            .navigation ul li {
                margin: 30px 0;
            }
        }
    }
}


/* -------------------------------- 

        footer

 -------------------------------- */
.fixed_button {
    position: fixed;
    right: 1vw;
    bottom: 12vw;
    width: 60px;
}
.fixed_button a {
    position: relative;
    display: block;
    margin: 10px 5px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #888;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26px;
}
.fixed_button .phone {
    background-image: url(../images/svg-phone-white.svg);
}
.fixed_button .line {
    background-image: url(../images/svg-line-white.svg);
}
.to_top {
    position: absolute;
    right: 10px;
    top: 0px;
    display: block;
    width: 75px;
    height: 75px;
    text-indent: -9999px;
    border-radius: 100%;
    border: 5px solid #fff;
	background: rgb(26,97,183);
	background: linear-gradient(180deg, rgba(26,97,183,1) 38%, rgba(19,72,137,1) 97%);
    transform: translate(-50%,-50%);
}
.to_top:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.footer-menu {
    position: relative;
    width: 92%;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
.footer-menu li {
    position: relative;
    padding: 5px 20px;
    text-align: center;
    color: #fff;
}
.footer-menu li:last-child {
	display: none;
}
.footer-menu li:before {
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    right: 0;
    top: 14px;
    background-color: #efefef;
}
.footer-menu li:nth-last-child(2):before {
    display: none;
}
.cm-footer {
    position: relative;
    padding: 0; 
    padding-bottom: 10px;
    background-image: url(../images/footer_bg.webp);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.cm-footerCopy {
    text-align: center;
    font-size: .9rem;
    color: #999;
}
.footer-all {
	position: relative;
	padding: 60px 0;
	color: #fff;
}
.footer-logo-pic {
	position: relative;
	max-width: 600px;
	margin: auto;
	text-align: center;
}
.footer-logo-pic p {
	position: relative;
	color: #59D2F9;
}
.footer-logo-pic p b {
	position: relative;
	display: inline-block;
	font-size: 1.3rem;
	color: #fff;
	word-break: keep-all;
}
.footer-logo-pic img {
	position: relative;
	display: block;
	max-width: 440px;
	width: 75%;
	margin: 40px auto;
}
.footer-info {
	position: relative;
	margin-top: 30px;
	text-align: center;
}
@media only screen and (min-width: 992px) {
    .footer-menu {
    	position: absolute;
    	width: 148px;
    	right: 5%;
    	top: 50px;
    }
    .footer-menu li {
    	width: 100%;
    }
    .footer-menu li:before {
    	width: 0px;
    	height: 2px;
    	left: 17px;
    	right: unset;
    	top: 22px;
    	background-color: #2FA0F4;
    	opacity: 0;
    	transition: all .4s;
    }
    .footer-menu li:hover:before {
    	width: 17px;
    	left: 0;
    	opacity: 1;
    }
     .footer-menu li:nth-last-child(2):before {
     	display: block;
     }
    .footer-menu li:last-child {
    	display: block;
    }
    .footer-menu li:last-child:before {
    	display: none;
    }
}


/* -------------------------------- 

        common

 -------------------------------- */
.title { 
    position: relative;
    width: 92%;
    max-width: 360px;
    margin: 0;
    padding: 15px 0;
}
.title small:before {
    position: absolute;
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    left: 0;
    bottom: 0;
    background-color: #1A61B7;
    border-radius: 100%;
}
.title h2 {
    position: relative;
    display: block;
    color: #111;
    font-weight: bold;
}
.title small {
    position: relative;
    display: inline-block;
    color: #CCCCCC;
    letter-spacing: .1em;
    font-size: 4rem;
    font-family: "Black Ops One", system-ui;
    font-weight: 400;
    font-style: normal;
}
.focus {
    position: relative;
    color: #222;
    font-size: 1.35rem;
    font-weight: bold;
}
.main-txt {
    position: relative;
    width: 86%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 20px;
}
.quick-btn {
    position: relative;
    text-align: center;
    padding: 15px 0;
}
.quick-btn:before,
.quick-btn:after {
    position: absolute;
    content: '';
    display: block;
    width: calc(50% - 300px);
    height: 1px;
    top: 50%;
    background-color: #ccc;
}
.quick-btn:before {
    left: 0;
}
.quick-btn:after {
    right: 0;
}
.quick-btn a {
    position: relative;
    display: inline-block;
    width: 46%;
    max-width: 250px;
    min-width: 170px;
    margin: 10px;
    padding: .8em;
    padding-left: 35px;
    text-align: center;
    color: #8BC66C;
    border: 1px solid #eee;
    background-color: #fff;
    background-image: url(../images/svg-line.svg);
    background-position: 15% center;
    background-repeat: no-repeat;
    background-size: 26px;
    transition: all .5s;
}
.quick-btn a.phone {
    color: #F07379;
    background-image: url(../images/svg-phone.svg);
}
.quick-btn a:hover {
    color: #fff;
    background-color: #8BC66C;
    background-image: url(../images/svg-line-white.svg);
}
.quick-btn a.phone:hover {
    color: #fff;
    background-color: #F07379;
    background-image: url(../images/svg-phone-white.svg);
}
.bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.bg-lines span {
    background: rgba(0, 0, 0, 0.05);
    width: 1px;
    height: 100%;
    position: absolute;
    left: calc(100% / 25);
}
.bg-lines span:nth-child(2) {
    left: calc(100% / 25 * 24);
}
.bg-lines span:nth-child(3) {
    display: none;
}
.button-icon {
    position: relative;
    display: flex;
    border: 3px #1A61B7 solid;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
}
.icon  {
    position: relative;
    display: inline-block;
    width: 47px;
    height: 47px;
    background-color: #1A61B7;
    background-image: url(../images/svg-phone-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    transition: all .2s .1s;
}
.cube {
    transition: all 0.4s;
    transform-style: preserve-3d;
    width: 200px;
    height: 20px;
}
.button-icon:hover {
    border-color: #222;
}
.button-icon:hover .icon {
    background-color: #222;
}
.button-icon:hover .cube {
    transform: rotateX(90deg);
}
.side {
    position: absolute;
    height: 47px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
    font-weight: bold;
}
.top {
    background: #333;
    color: #fff;
    transform: rotateX(-90deg) translate3d(0, 13.5px, 2em);
}
.front {
    background: #fff;
    color: #1A61B7;
    transform: translate3d(0, 0, 1em);
}
@media only screen and (min-width: 992px) {
    .bg-lines {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .bg-lines span {
        background: rgba(0, 0, 0, 0.05);
        width: 1px;
        height: 100%;
        position: absolute;
        left: calc(100% / 4);
    }
    .bg-lines span:nth-child(2) {
        left: calc(100% / 4 * 2);
    }
    .bg-lines span:nth-child(3) {
        display: block;
        left: calc(100% / 4 * 3);
    }
}




@media only screen and (min-width: 559px) {
}


/* swiper */
.swiper.cm-Swiper {
    padding: 0;
}
.swiper {
    padding-left: 20px;
    padding-right: 20px;
}
.swiper.cm-Swiper.pc {
    display: none;
}
.swiper.cm-Swiper.sp {
    display: block;
}
.swiper-button-next, .swiper-button-prev {
    width: 42px;
    height: 42px;
    color: #fff;
    background-color: #444;
    border-radius: 100%;
}
.swiper-button-next:after, .swiper-button-prev:after {
    transform: scale(.5);
}
@media only screen and (min-width: 768px) {
    .swiper.cm-Swiper.sp {
        display: none;
    }
    .swiper.cm-Swiper.pc {
        display: block;
    }
}


/* -------------------------------- 

        editor

 -------------------------------- */
.main-A {
    position: relative;
    padding: 7vw 0 0;
    background-image: url(../images/mainA_bg.webp);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 85%;
}
.main-A .flist {
    position: relative;
    width: 92%;
    max-width: 1500px;
    margin: auto;
}
.main-A .title small:before {
    left: unset;
    right: -15px;
    bottom: -3px;
}
.main-A .focus {
    margin-top: 40px;
    margin-bottom: 40px;
}
.mainA-bottom {
    position: relative;
    margin-top: 50px;
    padding: 60px 0;
    background-image: url(../images/mainA_bottom_bg.webp);
    background-position: left 12% center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-client-left {
    position: relative;
    width: 100%;
}
.main-client-right {
    position: relative;
    width: 100%;
}
.main-client-left .main-txt {
    max-width: 340px;
}
.main-client-left .main-txt p {
    margin-top: 50px;
}
.main-client-left .main-txt .button-icon {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
@media only screen and (min-width: 992px) {
    .main-client-left {
        width: 45%;
        text-align: right;
    }
    .main-client-right {
        width: 55%;
    }
    .main-client-left .title {
        margin-right: 0;
        margin-left: auto;
    }
    .main-client-left .title small:before {
        right: 155px;
        bottom: -35px;
    }
    .main-client-left .main-txt .button-icon {
        margin-right: 0;
    }
    @media only screen and (min-width: 1200px) {
    }
}
/* service */
.main-B {
    position: relative;
    padding-top: 50px;
}
.main-B .title {
    text-align: center;
    margin: auto;
}
.main-B .title small:before {
    left: 230px;
    bottom: -42px;
}
.service-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 92%;
    max-width: 1500px;
    margin: 50px auto;
}
.service-list li {
    position: relative;
    width: calc(92% - 40px);
    max-width: 400px;
    margin: 20px auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.service-list li .txt {
    position: relative;
    padding: 0;
    background-color: #fff;
    transition: all .4s;
}
.service-list li .txt h2 {
    position: relative;
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    background-color: #1A61B7;
}
.service-list li .txt h2:before {
    position: absolute;
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    left: -30px; 
    top: 50%;
    background-color: #2FA0F4;
}
.service-list li .txt h2 .num {
    position: absolute;
    font-family: "Black Ops One", system-ui;
    font-weight: 400;
    font-style: normal;
    right: 3%;
    top: 12px;
    color: #fff;
    font-size: 2rem;
    letter-spacing: .1em;
    opacity: .3;
}
.service-list li .txt p {
    position: relative;
    line-height: 1.5rem;
    padding: 15px;
    padding-bottom: 0;
}
.service-list li .txt span {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-size: .9rem;
    line-height: 1.3125rem;
    color: #2C99ED;
    transition: all .4s;
}
.service-list li:hover .txt {
    color: #fff;
    background-color: #1A61B7;
}
.service-list li:hover .txt h2 {
    color: #fff;
    background-color: #2FA0F4;
}
.service-list li:hover .txt h2:before {
    background-color: #FFD555;
}
.service-list li:hover .txt span {
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .service-list li {
        width: calc(50% - 40px);
        margin: 20px;
    }
    @media only screen and (min-width: 992px) {
        .service-list li {
            width: calc(25% - 40px);
            margin: 20px;
        }
    }
}
/* review */
.main-C {
    position: relative;
}
.main-C:before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
    background-color: #212121;
}
.review-box-cont {
    position: relative;
    max-width: 1200px;
    width: 86%;
    margin: auto;
}
.main-C .title {
    max-width: 766px;
    margin: 0;
}
.main-C .title small:before {
    position: absolute;
    left: 20px;
    background-color: #FFD555;
}
.main-C .title + p {
    position: relative;
    margin-top: 50px;
    width: 300px;
}
.review-mobile {
    position: relative;
    width: calc(100% + 90px);
    max-width: 640px;
    margin: 0 -45px;
    padding: 40px;
    overflow: hidden;
    z-index: 9;
}
.review-mobile .mobile-pic {
    position: relative;
    display: block;
    width: 90%;
    max-width: 500px;
    margin: auto;
}
.review-box {
    position: relative;
    width: 92%;
    max-width: 600px;
    margin: auto;
    padding: 30px;
    line-height: 1.6125rem;
    font-size: 16px;
    background-color: #fff;
    border: 3px solid #FFE45F;
}
.review-title {
    position: relative;
    font-weight: bold;
    font-size: 120%;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
}
.mobile_bg .swiper-button-next, .mobile_bg .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 70%);
    border-radius: 0;
}
.mobile_bg .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 40px);
}
.mobile_bg .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 40px);
}
@media only screen and (min-width: 768px) {
    .review-mobile {
        position: absolute;
        width: 60%;
        right: 0;
        top: 12vw;
    }
    @media only screen and (min-width: 992px) {
		.review-mobile {
			top: 5vw;
		}
    }
}
/* color run */
.service-pic-marquee {
    position: relative;
    --duration: 70s;
    display: flex;
    overflow: hidden;
    user-select: none;
    margin-top: 0px;
    margin-bottom: 0px;
}
.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}
.marquee__group .pic {
    max-width: 180px;
    padding: 0 5px;
}
@media only screen and (min-width: 559px) {
    .marquee__group .pic {
        max-width: 220px;
    }
    @media only screen and (min-width: 768px) {
    	.service-pic-marquee {
		    margin-top: 40px;
		}
    	.marquee__group .pic {
            max-width: 300px;
        }
        @media only screen and (min-width: 1200px) {
            .marquee__group .pic {
                max-width: 405px;
            }
        }
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* advantage */
.main-advantage {
    position: relative;
    padding: 50px 0;
    color: #fff;
    background-image: url(../images/advantage_bg.webp);
}
.main-advantage .title {
	max-width: 450px;
	text-align: left;
	margin: auto;
}
.main-advantage .title h2 {
	color: #fff;
}
.main-advantage .title small {
	color: #333;
}
.main-advantage .title small:before {
	left: 120px;
	bottom: -35px;
}
.advactages-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 92%;
	max-width: 1000px;
	margin: 40px auto 50px;
}
.advactages-list li {
	position: relative;
	width: calc(92% - 20px);
	max-width: 300px;
	margin: 25px auto;
	padding: 10px;
	line-height: 1.5rem;
	color: #ddd;
}
.advactages-list li:before {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	max-width: 231px;
	height: 100%;
	left: 50%;
	top: -1.5em;
	transform: translateX(-50%);
	background-image: url(../images/advantage_illu_bg.webp);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .4s;
}
.advactages-list li:hover:before {
	transform: translateX(-50%) scale(.95);
}
.advactages-list li img {
	position: relative;
	display: block;
	width: 70%;
	max-width: 84px;
	margin: 2em auto;
}
.advactages-list li p {
	position: relative;
}
.advactages-list li p b {
	position: relative;
	display: block;
	margin-bottom: 20px;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 2px;
}
.main-blue-row {
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	background-color: #1A61B7;
}
.main-blue-row .container-1200 {
	padding: 2.3vw 1em;
}
.main-blue-row p {
	position: relative;
	max-width: 800px;
}
.social-links {
	position: relative;
	display: block;
	width: 125px;
	margin: auto;
	margin-top: 15px;
	text-align: center;
}
.social-links a {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	margin: 5px;
	border-radius: 100%;
	background-color: #144D92;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 26px;
}
.social-links .line {
	background-image: url(../images/svg-line-white.svg);
}
.social-links .phone {
	background-image: url(../images/svg-phone-white.svg);
}
@media only screen and (min-width: 768px) {
	.main-advantage {
		padding-top: 12vw;
	}
	.feature-circle-list li {
		width: calc(33.33% - 20px);
		/*max-width: 250px;*/
		margin: 15px 10px;
	}
	.main-blue-row .container-1200 {
		max-height: 126px;
		padding: 2.3% 1em;
		padding-right: 330px;
	}
	.social-links {
		position: absolute;
		display: block;
		right: 2%;
		top: 0;
		margin-top: 0;
		width: 310px;
		height: 100%;
		padding-top: 2.3%;
		padding-right: 0;
		padding-left: 190px;
		background-image: url(../images/blue_arrow_deco.webp);
		background-position: left center;
		background-repeat: no-repeat;
	}
	@media only screen and (min-width: 1540px) {
		.main-blue-row p {
			max-width: initial;
		}
		.social-links {
			padding-top: 2.3%;
		}
	}
}
/* works */
.main-D {
	position: relative;
	padding: 50px 0;
	background-color: #fff;
	background-image: url(../images/works_bg.webp);
	background-position: center top;
	background-repeat: no-repeat;
}
.main-D .title {
	text-align: center;
	margin: auto;
}
.main-D .title small:before {
	left: calc(50% + 70px);
	bottom: -40px;
}
.works-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 50px auto;
	max-width: 1760px;
	width: 92%;
}
.works-list li {
	position: relative;
	width: calc(100% - 40px);
	max-width: 412px;
	margin: 20px auto;
}
.works-list li p {
	position: relative;
	line-height: 1.5rem;
	color: #444;
}
.works-list li p b {
	position: relative;
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 20px;
	font-size: 1.15rem;
	line-height: 1.75rem;
	color: #333;
	background-image: url(../images/photo_album_deco.webp);
	background-position: left 5px top;
	background-repeat: no-repeat;
}
@media only screen and (min-width: 559px) {
	.works-list li {
		width: calc(50% - 40px);
		margin: 20px;
	}
	@media only screen and (min-width: 992px) {
		.main-D {
			background-position: center bottom;
		}
		.works-list li {
			width: calc(25% - 40px);
			margin: 20px;
		}
	}
}
/* contact */
.main-E {
	position: relative;
	padding: 0 5% 60px;
	background-color: #fff;
}
.main-E .title {
	text-align: center;
	margin: auto;
}
.main-E .title small {
	font-size: 2rem;
}
.main-E .title small:before {
	display: none;
}
.contact-flist {
	position: relative;
	width: 92%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 6vw 3%;
	border-radius: 10px;
	background-color: #F3F3F3;
}
.contact-flist a {
	position: relative;
	display: block;
	width: calc(50% - 40px);
	max-width: 380px;
	min-width: 280px;
	margin: 10px auto;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 2rem;
	padding: 10px 0;
	padding-left: 60px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 50px;
}
.contact-flist a i {
	font-style: initial;
	letter-spacing: 0;
	color: #64B528;
	padding: 0 2px;
}
.contact-flist a small {
	position: relative;
	display: block;
	font-size: .95rem;
	font-weight: normal;
}
.contact-flist .line {
	background-image: url(../images/contact_line.webp);
}
.contact-flist .phone {
	background-image: url(../images/contact_phone.webp);
}
@media only screen and (min-width: 1200px) {
	.contact-flist a {
		font-size: 1.75rem;
		padding-left: 85px;
		background-size: auto;
	}
}