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

body {
	font-family:'Roboto';
	color: #333;
	line-height: 1.6;
}

/* header
----------------------------------- */

#header {
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
	margin-bottom: 0;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#wrap_logo {
	display: flex;
	justify-content: flex-start;
}

#wrap_logo h1 {
	margin-right: 30px;
}

#wrap_logo div {
	width: 60px;
}

#header ul {
	display: flex;
	justify-content: flex-end;
	column-gap: 30px;
}

#header ul li a {
	font-weight: bold;
}

#header a:link{
	color:#333;
	text-decoration: none;
}

#header a:visited{
	color:#333;
	text-decoration: none;
}

#header a:hover,
#header a:active{
	color:#333;
	text-decoration: none;
}

#header a:hover img.opacity{
	opacity:0.6; /* opera firefox safari */
	filter: alpha(opacity=60); /* ie */
}



/* contents
----------------------------------- */

#contents  {
	margin-bottom: 10vh;
}

#contents #localNavi {
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
	padding: 5px 15px;
	background: #46b450;
	display: flex;
	justify-content: flex-start;
	column-gap: 20px;
}

#contents #localNavi li {
	display: flex;
	align-items: center;
}

#contents #localNavi a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

#contents #localNavi li::before {
	font-family: "Material Icons";
	content: "\e5df";
	color: #fff;
	font-size: 2rem;
}

/* box
----------------------------------- */

.generalblock {
	margin-bottom: 7vh;
}

.generalblock_width {
	max-width: 1100px;
	width: 95%;
	margin: 0 auto 7vh;
}

.generalblock_width.margin0 {
	margin-bottom: 0;
}


/* title
----------------------------------- */

#page_title {
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
	margin-bottom: 70px;
	padding: 90px;
	color: #46B450;
	font-weight: bold;
	font-size: clamp(2rem, 3vw, 3rem);
	text-align: center;
	background: #EDF8EE;
	border-radius: 10px;
}

.index_lv1 {
	font-weight: bold;
	font-size: clamp(1.8rem, 3vw, 3rem);
	text-align: center;
	margin-bottom: 60px;
}

.index_lv2 {
	font-weight: bold;
	font-size: clamp(1.8rem, 3vw, 3rem);
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.index_lv3 {
	font-size: 1.8rem;
	color: #fff;
	background: #46B450;
	padding: 10px 20px;
	margin-bottom: 40px;
}

.index_lv4 {
	font-weight: bold;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	margin-bottom: 40px;
	padding-left: 10px;
	border-left: 5px solid #46B450;
}

.index_lv5 {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 40px;
}

.index_lv6 {
	font-weight: bold;
	margin-bottom: 1.5em;
}

/* btn
----------------------------------- */

#contents .btn_kadomarugreen {
	display: inline-block;
	background: #46B450;
	color: #fff;
	font-weight: bold;
	padding: 20px 80px;
	border-radius: 50px;
	color: #fff!important;
}

#contents .btn_kadomarugreen:link {
	text-decoration: none;
}

#contents .btn_kadomarugreen:hover {
	opacity: 0.7;
}

/* footer
----------------------------------- */

#footer {
	background: #F0F0F1;
	padding: 60px 0;
}

#footer_in {
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
}

#footer h2 {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 30px;
}

#footer .box_address dl {
	display: flex;
	justify-content: flex-start;
	column-gap: 50px;
}

#footer .box_address dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

#footer .box_address ul li {
	margin-bottom: 10px;
}

#footer .box_address .insta {
	margin: 30px 0;
	width: 60px;
}

#footer .box_bnr {
	max-width: 300px;
	width: 100%;
}

#footer .box_bnr li {
	margin-bottom: 5px;
}

#footer .box_bnr img {
	width: 100%;
}

#footer a:link{
	color:#333;
	text-decoration: none;
}

#footer a:visited{
	color:#333;
	text-decoration: none;
}

#footer a:hover,
#footer a:active{
	color:#333;
	text-decoration: none;
}

/* 
----------------------------------- */
.forSP {
	display: none;
}

@media screen and (max-width: 764px) {
	.forSP {
		display: block;
	}
	
	.forPC {
		display: none;
	}
}