/* ■基本装飾 */ 
	 
/* 文字装飾 */ 
h1, .h1, h2, .h2, h3, .h3,
h4, .h4, h5, .h5, h6, .h6 {
	margin-top: 10px;
	margin-bottom: 5px;
}

b {
	background: linear-gradient(transparent 60%, #fe0 0%);
}
em {
	font-weight: bold;
	font-style: normal;
	background: linear-gradient(transparent 60%, #9cf 0%);
}
strong {
	background: linear-gradient(transparent 60%, #f9c 0%);
}
.cmt {
	color: #777;
}
.cmt a, a.cmt {
	color: #8ad;
}
.cmt a:hover, a.cmt:hover,
.cmt a:focus, a.cmt:focus {
	color: #79c;
}

label {
	font-weight: normal;
	margin-bottom: 2px;
}
blockquote {
	padding: 5px 10px;
	margin: 5px;
	font-size: 14px;
	border-left: 5px solid #bbb;
}

a {
	transition: 0.5s ease-in-out;
}
 
/* リスト装飾 */ 
ul.standard {
	padding-left: 30px;
}
ul.link {
	padding-left: 12px;
	list-style: none;
}
ul.link li {
	text-indent: 1.2em;
	background-repeat: no-repeat;
	background-position: left 3px;
	background-image: url("../img/standard-list-marker.gif");
}
ol.usage {
	padding-left: 20px;
}
ul.notes {
	padding-left: 20px;
	list-style-type: none;
}
ul.notes li:before {
	content: "※";
	margin-left: -18px;
}

/* 定義リストの調整 */
dt {
	font-size: 17px;
}
dd {
	padding-left: 30px;
	padding-bottom: 5px;
}


hr {
	margin: 10px 0;
}
 
/* テーブル関連 */ 

/* bootstrap.min.cssの上書き。テーブルの株の妙な空白の削除 */
.table {
	margin-top: 2px !important;
	margin-bottom: 3px !important;
}

/* 情報一覧テーブル用 */
/* 自由に折り返しさせ、レイアウト崩れを出さぬよう */
.infoTable td, textarea {
	word-break: break-all;
	word-wrap: break-word;
}


/* 小さめテーブル用 */
table.small-blue {
	margin: 0 0 9px 0;
	box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
}

table.small-blue td, table.small-blue th {
	padding: 5px 8px;
	border-bottom: 1px solid #84b2e0;
	border-left: 1px solid #84b2e0;
}

table.small-blue th {
	color: #fff;
	background: #258;
	background: linear-gradient(rgba(34, 85, 136, 0.7), rgba(34, 85, 136, 0.9) 50%);
	font-size: 16px;
	text-align: center;
}
table.small-blue td {
	font-size: 15px;
	text-align: right;
}

table.small-blue tr td:last-child, table.small-blue th:last-child {
	border-right: 1px solid #84b2e0;
}
table.small-blue tr:nth-child(2n+1) {
	background: #f1f6fc;
}
table.normal {
	width: auto;
	display: table !important;
}


/* 文字一覧用。地域分類でも */
.chars th {
	width: 90px;
}
.chars td {
	word-break: break-all;
	word-wrap: break-word;
}
 
/* 印刷用表示・非表示設定 */ 
.printOnly {
	display: none;
}
@media print {
	.printHidden {
		display: none;
	}
	.printOnly {
		display: block;
	}
}
  
/* ■FormControl調整用 */ 

.form-control {
	padding: 5px 6px;
	height: 32px;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	cursor: default;
}

	 
/* FormControlの幅解除用 */ 
/* 「class="form-control"」を指定すると幅100％になってしまう。その解除 */
/* 見た目の統一はしたいが、幅は普通でいい時用。主にSELECT要素 */
.normal {
	width: auto;
	display: inline;
}
.smallest {
	width: 40px;
	display: inline;
}
.smaller {
	width: 60px;
	display: inline;
}
.small {
	width: 70px;
	display: inline;
}
.smallish {
	width: 100px;
	display: inline;
}
.medium {
	width: 130px;
	display: inline;
}
.largish {
	width: 150px;
	display: inline;
}
.large {
	width: 170px;
	display: inline;
}
.larger {
	width: 200px;
	display: inline;
}
.largest {
	width: 250px;
	display: inline;
}
 
/* checkbox と radio を大きめに */ 
input[type=checkbox] {
	height: 18px; width: 18px;
	vertical-align: middle;
	margin: 0;
}
input[type=radio] {
	height: 15px; width: 15px;
	vertical-align: middle;
	margin: 0;
}

/* TEXTAREAの折り返しを自由に */
textarea {
	font-family: "ＭＳ ゴシック", "Osaka?等幅", monospace;
	line-height: 1.2 !important;
	tab-size: 4;
	resize: vertical;
}

/* 数値コントロールなどの右寄せ */
input[type=number], .num, .right {
	text-align: right;
}

/* spinボタングループ用 */
table.spin {
	margin: 0 0 12px 0;
}
table.spin input[type=number] {
	font-size: 23px;
	height: 43px;
	width: 90px;
}
table.spin td {
	padding: 0 5px 0 0;
}
  
/* ■bootstrap.min.cssの設定の上書き */ 

	 
/* 全体とフッタ */ 

/* (ヘッダ・フッタ以外の)中央部分 */
body > .container {
	padding: 5px;
}

/* Sticky footer styles */
html {
	position: relative;
	min-height: 100%;
}
body {
	/* Margin bottom by footer height */
	margin-bottom: 60px;
	padding-top: 0px;
}
#footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	/* Set the fixed height of the footer here */
	height: 60px;
	background-color: #f5f5f5;
}

#footer > .container {
	padding-right: 15px;
	padding-left: 15px;
}

/* フッタのCopyright部分 */
.container .text-muted {
	margin: 20px 0;
}
.text-muted a {
	color: #9AD;
}
 
/* 画面上部のナビゲーションメニュー用 */ 
.panel, .list-group {
	margin-top: 4px !important;
	margin-bottom: 6px !important;
}
.panel-body {
	overflow: auto;
	padding: 10px;
}

.navbar {
	box-shadow: 0 0 10px #aaF;
	margin-bottom: 7px;
	min-height: 45px;
}
/* 少しコンパクトに */
.navbar-brand {
	height: 45px;
	padding: 12px 9px;
}
.nav > li > a {
	padding: 12px 10px;
}
.sidebar-offcanvas {
	padding-left: 12px;
	padding-right: 12px;
}
 
/* 幅が狭い時に表示されるメニューボタン */ 
button.navbar-toggle {
	height: 34px;
	width: 42px;
}
button.navbar-toggle .icon-bar {
	transition: all 0.4s ease-in-out;
	position: absolute;
	display: block;
	margin-top: 0px !important;
}

button span.icon-bar:nth-of-type(1) {
	top: 8px;
}
button span.icon-bar:nth-of-type(2) {
	top: 15px;
}
button span.icon-bar:nth-of-type(3) {
	top: 22px;
}

button:hover span.icon-bar:nth-of-type(1) {
	transform: translateY(-1px);
	transition: 0.4s;
}
button:hover span.icon-bar:nth-of-type(3) {
	transform: translateY(1px);
	transition: 0.4s;
}

button:not(.collapsed) span.icon-bar:nth-of-type(1) {
	transform: translateY(7px) rotate(225deg);
	transition: all 0.4s ease-in-out;
}
button:not(.collapsed) span.icon-bar:nth-of-type(2) {
	transform: rotate(45deg);
	transition: all 0.2s 1.0s ease-in-out;
}
button:not(.collapsed) span.icon-bar:nth-of-type(3) {
	transform: translateY(-7px) rotate(-225deg);
	transition: all 0.4s 0.5s ease-in-out;
}
 
/* 右部のナビゲーション用 */ 
.list-group-item {
	padding: 9px 12px;
}

.panel-primary > .panel-heading {
	background-color: #48C;
	background: linear-gradient(#59D, #26A);
}
 
/* その他 */ 

/* 『印刷用「6つの箱」』で使用 */
.tooltip-inner {
	text-align: left;
}
  
/* ■個別パーツ調整 */ 
	 
/* SNSボタン共通 */ 
ul.sns {
	padding: 0;
	margin-top: 3px;
	margin-bottom: 4px;
}
ul.sns li {
	display: inline-block;
}

/* Twitterボタン調整用 */
#twitter-widget-0 {
	padding-left: 7px;
	width: 95px !important;
}

/* Facebookボタン調整用 */
.facebook-button {
	border: none;
	overflow: hidden;
	width: 110px;
	height: 21px;
}

/* Google+ +1ボタン調整用 */
#___plusone_0 {
	width: 75px !important;
}
 
