@charset "UTF-8";

html{
	font-size: 62.5%;
}
body{
	background: #3c3c38;
	color: #000;
	font: normal 300 1.6em/1.8 'Noto Sans JP', sans-serif;
	text-align: center;
	word-break: break-word;
	word-wrap: break-word;
}
body.open,
body.no-scroll{
	overflow: hidden;
}

a{
	color: inherit;
	text-decoration: none;
}
/* a:hover{
	text-decoration: underline;
} */
a[target="_blank"]{
	position: relative;
	padding-right: 35px;
}
a[target="_blank"]:after{
	content: "";
	display: inline-block;
	position: absolute;
	right: 0; top: 50%;
	margin-top: -9px;
	width: 18px;
	height: 18px;
	background: url(../img/icon_external.svg) no-repeat right center;
	-webkit-background-size: contain;
	background-size: contain;
}

a img, .btn, .hover{
	border: 0 none;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a:hover img, .btn:hover, .hover:hover{
	-ms-filter: "alpha( opacity=70 )";
	filter: alpha(opacity=70);
	-webkit-opacity: 0.7;
	-moz-opacity: 0.7;
	-ms-opacity: 0.7;
	-o-opacity: 0.7;
	opacity: 0.7;
}

img{
	max-width: 100%;
	height: auto;
}

h2{
	position: relative;
	margin: 50px 0 0;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.3;
}
h2 span{
	display: block;
	margin-bottom: 20px;
	font: normal 400 4rem/1 'Kite One', sans-serif;
	letter-spacing: 0.04ex;
}
h3{
	margin: 0 0 70px;
	font-weight: 500;
	font-size: 4rem;
	line-height: 1.5;
}
h4{
	margin: 0 0 30px;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.5;
}

strong{
	font-weight: 500;
}
small{
	display: block;
	font-size: 1.2rem;
}
sub{
	display: inline-block;
	font-size: 0.5em;
	vertical-align: baseline;
}

input, textarea, button, select, option{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	background: none transparent;
	font-size: inherit;
	font-family: inherit;
	line-height: normal;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
button{
	cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea{
	padding: 20px 25px;
	width: 100%;
	border: 1px solid #ddd;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	background: #fff;
}
textarea{
	resize: vertical;
}
::-webkit-input-placeholder {color: #b2b2b2;} /* Chrome/Opera/Safari */
:-moz-placeholder {color: #b2b2b2;} /* Firefox 18- */
::-moz-placeholder {color: #b2b2b2;} /* Firefox 19+ */
:-ms-input-placeholder {color: #b2b2b2;} /* IE 10+ */
::placeholder{color: #b2b2b2;}
:placeholder-shown {color: #b2b2b2;}

ul.list{
	list-style: disc;
	padding-left: 20px;
}

table{
	margin: 0 auto;
	border: 0;
	border-collapse: collapse;
}
table th,
table td{
	padding: 25px 10px;
	font-size: inherit;
	line-height: 2;
	text-align: left;
	vertical-align: top;
}
table th{
	width: 25%;
	font-weight: 400;
	white-space: nowrap;
}
table.lines th,
table.lines td{
	border-top: 1px solid #cbcbcb;
}
table.lines tr:first-child th,
table.lines tr:first-child td{
	padding-top: 0;
	border-top: 0;
}

.serif{
	font-family: 'Noto Serif JP', serif;
}

.pc{display: block;}
.sp{display: none;}
.hide{display: none !important;}

.w_full{
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.flex{
	/* -js-display: flex; flexibility.jsを使用（IE8,9） */
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
}
.flex.wrap{
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex.column{
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.flex.jc-s{
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-webkit-flex-pack: start;
	-moz-flex-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
}
.flex.jc-c{
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-flex-pack: center;
	-moz-flex-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
}
.flex.jc-j{
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-webkit-flex-pack: justify;
	-moz-flex-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
}
.flex.ai-c{
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center; /* IE10 */
	align-items: center;
}
.flex.ai-s{
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch; /* IE10 */
	align-items: stretch;
}


.inner{
	margin-left: auto;
	margin-right: auto;
	padding: 0 7%;
	/* max-width: 1220px; */
	text-align: left;
}
.inner.narrow{
	padding: 0 26%;
	/* max-width: 1080px; */
}

.single_bg,
.dual_bg{
	position: relative;
	/* z-index: 1; */
}
.single_bg:before{
	content: "";
	display: block;
	position: absolute;
	left: 7%; top: 0; right: 0;
	height: 100%;
	-webkit-border-radius: 60px 0 0 60px;
	-moz-border-radius: 60px 0 0 60px;
	-ms-border-radius: 60px 0 0 60px;
	-o-border-radius: 60px 0 0 60px;
	border-radius: 60px 0 0 60px;
	background: #f8f8f8;
}
.single_bg .inner{
	position: relative;
	z-index: 101;
}
.dual_bg:before,
.dual_bg:after{
	content: "";
	display: block;
	position: absolute;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
.dual_bg:before{
	top: 0;
	z-index: 3;
	background: #fff300;
}
.dual_bg:after{
	bottom: 0;
	z-index: 2;
	background: #f8f8f8;
}

.btn{
	display: block;
	position: relative;
	line-height: 1.2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn.ghost{
	margin: 0 auto 0 0;
	padding: 20px 30px;
	max-width: 200px;
	border: 2px solid #07b7b0;
	color: #07b7b0;
	font-weight: 500;
}
#main .btn.ghost{
	background: none transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn.ghost:hover{
	background: #07b7b0;
	color: #fff;
	text-decoration: none;
	-ms-filter: "alpha( opacity=100 )";
	filter: alpha(opacity=100);
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-ms-opacity: 1;
	-o-opacity: 1;
	opacity: 1;
	-webkit-filter: alpha(opacity=100);
}



#wrapper{
	overflow: hidden;
	max-width: 100%;
	background: #fff;
}

#header {
	position: relative;
	z-index: 100;
	padding: 0 0 0 4%;
	width: 100%;
	height: 200px;
	background: #fff;
	text-align: left;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
body.open #header{}
#header:before{
	content: "";
	display: block;
	position: absolute;
	left: 0; top: 0; right: 200px;
	height: 400px;
	-webkit-border-radius: 0 0 60px 0;
	-moz-border-radius: 0 0 60px 0;
	-ms-border-radius: 0 0 60px 0;
	-o-border-radius: 0 0 60px 0;
	border-radius: 0 0 60px 0;
	background: #fff300;
}
#header .logo{
	display: inline-block;
	position: relative;
	margin: 0 4% 0 0;
	line-height: 1;
}
#header h1{
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	-o-flex-grow: 1;
	flex-grow: 1;
	display: inline-block;
	position: relative;
	padding-right: 220px;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1.2;
	vertical-align: middle;
}

#btn-menu{
	display: inline-block;
	position: absolute;
	right: 74px;
	top: 76px;
	bottom: 0;
	z-index: 111;
	width: 50px;
	height: 42px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
body.open #btn-menu{}
#btn-menu i,
#btn-menu:before,
#btn-menu:after{
	display: block;
	position: absolute;
	left: 0; top: 50%;
	width: 50px;
	margin-top: -1px;
	height: 2px;
	background: #000;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
#btn-menu:before{
	content: "";
	top: 0;
}
#btn-menu:after{
	content: "";
	top: auto; bottom: 0;
}
body.open #btn-menu i,
body.open #btn-menu:before,
body.open #btn-menu:after{
	left: 2px;
	width: 46px;
	background: #fff;
}
body.open #btn-menu i{
	-ms-filter: "alpha(opacity=0)";
	filter: alpha(opacity=0);
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-ms-opacity: 0;
	-o-opacity: 0;
	opacity: 0;
}
body.open #btn-menu:before{
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
body.open #btn-menu:after{
	bottom: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-global{
	position: fixed;
	right: 0; top: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.2rem;
}
body.open #nav-global{
	z-index: 110;
	padding: 110px 9% 30px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background: #3c3c38;
	color: #959595;
}
body #nav-global:before{
	content: "";
	display: block;
	visibility: hidden;
	position: fixed;
	right: 0; top: 0;
	z-index: 1;
	width: 0;
	height: 0;
}
body.open #nav-global:before{
	visibility: visible;
	width: 200px;
	height: 200px;
	background: #000;
}
#nav-global .inner{
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end; /* IE10 */
	align-items: flex-end;
}
#nav-global a{
	display: inline-block;
	font-weight: 400;
	font-size: 1.4rem;
	text-decoration: none;
}
#nav-global .btn{
	display: block;
	margin-bottom: 15px;
	font-size: 1.6rem;
}
#nav-global ul{
	margin-right: 4%;
	line-height: 0;
	text-align: left;
}
#nav-global ul li{
	line-height: 1.2;
}
#nav-global ul li + li{
	margin-top: 20%;
}
#nav-global ul li a{
	position: relative;
	color: #07b7b0;
}
#nav-global ul li span{
	display: block;
	margin-bottom: 20px;
	font: normal 400 3rem/1 'Kite One', sans-serif;
}
#nav-global .flex > div{
	margin-top: 10%;
}
#nav-global .flex > ul + div{
	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	-o-flex-shrink: 0;
	flex-shrink: 0;
	margin-right: 4%;
	width: 200px;
}
#nav-global .sns{
	margin-bottom: 20px;
}
#nav-global p{
	margin-bottom: 5px;
}


