@charset "utf-8";
/*================================================================

init

=================================================================*/
/* ----------------------------------
  reset
---------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
 /* font-size: 100%;
  font: inherit;*/
  v/*ertical-align: text-bottom;*/
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
/*blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: top;
}
a:active,
a:hover {
  outline: 0;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button,
select {
  text-transform: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* ----------------------------------
  Site base
---------------------------------- */
html{
	font-size: 80%; 
}

body {
	position: relative;
	/*font-family: "メイリオ", meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;*/
	font-family: "Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
	line-height: 1.7;
	color: #2f2f2f;
	background: #fff;
    margin: 0;
	padding: 0;
}
/*body,
html {
  overflow: hidden;
}*/
a,
a:link,
a:visited {
  text-decoration: none;
  color: #2f2f2f;
  text-decoration: none;
}
button {
  display: inline-block;
  border: none;
  border-radius: 0;
}
p {
  margin-top: 10px;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.g-mt-0 {
  margin-top: 0 !important;
}
.eng-font{
	font-family: 'Mulish', sans-serif;
}


/*=============================
#header
=============================*/
header{
	height: 70px;
	background: #f2f2f2;
	padding: 0 60px;
	position: sticky;
	top: 0;
	box-shadow: 0px 1px 10px #b7b7b7;
	z-index: 1000;
}
header nav{
	display: flex;
	justify-content: space-between;
	line-height: normal;
	align-items: flex-end;
	padding-top: 12px;
	position: relative;
	z-index: 1000;
	height: 50px;
}
header nav p{
	margin: 0;
}
header nav p a{
	font-size: 3em;
	font-family: 'Montserrat Alternates', sans-serif;
}
header nav p span{
	font-weight: bold;
	margin-left: 10px;
	font-size: 1em;
}

header .main-nav ul{
	display: flex;
	margin-bottom: 5px;
}
header .main-nav ul li{
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	margin-left: 30px;
	position: relative;
}

header .main-nav ul li:not(:first-child)::after{
	content: "/";
	position: absolute;
	top: 1px;
	left: -17px;
	color: #2f2f2f;
	font-size: 9px;
}
header .main-nav ul li a{
	transition: all .3s;
}
header .main-nav ul li a:hover{
	color: #a38f00;
	transition: all .3s;
}
header .main-nav ul li .underline{
	display: inline-block;
  padding-bottom: 2px;
  position: relative;
}
header .main-nav ul li .underline::after{
  content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background:#a38f00;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}
header .main-nav ul li .underline:hover::after {
  transform: scale(1, 1);
}

.nav-toggle .btn-trigger{
	display: none;
}
.btn-trigger{
	display: none;
}
.sp-nav{
	display: block;
	position: fixed;
	background-color: #fff;
	top: -100vh;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding: 30px;
	opacity: 0.9;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
	font-size: 1.4em;
	transition: all .5s;
	opacity: 0;
	pointer-events: none;
	z-index: 10;
}

/*=============================
#welcome
=============================*/
#welcome{
	background-color: #ffdf00;
	height: 45vw;
	position: relative;
}
#welcome .content{
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#welcome .content .l-block,#welcome .content .r-block{
/*	height: 60vh;*/
	width: 35vw;
/*	margin-right: 100px;*/
}
#welcome .content .r-block img{
	width: 100%;
}
#welcome .content .l-block .cloud{
	padding-right: 50px;
}
#welcome .content .l-block h1{
	margin-left: 3vw;
	font-weight: bold;
	font-size: 2.2vw;
}
#welcome .content .l-block h1 span{
	background: linear-gradient(to top, #fff571 0% 50%, rgba(0,0,0,0) 50% 100%);
	padding: 0 10px;
}
#welcome .arrow-box{
	position: absolute;
	top: 45vw;
	left: calc(50vw - 25px);
}
#welcome .arrow{
	width: 50px;
	height: 50px;
	margin: 0 auto;
	position: relative;
	top: -30px;
}
#welcome .scroll{
position: absolute;
bottom: 30px;
right: -50px;
transform: rotate(90deg);
width: 200px;
display: flex;
}
#welcome .scroll-text{
letter-spacing: 2px;
font-family: 'Montserrat Alternates', sans-serif;
font-weight: bold;
}
#welcome .scroll-bar{
	background-color: #2f2f2f;
	height: 1px;
	width: 200px;
	display: block;
	position: relative;
	top: 10px;
	left: 5px;
	opacity: 0.5;
}


