@charset "UTF-8";
/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight:normal;
  vertical-align: baseline;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align: left;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
	width: 100%;
}
textarea {
	vertical-align: top;
}




/*--------------------------------------------------
  body
--------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 14px;
  font-family: 'ヒラギノ角ゴ Pro W5','Hiragino Kaku Gothic Pro',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	display: block;
	color: #000;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

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

body, html {
	height: 100%;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.hide {
	overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}


/*--------------------------------------
　Header
---------------------------------------*/
header {
	position: fixed;
	top: 0px;
	width: 100%;
	box-sizing: border-box;
	z-index: 1;
  transition: all .5s;
}

.header-coler {
  background: #fff;
}

header .inner {
	margin: auto;
	box-sizing: border-box;
}

.g-nav ul {
	display: flex;
	justify-content: center;
}

.g-nav li {
	box-sizing: border-box;
	position: relative;
}
.g-nav li:after {
	content: "|";
	display: block;
	position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
	color: #116b37;
}
.g-nav li:first-child:after {
	display: none;
}

.g-nav li a {
	padding: 0 15px;
  line-height: 70px;
	box-sizing: border-box;
	color: #116b37;
	font-size: 13px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	header {
		position: static;
		top: inherit;
		min-width: 100%;
	}

	header .inner {
		max-width: 100%;
	}
}


/*--------------------------------------
　SP Navi
---------------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
		display: table;
		position: fixed;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		background: #27a53f;
		cursor: pointer;
		z-index: 10000;
	}
	#hb-menu .hb-inner {
		display: table-cell;
		vertical-align: middle;
	}
	#hb-menu span {
		display: block;
		background: #fff;
		width: 28px;
		height: 2px;
		margin: auto;
		border-radius: 0;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	#hb-menu span:nth-of-type(2),
	#hb-menu span:nth-of-type(3){
		margin-top: 6px;
	}

	/* ナビゲーションアイコン：アクティブ */
	.hb-open #hb-menu span {
		background: #fff;
	}
	.hb-open span:nth-of-type(1) {
		-webkit-transform: translateY(8px) translateX(0) rotate(45deg);
		-ms-transform: translateY(8px) translateX(0) rotate(45deg);
		transform: translateY(8px) translateX(0) rotate(45deg);
	}
	.hb-open span:nth-of-type(2) {
		margin-top: 5px;
		opacity: 0;
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
	}
	.hb-open span:nth-of-type(3) {
		-webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
		transform: translateY(-8px) translateX(0) rotate(-45deg);
	}

	/* overlay */
	.overlay {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background: transparent;
		pointer-events: none;
		z-index: 9999;
		transition: 0.2s;
	}
	.hb-open .overlay {
		background: none;
		pointer-events: auto;
	}

	/*----- sp-g-nav -----*/
	.sp-g-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
	}
	.hb-open .sp-g-nav .g-nav-inner {
		position: fixed;
		top: 0;
		transform: translateX(0);
		-ms-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateZ(0);
		-ms-transform: translateZ(0);
		-webkit-transform: translateZ(0);
	}
	.sp-g-nav .g-nav-inner {
		position: fixed;
		top: 0;
		right: 0;
		background: #fff;
		width: 90%;
		height: 100%;
		padding: 60px 15px;
		box-sizing: border-box;
		-ms-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		overflow-x: hidden;
		overflow-y: auto;
		transition: .5s;
		transform: translateX(100%);
		-ms-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		z-index: 9999;
	}
	
	.sp-g-nav .g-nav-inner li {
		border-bottom: 1px solid #27a53f;
	}	
	.sp-g-nav .g-nav-inner li a {
		padding: 15px 20px 15px 0;
		box-sizing: border-box;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
		position: relative;
	}	
	.sp-g-nav .g-nav-inner li a:after{
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: solid 2px #27a53f;
		border-right: solid 2px #27a53f;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

/*--------------------------------------
　footer
---------------------------------------*/
footer {
	background: #fff;
	width: 100%;
	min-width: 1100px;
	padding: 10px 0 40px;
	box-sizing: border-box;
}

footer .inner {
	max-width: 1100px;
	margin: auto;
	box-sizing: border-box;
}

footer .copy {
	color: #1f9936;
	font-size: 13px;
  font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 768px) {
	footer {
		min-width: 100%;
		padding: 15px 10px 15px;
	}
	
	footer .inner {
		max-width: 100%;
	}

	footer .copy {
		font-size: 10px;
	}
}





/*--------------------------------------
　page_top
---------------------------------------*/
.page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	z-index: 1;
}

