@charset 'UTF-8';

/* body */
body{
	padding-top: 0px;
}

/* common */
.tit{
    font-size: 38px;
	font-family: 'Berlin Sans FB Demi', sans-serif !important;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.5;
	color: var(--mainCol);
	position: relative;
	display: inline-block;
}

.tit strong{
    font-weight: 600;
	font-family: 'Berlin Sans FB Demi', sans-serif !important;
	position: relative;
	z-index: 1;
}

.tit::before{
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 0;
	transform: translate(-50%,-30%) scale(1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #e3eaf4;
	opacity: 0;
	transition: all 1s;
}

section.active .tit::before{
	left: 0;
	opacity: 1;
	transform: translate(-50%,-30%) scale(1);
}

.berlin{
	font-family: 'Berlin Sans FB Demi', sans-serif !important;
}

#container .section{
	padding: 80px 0;
	height: auto !important;
}

#container .section .fp-tableCell{
	height: auto !important;
}

.txtDot{
	display: inline-block;
	position: relative;
}

.txtDot::after{
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: var(--mainCol);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,10px);
}


/* pageDots */
.pageDots{
	position: fixed;
	right: 25px;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 10;
}

.pageDots li{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #7992b0;
	margin-bottom: 15px;
	transition: all 0.4s;
}

.pageDots li.active{
	background: #6fa4e5;
	transform: scale(1.2,0.7);
	border-radius: 3px;
}

.pageDots li a{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}


/* mainVisual */
.mainVisual{
	padding: 0 !important;
}

.mainVisual .visualUl{
	margin-bottom: 0 !important;
}

.mainVisual .visualLi{
	
}

.mainVisual .visualLi1{
	position: relative;
}

.mainVisual .visualLi1 .txtBox{
	position: absolute;
	left: 20%;
	top: 50%;
	transform: translate(-102%,-50%);
	width: 40%;
	font-weight: 600;
	font-size: 24px;
	line-height: 2;
	color: #406695;
	opacity: 0;
	transition: all 1s;
}

.mainVisual .visualLi1.slick-active .txtBox{
	left: 50%;
	opacity: 1;
}

.mainVisual .visualLi1 .txtBox strong{
	font-size: 1.7em;
	font-weight: 600;
}

.mainVisual .visualLi1 .imgBox{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(2%,-50%);
	width: 40%;
	transition: all 1s;
}

.mainVisual .visualLi1 .imgBox span{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
}

.mainVisual .visualLi1.slick-active .imgBox span{
	animation: visualSpan 0.7s forwards;
}

.mainVisual .visualLi1.slick-active .imgBox span img{
	animation: visualImg 3s infinite;
}

.mainVisual .visualLi1.slick-active .imgBox span:nth-child(1),
.mainVisual .visualLi1.slick-active .imgBox span:nth-child(1) img{
	animation-delay: 0.5s;
}

.mainVisual .visualLi1.slick-active .imgBox span:nth-child(2),
.mainVisual .visualLi1.slick-active .imgBox span:nth-child(2) img{
	animation-delay: 0.7s;
}

.mainVisual .visualLi1.slick-active .imgBox span:nth-child(3),
.mainVisual .visualLi1.slick-active .imgBox span:nth-child(3) img{
	animation-delay: 0.9s;
}

.mainVisual .visualLi1.slick-active .imgBox span:nth-child(4),
.mainVisual .visualLi1.slick-active .imgBox span:nth-child(4) img{
	animation-delay: 1.1s;
}

@keyframes visualSpan{
	0%{transform: translateY(50%);opacity: 0;}
	50%{transform: translateY(-5%);}
	100%{transform: translateY(0%);opacity: 1;}
}

@keyframes visualImg{
	0%{transform: scale(1);}
	3%{transform: scale(1.02);}
	9%{transform: scale(0.98);}
	12%{transform: scale(1);}
}

.mainVisual .visualLi1 .imgBox span:nth-child(1){
	position: static;
}

.mainVisual .visualLi1 .bg img{
	width: 100%;
}

.mainVisual .slick-dots{
	bottom: 50px;
}


