@charset "UTF-8";


/***************************************************

	TOP

***************************************************/

#kv_area{
	height: 900px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url('../images/top/top_kv.jpg');

	opacity: 0;
	transition: opacity 1s ease;
}

.webp #kv_area{
	background-image: url('../images/top/top_kv.webp');
}

#kv_area.active {
	opacity: 1;
}

#kv_area .kv_wrapp{
	width: 1304px;
	margin: 0 auto;
	position: relative;
}

#kv_area .kv_wrapp .kv_text_block{
	width: 710px;
	position: absolute;
	top: 64px;
	left: 0;
	line-height: 1;
}

#kv_area .kv_wrapp .kv_text_block p{
	display: inline-block;
	font-size: 46px;
	font-weight: 800;
	color: #000;
	padding: 10px 30px;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;

	/* マスク適用 */
	-webkit-mask-image: linear-gradient(to right, #000 100%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: left;
	-webkit-mask-size: 0% 100%;

	mask-image: linear-gradient(to right, #000 100%, transparent 100%);
	mask-repeat: no-repeat;
	mask-position: left;
	mask-size: 0% 100%;
}

#kv_area .kv_wrapp .kv_text_block p.active {
	animation: revealText 1s ease forwards;
}

@keyframes revealText {
	to {
		-webkit-mask-size: 100% 100%;
		mask-size: 100% 100%;
	}
}

#kv_area .kv_wrapp .kv_text_block p:last-of-type{
	margin-bottom: 0;
}

#kv_area .kv_wrapp .kv_text_block p::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: -1;
	clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0 100%);
}

#kv_area .kv_wrapp .kv_text_block p:nth-of-type(2)::before {
	clip-path: polygon(4.5% 0%, 100% 0%, 95.5% 100%, 0 100%);
}

#kv_area .kv_wrapp .kv_text_block p:nth-of-type(3)::before {
	clip-path: polygon(3.2% 0%, 100% 0%, 96.8% 100%, 0 100%);
}


.home_wrapper{
	width: 1328px;
	margin: 0 auto;
	line-height: 1;
}

#news{
	padding: 60px 0 85px;
	background: var(--bgcolor_g);
}

#news .data_wrapp{
	width: 1100px;
	margin: 125px auto 0;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

#news .data_wrapp .news_data{
	width: 565px;
}

#news .data_wrapp .news_data ul{
	border-top: 1px solid var(--text);	
}

#news .data_wrapp .news_data ul li{
	border-bottom: 1px solid var(--text);
}

#news .data_wrapp .news_data ul li span,
#news .data_wrapp .news_data ul li a{
	padding: 40px 0;
	color: var(--text);
	line-height: 1;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

#news .data_wrapp .news_data ul li span .date_block,
#news .data_wrapp .news_data ul li a .date_block{
	width: 210px;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

#news .data_wrapp .news_data ul li span .date_block .data,
#news .data_wrapp .news_data ul li a .date_block .data{
	width: 130px;
	font-size: 16px;
	letter-spacing: 0.05em;
}

#news .data_wrapp .news_data ul li span .date_block .cat strong,
#news .data_wrapp .news_data ul li a .date_block .cat strong{
	display: inline-block;
	height: 18px;
	line-height: 18px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
	background: var(--text);
	border-radius: 4px;
	padding: 0 10px;
}

#news .data_wrapp .news_data ul li span .text_block,
#news .data_wrapp .news_data ul li a .text_block{
	width: calc(100% - 210px);	
}

#news .data_wrapp .news_data ul li span .text_block p,
#news .data_wrapp .news_data ul li a .text_block p{
	display: inline;
	font-size: 16px;
	line-height: 2.0;
	position: relative;	
}

#news .data_wrapp .news_data ul li.works a .text_block p::after{
	content: '→';
	display: inline-block;
}

#news .data_wrapp .insta_data{
	width: 485px;
	position: relative;
}

#news .data_wrapp .insta_data::after{
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url('../images/common/icon_instagram.png') no-repeat 0 0 / contain;
    position: absolute;
    top: 18px;
    right: 0;
}

#news .data_wrapp .insta_data .insta_title{
	margin-bottom: 20px;
}

#news .data_wrapp .insta_data .insta_title strong{
	font-size: 40px;
	font-weight: 600;
	font-style: italic;
	margin-right: 30px;
	letter-spacing: 1px;
}