.page_top a {
	background: #27a53f;
  width: 100%;
  height: 100%;
  display: block;
	box-sizing: border-box;
	border: 3px solid #fff;
	border-radius: 10px;
  position: relative;
}
.page_top a:after {
	display: block;
	content: "";
	position: absolute;
	top: 43%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-left: -4px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	.page_top {
		right: 10px;
		bottom: 30px;
	}

	.page_top a {
		border: 2px solid #fff;
		border-radius: 5px;
	}
}






/*--------------------------------------
　section
---------------------------------------*/
.sec {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	padding: 0 40px;
}
.sec .inner {
	max-width: 1200px;
	margin: auto;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.sec {
		min-width: 100%;
		padding: 0 15px;
	}

	.sec .inner {
		width:100%;
		max-width: 100%;
	}
}





/*--------------------------------------
　main_ttl
---------------------------------------*/
.main_ttl {
	text-align: center;
}

.main_ttl .sub_eng {
	display: inline-block;
	background: #17a161;
	padding: 8px 40px 5px;
	box-sizing: border-box;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	font-family: 'Renner*';
	line-height: 1;
	letter-spacing: 0.03em;
	border-radius: 100px;
	position: relative;
}
.main_ttl .sub_eng:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-top: 12px solid #17a161;
}

.main_ttl .ttl {
	margin: 25px 0 0;
	color: #17a161;
	font-size: 36px;
	font-weight: bold;
}

.main_ttl .ttl span {
	font-weight: bold;
}


.sec_ttl {
	margin: 35px 0 0;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.sec_ttl span {
	font-weight: bold;
}


.marker {
	background: linear-gradient(transparent 55%, #ffef76 0%);
	font-weight: bold;
}


.fs54 {
	font-size: 54px;
}

.txtlink {
	text-decoration: underline;
	color: #17a161;
}

@media screen and (max-width: 768px) {
	.main_ttl .sub_eng {
		padding: 6px 30px 4px;
		font-size: 16px;
	}
	.main_ttl .sub_eng:after {
		margin-left: -6px;
		border: 6px solid transparent;
		border-top: 10px solid #17a161;
	}

	.main_ttl .ttl {
		margin: 20px 0 0;
		font-size: 26px;
		font-weight: bold;
		line-height: 1.3;
	}

	.sec_ttl {
		margin: 20px 0 0;
		font-size: 20px;
		line-height: 1.5;
	}

	.fs54 {
		font-size: 36px;
	}
}





/*--------------------------------------
　lead
---------------------------------------*/
.lead {
	margin: 30px 0 0;
	font-size: 16px;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.lead {
		margin: 20px 0 0;
		font-size: 15px;
		line-height: 1.8;
		text-align: justify;
	}
}


/*--------------------------------------
　Coming Soon
---------------------------------------*/

.cs01 {
  padding: 60px 0 200px 0;
	font-size: 26px;
	line-height: 1.4;
	text-align: center;
  color: #aaa;
  font-weight: bold;
}

.cs02 {
  padding: 60px 0;
	font-size: 22px;
	line-height: 1.4;
	text-align: center;
  color: #aaa;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
	.cs01 {
    padding: 40px 0 120px 0;
		font-size: 20px;
	}
  
	.cs02 {
    padding: 40px 0;
		font-size: 18px;
	}
}



