@charset "UTF-8";

/* ------------------------------------------- */
/* 共通 */
* {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	line-height: 1.0;
	box-sizing: border-box;
    z-index: 10;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
body {
	overflow-x: hidden;
}

.set_pc {display: inherit}
.set_sp {display: none;}

@media (max-width: 768px) {
	.set_pc {display: none;}
	.set_sp {display: inherit;}
}
/*
スーラM		→	Rounded M+ 1c light
スーラDB	→	Rounded M+ 1c regular
スーラB		→	Rounded M+ 1c medium
*/


/* ------------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	width: 100%;
	margin-bottom: 50px;
	background-color: #f2f2f2;
	z-index: 100;
}
header .inner {
}
header .inner .head_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 0 40px;
}
header .inner .head_box  h1 {
	font-size: 42px;
	font-weight: 600;
	color: #146627;
	transform: rotate(0.05deg);
}
header .inner .head_box  h1 a {
	font-size: 42px;
	font-weight: 600;
	text-decoration: none;
	color: #146627;
	transform: rotate(0.05deg);
}
header .inner .head_box  h1 a:hover {
	text-decoration: underline;
}
header .inner .head_box .logo {
	padding: 14px;
	background-color: #fff;
}
header .inner nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0px;
}
header .inner nav .nav_ttl {
	padding-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
	font-style: oblique;
	color: #5ab42a;
	transform: rotate(0.05deg);
}
header .inner nav > ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 35px;
	margin-right: 35px;
	list-style: none;
}
header .inner nav > ul > li {
	padding-bottom: 20px;
}
header .inner nav > ul > li > a {
	font-size: 21px;
	color: #000;
	text-decoration: none;
	transform: rotate(0.05deg);
}
header .inner nav > ul > li > a:hover {
	color: #146627;
	text-decoration: underline;
}
header .inner nav > ul > li > ul {
	position: absolute;
	top: 30px;
	left: 0;
	display: none;
	display: block;
	list-style: none;
	background-color: #fff;
	opacity: 0;
}
header .inner nav > ul > li:hover > ul {
	display: block;
	opacity: 1;
}
header .inner nav > ul > li:nth-of-type(1) > ul {
	width: 20em;
}
header .inner nav > ul > li > ul > li {
	padding: 0.5em 0.5em;
	border-bottom: 1px dotted #666;
}
header .inner nav > ul > li > ul > li > a {
	display: block;
	width: 100%;
	font-size: 18px;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
	transform: rotate(0.05deg);
}
header .inner nav > ul > li > ul > li > a:hover {
	color: #146627;
}





@media (max-width: 768px) {
}


/* ------------------------------------------- */
/* フッター */
footer {
	margin-top: 100px;
	color: #fff;
	background-color: #a68653;
}
footer .inner {
}
footer .inner .footer_contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}
footer .inner .footer_contents .project_box {
	width: 360px;
}
footer .inner .footer_contents .project_box a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1em;
	text-decoration: none;
}
footer .inner .footer_contents .project_box a:hover {
	opacity: 0.5;
}
footer .inner .footer_contents .project_box a img {
}
footer .inner .footer_contents .project_box a p {
	color: #fff;
	line-height: 1.2;
	transform: rotate(0.05deg);
}
footer .inner .footer_contents .renewal_msg {
	width: calc(100% - 360px - 360px);
}
footer .inner .footer_contents .renewal_msg p {
	font-size: 24px;
	text-align: center;
	transform: rotate(0.05deg);
}
footer .inner .footer_contents .contact_box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 360px;
}
footer .inner .footer_contents .contact_box a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	font-size: 18px;
	line-height: 30px;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 25px;
	transform: rotate(0.05deg);
}
footer .inner .footer_contents .contact_box a:hover {
	color: #a68653;
	background-color: #fff;
}
footer .inner .copyright {
	padding: 10px 0 20px;
	font-size: 20px;
	text-align: center;
	transform: rotate(0.05deg);
/* 一時退避 */
opacity: 0;
}

@media (max-width: 768px) {
}


/* ------------------------------------------- */
/* ベースコンテンツ部 */
#main_contents {
	min-height: calc(100vh - 280px);
	padding-top: 240px;
}

@media (max-width: 768px) {
}



