/*@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic|Source+Code+Pro:400");*/




/*
	Read Only by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Layout */




/* Basic */

	html{
		scroll-behavior: smooth;
		scroll-padding-top: 1rem;
		margin:0;
	}

	body {
		background: #F4F5F7;
		display:flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	body, input, select, textarea {
		color: #222;
		font-family: 'Meiryo', 'Osaka', sans-serif;
		font-size: 16pt;
		font-weight: 400;
		line-height: 1.75em;
		margin:0;
	}

	a {
		
		transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		color: inherit;
	}

	a:hover {
		border-bottom-color: transparent;
		color: #4acaa8 !important;
	}

	strong, b {
		color: #000;
		font-weight: 700;
	}

	p {
		margin: 0 0 2.25em 0;
	}

	h1, h2, h3, h4, h5, h6 {
		color: #222;
		font-weight: 700;
		line-height: 1em;
		margin: 0 0 0.5625em 0;
	}

	h2 {
		font-size: 1.5em;
		line-height: 1.5em;
	}

	h3 {
		font-size: 1.5em;
		line-height: 1.5em;
	}

	h4 {
		font-size: 1.25em;
		line-height: 1.5em;
	}

	h5 {
		font-size: 0.9em;
		line-height: 1.5em;
	}

	h6 {
		font-size: 0.7em;
		line-height: 1.5em;
	}



	hr {
		border: 0;
		border-bottom: solid 2px #f4f4f4;
		margin: 2.25em 0;
	}



	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}




/* List */


	ul {
		list-style: disc;
		margin: 0 0 2.25em 0;
		padding-left: 1em;
	}

	ul li {
		padding-left: 0.5em;
	}




	ul.actions {
		cursor: default;
		list-style: none;
		padding-left: 0;
	}

	ul.actions li {
		display: inline-block;
		padding: 0 1.125em 0 0;
		vertical-align: middle;
	}

	ul.actions li:last-child {
		padding-right: 0;
	}

	dl {
		margin: 0 0 2.25em 0;
	}

/* Table */

	.table-wrapper {
		overflow-x: auto;
	}

	table {
		margin: 0 0 2.25em 0;
		width: 100%;
	}

	tr {
		border: solid 2px #f4f4f4;
		border-left: 0;
		border-right: 0;
	}

		tr:nth-child(2n + 1) {
			background-color: #fafafa;
		}

	td {
		padding: 0.75em 0.75em;
	}

	th {
		color: #777;
		font-size: 0.9em;
		font-weight: 700;
		padding: 0 0.75em 0.75em 0.75em;
		text-align: left;
	}

	thead {
		border-bottom: solid 4px #e4e4e4;
	}

	tfoot {
		border-top: solid 4px #e4e4e4;
	}



/* Features */

	.features {
		margin-bottom: 2.25em;
	}

	.feature__article{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
		gap: 10px;
	}


/* card */
	.card{
		overflow: hidden;
		border-radius: 3px;
		box-shadow: 0 4px 15px rgba(0,0,0,.2);
	}

	.card-body{
		padding: 1.5rem;
	}

/* button */
.button-outline{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	padding: 8px 24px;
	color: #222;
	text-align: center;
	overflow-wrap: anywhere;
	background-color: transparent;
	outline: 2px solid #99cc66;
	outline-offset: -2px;
}




@media (any-hover: hover) {
	.button-outline {
	  transition: background-color 0.2s;
	}
  
	.button-outline:hover {
		color:#222;
		background-color: #dcedd2;
	}
  }


body{
	display: grid;
}

@media screen and (max-width:425px) {
	body{
		grid-template-rows: minmax(300px calc(100vh / 2)) auto-fill;
		grid-template-areas:
			"header"
			"main";
	}


	#wrap{
		width: 100vw;
	}

	#site-navi{
		width:100vw;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-content: flex-start;
	}

	#site-navi__logo{
		width:4rem;
		margin: 1rem auto ;
	}


	.nav-area__list{
		width:100%;
		display:block;
		margin:0;
		padding:0;
	}
	.nav-area__link{
		margin:0;
		padding:0;
	}
}

@media screen and (min-width:426px) {
	body{
		grid-template-columns: minmax(300px calc(100vw * 2 / 3)) calc(100vw / 3);
		grid-template-areas:
			"main header";
	}


	#wrap{
		width: calc(100vw * 2 / 3);
	}

	#site-navi{
		width:calc(100vw / 3);
		height: 100vh;
		position: fixed;
		top:0;
		right: 0;
	}

	#site-navi__logo{
		width: 6rem;
		margin: 1.25rem auto ;
	}

}


#wrap{
	grid-area: main;
}
/* Header */

#site-navi {
	grid-area: header;

	background: #99cc66;
	color: #222;
	text-align: center;
}

#site-navi__logo{
	border-radius: 100%;
	overflow: hidden;
	display: block;
}

#site-navi__title{
	color:#222;
	font-size: 2rem;
}


	

.nav-area{
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-area__list{
	border-top: solid 1px #9c6;
	padding: 0;
}
.nav-area__link{
	transition: none;
	border: 0;
	display: block;
	padding: calc(100vh /50) 0;
	text-decoration: none;
	background: #fff;
	color: #99cc66;
	font-weight:900;
}


.nav-area__list:last-child {
	border-bottom: solid 1px #9c6;
}

/* section */

.section{
	margin: calc(100vh /50) calc(100vw /30);
}



/* One */

	#one:before {
		background-image: url("../../images/banner.png");
		background-position: top center;
		background-repeat: no-repeat;
		background-size: cover;
		content: '';
		display: block;
		height: 15em;
		width: 100%;
	}

/* Footer */

#footer-area {
	background: #fafafa;
    background-image: url("../../images/footer.png");
		border-top: 0;
		color: #fafafa;
		overflow: hidden;
		padding: 4em 0 2em 0;
	}

#footer-area__copyright {
	line-height: 1em;
	list-style: none;
	padding: 0;
	font-size: 0.8rem;
}



/* utility */
.fit-image{
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	object-fit:cover;
}

.w-100{
	width:100%;
}