@charset "UTF-8";

/* クリアフィックス */
.cf::after {
	display: block;
	content: "";
	clear: both;
}

/* ボーダーボックス */
.borderbox {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* リセット */
body,div,span,header,nav,main,section,footer,h1,h2,h3,h4,h5,h6,ul,ol,li,p,img,dl,dt,dd {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
ul,ol {
	list-style-type: none;
}
img {
	display: block;
}
a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* ページ全体 */ 
body {
	color: #333;
	background: #fff;
	font-size: 16px;
	line-height: 1.5;	
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#wrapper { 
	position: relative; /* 電飾の高さを100%にするのに必要 */
	height: 100%;
}

/* ヘッダー */
header {
	/*z-index: 1000;*/
	background-color: #ECA150;
}
header::-webkit-scrollbar {
    display: none;
}
header #hd-logo {
	background: #000;
	height: 100px;
	border-top: 5px solid #E07807;
}
header #hd-logo img {
	width: 215px;
	height: auto;
	margin: 33px auto 0;
}
header #hd-logo img:hover {
	opacity: 0.8;
}
header #hd-com {
	padding-top: 20px;
	color: #fff;
	text-align: center;
}
header #hd-com h2 {
	font-size: 20px;
	padding-bottom: 5px;
}
header #hd-com p {
	font-size: 14px;
}

/* メイン */
main {
	background-color: #fff;	
}

/* ヘッドタイトル */
#page-head {
	position: relative;
	background: no-repeat 50% 0;
	background-size: cover;
	height: 250px;
}
#page-head h1 img {
	position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

/* パンくずリスト */
#bread {
	background: #eee;
	padding-left: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	border-bottom: solid 1px #ccc;
}
#bread ul li {
	float: left;
}
#bread ul li a {
	color: #F72E31;
}
#bread ul li a:hover {
	text-decoration: underline;
}
#bread ul li .bread-ar {
	padding: 0 8px;
}

/* コンテンツ */
#content {
	background: #fff;
	padding: 50px 0 70px 0;
}
#content-top {
	width: 90%;
	max-width: 960px;
	margin: 0 auto 50px;
}
.content-box {
	width: 90%;
	max-width: 960px;
	margin: 0 auto 20px;
}
.wide-box {
	width: 100%;
	margin-bottom: 20px;
}
.wide-box-inner {
	width:90%;
	max-width: 960px;
	margin: 0 auto;
}

/* アンダーナビ */
.under-nav {
	height: 100px;
	background: #ddd;
 }
.under-nav p {
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}
.under-nav p a {
	display: inline-block;
	background: #333;
	color: #fff;
	padding: 10px 15px;
	margin-top: 25px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.under-nav p a i {
	margin-right: 8px;
	color: #E58D31;
}
.under-nav p a:hover {
	background: #fff;
	color: #E58D31;
}

/* フッター */
footer {
	background: #222;
	color: #fff;
/*	width: 100%;*/
}
footer a {
	color: #fff;
}
footer #ft-privacy a:hover {
	text-decoration: underline;
}

/* PAFETOP */
#page-top {
	z-index: 100;
	position: fixed;
	right: 12px;
	bottom: -150px;
}
/*#page-top {
	z-index: 100;
	position: fixed;
	bottom: -60px;
	right: 40px;
	opacity: 0.9;
}
#page-top a {
	display: block;
	width: 60px;
	height: 60px;
	background-color: #E58D31;
	border-radius: 60px;
	text-align: center;
	color: #fff;
	font-size: 40px;
	text-decoration: none;
	line-height: 50px;
	border: solid 2px #E58D31;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#page-top a:hover {
	color: #E58D31;
	background: #fff;

}
*/

/* 960px以上 --------------------------------------------------------------------------------------------*/