#news .data_wrapp .insta_data .insta_title small{
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
}

#news .data_wrapp .insta_data .insta_ul{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

#news .data_wrapp .insta_data .insta_ul li{
	width: 23%;
	aspect-ratio: 1 / 1;
	margin: 0 2.6% 15px 0;
	overflow: hidden;
}

#news .data_wrapp .insta_data .insta_ul li:nth-child(4n + 4){
	margin-right: 0;
}

#news .data_wrapp .insta_data .insta_ul li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.link_btn{
	line-height: 1;
}

.link_btn a{
	display: inline-block;
	height: 56px;
	line-height: 56px;
	border-radius: 56px;
	background: var(--text);
	text-align: center;
	color: #fff;
	padding: 0 40px;
}

.link_btn a strong{
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding-right: 28px;
	position: relative;
}

.link_btn a strong::after{
	content: '';
	display: inline-block;
	width: 6px;
	height: 13px;
	background: url('../images/common/ico_arrow02.png') no-repeat 0 0 / contain;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	filter: invert(100%);
}


#about{
	padding: 55px 0 80px;
}

#about .about_cont{
	width: 1440px;
	margin: 115px auto 0;
	display: flex;
}

#about .about_cont .image_block{
	width: 430px;
}

#about .about_cont .text_block{
	width: 670px;
	margin-left: 200px;
	box-sizing: border-box;
}

#about .about_cont .text_block .p_wrapp{
	margin-bottom: 65px;
}

#about .about_cont .text_block .p_wrapp p{
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 1em;
}

#about .about_cont .text_block .p_wrapp p:last-of-type{
	margin-bottom: 0;
}

#about .about_cont .text_block .p_wrapp p strong{
	font-size: 36px;
	font-weight: 700;
}


#point{
	padding: 60px 0 165px;
	background: var(--color2);
}

#point h2{
	color: #fff;
}

#point .slider_wrapp{
	margin-top: -60px;
	padding-top: 160px;
	padding-left: 170px;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	z-index: 10;
}

#point .slider_wrapp ul{
	width: 1510px;
}

#point .slider_wrapp ul li{
	width: 377px;
	padding: 50px 22px 0 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

#point .slider_wrapp ul li:nth-child(even){
	flex-direction: column-reverse;
}

#point .slider_wrapp ul li .text_block{
	height: 350px;
	background: #fff;
	padding: 40px 30px 0;
	line-height: 1;
	box-sizing: border-box;
	position: relative;
}

#point .slider_wrapp ul li .text_block .num{
	display: inline-block;
	font-size: 100px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
	color: var(--text);
	text-shadow: 0px 4px 4px #FFFFFF;
	position: absolute;
    top: -50px;
    left: 0;
}

#point .slider_wrapp ul li .text_block .title_wrapp{
	height: 100px;
	margin-bottom: 30px;
	position: relative;
	text-align: center;
}

#point .slider_wrapp ul li .text_block .title_wrapp .title{
	font-size: 36px;
	font-weight: 600;
	line-height: 120%;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

#point .slider_wrapp ul li .text_block .caption{
	font-size: 16px;
	line-height: 2.0;
}

#point .slick-slider {
	position: static;
}

#point .slick-prev,
#point .slick-next {
    top: 0;
    width: 25px;
    height: 25px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

#point .slick-prev {
    left: unset;
    right: 255px;
}

#point .slick-next {
	right: 140px;
}

#point .slick-prev:before,
#point .slick-next:before {
    content: '';
    opacity: 1;
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../images/common/icon_slider_arrow.png') no-repeat 0 0 / contain;
}

#point .slick-prev:before{
	transform: scale(-1, 1);
}


#service{
	padding: 60px 0 80px;
}

#service .service_cont{
	width: 1100px;
	margin: 60px auto 0;
}

#service .service_cont .caption{
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 60px;
}

#service .service_cont .works-cat-section{
	margin-bottom: 60px;
}

#service .service_cont .works-cat-section ul{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    counter-reset: s_list 0;
}

#service .service_cont .works-cat-section ul li{
	width: 30%;
	margin: 0 5% 60px 0;
	position: relative;
}

#service .service_cont .works-cat-section ul li:nth-child(3n + 3){
	margin-right: 0;
}

#service .service_cont .works-cat-section ul li a{
	display: block;
	color: var(--text);
	position: relative;
}

