@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body, html {
	width: 100%;
	background: #f7f6f4;
	overflow-x: hidden;
	font-family: 'Noto Serif JP', serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 0.9em;
	letter-spacing: 0.2em;
	color: #333;
	line-height: 1.8;
	box-sizing: border-box;
		font-weight: normal;
}
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
li {
	list-style: none
}
a {
	text-decoration: none;
	color: #333;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
::-moz-selection {
background: rgba(150, 127, 96, 0.3);
}
::selection {
	background: rgba(150, 127, 96, 0.3);
}
/* =======================================
	共通
======================================= */
h2 {
	text-transform: uppercase;
	font-family: 'Lora', serif;
	font-size: 1.5em;
	letter-spacing: 0.2em;
}
h2 {
	margin: 40px 0;
}

h3 {
	margin: 30px 0;
	font-size: 1.6em;
	font-weight:normal;
	letter-spacing:0.5em;
	
}
.contentsTitle{
	position: relative;
}
.contentsTitle::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 46%;
  left: -40px;
  transform: translateY(-50%);
}
h4{
	margin-bottom:10px;
			font-family: 'Noto Serif JP', serif;

		font-size:1.1em
}
.inner {
	position: relative;
	width: 70%;
	margin: 0 auto;
}
.contents {
	margin: 80px 0;
}
.consept{
	line-height:2.5;
}
.aboutTxt{
	line-height:2.5;
}
/* =======================================
	contents
======================================= */
.block {
	margin-bottom: 40px;
	background:#FFFDFB;
	padding:20px;
}
.block_inner {
	margin-left: 5%;
}
table th {
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
}
table{
	margin-top:20px;
}
table th, table td {
	padding: 10px 10px 10px 20px;
}
.s_txt{
	margin-left:10px;
	font-size:0.7em
}
.info_mail{
	margin-top:40px;
}
.link{
	text-decoration:underline;
		-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.link:hover {
	color: #85A2C3
}
.map_img{
	width:80%;
	height:auto;
	margin: 0 auto;
}
.line{
	margin-top:20px;
}
.line img{
	width:100px;
}
.copyright {
	text-align: center;
	margin: 80px 0;
}
/* =======================================
	navi
======================================= */
.header {
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-transform: uppercase;
	z-index: 9999;
	font-family: 'Lora', serif;
}
.logo{
	width:80px;
	height:auto;
		z-index:9999;
}
.h_inner {
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}
.nav-button {
	display: none;
}
.nav a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
}
.nav li a {
	letter-spacing: 4px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.nav li a:hover {
	color: #85A2C3
}
.nav li {
	display: inline-block;
	margin: 0 10px;
}
.nav-wrap.open {
	display: block;
}
.nav-wrap.close {
	display: none;
}
@media screen and (max-width: 480px) {
.h_inner {
	width: 95%;
}
.nav-button {
	display: block;
	cursor: pointer;
}
.nav-wrap {
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
}
.nav-wrap .nav {
	height: 100%;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}
.nav-wrap li {
	display: block;
	margin: 3em;
		text-align:center;
}
.nav-wrap li a {
	color: #f3f3f3;
	font-size: 14px;
}
/*メニューボタン*/
.nav-button, .nav-button span {
	display: inline-block;
	transition: all 0.4s;
	box-sizing: border-box;
}
.nav-button {
	z-index: 20;
	position: relative;
	width: 40px;
	height: 36px;
}
.nav-button span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #333;
	border-radius: 2px;
}
.nav-button span:nth-of-type(1) {
	top: 0;
}
.nav-button span:nth-of-type(2) {
	top: 16px;
}
.nav-button span:nth-of-type(3) {
	bottom: 0;
}
.nav-button.active span:nth-of-type(1) {
	-webkit-transform: translateY(16px) rotate(-45deg);
	transform: translateY(16px) rotate(-45deg);
}
.nav-button.active span:nth-of-type(2) {
	opacity: 0;
}
.nav-button.active span:nth-of-type(3) {
	-webkit-transform: translateY(-16px) rotate(45deg);
	transform: translateY(-16px) rotate(45deg);
}
}
@media screen and (max-width: 480px) {
	.inner {
	position: relative;
	width: 85%;
	margin: 0 auto;
}
h3 {
	margin: 30px 0;
	font-size: 1.5em;
	font-weight:normal;
	letter-spacing:0.5em;
}
}
.name{
	font-size:16px;
	margin-bottom:10px;
}