/* コード表示部分用 */ 
/* 枠線がなくはっきりしない感じだったので、枠線を表示させた */
.syntaxhighlighter {
	border: solid 1px #ccc;
	border-radius: 2px;
	overflow-y: hidden !important;
}
.CodeMirror-foldmarker {
	text-shadow: #37C 0 0 4px !important;
	font-size: 12pt !important;
}
.CodeMirror-scroll {
    margin-bottom: -9px !important;
	padding-bottom: 9px !important;
}
.CodeMirror {
    margin: 12px 0 8px !important;
}
 	
/* Ajax読込み待ち表示用 */ 
#loading, #sending {
	vertical-align: middle;
	width: 32px;
	height: 32px;
	display: inline-block;
	background-size: contain;
}
.loading {
	background-image: url("../img/loading_spiral.gif");
}
.sending {
	background-image: url("../img/sending_mail.gif");
}

 
/* 環境表示分け */ 
div.envlabel {
	float: left;
	position: absolute;
	top: 42px;
	left: 8px;
	z-index: 999;
}
div.envlabel:after {
	color: #fff;
	padding: 3px 7px;
	border-radius: 4px;
}

div.envlabel#LOCAL:after {
	content: "ローカル環境";
	background-color: #080;
	background: rgba(0, 120, 0, 0.7);
}
div.envlabel#STG:after {
	content: "STG環境";
	background-color: #800;
	background: rgba(120, 0, 0, 0.7);
}
 