#service .service_cont .works-cat-section ul li.no-posts::before{
	content: 'Coming soon';
	display: inline-block;
	font-size: 21px;
	font-weight: 600;
	font-family: "Roboto", sans-serif;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 2;
}

#service .service_cont .works-cat-section ul li.no-posts a{
	opacity: 0.2;
	pointer-events: none;
	cursor: default;
}

#service .service_cont .works-cat-section ul li .image_block{
	width: 100%;
	height: 274px;
	margin-bottom: 23px;
	overflow: hidden;
}

#service .service_cont .works-cat-section ul li .image_block img{
	transition: all 0.2s linear;
}

#service .service_cont .works-cat-section ul li:hover .image_block img{
  transform: scale(1.1);
}

#service .service_cont .works-cat-section ul li.no-posts:hover .image_block img{
  transform: scale(1);
}

#service .service_cont .works-cat-section ul li .image_block img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#service .service_cont .works-cat-section ul li .name{
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	padding-left: 30px;
	position: relative;
}

#service .service_cont .works-cat-section ul li .name::after{
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url('../images/common/ico_arrow04.png') no-repeat 0 0 / contain;
	position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

#service .service_cont .works-cat-section ul li.no-posts .name::after{
	content: none;
}

#service .service_cont .works-cat-section ul li .name::before{
	counter-increment: s_list 1;
	content: counter(s_list) '';
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	border: 1px solid var(--text);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	text-align: center;
	position: absolute;
    top: 0;
    left: 0;
}

#service .service_cont .link_btn{
	text-align: center;
}


#works{
	padding: 60px 0 80px;
	background: var(--color2);
}


#works h2{
	color: #fff;
}

#works .works_cont{
	width: 1140px;
	margin: 60px auto 0;
}

#works .works_cont .caption{
	width: 1100px;
	margin: 0 auto 60px;
	font-size: 16px;
	color: #fff;
	line-height: 1.6;
}

#works ul{
	margin-bottom: 60px;
}

#works ul li{

}

#works ul li a{
	display: block;
	overflow: hidden;
	position: relative;
	color: #fff;
}

#works ul li a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#works ul li.works-item-single{
	width: 550px;
	padding: 5px;
	box-sizing: border-box;
}

#works ul li.works-item-single a{
	aspect-ratio: 1 / 0.909;
}

#works ul li.works-item-double{
	width: 300px;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#works ul li.works-item-double .works-block{
	flex: 1;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
}

#works ul li.works-item-double a{
	aspect-ratio: 1 / 0.831;
}

#works ul li a .text_wrapp{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6);
	transition: all 0.2s linear;
	opacity: 0;
}

#works ul li a:hover,
#works ul li a:hover .text_wrapp{
	opacity: 1;
}

#works ul li a .text_wrapp .text_box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
}

#works ul li a .text_wrapp .text_box .works-sub,
#works ul li a .text_wrapp .text_box .title{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
}

#works .link_btn{
	text-align: center;
}


#flow{
	padding: 60px 0 80px;
	background: var(--bgcolor_g);
}

#flow .flow_cont{
	width: 1140px;
	margin: 60px auto 0;
}

#flow .flow_cont .caption{
	width: 1100px;
	margin: 0 auto 60px;
	font-size: 16px;
	line-height: 1.6;
}

#flow .flow_cont .flow_ul{
	margin-bottom: 60px;
	counter-reset: flow_num 0;
}

#flow .flow_cont .flow_ul li{
	background: #fff;
	margin-bottom: 35px;
	height: 62px;
	line-height: 62px;
	padding: 0 30px;
	position: relative;
}

#flow .flow_cont .flow_ul li::after{
	content: '';
	display: inline-block;
	width: 21px;
	height: 31px;
	background: url('../images/common/icon_flow_arrow.png') no-repeat 0 0 / contain;
	position: absolute;
	bottom: -28px;
	left: 25px;
}

#flow .flow_cont .flow_ul li:last-child::after{
	content: none;
}

#flow .flow_cont .flow_ul li:last-child{
	margin-bottom: 0;
}

#flow .flow_cont .flow_ul li p{
	font-size: 26px;
	padding-left: 44px;
	position: relative;
}

#flow .flow_cont .flow_ul li p::before{
	counter-increment: flow_num 1;
	content: counter(flow_num) '.';
	display: inline-block;
	position: absolute;
    top: 0;
    left: 0;
}