#main{
	position: relative;
	overflow: hidden;
	padding-bottom: 200px;
	min-height: 100px;
	background: #fff;
}
#main p{
	text-align: left;
}
#main .btn{
	padding: 40px 50px;
	max-width: 430px;
	max-height: 110px;
	background: #fff;
	color: #07b7b0;
	font-size: 1.4rem;
	text-decoration: none;
	-webkit-box-shadow: 24px 0 0 -20px #fff, 0 24px 0 -20px #fff, 0 -24px 0 -20px #fff, -24px 0 0 -20px #fff, 0 0 0 4px #07b7b0;
	-moz-box-shadow: 24px 0 0 -20px #fff, 0 24px 0 -20px #fff, 0 -24px 0 -20px #fff, -24px 0 0 -20px #fff, 0 0 0 4px #07b7b0;
	box-shadow: 24px 0 0 -20px #fff, 0 24px 0 -20px #fff, 0 -24px 0 -20px #fff, -24px 0 0 -20px #fff, 0 0 0 4px #07b7b0;
}
#main .btn:hover{
	background: #07b7b0;
	color: #fff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	text-decoration: none;
}
/* #main .btn:before,
#main .btn:after{
	content: "";
	display: inline-block;
	position: absolute;
	width: 20px;
	height: 20px;
} */
#main .btn span{
	display: inline-block;
	margin-right: 40px;
	font-weight: 700;
	font-size: 2rem;
	/* font-family: 'Kite One', sans-serif; */
	vertical-align: middle;
}