/* フォーム装飾 */ 
.must {
	color: #FFF;
	background: #F45;
	font-size: 15px;
	border-radius: 3px;
	padding: 4px 8px;
	margin-left: 3px;
}
.form-item-title {
	margin-bottom: 6px;
	font-size: 16px;
}
 
/* ちょこっとメッセージ結果ダイアログ */ 

/* デバッグ用 */
#modalMsg pre {
	white-space: pre-wrap;
}

/* 縦中央寄せ */
.modal {
	text-align: center;
	padding: 0 !important;
}
.modal:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -4px;
}
.modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}
 
/* その他 */ 
.securimage {
	border: solid 1px #444;
	border-radius: 3px;
}

/* 中央寄せで配置 */
.youtube {
	text-align: center;
	margin: auto;
}

/* IPA iCatの調整 */
@media screen and (min-width: 992px) {
	#ipa {
		padding-left: 20pt;
	}
}

/*
	オプション選択コントロールの自動作成部分用
	・変数名・クラス名・定数名 形式変換
	・toLocaleString引数作成くん
*/
h3.title {
	font-size: 15px;
	margin: 7px 1px 3px 1px;
	padding: 3px;
	background-color: #8BE;
	background: linear-gradient(#CEF, #8BE);
	border: #99B solid;
	border-width: 0px 2px 2px 0px;
}
  
