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

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Crimson Text','Noto Serif JP', "游明朝", serif;
}

header {
	padding: 16px;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 30px;
}

body {
	margin-left: auto;
	margin-right: auto;
	background: #ffffff;
}

.style-logo {
	margin: 0 auto;
	display: block;
	width: 80%;
}

/*
.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}
*/


.hero {
	background-image: url(images/hero.jpg);
	background-size: cover;
	padding: 20px 20px 50px 20px;
/*	height: 350px;
*/	color: #FFFFFF;
	text-align: center;
}

h1 {
	font-size: 57px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 60px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-top: 35px;
	margin-bottom: 23px;
}

h3 {
	font-size: 18px;
	font-weight: 200;
	margin-bottom: 20px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 35px;
}

p {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 35px;
}

.subtitle{
	text-align: center;
	padding: 10px;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
}

.footer-text {
	font-size: 13px;
	text-align: center;
	margin: 0 auto 20px auto;
}

.col {
	width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.grid-parent{
	margin: 0 auto;
	width: 300px;
	display: grid;
	grid-template-columns: 1fr;
}
	.grid-parent p{
		margin-bottom: 0;
	}
	p.grid-left{
		grid-column: 1;
		text-align: left;
	}
	p.grid-right{
		grid-column: 3;
		text-align: left;
	}


/*Tablet View*/

@media (min-width: 768px){
	body {
/*		max-width: 778px;
*/	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}

	.hero {
		height: 600px;
	}

	.style-logo {
		width: 30%;
	}
	
}

/*ローディングアニメーション*/

.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
}

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #444444;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}