/* weare */
.weare article{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.weare article:last-child{
	margin-bottom: 0;
}

.weare article .imgBox{
	width: 30%;
	overflow: hidden;
}

.weare article.sang .imgBox{
	background: #D2E4FD;
}

.weare article.lee .imgBox{
	background: #A0BEE5;
}

.weare article.sang .imgBox img{
	animation: profile1 5s infinite;
}

.weare article.lee .imgBox img{
	animation: profile2 5s infinite;
}

@keyframes profile1{
	0%{transform: translate(-20%,10%) scale(3);}
	40%{transform: translate(15%,40%) scale(2);}
	80%{transform: translate(0%,0%) scale(1);}
	100%{transform: translate(-20%,10%) scale(3);}
}

@keyframes profile2{
	0%{transform: translate(-50%,-50%) scale(2);}
	40%{transform: translate(30%,40%) scale(2);}
	80%{transform: translate(0%,0%) scale(1);}
	100%{transform: translate(-50%,-50%) scale(2);}
}

.weare article .txtBox{
	width: 68%;
	text-align: left;
}

.weare article .txtBox h4{
	font-size: 18px;
	color: var(--mainCol);
	line-height: 1.4;
	margin-bottom: 20px;
}

.weare article .txtBox h4 strong{
	font-weight: 600;
	font-size: 1.1em;
	display: block;
}

.weare article .txtBox p,
.weare article .txtBox p *{
	font-family: 'Gm' !important;
	font-size: 16px;
}

.weare article .txtBox div{
	margin-bottom: 20px;
}

.weare article .txtBox div:last-child{
	margin-bottom: 0;
}

.weare article .txtBox div.skillBox{
	display: flex;
	flex-wrap: wrap;
}

.weare article .txtBox div h5{
	font-size: 20px;
	color: var(--mainCol);
	font-family: 'Berlin Sans FB Demi', sans-serif !important;
	margin-bottom: 10px;
	width: 100%;
}

.weare article .txtBox div.skillBox p{
	width: 50%;
	box-sizing: border-box;
	padding-right: 15px;
	display: flex;
	align-items: center;
}

.weare article .txtBox div.skillBox p strong{
	width: 110px;
}

.weare article .txtBox div.skillBox p .bar{
	width: calc(100% - 170px);
	height: 6px;
	margin-right: 10px;
	background: #b5b5b5;
	position: relative;
	overflow: hidden;
}

.weare article .txtBox div.skillBox p .bar span{
	display: block;
	width: 90%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--mainCol);
	transform: translateX(-100%);
	opacity: 0;
	transition: 3s;
	transition-delay: 1s;
}

.weare.active article .txtBox div.skillBox p .bar span{
	transform: translateX(0%);
	opacity: 1;
}

.weare article .txtBox div.skillBox p .persent{
	width: 50px;
}


/* service */
.service ul{
	display: flex;
	flex-wrap: wrap;
}

.service ul li{
	width: calc(94%/4);
	margin-right: 2%;
	background: #d8e5f6;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 40px 0;
	margin-top: 30px;
	transition: all 0.4s;
}

.service ul li:hover{
	box-shadow: rgba(0,0,0,0.2) 5px 5px 15px;
	transform: translate(-10px,-10px);
}

.service ul li:nth-child(4n){
	margin-right: 0;
}

.service ul li:nth-child(-n+4){
	margin-top: 0;
}

.service ul li img{
	display: block;
	width: 100%;
	margin: 0 auto 20px;
	transform: scaleX(1);
	transition: 0.7s;
}

.service ul li:hover img{
	/*animation: service 0.5s forwards;*/
	/*transform: scaleX(-1);*/
}

@keyframes service{
	0%{transform: scaleX(1);}
	100%{transform: scaleX(-1);}
}

.service ul li h5{
	color: var(--mainCol);
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1;
	font-size: 18px;
}

.service ul li p{
	line-height: 1.7;
}

/* port */
.port{
	background: #ebf8fe;
}

.port .inner{
	width: 100% !important;
	max-width: 100%;
}

.port .tit::before{
	background: #d8e7f3;
}

.port .moreBtn{
	display: block;
	background: #d8e5f6;
	font-family: 'Berlin Sans FB Demi', sans-serif !important;
	width: 85%;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
	font-size: 24px;
	text-align: center;
	color: var(--mainCol);
	border-radius: 10px;
}

.port .slick-list{
	overflow: inherit;
}

.portUl{
	margin-bottom: 50px;
}

.portUl .portLi{
	background: #fff;
	box-shadow: rgba(0,0,0,0.2) 0 0 20px;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 30px 30px;
	margin: 0 -20px;
	display: flex;
	transform: scale(0.8);
	opacity: 0.8;
	transition: all 0.5s;
}