/*=============================
main
=============================*/
main{
	padding-top: 100px;
}
main section{
	margin: 0 auto;
	margin-top: -100px;
	padding-top: 100px;
	margin-bottom: 100px;
	text-align: center;
}
main section h2{
	font-weight: bold;
	text-align: center;
	font-size: 1.3em;
	letter-spacing: 0.1em;
	position: relative;
	margin-bottom: 40px;
}
main section h2::after{
	content: "";
	width: 70px;
	height: 2px;
	background-color: #f8ba2c;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%, -50%);
}
main section h3{
	text-align: center;
	font-size: 1.8em;
	margin-bottom: 40px;
}
main section h4{
	text-align: center;
	font-size: 1.8em;
	font-weight: bold;
	position: relative;
	margin: 0 auto;
	margin-bottom: 50px;
	padding-left: 25px;
	padding-right: 25px;
	display: inline-block;
	font-feature-settings: "palt" 1;
	letter-spacing: 1px;
}
main section h4::before{
	content: "";
	width: 9px;
	height: 3.4em;
	background-color: #ffdf00;
	position: absolute;
	top: 0;
	left: 0;
}
main section h4::after{
	content: "";
	width: 9px;
	height: 3.4em;
	background-color: #ffdf00;
	position: absolute;
	top: 0;
	right: 0;
}
main section h5{
	font-size: 1.6em;
	font-weight: bold;
	background-color: #ffdf00;
	padding: 0 10px;
	display: inline-block;
}
main section .content .textblock{
	border: 2px solid #ffdf00;
	margin-top: 10px;
	margin-bottom: 30px;
	padding: 5px 15px 15px 15px;
	display: flex;
	justify-content: space-between;
	line-height: 1.8em;
	font-size: 1.1em;

}
main section .content{
	max-width: 700px;
	margin:0 auto;
	text-align: justify;
}
main section .content .textblock .l-block{
	width: 48%;
}
main section .content .textblock .r-block{
	width: 48%;
}
main section h4 span{
	background-color: #fff571;
	padding: 0 5px;
}

/*=============================
#about
=============================*/
#about .h3title{
	text-align: center;
}
#about h3{
	line-height: 2em;
}
#about h3 ruby{
	ruby-position:under;
}
#about h3 ruby rb{
	font-size: 2em;
	font-family: 'Montserrat Alternates', sans-serif;
}
#about .h4pattern{
	margin: 60px 0 30px 0;
}
#about h4 span{
	background-color: #fff571;
	padding: 0 5px;
	font-family: 'Montserrat Alternates', sans-serif;
}
#about .pheadline{
	font-size: 1.4em;
	line-height: 2em;
}
#about .pheadline{
	font-size: 1.4em;
	line-height: 2em;
}
#about .p-btn{
	font-size: 1.4em;
	line-height: 1.5em;
	background-color: #efe8bb;
	width: 400px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 30px;
	padding: 10px 30px;
	font-weight: bold;
}
#about .p-notice{
	font-size: 1.0em;
	line-height: 1.4em;
	width: 80%;
	margin: 10px auto 30px;
	padding-bottom: 40px;
}
#about .btn{
	font-size: 1.4em;
	line-height: 1.5em;
	background-color: #ffdf00;
	width: 200px;
	padding: 10px 30px;
	font-weight: bold;
	margin: 40px 0;
	display: inline-block;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 20px;
	border: 2px solid #ffdf00;
	transition: 0.5s all;
}
#about .btn:hover{
	transition: 0.5s all;
	background-color: #fff;
	border: 2px solid #ffdf00;
}
#about .headline{
	width: 90%;
	margin: 0 auto;
	margin-top: 5px;
}
#about .headline p{
	text-align: center;
	background-color: #9e9e9e;
	width: 65%;
	margin: 0 auto;
	position: relative;
	top: 13px;
	border-radius: 4px;
	font-weight: bold;
	color: #fff;
}
#about .headline ul{
	background-color: #dadada;
	padding: 10px 25px;
	border-radius: 6px;
	padding-top: 20px;
	font-weight: bold;
}
#about .headlinev2 ul li:last-child {
	font-weight: normal;
	text-align: center;
	font-size: 0.8em;
}
#about .headlinev2 p{
	background-color: #a38f00;
	width: 80%;
	color: #fff;
}
#about .headlinev2 ul{
	background-color: #efe8bb;
	padding-top: 40px;
}
#about .headlinev2 ul li .zreotext{
	position: relative;
}
#about .headlinev2 ul .spantext{
	position: absolute;
	font-size: 11px;
	top: 5px;
	left: -36px;
	color: #e73a46;
}
#about .headlinev2 ul .zreotext{
	font-size: 3em;
}
#about .headlinev2 ul span img{
	width: 65%;
	position: absolute;
	top: -2px;
	right: 4px;
}
#about .content .l-block{
	margin-top: 36px;
	font-size: 1.2em;
	line-height: 1.8em;
	width: 52%;
	margin-bottom: 30px;
	margin-left: 20px;
	margin-right: 20px;
}
#about .content .l-block span{
	background-color: #fff571;
	padding: 0 5px;
	font-family: 'Montserrat Alternates', sans-serif;
}
#about .content .r-block{
	position: relative;
}
#about .content .r-block .aboutimg{
	position: absolute;
	height: 70%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*=============================