#flow .flow_cont .link_btn{
	text-align: center;
}




/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1440px){

#kv_area{
	height: 62.5vw;
}

#kv_area .kv_wrapp{
	width: 90.555556vw;
}

#kv_area .kv_wrapp .kv_text_block{
	width: 49.305556vw;
	top: 4.444444vw;
}

#kv_area .kv_wrapp .kv_text_block p{
	font-size: 3.194444vw;
	padding: 0.694444vw 2.083333vw;
	margin-bottom: 0.833333vw;
}


.home_wrapper{
	width: 92.222222vw;
}

#news{
	padding: 4.166667vw 0 5.902778vw;
}

#news .data_wrapp{
	width: 76.388889vw;
	margin: 8.680556vw auto 0;
}

#news .data_wrapp .news_data{
	width: 39.236111vw;
}

#news .data_wrapp .news_data ul li span,
#news .data_wrapp .news_data ul li a{
	padding: 2.777778vw 0;
}

#news .data_wrapp .news_data ul li span .date_block,
#news .data_wrapp .news_data ul li a .date_block{
	width: 14.583333vw;
}

#news .data_wrapp .news_data ul li span .date_block .data,
#news .data_wrapp .news_data ul li a .date_block .data{
	width: 9.027778vw;
	font-size: 1.111111vw;
}

#news .data_wrapp .news_data ul li span .date_block .cat strong,
#news .data_wrapp .news_data ul li a .date_block .cat strong{
	height: 1.25vw;
	line-height: 1.25vw;
	font-size: 0.902778vw;
	border-radius: 0.277778vw;
	padding: 0 0.694444vw;
}

#news .data_wrapp .news_data ul li span .text_block,
#news .data_wrapp .news_data ul li a .text_block{
	width: calc(100% - 14.583333vw);	
}

#news .data_wrapp .news_data ul li span .text_block p,
#news .data_wrapp .news_data ul li a .text_block p{
	font-size: 1.111111vw;
}

#news .data_wrapp .insta_data{
	width: 33.680556vw;
}

#news .data_wrapp .insta_data::after{
	width: 2.222222vw;
	height: 2.222222vw;
    top: 1.25vw;
}

#news .data_wrapp .insta_data .insta_title{
	margin-bottom: 1.388889vw;
}

#news .data_wrapp .insta_data .insta_title strong{
	font-size: 2.777778vw;
	margin-right: 2.083333vw;
}

#news .data_wrapp .insta_data .insta_title small{
	font-size: 1.111111vw;
}

#news .data_wrapp .insta_data .insta_ul{
    margin-bottom: 1.041667vw;
}

#news .data_wrapp .insta_data .insta_ul li{
	width: 23%;
	margin: 0 2.6% 1.041667vw 0;
}

.link_btn{
	margin-top: 1.041667vw;
}

.link_btn a{
	height: 3.888889vw;
	line-height: 3.888889vw;
	border-radius: 3.888889vw;
	padding: 0 2.777778vw;
}

.link_btn a strong{
	font-size: 1.111111vw;
	padding-right: 1.944444vw;
}

.link_btn a strong::after{
	width: 0.416667vw;
	height: 0.902778vw;
}


#about{
	padding: 3.819444vw 0 5.555556vw;
}

#about .about_cont{
	width: 100%;
	margin: 7.986111vw auto 0;
}

#about .about_cont .image_block{
	width: 29.861111vw;
}

#about .about_cont .text_block{
	width: 46.527778vw;
	margin-left: 13.888889vw;
}

#about .about_cont .text_block .p_wrapp{
	margin-bottom: 4.513889vw;
}

#about .about_cont .text_block .p_wrapp p{
	font-size: 1.111111vw;
}

#about .about_cont .text_block .p_wrapp p strong{
	font-size: 2.5vw;
}


#point{
	padding: 4.166667vw 0 11.458333vw;
}

#point .slider_wrapp{
	margin-top: -4.166667vw;
	padding-top: 11.111111vw;
	padding-left: 11.805556vw;
}

#point .slider_wrapp ul{
	width: 104.861111vw;
}

#point .slider_wrapp ul li{
	width: 26.180556vw;
	padding: 3.472222vw 1.527778vw 0 0;
}