.portUl .portLi.slick-active{
	transform: scale(1);
	opacity: 1;
}

.portUl .portLi .mockup{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 60%;
	background: #f7fcff;
	box-sizing: border-box;
	padding: 30px;
}

.portUl .portLi .mockup img{
	width: 100%;
}

.portUl .portLi .mockup > div > a > img{
	/* filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2)); */
}

.portUl .portLi .mockup a{
	display: block;
	width: 100%;
	height: 100%;
}

.portUl .portLi .mockup .pcBox{
	width: 72%;
	position: relative;
}

.portUl .portLi .mockup .box{
	overflow-y: hidden;
}

.portUl .portLi .mockup .box img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 5s;
}

.portUl .portLi .mockup a:hover .box img{
	transform: translateY(-100%);
	top: 100%;
}

.portUl .portLi .mockup .pcBox .box {
    display: block;
    position: absolute;
    top: 3%;
    left: 2%;
    width: 96%;
    height: 65%;
    background: transparent;
}

.portUl .portLi .mockup .mbBox{
	width: 25%;
	position: relative;
}

.portUl .portLi .mockup .mbBox .box {
    display: block;
    position: absolute;
    top: 2%;
    left: 4%;
    width: 93%;
    height: 96%;
    border-radius: 18px;
    background: transparent;
}

.portUl .portLi .txtBox{
	width: 40%;
	text-align: right;
	position: relative;
}

.portUl .portLi .txtBox > span{
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 600;
	font-size: 18px;
	color: var(--mainCol);
}

.portUl .portLi .txtBox h4{
	font-size: 24px;
	font-weight: 600;
	color: var(--mainCol);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	width: 70%;
	line-height: 1.4;
}

.portUl .portLi .txtBox h4 span{
	display: block;
	font-weight: 400;
	font-size: 0.8em;
}

.portUl .portLi .txtBox h4::before,
.portUl .portLi .txtBox h4::after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #cfe1eb;
}

.portUl .portLi .txtBox h4::before{
	margin-bottom: 20px;
}

.portUl .portLi .txtBox h4::after{
	margin-top: 20px;
}

.portUl .portLi .txtBox .bottom{
	position: absolute;
	right: 0;
	bottom: 0;
}

.portUl .portLi .txtBox .bottom p{
	color: var(--mainCol);
	line-height: 1;
	margin-bottom: 10px;
	font-size: 17px;
}

.portUl .portLi .txtBox .bottom ul{
	text-align: right;
}

.portUl .portLi .txtBox .bottom ul li{
	display: inline-block;
	padding: 5px 10px;
	border-radius: 100px;
	text-align: center;
	border: 1px solid #333;
	color: #333;
	margin-left: 10px;
}


/* contact */
.contact{
	
}

.contact article{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contact article .formBox{
	width: 48%;
	text-align: left;
}

.contact article .formBox h4{
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--mainCol);
	margin-bottom: 20px;
}

.contact article .formBox h4 strong{
	font-weight: 600;
	font-size: 1.2em;
	display: block;
}

.contact article .formBox ul{
	display: flex;
	flex-wrap: wrap;
}

.contact article .formBox ul li{
	width: 48%;
	margin-right: 4%;
	margin-top: 20px;
}

.contact article .formBox ul li:nth-child(2n){
	margin-right: 0;
}

.contact article .formBox ul li:nth-child(-n+2){
	margin-top: 0;
}

.contact article .formBox ul li input,
.contact article .formBox ul li textarea{
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: #fff;
	box-sizing: border-box;
	border-radius: 100px;
	padding: 0 20px;
	box-shadow: rgba(0,0,0,0.2) 2px 2px 10px;
}

.contact article .formBox ul li.etcLi{
	width: 100%;
	margin-right: 0;
}

.contact article .formBox ul li textarea{
	height: 150px;
	line-height: 1.3;
	border-radius: 25px;
	padding: 20px;
}

.contact article .formBox ul li.sendLi{
	margin-left: 4%;
	margin-right: 0;
}

.contact article .formBox ul li.sendLi a{
	background: var(--mainCol);
	border-radius: 100px;
	color: #fff;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	box-shadow: rgba(0,0,0,0.5) 2px 2px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact article .formBox ul li.sendLi a span{
	font-size: 18px;
	font-weight: 600;
}

.contact article .formBox ul li.sendLi a img{
	width: 10px;
	margin-left: 5px;
}

