@charset "utf-8";

/*タグのリセット*/
html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, 
em, img, small, strong, sub, 
dl, dt, dd, ol, ul, li, fieldset, form, label, 
article, aside, figcaption, figure, 
footer, header, menu, nav, section, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ul{
	list-style-type: none;
}

/***************************************ページベース設定***************************************/
/*ページ背景、フォントなど*/
body {
	color: #000;
	background: url(../images/bg_yellow.jpg) repeat;
	font-weight: normal;
	line-height: 2;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 14px;
}
.f120 {
	font-size: 120%;
}
/*箇条書き設定*/
ol {
	padding-left: 2em;
}

dt{
	font-size: 120%;
	font-weight: bold;
}

dd{
	padding-left: 1em;
}

.square {
	list-style-type: square;
	margin-left: 1.5em;
}

/*リンク設定*/
a {
	color: #00F;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}

/*テーブル設定*/
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
	width: 100%;
	border: 1px solid #CCC;
	line-height: 2;
	margin-bottom: 10px;
}
td {
	width: 507px;
	padding: 3px 10px;
	background-color: #ffffe0; /*lightyellow*/
	border: 1px solid #CCC;
}
th {
	width: 120px;
	padding: 3px 10px;
	text-align: center;
	background-color: #ffd700; /*gold*/
	border: 1px solid #CCC;
}
caption {
	padding: 3px 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #ffd700; /*gold*/
	font-weight: bold;
}

/*ボタン設定*/
input[type="submit"] {
	width: 150px;
	padding: 5px;
	margin-bottom: 20px;
	border: 1px solid #CCC;
	border-radius: 30px;
	background-color: #EEE;
}
input[type="submit"]:hover {
	background-color: #DDD;
}

/*幅設定*/
.wa {
	width: 100%;
}
.wl {
	width: 96%;
}
/*.ws {
	width: 50%;
}*/
.ws img {
	width: 300px;
}

/*テキスト配置設定*/
.c {
	text-align: center;
}
.r {
	text-align: right;
	}

/*FLOAT設定*/
.FR {
	float: right;
}

.FL {
	float: left;
}
.clear {
	clear: both;
}


/*色設定*/
.color_red {
	color: #e90e0e; /*赤*/
}
.color_orange {
	color: orange;
}
.bg_white {
	background-color: #FFF; /*背景白*/
}
.bg_color {
	background-color: #fff9cc;
	border-radius: 6px;
}

/*強調出力*/
.midashi {
	background: linear-gradient(transparent 70%, #ff8eee 70%); /*ピンクの蛍光ライン*/
	font-size: 120%;
}

/*表示・非表示設定*/
#sdisp {
	display: none;
}


/*コンテナ*/
#container {
	width: 960px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
	background-color: #FFF;
}

/*サイトロゴ*/
header h1 {
	font-size: 12px;
/*	padding-left: 10px;
	padding-top: 20px;*/
}

/*メニューブロック設定*/
header nav ul {
	background-color: #E54500;
	height: 40px;
}
/*各メニュー設定*/
header nav ul li {
	float: left;
	border-right: 1px solid ;
	border-right-color: #FF5E19;
}
header nav ul li a {
	line-height: 40px;
	color: #FFF;
	text-decoration: none;
	display: block;
	text-align: center;
	padding-right: 20px;
	padding-left: 20px;
}
header nav ul li a:hover,
header nav ul li.focus {
	background-color: #FF5E19;
	color: #FFF;
}

/*コンテンツ*/
#contents {
	clear: left;
}

/*メインコンテンツ*/
#main {
	float: left;
	width: 700px;
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

#main h1 {
	background-color: #FF5E19;
/*	background: url(../images/bg_red.png) repeat;*/
	border-radius: 6px;
	font-size: 130%;
	color: #FFF;
	padding: 3px 0px 3px 15px;
	clear: both;
	margin-top: 0;
	margin-bottom: 10px;
}

#main h2 {
	font-size: 130%;
	color: #000;
	background-color: #FF5E19;
	background-image: url(../images/icon_bin2.png);
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom: 2px solid;
	padding: 5px 0px 0px 32px;
	clear: both;
}

/*#main h3 {
	font-size: 120%;
	color: #E54500;
	background: url(../images/bg_yellow.jpg);
	border-left: 15px solid;
	border-bottom: 1px solid;
	padding: 5px 0px 0px 15px;
	clear: both;
}*/

#main h3 {
	font-size: 110%;
	color: #000;
	border-left: 10px solid;
	border-bottom: 1px solid;
	padding: 5px 0px 0px 15px;
	clear: both;
}

#main p {
	padding: 0 15px;
}

#main img {
	padding: 5px;
}
#main figure {
	float: right;
	padding: 20px 5px 5px 5px;
}
#main figure img {
	padding: 0px;
}
#main figcaption {
	padding: 0px;
	font-size: 90%;
	line-height: 1;
}

/*サブコンテンツ*/
#sub {
	float: right;
	width: 240px;
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

#sub h1 {
	border: 1px solid #CCC;
	font-size: 100%;
	text-align: center;
	padding: 5px 0px;
	background-color: #FF5E19;
/*	background: url(../images/bg_yellow.jpg); */
}

#sub ul {
	margin-bottom: 1em;
}
#sub ul li a {
	color: #666;
	text-decoration: none;
	display: block;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	padding-left: 10px;
}
#sub ul li a:hover {
	background-color: #fff9cc;
}

#sub img {
	padding: 5px 0;
}

/*フッター設定*/
footer {
	clear: both;
	text-align: center;
	padding: 5px,0px;
	background-color: #E54500;
	color: #FFF;
	line-height: 1.5;
	font-size: 80%;
}

footer a {
	color: #CCC;
}
footer a:hover {
	color: #FFF;
}

/***************************************各ページの設定***************************************/
/*トップページのメイン画像*/
#mainimg img {
	-webkit-box-shadow: 0px 2px 5px #bebebe;
	box-shadow: 0px 2px 5px #bebebe;
}

/*トップページのWhat'sNEW*/
label {
	background-color: #006F90;
	border-radius: 6px;
	font-size: 130%;
	color: #FFF;
	padding: 3px 0px 3px 15px;
	clear: both;
	margin-top: 0;
    display: block;
}

input[type="checkbox"].on-off{
    display: none;
}

.whatnew dl {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	padding-left: 10px;
	margin-bottom: 5px;
}

.whatnew dd {
	border-bottom: 1px solid #d2d2d2;
	padding-left: 8em;
	cue-after: clearboth;
}

.whatnew dt {
	font-size: 100%;
	float: left;
	width: 8em;
}

input[type="checkbox"].on-off + dl{
	height: 0;
	overflow: hidden;
}

input[type="checkbox"].on-off:checked + dl{
    height: 200px;
    overflow: auto;
}

/*吹き出し見出し*/
.hukidasi_katsu {
	background-image: url(../images/icon_katsu.png);
	padding-left: 3em;
	color: #e90e0e; /*赤*/
	font-size: 110%;
	text-decoration: underline;
}

.hukidasi img {
	margin-bottom: -15px;
}

.hukidasi {
	color: #e90e0e; /*赤*/
	font-size: 110%;
	text-decoration: underline;
}
