@charset "UTF-8";
/* CSS Document */

html,body{
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6,p{
	padding: 0;
	margin: 0;
}

body{
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 12pt;
	line-height: 2em;
	
	font-feature-settings: "palt";/*カーニング*/
}

h1{
	font-size: 2em;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}
h2{
	letter-spacing: 0.1em;
	margin: 1em 0;
}
p{
	margin: 1.5em 0;
	letter-spacing: 0.05em;
}
.none{
	display: none;
}
.gray{
	background-color: #eee;
}



.sec-inne{
	max-width: 1500px;
	width: calc(100% - 80px) ;
	padding: 40px;
	margin: 0 auto;
}



.top-flex{
	position: relative;
	/*height: 600px;*/
}
.top-left{
	position: absolute;
	z-index: 50;
	top: 50%;
	transform: translateY(-50%);
	
	background-color: rgba(255,255,255,0.8);
	padding: 1em 2em 0em 0em;
}



.dekiru{
	width: 100%;
	display: flex;
	column-gap: 1em;
}
.dekiru-list{
	width: calc(100%/3 - 3em) ;
	margin-bottom: 1em;
	padding: 1.5em;
	display: block;
	background-color: #fff;
}
.dekiru-list img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}
.dekiru-list ul{
	margin-left: 1.5em;
}



.prof{
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}
.prof dl{
	display: flex;
}
.prof dt{
	width: 120px;
}
.prof dd{
	width: calc(100% - 120px) ;
}
.prof .name input{
	font-size: 1em;
	padding: 1em;
	border: 1px solid gray;
	border-radius:0.5em;
	width: calc(100%/3 - 2em) ;
}
.prof .mail input{
	font-size: 1em;
	padding: 1em;
	border: 1px solid gray;
	border-radius:0.5em;
	width: calc(100% - 2em) ;
}
.prof textarea{
	font-size: 1em;
	padding: 1em;
	border: 1px solid gray;
	border-radius:0.5em;
	width: calc(100% - 2em) ;
}
.prof .go input{
	font-size: 1em;
	padding: 1em;
	border-radius:0.5em;
	border: 1px solid gray;
}

@media screen and (max-width: 1000px) {
	body{
		font-size: 0.9em;
	}
	.none{
		display: block;
	}
	.top-left{
		padding: 2em 2em 1em 2em;
	}
	.dekiru{
		display: block;
	}
	.dekiru-list{
		width: calc(100% - 3em) ;
		display: flex;
	}
	.dekiru-left,.dekiru-right{
		width: calc(100%/2 - 0px) ;
	}
	.dekiru-right{
		margin-left: 1.5em;
	}
}

@media screen and (max-width: 768px) {
	body{
		font-size: 0.8em;
	}
	
	.top-flex{
		height: 500px;
	}
	.top-left{
		padding: 0;
	}
	.dekiru-list{
		display: block;
	}
	.dekiru-left,.dekiru-right{
		width: calc(100%/1 - 0px) ;
	}
	.dekiru-right{
		margin-left: 0;
	}
	.prof dl{
		display: block;
	}
	.prof dt{
		width: 100%;
	}
	.prof dd{
		width: 100%;
		margin: 0;
		padding: 0;
	}
	input,textarea{
		font-size: 0.8em;
	}
}