.contact article .imgBox{
	width: 48%;
}


/* portmore */
.portMore{
	display: none;
	position: fixed;
	top: 0%;
	left: 50%;
	transform: translate(-50%,0);
	width: 85%;
	max-width: 1000px;
	height: 100%;
	overflow-y: auto;
	box-shadow: rgba(0,0,0,0.2) 0px 0px 10px;
	z-index: 20;
}

.portMore::-webkit-scrollbar {
	width: 5px;
}
.portMore::-webkit-scrollbar-thumb {
	background-color: #2f3542;
}
.portMore::-webkit-scrollbar-track {
	background-color: grey;
}

.portMore > div{
	display: none;
}

.portMore > div.on{
	display: block;
}

.portMore img{
	display: block;
	width: 100%;
}

.portmoreBg{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 19;
}

.portmoreBg .closePort{
	position: absolute;
	top: 20px;
	right: 30px;
	width: 30px;
	height: 20px;
	display: block;
	cursor: pointer;
}

.portmoreBg .closePort span{
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
}

.portmoreBg .closePort span:nth-child(1){
	transform: translate(-50%,-50%) rotate(45deg);
}

.portmoreBg .closePort span:nth-child(2){
	transform: translate(-50%,-50%) rotate(-45deg);
}


/* footer */
.footer{
	background: #222830;
	padding: 100px 0;
}

.footer .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer .inner .copyright{
	font-size: 15px;
	color: rgba(255,255,255,0.5);
}

.footer .inner ul{
	display: flex;
	align-items: center;
}

.footer .inner ul li{
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
}

.footer .inner ul li::before{
	content: '';
	display: block;
	width: 1px;
	height: 50%;
	background: rgba(255,255,255,0.5);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}

.footer .inner ul li:first-child::before{
	display: none;
}

.footer .inner ul li a{
	font-size: 15px;
	color: rgba(255,255,255,0.5);
}


/* personUse */
.personUse{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 600px;
	height: 70%;
	background: #fff;
	z-index: 999;
	box-sizing: border-box;
	padding: 30px;
	box-shadow: rgba(0,0,0,0.2) 2px 2px 10px;
	display: none;
}

.personUse .modalBtn{
	display: flex;
	margin-bottom: 30px;
}

.personUse .modalBtn li{
	width: 50%;
	height: 40px;
	line-height: 40px;
	background: #fff;
	text-align: center;
	border: 1px solid #ccc;
	cursor: pointer;
}

.personUse .modalBtn li.on{
	background: #1567C8;
	border-color: #1567C8;
	color: #fff;
}

.personUse .box{
	height: calc(100% - 140px);
	overflow: auto;
	border: 1px solid #ccc;
	box-sizing: border-box;
	padding: 15px;
	margin-bottom: 30px;
}

.personUse .box article{
	font-size: 15px;
	display: none;
}

.personUse .box article.on{
	display: block;
}

.personUse .closeModal{
	display: block;
	cursor: pointer;
	text-align: center;
	height: 40px;
	line-height: 40px;
	background: #1567C8;
	color: #fff;
}


@media screen and (max-width: 1000px) {
body{
	padding-top: 40px;
}

.inner{
	width: 85%;
}

.tit{
	font-size: 9vw;
	margin-bottom: 5vw;
}

/* section */
#container .section {
    padding: 10vw 0;
}

/* visual */
.mainVisual .visualLi1 .txtBox{
	top: 57%;
	left: 30%;
	transform: translate(-50%,0);
	width: 85%;
	font-size: 4.5vw;
}

.txtDot::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--mainCol);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,1vw);
}

.mainVisual .visualLi1 .txtBox strong {
    
}

.mainVisual .visualLi1 .imgBox {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%,0%);
    width: 85%;
    transition: all 1s;
}

/* weare */
.weare article{
	flex-wrap: wrap;
}

.weare article .imgBox{
	width: 100%;
	margin-bottom: 5vw;
}

.weare article .txtBox{
	width: 100%;
}

.weare article .txtBox h4 {
    font-size: 4.5vw;
    margin-bottom: 4vw;
}

.weare article .txtBox div h5 {
    font-size: 5vw;
}

.weare article .txtBox p, .weare article .txtBox p * {
    font-size: 4vw;
}

.weare article .txtBox div.skillBox p{
	width: 100%;
}

.weare article .txtBox div.skillBox p strong {
    width: 26vw;
}

