@charset "UTF-8";

/* -----------------------------------------------------------------------------------------
                                          初期設定
----------------------------------------------------------------------------------------- */

html,body {
	height: 100%;
}

img {
	margin: 0px;
	border: none;
}

body {
	color: #4D4D4D;
	margin: 0px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    font-size: 10px; /*62.5%*/
    line-height: 1.5;
    letter-spacing: 0;    
    -webkit-text-size-adjust: 100%;  /* スマホを横向きにすると文字が余計に拡大されるのを防ぐ */
}

html { font-size: 62.5%; } 
body { font-size: 1.0rem; } /* =10px */

p {
	font-size: 1.4rem;
	text-align:justify; /*  両端揃え設定 */
	text-justify:distribute; /*  両端揃え設定 */
	margin-bottom: 1em;
}


/* -----------------------------------------------------------------------------------------
                                          img要素のディセンダー削除
----------------------------------------------------------------------------------------- */
img {
	vertical-align: middle;
}


/* -----------------------------------------------------------------------------------------
                                          リンクテキストのアウトラインを消去
----------------------------------------------------------------------------------------- */

a {
	outline: none;
}

:focus {
  	outline: 0;
}

/* -----------------------------------------------------------------------------------------
                                          フォームのボタンのクリック時の点線を消去
----------------------------------------------------------------------------------------- */
/* Firefox */

input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner{   
        border : 0px;
}

/* IE8で内側の点線を消す */
input{
    outline:none; 
}


/* -----------------------------------------------------------------------------------------
                                          								clearFix
----------------------------------------------------------------------------------------- */
.cf:after {
    content:"";
    display:table;
    clear:both;
}


/* -----------------------------------------------------------------------------------------
                                          								初期レイアウト
----------------------------------------------------------------------------------------- */
/* コンテナ 高さ100% */
div#container {
	min-height: 100%;
}

/* IE6 */
*html div#container {
	height: 100%;
}


#container {
	width: 100%;
}

#header-wrapper {
	width: 100%;
	border-top: solid 20px #BE8815;
	padding-top: 20px;
}

header {
	width: 96%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

	header h1 {
		position: absolute;
		left: 0;
		top: -20px;
		display: block;
		width: 170px;
		height: 200px;
		text-indent: -9999px;
		background-image: url(../images/common/logo.png);
		background-position: left top;
		background-repeat: no-repeat;
		background-size: contain;
		border-left: solid 1px #E6E6E6;
		border-right: solid 1px #E6E6E6;
		border-bottom: solid 1px #E6E6E6;
		z-index: 99;
	}
		header h1 a {
		display: block;
		width: 170px;
		height: 200px;
		}
		
	header p a {
		text-decoration: none;
		font-size: 1.3rem;
		color: #4D4D4D;
	}
	
	header p:hover i {
		color: #ff0000;
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}

nav {
	width: 96%;
	max-width: 1000px;
	margin: 0 auto 20px auto;
}

	nav ul.menu {
		float: right;
	}
	
	
#wrapper {
	width: 96%;
	max-width: 1000px;
	margin: 0 auto 160px;
}


#content {
	width: 74.5%;
	max-width: 745px;
	float: left;
}

aside {
	width: 20%;
	max-width: 200px;
	float: right;
}

aside dl {
	margin-bottom: 20px;
}
	aside dl dt {
		font-weight: bold;
		font-size: 1.8rem;
	}
	
	aside dl dd {
		font-size: 1.3rem;
	}
		aside dl dd span {
			display: block;
			border-top: solid 2px #999;
			border-bottom: solid 2px #999;
			margin-top: 10px;
			padding: 10px 0;
			text-align: center;
			font-size: 2.0rem;
			font-weight: bold;
			color: #FF931E;
		}
		
		aside p.simple-image {
			margin: 0 0 10px 0;
		}
			aside p.simple-image img {
				width: 100%;
				max-width: 380px;
				height: auto;
				margin: 0 auto;
				display: block;
			}

#footer-area {
	width: 100%;
	background-image: url(../images/common/footer.png);
	background-position: center top;
	background-repeat: no-repeat;
}

footer {
	width: 98%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 51px 0 20px;
	color: #fff;
	font-size: 1.3rem;
}

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