#servises
=============================*/
#servises{
	background-color: #f2f2f2;
	padding-bottom: 100px;
}
#servises .pheadline{
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
	font-size: 1.2em;
	margin-bottom: 50px;
}
#servises .content{
	background-color: #fff;
	border-radius: 10px;
	position: relative;
	padding: 25px;
	box-sizing: border-box;
	margin-bottom: 70px;
}
#servises .content .number1{
	font-size: 2.6em;
	line-height: 1.5em;
	font-weight: bold;
	display: block;
	width: 50px;
	height: 50px;
	background-color: #ffdf00;
	text-align: center;
	border-radius: 25px;
	position: absolute;
	top: -25px;
	left: -15px;
}
#servises .content .number2{
	font-size: 1.8em;
	line-height: 1.8em;
	font-weight: bold;
	display: block;
	width: 40px;
	height: 40px;
	background-color: #ffdf00;
	text-align: center;
	border-radius: 32px;
	position: absolute;
	top: -17px;
	left: 21px;
}
#servises .content .l-block p{
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}
#servises .content .r-block p{
	font-size: 1.3em;
	margin-top: 30px;
}

#servises .content .pricetext{
	margin-top: 10px;
	font-size: 1.2em;
}
#servises .content .pricetext p{
	margin-top: 0;
}
#servises .content .pricetext p:first-child{
	font-weight: bold;
	border-bottom: 1px solid #a38f00;
	margin-bottom: 10px;
}
#servises .content .pricetext p span{
	font-weight: normal;
	font-size: 0.8em;
}
#servises .content .content-inner{
	display: flex;
	justify-content: space-between;
}
#servises .content .content-inner .l-block{
	width: 48%;
}
#servises .content .content-inner .r-block{
	width: 48%;
}
#servises .content .content-inner img{
	height: 100px;
	margin-bottom: 30px;
	margin-top: 20px;
}
#servises .content .content-inner .img2c{
	height: 80px;
}

/*=============================
#qaformat
=============================*/
#qaformat .pheadline{
	max-width: 640px;
	margin: 0 auto;
	text-align: left;
	font-size: 1.3em;
	margin-bottom: 50px;
	line-height: 2em;
}
#qaformat .pheadline span{
	background-color: #fff571;
	padding: 0 5px;
}
#qaformat h4 span:first-child{
	font-family: 'Montserrat Alternates', sans-serif;
}
#qaformat .content{
	margin-bottom: 70px;
	display: flex;
	justify-content: space-between;
}
#qaformat .content .imageflex{
	display: flex;
	justify-content: space-between;
}
#qaformat .content .imageflex li{
	width: 30%;
}
#qaformat .content .imageflex li img{
	width: 100%;
	box-shadow: 0px 0px 5px 0px #aaa;
}
#qaformat .content .l-block,
#qaformat .content .r-block{
	width: 48%;
	background-color: #fff571;
	padding: 10px;
	text-align: center;
	box-sizing: border-box;
	border-radius: 10px;
}
#qaformat .content .l-block p,
#qaformat .content .r-block p{
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 10px;
}
#qaformat .content .l-block-inner{
	display: flex;
	justify-content: space-evenly;
	line-height: 2em;
	text-align: left;
	margin-bottom: 10px;
}
#qaformat .content .l-block-inner ul li{
	position: relative;
}
#qaformat .content .l-block-inner ul li::after{
	content: "";
	position: absolute;
	left: -10px;
	top: 0.8em;
	width: 4px;
	height: 4px;
	background-color: #2f2f2f;
}
#qaformat .bottomh4{
	margin-bottom: 100px;
}