.weare article .txtBox div.skillBox p .bar {
    width: calc(100% - 38vw);
    height: 6px;
    margin-right: 0px;
}

.weare article .txtBox div.skillBox p .persent {
    width: 12vw;
    text-align: right;
}


/* service */
.service ul li{
	width: calc(100%/2 - 5vw/2);
	margin-right: 4vw !important;
	margin-top: 4vw !important;
	padding: 5vw 0;
}

.service ul li:nth-child(2n){
	margin-right: 0 !important;
}

.service ul li:nth-child(-n+2){
	margin-top: 0 !important;
}

.service ul li h5 {
    margin-bottom: 10px;
    font-size: 4.5vw;
}

.service ul li p{
	font-size: 3vw;
}

.service ul li img {
    margin: 0 auto 10px;
}


/* portfolio */
.port .inner{
	width: 100%;
}

.portUl{
	margin-bottom: 12vw !important;
}

.portUl .portLi{
	flex-wrap: wrap;
	padding: 5vw;
	margin: 0;
	transform: scale(0.85);
}

.port .slick-dots{
	color: #bdd5f1;
	display: flex;
	justify-content: center;
	bottom: -7vw;
}

.port .slick-dots li{
	width: 20px;
	height: 7px;
	border-radius: 100px;
	background: #bdd5f1;
	display: block;
	margin: 0 10px;
}

.port .slick-dots li.slick-active{
	background: var(--mainCol);
}

.port .slick-dots li button{
	opacity: 0 !important;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.portUl .portLi .mockup{
	width: 100%;
	padding: 5%;
}

.portUl .portLi .mockup .mbBox .box {
    border-radius: 1vw;
}

.portUl .portLi .txtBox{
	width: 100%;
	text-align: center;
}

.portUl .portLi .txtBox > span {
    display: block;
    position: static;
    top: auto;
    right: auto;
    font-size: 4vw;
	margin: 5vw 0 3vw;
}

.portUl .portLi .txtBox h4 {
    font-size: 6vw;
    position: static;
    top: auto;
    right: auto;
    transform: translate(0,0%);
    width: 100%;
	margin-bottom: 3vw;
}

.portUl .portLi .txtBox h4::before {
    margin-bottom: 3vw;
}

.portUl .portLi .txtBox h4::after {
    margin-top: 3vw;
}

.portUl .portLi .txtBox .bottom {
    position: static;
    right: auto;
    bottom: auto;
}

.portUl .portLi .txtBox .bottom p{
	font-size: 4.5vw;
}

.portUl .portLi .txtBox .bottom ul {
    text-align: center;
}

.portUl .portLi .txtBox .bottom ul li{
	font-size: 3vw;
	padding: 0vw 4vw;
	margin: 0 2px !important;
}

.port .moreBtn {
    width: 70%;
    height: 50px;
    margin: 0 auto;
    border-radius: 10px;
    line-height: 50px;
    font-size: 5vw;
}


/* contact */
.contact article {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    flex-direction: column-reverse;
    justify-content: center;
}

.contact article .imgBox{
	width: 100%;
	margin-bottom: 5vw;
}

.contact article .formBox{
	width: 100%;
}

.contact article .formBox h4{
	font-size: 5vw;
}

.contact article .formBox ul li{
	margin-top: 4vw;
}

.contact article .formBox ul li input, .contact article .formBox ul li textarea {
    height: 10vw;
    line-height: 10vw;
    padding: 0 10%;
    box-shadow: rgb(0 0 0 / 20%) 2px 2px 10px;
	font-size: 3.5vw;
}

.contact article .formBox ul li textarea{
	height: 30vw;
	line-height: 1.4;
	padding: 3vw 5%;
}

.contact article .formBox ul li.sendLi a {
    height: 10vw;
    line-height: 10vw;
    box-shadow: rgb(0 0 0 / 50%) 2px 2px 10px;
}

.contact article .formBox ul li.sendLi a span {
    font-size: 4vw;
    font-weight: 600;
}


/*  portmore */
.portmoreBg .closePort{
	width: 15px;
	height: 15px;
	top: 5px;
	right: 5px;
}


/* footer */
.footer .inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.footer .inner .copyright {
    font-size: 12px;
    width: 100%;
}

.footer .inner ul {
    width: 100%;
	justify-content: center;
}

.footer .inner ul li:first-child{
	padding-left: 0;
	margin-left: 0;
}

.footer .inner ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}




   





}