#footer-left {
	float: left;
	border-right: solid 1px #fff;
	padding-right: 40px;
	margin-right: 40px;
}
	#footer-left h2 {
		display: block;
		width: 155px;
		height: 130px;
		margin-bottom: 1em;
		text-indent: -9999px;
		background-image: url(../images/common/logo-footer.png);
		background-repeat: no-repeat;
		background-size: contain;
	}
	
	#footer-left h2 a {
		display: block;
		width: 155px;
		height: 130px;
		}
	
	#footer-left p {
		margin-bottom: 0;
	}
	
	#footer-right {
		float: left;
		padding-top: 40px;
	}

		#footer-right ul {
			float: left;
			margin-right: 80px;
		}
		
		#footer-right ul:last-of-type {
			margin-right: 0;
		}

			#footer-right ul li {
				margin-bottom: 1em;
			}
			
				#footer-right ul li:last-of-type {
					margin-bottom: 0;
				}

				#footer-right ul li a:hover {
					text-decoration: underline;
				}

	p#copyright {
		background-color: #3F2A08;
		color: #FFF;
		margin-bottom: 0;
		text-align: center;
		font-size: 1.3rem;
		padding: 10px 0;
	}

/* -----------------------------------------------------------------------------------------
                                         ページトップ
----------------------------------------------------------------------------------------- */
#page-top {
	position: fixed;
	bottom: 30%;
	right: 5%;
}
	#page-top a {
		background-color: #FF931E;
		width: 60px;
		height: 55px;
		text-align: center;
		display: block;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		opacity: .4;
		color: #fff;
		font-size: 3.0rem;
		padding-top: 5px;
		border: solid 2px #FFF;
	}
		#page-top a:hover {
		background-color: #FF931E;;
		opacity: 1;
		}

/* -----------------------------------------------------------------------------------------
                                         パンくず
----------------------------------------------------------------------------------------- */		
#pankuzu {
	width: 100%;
	background-color: #F4F4F4;
	padding: 80px 0 20px;
	margin-bottom: 80px;
	background-color: rgba(190, 136, 21, 0.2);
}

#pankuzu ul {
	width: 96%;
	max-width: 1000px;
	margin: 0 auto;
}

#pankuzu ul li {
        /* liを横並び＆ブレットを消す */
        display: inline;
        list-style-type: none;
		font-size: 1.2rem;
		line-height: 1;
}

#pankuzu ul li:before {
        /* liの前に記号追加 */
        content: " / ";
		padding-left: 0.5em;
		padding-right: 0.5em;
}

#pankuzu ul li:first-child:before {
        /* 最初のliだけcontentを消す */
        content:"";
		padding-left: 0;
		padding-right: 0;
}

#pankuzu ul li a {
	color: #000;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

#pankuzu ul li a:hover {
	color: #aa1004;
}

/* -----------------------------------------------------------------------------------------
                                        テーブル書式
----------------------------------------------------------------------------------------- */

.table {
	font-size: 1.4rem;
	width: 100%;
	margin-bottom: 40px;
    border-spacing: 0;
	border-collapse: separate;
    border: 1px solid #D4D4D4;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
         -o-border-radius: 6px;
            border-radius: 6px;
    box-shadow: 0 1px 1px #CCC;	
}