#point .slider_wrapp ul li .text_block{
	height: 24.305556vw;
	padding: 2.777778vw 2.083333vw 0;
}

#point .slider_wrapp ul li .text_block .num{
	font-size: 6.944444vw;
	text-shadow: 0px 0.277778vw 0.277778vw #FFFFFF;
    top: -3.472222vw;
}

#point .slider_wrapp ul li .text_block .title_wrapp{
	height: 6.944444vw;
	margin-bottom: 2.083333vw;
}

#point .slider_wrapp ul li .text_block .title_wrapp .title{
	font-size: 2.5vw;
}

#point .slider_wrapp ul li .text_block .caption{
	font-size: 1.111111vw;
}

#point .slick-prev,
#point .slick-next {
    width: 1.736111vw;
    height: 1.736111vw;
}

#point .slick-prev {
    left: unset;
    right: 17.708333vw;
}

#point .slick-next {
	right: 9.722222vw;
}

#point .slick-prev:before,
#point .slick-next:before {
    width: 1.736111vw;
    height: 1.736111vw;
}


#service{
	padding: 4.166667vw 0 5.555556vw;
}

#service .service_cont{
	width: 76.388889vw;
	margin: 4.166667vw auto 0;
}

#service .service_cont .caption{
	font-size: 1.111111vw;
	margin-bottom: 4.166667vw;
}

#service .service_cont .works-cat-section{
	margin-bottom: 4.166667vw;
}

#service .service_cont .works-cat-section ul li{
	margin: 0 5% 4.166667vw 0;
}

#service .service_cont .works-cat-section ul li.no-posts::before{
	font-size: 1.458333vw;
}

#service .service_cont .works-cat-section ul li .image_block{
	height: 19.027778vw;
	margin-bottom: 1.597222vw;
}

#service .service_cont .works-cat-section ul li .name{
	font-size: 1.388889vw;
	padding-left: 2.083333vw;
}

#service .service_cont .works-cat-section ul li .name::after{
	width: 1.736111vw;
	height: 1.736111vw;
}

#service .service_cont .works-cat-section ul li .name::before{
	width: 1.388889vw;
	height: 1.388889vw;
	line-height: 1.388889vw;
	font-size: 0.972222vw;
}


#works{
	padding: 4.166667vw 0 5.555556vw;
}

#works .works_cont{
	width: 79.166667vw;
	margin: 4.166667vw auto 0;
}

#works .works_cont .caption{
	width: 76.388889vw;
	margin: 0 auto 4.166667vw;
	font-size: 1.111111vw;
}

#works ul{
	margin-bottom: 4.166667vw;
}

#works ul li.works-item-single{
	width: 38.194444vw;
	padding: 0.347222vw;
}

#works ul li.works-item-double{
	width: 20.833333vw;
}

#works ul li.works-item-double .works-block{
	padding: 0.347222vw;
}

#works ul li a .text_wrapp .text_box .works-sub,
#works ul li a .text_wrapp .text_box .title{
	font-size: 1.25vw;
}


#flow{
	padding: 4.166667vw 0 5.555556vw;
}

#flow .flow_cont{
	width: 79.166667vw;
	margin: 4.166667vw auto 0;
}

#flow .flow_cont .caption{
	width: 76.388889vw;
	margin: 0 auto 4.166667vw;
	font-size: 1.111111vw;
}

#flow .flow_cont .flow_ul{
	margin-bottom: 4.166667vw;
}

#flow .flow_cont .flow_ul li{
	margin-bottom: 2.430556vw;
	height: 4.305556vw;
	line-height: 4.305556vw;
	padding: 0 2.083333vw;
}

#flow .flow_cont .flow_ul li::after{
	width: 1.458333vw;
	height: 2.152778vw;
	bottom: -1.944444vw;
	left: 1.736111vw;
}

#flow .flow_cont .flow_ul li p{
	font-size: 1.805556vw;
	padding-left: 3.055556vw;
}




}


/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

#kv_area{
	height: calc(100dvh - 17.066667vw);
	background-position: 50% 0;
	background-image: url('../images/top/top_kv_sp.jpg');
}

.webp #kv_area{
	background-image: url('../images/top/top_kv_sp.webp');
}

#kv_area .kv_wrapp{
	width: auto;
	margin: 0 auto 0 9.066667vw;
}

#kv_area .kv_wrapp .kv_text_block{
	width: 77.333333vw;
	top: 6vw;
}