/*=============================
#contact
=============================*/
#contact{
	background-color: #f2f2f2;
	padding-bottom: 130px;
}
#contact .pheadline{
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.2em;
	margin-bottom: 50px;
}
#contact .btn{
	font-size: 1.4em;
	line-height: 1.5em;
	background-color: #ffdf00;
	width: 200px;
	padding: 10px 30px;
	font-weight: bold;
	margin: 0 auto;
	display: block;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 70px;
	border: 2px solid #ffdf00;
	transition: 0.5s all;
}
#contact .btn:hover{
	transition: 0.5s all;
	background-color: #fff;
	border: 2px solid #ffdf00;
}

#contact h4::before , #contact h4::after{
	width: 0;
}
#contact h4{
	margin-bottom: 10px;
}
#contact .bottomheadline{
	margin-bottom: 0;
}

/*=============================
footer
=============================*/
footer{
	text-align: center;
	background-color: #ffdf00;
	margin-top: -100px;
	padding-top: 20px;
	padding-bottom: 20px;
}
footer p{
	font-weight: bold;
	margin: 0;
}
footer p span:first-child{
	font-family: 'Montserrat Alternates', sans-serif;
}


/*=============================
.btn-trigger
=============================*/
/*
.btn-trigger {
	position: absolute;
	top:10px;
    right: -50px;
    width: 50px;
    height: 40px;
	cursor: pointer;
	z-index: 200;
	border-radius: 0 20px 20px 0;
	background: #fff;
	box-shadow: 6px 0px 10px -6px rgba(0,0,0,0.6);
}

.btn-trigger span {
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 10px;
}
.btn-trigger span:nth-of-type(2) {
  top: calc(20px - 1px);
}
.btn-trigger span:nth-of-type(3) {
  bottom: 10px;
}
.btn-trigger.on  span:nth-of-type(1) {
  -webkit-transform: translateY(calc(9px)) rotate(-45deg);
  transform: translateY(calc(9px)) rotate(-45deg);
}
.btn-trigger.on  span:nth-of-type(2) {
  opacity: 0;
}
.btn-trigger.on  span:nth-of-type(3) {
  -webkit-transform: translateY(calc(-9px)) rotate(45deg);
  transform: translateY(calc(-9px)) rotate(45deg);
}
#aplModal .btn-trigger {
	position: absolute;
	left: auto;
    right: 0;
    background: none;
    width: 40px;
	box-shadow: none;
}
#aplModal .btn-trigger span {
	left: 0;
	background-color: #fff;
}
*/










@media screen and (max-width: 900px) {
	header{
		padding: 0 30px;
	}
	header .main-nav{
		display: none;
	}	
	header .nav-toggle{
		display: block;
    position: relative;
    width: 30px;
    height: 26px;
    cursor: pointer;
		top: -10px;
	}
	header .nav-toggle span{
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #2f2f2f;
		border-radius: 4px;
		display: inline-block;
		transition: all .5s;
		box-sizing: border-box;
	}
	header .nav-toggle span:nth-of-type(1) {
		top: 0;
	}
	header .nav-toggle span:nth-of-type(2) {
		top: 13px;
	}
	header .nav-toggle span:nth-of-type(3) {
		bottom: 0;
	}
/*
	.sp-nav{
		opacity: 0;
		transition: all .5s;
		font-size: 1.4em;
	}
*/
	.sp-nav ul{
		opacity: 0;
		transition: all .5s;
	}
	.sp-nav.open{
		display: block;
		opacity: 0.9;
		transition: all .5s;
		pointer-events: all;
		top: 70px;
	}
	.sp-nav ul{
		margin-top: 50px;
		opacity: 1;
	}
	.sp-nav ul li{
		margin-bottom: 30px;
	}
	.nav-toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
	}
	.nav-toggle.active span:nth-of-type(2) {
		opacity: 0;
	}
	.nav-toggle.active span:nth-of-type(3) {
		-webkit-transform: translateY(-13px) rotate(-45deg);
		transform: translateY(-13px) rotate(-45deg);
	}
	
}

@media screen and (max-width: 460px){
	#welcome{
		height: 560px;
	}
	#welcome .arrow-box{
		top: 560px;
	}
	#welcome .content{
		display: block;
	}
	#welcome .content .l-block, #welcome .content .r-block{
		text-align: center;
		width: 100%;
		display: flex;
    flex-wrap: wrap;
	}
	#welcome .content .l-block .cloud{
		order: 2;
	}
	#welcome .content .l-block .cloud img{
		width: 68%;
	}
	#welcome .content .l-block h1{
		font-size: 160%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 90vw;
	}
	#welcome .content .r-block{
		display: block;
	}
	#welcome .content .r-block img{
		width: 73%;
	}
	#welcome .scroll{
		right: -78px;
    font-size: 70%;
    bottom: 50px;
	}
	
}