.table caption {
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.table caption:before {
	content: "● ";
}



.table th,
.table td {
    padding:10px 1em;
    background:#FFF;
    border-bottom:solid 1px #CCC;
    border-right:solid 1px #CCC;
	vertical-align: middle;
}

.table th {
	width: 7em;
    background:#eee;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    color:#000;
	white-space: nowrap;
	font-weight: normal;
}

.table td ul {
}
	.table td ul li {
		margin-bottom: 1em;
	}
	.table td ul li:last-child {
		margin-bottom: 0;
	}
	
	.table td ul li:before {
		content: "● ";
		font-size: 1rem;
		color: #aa1004;
	}

.table td p {
	font-size: 1.4rem;
	text-align: left;
}

.table td p:last-child {
	margin-bottom: 0;
}


/* -----------------------
  左上角丸　最初の行の最初のセル
----------------------- */

.table tr:first-child th:first-child,
.table tr:first-child td:first-child {
    -webkit-border-radius: 6px 0 0 0;
       -moz-border-radius: 6px 0 0 0;
         -o-border-radius: 6px 0 0 0;
            border-radius: 6px 0 0 0;
}
/* -----------------------
  右上角丸　最初の行の最後のセル
----------------------- */

.table tr:first-child th:last-child,
.table tr:first-child td:last-child {
    -webkit-border-radius: 0 6px 0 0;
       -moz-border-radius: 0 6px 0 0;
         -o-border-radius: 0 6px 0 0;
            border-radius: 0 6px 0 0;
}
/* -----------------------
  左下角丸　最後の行の最初のセル
----------------------- */

.table tr:last-child th:first-child,
.table tr:last-child td:first-child {
    -webkit-border-radius: 0 0 0 6px;
       -moz-border-radius: 0 0 0 6px;
         -o-border-radius: 0 0 0 6px;
            border-radius: 0 0 0 6px;
}
/* -----------------------
  右下角丸　最後の行の最後のセル
----------------------- */

.table tr:last-child th:last-child,
.table tr:last-child td:last-child {
    -webkit-border-radius: 0 0 6px 0;
       -moz-border-radius: 0 0 6px 0;
         -o-border-radius: 0 0 6px 0;
            border-radius: 0 0 6px 0;
}






/* -----------------------------------------------------------------------------------------
                                          ページャー設定
----------------------------------------------------------------------------------------- */

.pagination {
clear:both;
padding:20px 0;
position:relative;
font-size:11px;
line-height:13px;
}
 
.pagination span, .pagination a {
display:block;
float:left;
margin: 2px 2px 2px 0;
padding:6px 9px 5px 9px;
text-decoration:none;
width:auto;
color:#fff;
background: #DDC69B;
}
 
.pagination a:hover{
	color: #fff;
	background-color: #BE8815;
}
 
.pagination .current{
padding:6px 9px 5px 9px;
background: #BE8815;
color:#fff;
}


/* -----------------------------------------------------------------------------------------
                                          個別ページのページャー設定
----------------------------------------------------------------------------------------- */
.left {
	float: left;
}

.right {
	float: right;
	text-align: right;
}


.navigation{
	font-size: 1.3rem;
	overflow: hidden;
	margin-top: 40px;
	margin-bottom: 80px;
	border-top: 1px solid #E5D6C3;
	border-bottom: 1px solid #E5D6C3;
	background: url(../images/common/bg-pager.png) repeat-y 50% 0;
}
	.navigation > div{
		width: 50%;
	}

	.navigation .alignright{
		text-align: right;
	}
	.navigation .alignleft {
		text-align: left;
	}
	.navigation a{
		display: block;
		padding: 1em;
		border: none;
		color: #666;
	}
		.navigation a:hover{
			background-color: rgba(190, 136, 21, 0.1);
			color: #FF931E;
		}
			.navigation .alignright a:hover{
				border-left: 1px solid #E5D6C3;
			}



/* -----------------------------------------------------------------------------------------
                                  フォーム関連設定
----------------------------------------------------------------------------------------- */

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
	margin: 0;
	margin-bottom: 20px;
	padding: 6px 4px;
	max-width: 96%;
	width: 290px;
	outline: none;
	border: 1px solid #ddd;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #eee;
	color: #777;
	font-size: 1.4rem;
}

#comment-area input[type="text"],
#comment-area textarea{
	display: block;
}

textarea {
	overflow: auto;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
	border: 1px solid #ff931e;
	background: #fff;
	-webkit-box-shadow: 0 0 3px rgba(255, 147, 30,1);
 	-moz-box-shadow: 0 0 3px rgba(255, 147, 30,1);
	box-shadow:  0 0 3px rgba(255, 147, 30,1);
 	color: #444;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	margin-bottom: 20px;
	padding: 4px 12px;
	padding: 8px 10px;
	border: 1px solid #999;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #333;
	text-decoration: none;
	text-shadow: 0 1px rgba(255, 255, 255, .75);
	font-weight: bold;
	font-size: 12px;
	line-height: normal;
	cursor: pointer;
	background-color: #eee;
}

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {
	  	border: 1px solid #000;
		background: #FF931E;
		color: #fff;
	  	text-shadow: 0 -1px rgba(0, 0, 0, .4);

	}

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
		position: relative;
		top:1px;
	}