#footer{
	float: none;
	clear: both;
	padding: 120px 0;
	background: #3c3c38;
	color: #959595;
	font-weight: 100;
	font-size: 1.3rem;
}
#footer .inner{}
#footer .inner > div:last-child{
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	-o-flex-grow: 1;
	flex-grow: 1;
	margin-left: 2%;
	text-align: right;
}
#footer .logo{
	display: inline-block;
	color: #959595;
}
#footer .logo span{
	display: block;
	margin-top: 20px;
	font: normal 700 1.4rem/1.2 'Muli', sans-serif;
	letter-spacing: 0.6ex;
	text-align: center;
	white-space: nowrap;
}
#footer .logo strong img{
	display: block;
}
#footer .btn{
	margin-top: 50px;
}
#footer ul{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-webkit-flex-pack: end;
	-moz-flex-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
	margin: 0 0 50px auto;
	line-height: 0;
}
#footer ul li{
	margin: 10px 0 0 6%;
	font-weight: 400;
	line-height: 1.2;
}
#footer ul li:first-child{
	padding-left: 0;
}
#footer ul li a{
	color: #959595;
}
#footer p{
	display: inline-block;
	margin: 5px 0;
	vertical-align: middle;
}
#footer p + a{
	display: inline-block;
	margin-left: 20px;
	vertical-align: middle;
}
#copyright{
	display: block;
	margin: 45px 0 0 auto;
	font: normal 400 1.2rem/1 'Muli', sans-serif;
	letter-spacing: 0.4ex;
	line-height: 1;
	text-align: right;
}

