@charset "utf-8";
/*=======================================================================

共通レイアウト(layout.css)

========================================================================*/
html::before,
html::after,
body::before {
	border: 10px solid #a7dc66;
	bottom: 0;
	content: "";
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: -1;
}
html::after {
	border-width: 0 0 10px;
	top: auto;
	z-index: 9999;
}
body::before {
	border-width: 10px 0 0;
	bottom: auto;
	z-index: 9999;
}
body {
	padding: 10px;
	background: #fefdf8;
	color: #7b684c;
}

/*----------------------------------------------------------------------
 Links
----------------------------------------------------------------------*/
a:link {
	color: #50c4ac;
	text-decoration: none;
}
a:visited {
	color: #50c4ac;
	text-decoration: none;
}
a:hover {
	color: #fb8970;
	text-decoration: underline;
}
a:active {
	color: #50c4ac;
	text-decoration: none;
}

/*----------------------------------------------------------------------
 Header
----------------------------------------------------------------------*/
#header {
	width: 1040px;
	margin: 0 auto 50px;
	position: relative;
}
h1 {
	padding: 20px;
	text-align: center;
}
.telephone {
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 20px;
	background: #f28970;
	border-radius: 0 0 5px 5px;
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 180%;
	color: #fff;
}
.telephone span.txt,
.telephone_sp span.txt {
	display: block;
	margin: 0 0 0 21px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 12px;
}
.telephone img,
.telephone_sp img {
	margin: 4px 2px 0 0;
	vertical-align: top;
}

/*----------------------------------------------------------------------
 Nav
----------------------------------------------------------------------*/
.slicknav_menu {
	display: none;
}
#menu {
	margin: 20px 0;
	text-align: center;
	font-size: 0;
}
#menu li {
	display: inline-block;
	margin: 0 15px;
	font-size: 14px;
	text-align: center;
}
#menu li a {
	padding: 10px 0;
	color: #7b684c;
}
#menu li a:hover {
	color: #fb8970;
}
#menu li span {
	display: block;
	margin-bottom: 5px;
}
#menu li.active a {
	color: #fb8970;
	font-weight: bold;
}
#menu ul ul {
	display: none;
}

.telephone_sp {
	display: none;
}

/*----------------------------------------------------------------------
 Main 
----------------------------------------------------------------------*/
/*
#main {
	width: 100%;
}
#main .inner {
	width: 1040px;
	margin: 0 auto;
	padding: 0 0 40px;
}
*/
/*----------------------------------------------------------------------
 Content 
----------------------------------------------------------------------*/
#content .inner {
	width: 1040px;
	margin: 0 auto;
	padding: 0 0 40px;
}

#content section {
	width: 800px;
	margin: 0 auto;
}

/*----------------------------------------------------------------------
 Footer
----------------------------------------------------------------------*/
#footer {
	width: 1040px;
	margin: 0 auto;
	text-align: center;
}
.secondNav {
	padding: 20px 0;
	border-top: 1px solid #c6b499;
	border-bottom: 1px solid #c6b499;
	text-align: center;
}
.secondNav li {
	display: inline;
	margin-right: 10px;
	padding-left: 15px;
	font-size: 14px;
}
.secondNav li a {
	color: #7b684c;
}
.secondNav li a:hover {
	color: #fb8970;
}
.secondNav .nav_sp {
	display: none;
}
.secondNav li+li {
	border-left: 1px solid #c6b499;
}
#footer p {
	margin: 20px 0;
	font-size: 14px;
}
#footer p.copyright {
	font-weight: bold;
}

/*----------------------------------------------------------------------
 Pagetop 
----------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
}
.pagetop a {
	display: block;
	padding-top: 20px;
	width: 60px;
	height: 40px;
	border-radius: 30px;
	background-color: #a7dc66;/* 円の色 */
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;
	zoom: 1.0;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
.pagetop a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
.pagetop img {
	padding: 0 0 3px;
}

/*----------------------------------------------------------------------
 TopicPath
----------------------------------------------------------------------*/
#content ul#topicPath {
	margin: 0;
	padding: 10px 10px 7px;
	background: #f0f0f0;
	border-radius: 5px 5px 0 0;
	font-size: 75%;
}
#content ul#topicPath li {
	display: inline;
	padding: 0 0 0 5px;
	color: #777;
}
#content ul#topicPath li a {
	padding: 0 5px 0 0;
	color: #478fd6;
}

/*----------------------------------------------------------------------
 Clearfix
----------------------------------------------------------------------*/
#header .inner:after,
#main .inner:after,
#topicPath:after {
    content: "";
    display: block;
    clear: both;
}