#kv_area .kv_wrapp .kv_text_block p{
	font-size: 4.906667vw;
	padding: 0.8vw 3.2vw;
	margin-bottom: 1.066667vw;
}

#kv_area .kv_wrapp .kv_text_block p::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: -1;
	clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0 100%);
}

#kv_area .kv_wrapp .kv_text_block p:nth-of-type(2)::before {
	clip-path: polygon(4.5% 0%, 100% 0%, 95.5% 100%, 0 100%);
}

#kv_area .kv_wrapp .kv_text_block p:nth-of-type(3)::before {
	clip-path: polygon(3.2% 0%, 100% 0%, 96.8% 100%, 0 100%);
}


.home_wrapper{
	width: auto;
	margin: 0 5.333333vw;
}

#news{
	padding: 8vw 0 10.666667vw;
}

#news .data_wrapp{
	width: auto;
	margin: 10.666667vw 5.333333vw 0;
	display: block;
}

#news .data_wrapp .news_data{
	width: auto;
	margin-bottom: 10.666667vw;
}

#news .data_wrapp .news_data ul li span,
#news .data_wrapp .news_data ul li a{
	padding: 5.333333vw 0;
	display: block;
}

#news .data_wrapp .news_data ul li span .date_block,
#news .data_wrapp .news_data ul li a .date_block{
	width: auto;
	margin-bottom: 3.2vw;
}

#news .data_wrapp .news_data ul li span .date_block .data,
#news .data_wrapp .news_data ul li a .date_block .data{
	width: 34.666667vw;
	font-size: 3.733333vw;
}

#news .data_wrapp .news_data ul li span .date_block .cat,
#news .data_wrapp .news_data ul li a .date_block .cat{
	width: calc(100% - 34.666667vw);
}

#news .data_wrapp .news_data ul li span .date_block .cat strong,
#news .data_wrapp .news_data ul li a .date_block .cat strong{
	height: 4.8vw;
	line-height: 4.8vw;
	font-size: 3.2vw;
	border-radius: 1.066667vw;
	padding: 0 2.666667vw;
}

#news .data_wrapp .news_data ul li span .text_block,
#news .data_wrapp .news_data ul li a .text_block{
	width: auto;	
}

#news .data_wrapp .news_data ul li span .text_block p,
#news .data_wrapp .news_data ul li a .text_block p{
	font-size: 3.733333vw;
}

#news .data_wrapp .insta_data{
	width: auto;
}

#news .data_wrapp .insta_data::after{
	width: 8.533333vw;
	height: 8.533333vw;
    top: 2.133333vw;
}

#news .data_wrapp .insta_data .insta_title{
	margin-bottom: 5.333333vw;
}

#news .data_wrapp .insta_data .insta_title strong{
	font-size: 8vw;
	margin-right: 5.333333vw;
}

#news .data_wrapp .insta_data .insta_title small{
	font-size: 3.733333vw;
}

#news .data_wrapp .insta_data .insta_ul{
	justify-content: space-between;
    margin-bottom: 4vw;
}

#news .data_wrapp .insta_data .insta_ul li{
	width: 47.7%;
	margin: 0 0 4vw;
}



.link_btn{
	margin-top: 4vw;
	text-align: center;
}

.link_btn a{
	width: 80%;
	height: 14.933333vw;
	line-height: 14.933333vw;
	border-radius: 14.933333vw;
	padding: 0;
}

.link_btn a strong{
	font-size: 3.733333vw;
	padding-right: 7.466667vw;
}

.link_btn a strong::after{
	width: 1.6vw;
	height: 3.466667vw;
}


#about{
	padding: 8vw 0 10.666667vw;
}

#about .about_cont{
	width: auto;
	margin: 10.666667vw 5.333333vw 0;
	display: block;
}

#about .about_cont .image_block{
	width: auto;
	margin: 0 -.333333vw 6.933333vw;
}

#about .about_cont .text_block{
	width: auto;
	margin-left: 0;
}

#about .about_cont .text_block .p_wrapp{
	margin-bottom: 10.666667vw;
}

#about .about_cont .text_block .p_wrapp p{
	font-size: 3.733333vw;
	line-height: 2.0;
}

#about .about_cont .text_block .p_wrapp p strong{
	font-size: 2.1em;
}