#privacy{
	position: relative;
	margin: 5% auto;
	padding: 5% 0;
	width: 72%;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
	background: #fff;
	text-align: center;
}
#privacy .inner{
	overflow-y: auto;
	font-size: 1.4rem;
	text-align: left;
}
#privacy h2{
	margin: 0 0 40px;
	max-width: none;
	color: #000;
	font-weight: 400;
	font-size: 2.4rem;
}
#privacy h3{
	margin: 40px 0 15px;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
}
#privacy p{
	line-height: 2;
}
#privacy address{
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid #c9c9c9;
	line-height: 2;
}
#privacy address strong{
	display: block;
	margin: 0 0 15px;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
}
#privacy .btn.ghost{
	display: inline-block;
	margin: 80px auto 0;
	padding: 20px 40px;
	max-width: none;
	border: 1px solid #707070;
	color: #000;
	font-weight: 300;
	font-size: inherit;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}
#privacy .btn.ghost:hover{
	background: #707070;
	color: #fff;
}
.mfp-close-btn-in .mfp-close{
	right: -10px; top: -15px;
	width: 86px;
	height: 86px;
	border: 4px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-weight: 100;
	font-size: 4rem;
	font-family: inherit;
	line-height: 1;
	opacity: 1;
}
.mfp-close-btn-in .mfp-close:hover{
	background-color: #07b7b0;
}
.mfp-zoom-in {
	/* start state */
	/* animate in */
	/* animate out */
}
.mfp-zoom-in .mfp-with-anim {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transform: scale(0.8);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
	opacity: 1;
	transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
	transform: scale(0.8);
	opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}



.archive{
	list-style: none;
	line-height: 0;
}
.archive > *{
	line-height: 1;
}
.archive a{
	display: block;
}
.archive figure img{
	display: block;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.archive.work{
	text-align: left;
}
.archive.work figure{
	overflow: hidden;
}
.archive.work figure img{
	display: block;
	width: 100%;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.archive.work strong{
	display: block;
	margin: 20px 0 15px;
	color: #07b7b0;
	font-weight: 400;
	line-height: 1.5;
}
.archive.work em{
	display: block;
	margin-bottom: 10px;
	font-size: 1.3rem;
	line-height: 1.5;
}
.archive.work span{
	display: inline-block;
	margin: 0 10px 5px 0;
	font-size: 1.3rem;
	line-height: 1;
	white-space: nowrap;
}

.archive.news{
	max-width: 1050px;
}
.archive.news li{
	font-weight: 400;
	font-size: 1.8rem;
}
.archive.news li + li{
	margin-top: 60px;
}
.archive.news a{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
}
.archive.news figure{
	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	-o-flex-shrink: 0;
	flex-shrink: 0;
	-webkit-flex-basis: 200px;
	-moz-flex-basis: 200px;
	-ms-flex-basis: 200px;
	-o-flex-basis: 200px;
	flex-basis: 200px;
	margin-right: 35px;
}
.archive.news figure img{
	border: 1px solid #d3d3d3;
}
.archive.news time{
	display: inline-block;
	margin-right: 25px;
	color: #818181;
	line-height: 1;
}
.archive.news em,
#post_head em{
	display: inline-block;
	margin-right: 10px;
	padding: 15px 30px;
	border: 1px solid #07b7b0;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	border-radius: 25px;
	color: #07b7b0;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
}
.archive.news strong{
	display: block;
	margin-top: 25px;
	line-height: 1.8;
}

.sns{
	margin: 0 0 50px auto;
}
.sns a{
	display: inline-block;
	margin-left: 20px;
	padding: 0;
	vertical-align: middle;
}
.sns a:first-child{
	margin-left: 0;
}
.sns a[target="_blank"]:after{
	content: none;
}

.slick-slider{
	/* margin-left: -2.5%; */
}
.slick-slider .slick-list{
	/* position: relative; */
	margin-left: -20%;
}
.slick-slider .slick-slide > *{
	display: block;
	position: relative;
	left: -2px;
	margin-left: 4%;
}
.slick-slider .prev,
.slick-slider .next{
	display: inline-block;
	position: absolute;
	top: 10vw;
	z-index: 10;
	overflow: hidden;
	/* margin-top: -43px; */
	width: 86px;
	height: 86px;
	border: 4px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: no-repeat center center #07b7b0;
	color: #fff;
	text-indent: 101%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.slick-slider .prev{
	left: 4%;
	background-image: url(../img/arrow_prev.svg);
}
.slick-slider .next{
	right: 4%;
	background-image: url(../img/arrow_next.svg);
}
