@charset "utf-8";

html {

}
body {
	display: block;
	background: #EEF9FF;/*#b0e0e6*/
	color: #5B5B5B;
	font-family: "メイリオ","游ゴシック・游明朝", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing:0.3rem;
}
main {
	margin: 40px 0 20px;
}
section {
	position: relative;
	padding: 20px;
}
a {
	color: #FC9D9D;
}
a:hover {
	text-decoration: underline #FC9D9D;
}
/*---------------------------------
header
---------------------------------*/
header > div {
	position: fixed;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 10px;
	background: rgba(170,214,236,0.9);
	box-shadow: 3px 3px 8px rgba(170,214,236,0.5);
	z-index: 2;
}
/*---------------------------------
h1.h2.h3
---------------------------------*/
.title {
	display: block;
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: solid 1px #c0c0c0;
	font-family: "游明朝";
	font-size: 2.5rem;
}
h3,h4 {
	margin-bottom: 20px;
	font-family: "游明朝";
	font-size: 2.5rem;
}
/*---------------------------------
#index
---------------------------------*/
#index > div:first-of-type {
	height: 50vh;
}
#index > div:first-of-type span {
	display: block;
	width: 100%;
	max-width: 600px;
	max-height: 20px;
	margin: 20px auto;
	color: #aad6ec;
	font-family: "游明朝";
	font-size: 1.8rem;
	text-align: center;
}
/*---------------------------------
slick.js
---------------------------------*/
.slick_box {
	position: relative;
	margin: 20px 0 50vh;
}
.slick {
	display: block;
	width: 80%;
	max-width: 700px;
	height: 400px;
	margin: 0 auto;
	padding: 40px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 3px 3px 8px rgba(170,214,236,0.5);
}
@media screen and (max-width: 768px) {
	.slick {
		font-size: 1.3rem;
	}
}
/*---------------------------------
#contact
---------------------------------*/
#contact {
	margin-top: 100px;
}
#contact > div:first-of-type {
	display: block;
	max-width: 800px;
	margin: 0 auto 20px;
}
.form_box {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 40px auto;
}
.form_box dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border: solid 2px #abd6ec;
}
.form_box dl dt {
	width: 30%;
	padding: 10px;
	border-right: solid 2px #abd6ec;
	border-bottom: solid 2px #abd6ec;
}
.form_box dl dt:last-of-type {
	border-bottom: none;
}
.form_box dl dt span {
	color: #ff7f7f;
	font-weight: bold;
}
.form_box dl dd {
	width: 70%;
	border-bottom: solid 2px #abd6ec;
	background: #ffffff;
}
.form_box dl dd:last-child {
	height: 200px;
	border-bottom: none;
}
.form_box dl dd input,
.form_box dl dd textarea {
	width: 100%;
	height: 100%;
	padding: 10px;
}
::placeholder {
	color: #c0c0c0;
}
.form_box dl dd textarea {
	resize: none;
}
.form_btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.form_btn input {
	width: 100px;
	margin: 20px 10px;
	padding: 5px;
	border: solid 2px #abd6ec;
	border-radius: 5px;
	background: #ffffff;
	text-align: center;
}
/*---------------------------------
footer
---------------------------------*/
footer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #5B5B5B;
	font-size: 1.5rem;
	color: #EEF9FF;
}
.pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	background: #5B5B5B;
}
.pagetop::before {
	position: absolute;
	top: 45%;
	left: 55%;
	transform: rotate(-45deg) translate(-45%, -55%);
	width: 15px;
	height: 15px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	content: "";
}
address {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 1000px;
	padding: 20px;
}
address ul {
	width: 30%;
}
.f_logo {
	width: 30%;
	max-width: 220px;
	height: 90px;

}
footer > span {
	display: block;
	width: 100%;
	font-size: 1.3rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	address ul {
		width: 100%;
		margin-top: 20px;
	}
	.f_logo {
		width: 50%;
	}
	footer > span {
		font-size: 1.1rem;
	}
}