:root {
	--text-color: #595757;
}
html {
    font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
    font-size: 2.3vw;
	color: var(--text-color);
	background-color: #FFFFFF;
}
a {
	text-decoration: none;
	color: var(--text-color);
    transition: 0.3s;
}
a.textlink:hover {
	text-decoration: underline;
}
p,ul,ol,th,td {
	line-height: 2em;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
}
p.clear {
	margin-bottom: 1em;
}
.textcenter {
	text-align: center;
}
.textright {
	text-align: right;
}
.textleft {
	text-align: left;
}
img.aligncenter {
	display: block;
	margin: 1em auto;
}


/** layout **/
section {
	width: 100%;
	display: block;
	margin: 0 auto;
}
header{
	text-align: center;
	position: relative;
}

.logo {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%,-50%);
}
header {
	width: 100%;
	height: 200px;
}
header .logo {
	max-width: 520px;
}

.wrap {
	max-width: 1060px;
	width: 90%;
	display: block;
	margin: 0 auto;
}

.sentence {
	text-align: center;
}

@media only screen and (max-width: 751px){
	body {
		font-size: 4.11vw;
	}
	header .logo {
		max-width: 720px;
	}
	
	
}