select {
	margin-bottom: 10px;
}	

input[type="checkbox"] {
	margin: 0 .5em 1em 0;
}



/* ----------------------------------------------------------------------------------
							サイドナビゲーション
---------------------------------------------------------------------------------- */
aside section.sub {
	margin-bottom: 80px;
}


aside section ul {
	font-size: 1.4rem;
}

	aside section ul li {
		margin-bottom: 1.5em;
	}
		aside section ul li:last-child {
			margin-bottom: 0;
		}

		aside section ul li:before {
			content: "● ";
			color: #DDC69B;
			-webkit-transition: all 0.5s ease 0s;
			-o-transition: all 0.5s ease 0s;
			transition: all 0.5s ease 0s;
		}
		
		aside section ul li:hover:before {
			color: #FF931E;
		}
		
		aside section ul li a {
			text-decoration: none;
			color: #333;
		}
aside section ul li.current_page_parent:before,
aside section ul li.current-cat:before,
aside section ul li.current a:before,
aside section ul li.current-cat:before,
aside section ul li.current_page_item:before {
	color: #FF931E;
}


@media screen and (max-width: 768px){		/* -------------------------------------------------  768px以下用（iPad）の記述 */

header {
	width: 96%;
	max-width: inherit;
	margin: 0 auto;
	position: inherit;
}

	header h1 {
		position: inherit;
		left:inherit;
		top: inherit;
		width: 170px;
		height: 200px;
		margin: -20px auto 10px;
	}
		
		
	header p  {
		display: none;
	}
	

#footer-left {
	float: none;
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
	#footer-left h2 {
		display: block;
		width: 155px;
		height: 130px;
		margin-bottom: 1em;
		margin: 0 auto;
	}
	
	
	
	#footer-left p {
		margin-bottom: 0;
		text-align: center;
	}
	
	#footer-right {
		display: none;
	}

	
#content {
	width: 100%;
	max-width: inherit;
	float: none;
	margin-bottom: 80px;
}

aside {
	width: 100%;
	max-width: inherit;
	float: none;
}



/* ----------------------------------------------------------------------------------
							サイドナビゲーション
---------------------------------------------------------------------------------- */

aside section.sub {
	display: none;
}


aside section ul {
	font-size: 1.4rem;
}

	aside section ul li {
		margin-bottom: 0;
		display: block;
		border-bottom: solid 1px #eee;
		text-align: center;
	}
	
	aside section ul li a {
		display: block;
		padding: 10px 0;
	}
	
		aside section ul li:last-child {
			margin-bottom: 0;
		}

		aside section ul li:before {
			content: none;
			-webkit-transition: all 0.5s ease 0s;
			-o-transition: all 0.5s ease 0s;
			transition: all 0.5s ease 0s;
		}
		
		aside section ul li:hover:before {
			color: #FF931E;
		}
		
		aside section ul li a {
			text-decoration: none;
			color: #333;
		}
		
		aside section ul li a:hover {
			text-decoration: none;
			color: #FFF;
			background-color: #FF931E;
		}


aside section ul li.current-cat a,
aside section ul li.current a,
aside section ul li.current-cat a,
aside section ul li.current_page_item a {
			color: #FFF;
			background-color: #FF931E;
}	
	
	
	
		
/* -----------------------------------------------------------------------------------------
                                         ページトップ
----------------------------------------------------------------------------------------- */
#page-top {
	bottom: 25%;
}








}





@media screen and (max-width: 480px) {		/* -------------------------------------------------  480px以下用（スマートフォン用）の記述 */
#wrapper {
	margin-bottom: 80px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
	font-size: 1.6rem;
}

/* -----------------------------------------------------------------------------------------
                                         パンくず
----------------------------------------------------------------------------------------- */		

#pankuzu {
	padding: 5px 0 5px;
	margin-bottom: 40px;
}

#pankuzu ul {
	display: none;
}



/* -----------------------------------------------------------------------------------------
                                         ページトップ
----------------------------------------------------------------------------------------- */
#page-top {
	position: fixed;
	bottom: 35%;
}
	

}