@charset "utf-8";
/* CSS Document */

body {
	font-size: 14px;
}
.text {
	display: inline-block;
}
/*color--------------------------------------*/
.color1 {
	color: #7dc97d;
}
.color2 {
	color: #999;
}
.color_white {
	color: white;
}
.color_black {
	color: black;
}

.border1 {
	border-color: #7dc97d;
}

.bg_color1 {
	background-color: #7dc97d;
}
.bg_color2 {
	background-color: #d2ffd2;
}
.bg_white {
	background-color: white;
}
.bg_black {
	background-color: black;
}

/*main_menu--------------------------------*/
#main_menu {
	margin-top: 40px;
}
#main_menu ul li {
	line-height: 2.5;
	transition: .5s;
}
#main_menu ul li a:hover {
	color: #7dc97d;
}
#side_contents {
	padding-left: 50px;
}


/*sub_title---------------------------------------------*/
#sub_title .txt_box {
	top: 53%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#sub_title .txt_box h2 {
	line-height: 1.3;
	color: #fff;
	letter-spacing: 5px;
	text-align: center;
	position: relative;
	display: inline-block;
	border-bottom: 3px solid #fff;
}
#sub_title .txt_box h2::before {
	content: "";
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -8px;
	background-color: #fff;
}


/*pan_list-------------------------------------------------*/
.breadcrumb {
	margin-left:0;
	padding-left:0;
}
.breadcrumb li{
	display:inline;
	list-style: none;
}
.breadcrumb li:after{
	content: '>';
	padding: 0 3px;
	color: #555;
}
.breadcrumb li:last-child:after{
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	transition: .5s;
}
.breadcrumb li a:hover {
	opacity: 0.7;
}


/*footer------------------------------------------------*/
#footer_menu ul li+li {
	border-left: 1px solid #000;
}
.clearfix:after{
	content:".";
	visibility:hidden;
	display:block;
	height:0;
	clear:both;
}

/*page-top----------------------------------------------------------------*/
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 997;
}
#pageTop a {
	display: block;
	z-index: 997;
	padding: 8px 0 0 8px;
	text-align: center;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
#pageTop img {
	width: 50px;
	height: auto;
}


/*タブレット--------------------------------------------*/
@media screen and (max-width: 768px){
	#side_contents {
		padding-left: 0;
	}
}


/*スマートフォン----------------------------------------*/
@media screen and (max-width: 667px){
	#main_contents {
		margin-right: 0;
	}
	#sub_title .txt_box h2 {
		font-size: 20px;
		letter-spacing: 2px;
		border-bottom: 2px solid #fff;
	}
	#sub_title .txt_box h2::before {
		bottom: -6px;
	}

	#pageTop {
		position: fixed;
		bottom: 20px;
		right: 15px;
		z-index: 1000;
	}
	#pageTop img {
		width: 40px;
	}
}