@media (min-width:960px) {
	
/* 電飾 */
#light {
	z-index: 2;
	position: absolute;
	left: 228px;
	background-image: url(http://www.howfulls.com/img/light.jpg);
	background-size: contain;
	background-repeat: repeat-y;
	height: 100%;
	width: 10px;
}

/* ヘッダー */
header {
	position: fixed;
    top: 0;
    left: 0;
    width: 230px;
    height: 100%;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
}

/* ナビ */
#main-nav {
	font-size: 17px;
	font-weight: bold;
	width: 230px;
	display: block !important;
}
#main-nav li a {
	display: block;
	color: #fefefe;
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #CA7010;
	text-align: center;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#main-nav li a:hover {
	background: #D27F04;
}
.active {
	background: #D27F04;
}
#sub-nav {
	display: none;
}
#nav-menu {
	display: none;
}
.menu-eng {
	display: none;
}

/* メイン */
main {
	margin-left: 235px;
}

/* フッター */
footer {
	margin-left: 235px;
	height: 80px;
	line-height: 80px;
}
footer #ft-com {
	display: none;
}
footer #ft-privacy {
	float: left;
	margin-left: 25px;
}
footer #copy {
	float: left;
	margin-left: 30px;
}

}

/* 640px以上960px未満 -----------------------------------------------------------------------------------*/

@media (min-width:640px) and (max-width: 959px) {
	
/* ページ全体 */ 
body {
	font-size: 15px;
}
	
/* 電飾 */
#light {
	/*z-index: 2;*/
/*	position: absolute;*/
	background-image: url(http://www.howfulls.com/img/light2.jpg);
	background-size: contain;
	background-repeat: repeat-x;
	height: 8px;
	width: 100%;
	top: 58px;
}

/* ヘッダー */
header {
    width: 100%;
    padding: 0;
}
header #hd-logo {
	height: 60px;
	border-top: none;
}
header #hd-logo img {
	margin: 0 auto;
	padding-top: 12px;
}
header #hd-com {
	display: none;
}

/* ナビ */
header #hd-main {
	position: fixed;
	bottom: 0;
	z-index: 999;
	width: 100%;
}
.global-nav {
	position: relative;
}
#main-nav {
	position: absolute;
	bottom: 70px;
	width: 100%;
	display: none;
}
#main-nav li {
	background: rgba(254,254,254,0.95);
	border-top: solid 1px #aaa;
	font-size: 22px;
}
#main-nav li:first-child, #main-nav li:nth-child(2) {
	border-top: 0;
}
#main-nav li:nth-child(7) {
	display: none;
}
#main-nav li a {
	display: block;
	height: 60px;
	line-height: 60px;
	font-weight: bold;
	color: #444;
	padding-left: 50px;
}
#main-nav #nav-menu {
	background: #888;
	color: #fff;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	padding-left: 40px;
}
.menu-eng {
	font-weight: normal;
	font-size: 18px;
	/*color: #E9A83C;*/
	color: #ef8206;
	display: inline-block;
	padding-left: 30px;
}
#sub-nav {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background-color: #ef8206;
	border-top: 1px solid #8C5100;
	z-index: 1;
}
#sub-nav li {
	float: left;
	width: 33.333%;
	border-right: solid 1px #ddd;
	text-align: center;
	color: #fff;
}
#sub-nav li:last-child  {
	border-right: 0;
}
#sub-nav li a {
	display: block;
	color: #fff;
	height: 70px;
}
#sub-nav li a i {
	display: block;
	font-size: 32px;
	padding-top: 8px;
}
#sub-nav li img {
	width: 48px;
	margin: 0 auto;
	padding-top: 8px;
}
#button-menu {
	height: 70px;
}

/* メイン */
main {
	/*padding-bottom: 70px;*/
}

/* ヘッドタイトル */
#page-head {
	height: 220px;
}
#page-head h1 img {
	height: 150px;
	width: auto;
}
#page-head h1 .page-head-top {
	height: 115px;
	width: auto;
}

/* パンくずリスト */
#bread {
	display: none;
}