#point{
	padding: 8vw 0 10.666667vw;
}

#point .slider_wrapp{
	margin: -16vw 4vw 0;
	padding-top: 21.333333vw;
	padding-left: 0;
}

#point .slider_wrapp ul{
	width: auto;
}

#point .slider_wrapp ul li{
	width: auto;
	padding: 5.333333vw 1.333333vw 0;
}

#point .slider_wrapp ul li .text_block{
	height: 88vw;
	padding: 5.333333vw 4vw 0;
}

#point .slider_wrapp ul li .text_block .num{
	font-size: 13.333333vw;
	text-shadow: 0px 0.533333vw 0.533333vw #FFFFFF;
    top: -6.4vw;
}

#point .slider_wrapp ul li .text_block .title_wrapp{
	height: 13.333333vw;
	margin-bottom: 4vw;
}

#point .slider_wrapp ul li .text_block .title_wrapp .title{
	font-size: 4.8vw;
}

#point .slider_wrapp ul li .text_block .caption{
	font-size: 3.2vw;
}

#point .slick-slider {
	position: static;
}

#point .slick-prev,
#point .slick-next {
    top: 8vw;
    width: 6.666667vw;
    height: 6.666667vw;
}

#point .slick-prev {
    right: 20vw;
}

#point .slick-next {
	right: 2.666667vw;
}

#point .slick-prev:before,
#point .slick-next:before {
    width: 6.666667vw;
    height: 6.666667vw;
}


#service{
	padding: 8vw 0 10.666667vw;
}

#service .service_cont{
	width: auto;
	margin: 8vw 5.333333vw 0;
}

#service .service_cont .caption{
	font-size: 3.733333vw;
	line-height: 1.8;
	margin-bottom: 8vw;
}

#service .service_cont .works-cat-section{
	margin-bottom: 8vw;
}

#service .service_cont .works-cat-section ul{
	justify-content: space-between;
}

#service .service_cont .works-cat-section ul li{
	width: 48%;
	margin: 0 0 8vw;
}


#service .service_cont .works-cat-section ul li.no-posts::before{
	font-size: 4.8vw;
}


#service .service_cont .works-cat-section ul li .image_block{
	height: 33.066667vw;
	margin-bottom: 3.733333vw;
}

#service .service_cont .works-cat-section ul li .name{
	font-size: 3.733333vw;
	line-height: 1.4;
	padding-left: 5.333333vw;
}

#service .service_cont .works-cat-section ul li .name::after{
	width: 3.733333vw;
	height: 3.733333vw;
}

#service .service_cont .works-cat-section ul li .name::before{
	width: 3.733333vw;
	height: 3.733333vw;
	line-height: 3.733333vw;
	font-size: 2.4vw;
    top: 1px;
}


#works{
	padding: 8vw 0 10.666667vw;
}

#works .works_cont{
	width: auto;
	margin: 8vw 5.333333vw 0;
}

#works .works_cont .caption{
	width: auto;
	margin: 0 auto 8vw;
	font-size: 3.733333vw;
	line-height: 1.8;
}

#works ul{
	margin-bottom: 8vw;
}

#works ul li.works-item-single{
	width: 69.333333vw;
	padding: 1.333333vw;
}

#works ul li.works-item-double{
	width: 37.333333vw;
}

#works ul li.works-item-double .works-block{;
	padding: 1.333333vw;
}

#works ul li a .text_wrapp .text_box .works-sub,
#works ul li a .text_wrapp .text_box .title{
	font-size: 3.466667vw;
}


#flow{
	padding: 8vw 0 10.666667vw;
}

#flow .flow_cont{
	width: auto;
	margin: 8vw 5.333333vw 0;
}

#flow .flow_cont .caption{
	width: auto;
	margin: 0 auto 8vw;
	font-size: 3.733333vw;
}

#flow .flow_cont .flow_ul{
	margin-bottom: 8vw;
}

#flow .flow_cont .flow_ul li{
	margin-bottom: 5.333333vw;
	height: auto;
	line-height: 1.4;
	padding: 2.666667vw 4vw;
}

#flow .flow_cont .flow_ul li::after{
	width: 4vw;
	height: 5.333333vw;
	bottom: -4.533333vw;
	left: 5.333333vw;
}

#flow .flow_cont .flow_ul li p{
	font-size: 4.266667vw;
	padding-left: 8vw;
}



}