@media screen and (max-width: 750px) {
	header{
		padding: 0 20px;
	}
	header nav p{
		font-size: 80%;
	}
	header nav p span{
		margin-left: 5px;
	}
/*
	#welcome{
		height: 560px;
	}
	#welcome .arrow-box{
		top: 560px;
	}
	#welcome .content{
		display: block;
	}
	#welcome .content .l-block, #welcome .content .r-block{
		text-align: center;
		width: 100%;
		display: flex;
    flex-wrap: wrap;
	}
	#welcome .content .l-block .cloud{
		order: 2;
	}
	#welcome .content .l-block .cloud img{
		width: 68%;
	}
	#welcome .content .l-block h1{
		font-size: 160%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 90vw;
	}
	#welcome .content .r-block{
		display: block;
	}
	#welcome .content .r-block img{
		width: 73%;
	}
	#welcome .scroll{
		right: -78px;
    font-size: 70%;
    bottom: 50px;
	}
*/
	
	
	main section h4{
		font-size: 125%;
    padding: 0 16px;
		text-align: justify;
	}
	main section h4::before{
		content: none;
	}
	main section h4::after{
		content: none;
	}
	main section h4 br{
		display: none;
	}
	main section .content{
		text-align: center;
    max-width: 86vw;
		position: relative;
	}
	main section .content .textblock{
		flex-wrap: wrap;
    margin-bottom: 50px;
	}
	#about .content .l-block{
		width: 100%;
    margin: 0;
    font-size: 100%;
    text-align: justify;
    margin-top: 10px;
	}
	#about .content .l-block{
		width: 100%;
    margin: 0;
    font-size: 100%;
    text-align: justify;
    margin-top: 10px;
		margin-bottom: 20px;
		margin-top: 30px;
	}
	#about .content .r-block{
		width: 100%;
    margin-bottom: 10px;
		height: 200px;
	}
	#about .content .r-block02{
		height: unset;
	}
	#about .headline{
		width: 100%;
	}
	#about .headline ul{
		padding-right: 0;
    padding-left: 0;
	}
	#about .content .r-block .aboutimg{
		height: 90%;
	}
	main section h5{
		position: absolute;
    top: 0;
    left: 0;
	}
	
	#about .h4pattern{
		margin-top: 0;
		margin-bottom: 10px;
	}
	#about .sp-pheadline{
		font-size: 110%;
    max-width: 90vw;
    margin: 0 auto;
	}
	#about .p-btn{
		width: 85%;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 120%;
    margin-top: 30px;
	}
	/*#about .btn{
		margin-bottom: 70px;
	}*/
	
	#servises{
		padding-bottom: 1px;
	}
	#servises .pheadline{
		font-size: 105%;
    max-width: 85vw;
    text-align: justify;
	}
	#servises .content{
		padding: 18px;
		margin-bottom: 30px;
	}
	#servises .content .content-inner{
		flex-wrap: wrap;
	}
	#servises .content .content-inner .l-block{
		width: 100%;
	}
	#servises .content .content-inner img{
		margin-top: 5px;
    margin-bottom: 5px;
		height: 86px;
	}
	#servises .content .content-inner .r-block{
		width: 100%;
    text-align: justify;
    margin-bottom: 20px;
	}
	#servises .content .r-block p{
		font-size: 100%;
	}
	#servises .content .pricetext p{
		font-size: 80%;
    text-align: justify;
	}
	#servises .content .content-inner .img2c{
		height: 66px;
	}
	
	#qaformat .pheadline{
		max-width: 90vw;
    font-size: 100%;
	}
	#qaformat h3{
		font-size: 130%;
		margin-bottom: 20px;
	}
	#qaformat .content{
		flex-wrap: wrap;
	}
	#qaformat .content .l-block, #qaformat .content .r-block{
		width: 100%;
	}
	#qaformat .content .l-block{
		margin-bottom: 30px;
	}
	#qaformat .bottomh4{
		margin-bottom: 50px;
	}
	#qaformat .content .imageflex{
		flex-wrap: wrap;
	}
	#qaformat .content .imageflex li{
		width: 100%;
    margin: 30px;
	}
	#qaformat .content .imageflex li img{
		box-shadow: 0px 1px 4px #545454;
	}
	
	
	#contact .pheadline{
		font-size: 100%;
	}
	#contact .bottomheadline{
		max-width: 90vw;
	}
	#contact{
		margin-bottom: 50px;
	}
	
}