/* フッター */
footer {
	margin-bottom: 70px;
	padding: 10px;
	text-align: center;
}
footer #ft-com {
	padding-bottom: 8px;
}
footer #ft-com h2 {
	font-size: 18px;
}
footer #ft-com p {
	font-size: 14px;
}
footer #ft-privacy {
	font-size: 16px;
	padding-bottom: 5px;
}
footer #copy {
	font-size: 14px;
}
#page-top {
	display: none;
}

}

/* 640px未満 --------------------------------------------------------------------------------------------*/

@media (max-width: 639px) {
	
/* ページ全体 */ 
body {
	font-size: 14px;
}
	
/* 電飾 */
#light {
	/*z-index: 2;*/
	/*position: absolute;*/
	background-image: url(http://www.howfulls.com/img/light2.jpg);
	background-size: contain;
	background-repeat: repeat-x;
	height: 8px;
	width: 100%;
	top: 58px;
}

/* ヘッダー */
header {
    width: 100%;
    padding: 0;
}
header #hd-logo {
	height: 60px;
	border-top: 0;
}
header #hd-logo img {
	margin: 0 auto;
	padding-top: 12px;
}
header #hd-com {
	display: none;
}

/* ナビ */
header #hd-main {
	position: fixed;
	bottom: 0;
	z-index: 999;
	width: 100%;
}
.global-nav {
	position: relative;
}
#main-nav {
	position: absolute;
	bottom: 55px;
	width: 100%;
	display: none;
}
#main-nav li {
	background: rgba(254,254,254,0.95);
	border-top: solid 1px #aaa;
	font-size: 15px;
}
#main-nav li:first-child, #main-nav li:nth-child(2) {
	border-top: 0;
}
#main-nav li:nth-child(7) {
	display: none;
}
#main-nav li a {
	display: block;
	height: 48px;
	line-height: 48px;
	font-weight: bold;
	color: #444;
	padding-left: 20px;
}
#main-nav #nav-menu {
	background: #888;
	color: #fff;
	font-weight: bold;
	height: 25px;
	line-height: 25px;
	font-size: 13px;
	padding-left: 20px;
}
.menu-eng {
	font-weight: normal;
	font-size: 13px;
	color: #ef8206;
	display: inline-block;
	padding-left: 15px;
}
#sub-nav {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background-color: #ef8206;
	border-top: 1px solid #8C5100;
	font-size: 14px;
	z-index: 1;
}
#sub-nav li {
	float: left;
	width: 33.333%;
	border-right: solid 1px #ddd;
	text-align: center;
	color: #fff;
}
#sub-nav li:last-child  {
	border-right: 0;
}
#sub-nav li a {
	display: block;
	height: 55px;
	color: #fff;
}
#sub-nav li a i {
	display: block;
	font-size: 24px;
	padding-top: 5px;
	padding-bottom: 3px;
}
#sub-nav li img {
	width: 38px;
	margin: 0 auto;
	padding-top: 5px;
	padding-bottom: 2px;
}
#button-menu {
	height: 55px;
}

/* メイン */
main {
	/*padding-bottom: 55px;*/
}

/* コンテンツ */
#content {
	padding-bottom: 50px;
}

/* ヘッドタイトル */
#page-head {
	height: 120px;
}
#page-head h1 img {
	height: 75px;
	width: auto;
}
#page-head h1 .page-head-top {
	height: 55px;
	width: auto;
}

/* パンくずリスト */
#bread {
	display: none;
}

/* アンダーナビ */
.under-nav {
	height: 80px;
 }
.under-nav p {
	font-size: 16px;
}
.under-nav p a {
	margin-top: 18px;
}

/* フッター */
footer {
	margin-bottom: 55px;
	padding: 10px;
	text-align: center;
}
footer #ft-com {
	padding-bottom: 8px;
}
footer #ft-com h2 {
	font-size: 16px;
}
footer #ft-com p {
	font-size: 13px;
}
footer #ft-privacy {
	font-size: 15px;
	padding-bottom: 3px;
}
footer #copy {
	font-size: 13px;
}
#page-top {
	display: none;
}

}