@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
color:#000000;
margin:0;
padding:0;
background:#FFFFFF;
font-family: 'Noto Sans JP', sans-serif;
text-align:center;
font-size:100%;
 -webkit-text-size-adjust: none;
 	position:relative;
	
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
	padding:0px;
	margin:0px;
	vertical-align:bottom;
}
a {
 	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
a:hover {
	opacity:0.8;
}

/*
html ----------------------------------------------------------*/



/* body base
===============================================================*/

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

.l-wrap {
	padding: 80px 0 100px 0;
}
.l-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: content-box;
}

@media screen and (max-width: 640px) {
	.l-wrap {
		padding: 40px 0 60px 0;
	}
	.l-inner {
		padding: 0 15px;
	}
}

.c-header {
	background: #e2b272;
	padding: 20px 10px 22px 10px;
}
.c-headerWrap {
	max-width: 1200px;
	margin: 0 auto;
}
.c-header h1 {
	font-size: 24px;
	line-height: 1.6;
	color: #FFF;
	font-weight: normal;
}
@media screen and (max-width: 640px) {
	.c-header {
		padding: 15px 10px 17px 10px;
	}
	.c-headerWrap {
	}
	.c-header h1 {
		font-size: 16px;
		line-height: 1.6;
	}
}


.topMenu {
	display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
	-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;	
	max-width: 800px;
	margin: 0 auto 80px auto;
}
.topMenu__item {
	display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display : flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;		
	height: 300px;
	border: #e2b272 2px solid;
	width: 48%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.topMenu__item + .topMenu__item {
	margin-left: 4%;
}
.topMenu__item:before {
	width: 50px;
	height: 50px;
	-webkit-transform: translate(50%, 50%) rotate(225deg);
	transform:translate(50%, 50%) rotate(225deg) ;
	content: '';
	display: block;
	position: absolute;
	bottom:0;
	right: 0;
	background: #e2b272;
}

.topMenu__item p {
	font-size: 24px;
	line-height: 1.6;
	padding: 0 20px;
}

.txt {
	font-size: 18px;
	line-height: 1.75;
}

@media screen and (max-width: 640px) {
	.topMenu {
		margin: 0 auto 30px auto;
	}
	.topMenu__item {
		height: auto;
		border: #e2b272 2px solid;
		width: 100%;
		box-sizing: border-box;
		padding: 20px;
	}
	.topMenu__item + .topMenu__item {
		margin-left: 0;
		margin-top: 20px;
	}
	.topMenu__item:before {
		width: 30px;
		height: 30px;
	}

	.topMenu__item p {
		font-size: 18px;
		line-height: 1.6;
		padding: 0 20px;
	}

	.txt {
		font-size: 14px;
		line-height: 1.75;
		padding-bottom: 30px;
	}	
}

.c-footer {
	background: #333;
	color: #FFF;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
	padding: 20px;
}


.reTop {
	position: fixed;
	right: 20px;
	bottom:20px;
}
.reTop a {
	width: 60px;
	height: 60px;
	background: #e2b272;
	display: block;
	border-radius: 50%;
	position: relative;
}
.reTop a:before {
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	content: '';
	vertical-align: middle;
	width: 16px;
	height: 16px;
	border-top: 4px solid #FFF;
	border-right: 4px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);	
}

@media screen and (max-width: 640px) {
	.reTop {
		right: 15px;
		bottom:15px;
	}
	.reTop a {
		width: 50px;
		height: 50px;
	}
	.reTop a:before {
		top: 10px;
		width: 16px;
		height: 16px;
		border-top: 4px solid #FFF;
		border-right: 4px solid #FFF;
	}
	
}

