@charset "utf-8";

/* General
=========================================== */
html {
	font-size: 62.5%
}
body *, body *:after, body *:before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
body {
	color: #000;
	margin: 0;
	font-family: 'Quicksand', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", serif;
	padding: 0;
	background: #fff url(../images/bg.jpg);
	font-weight: 400;
	font-size: 14px;	/*font-size: 1.4rem*/
}
ul {
	padding: 0;
	margin: 0
}
strong {
	font-weight: bold;
}
a {
	text-decoration: none;
	color: #1d88d3;
}
a:hover {
	color: #6c3c92
}
a:hover {
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	text-decoration: none
}
a[href^="tel:"] {
	cursor: default;
	color: inherit;
	pointer-events: none;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
.hidden-pc {
	display: none;
}
a img {
	border: none;
	verticle-align: top;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:hover img {
	opacity: 0.7;     /* 透過レベル */
	filter: alpha(opacity=80);
}

/* Clear
=========================================== */

/* clearfix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after, section:after {
	clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf, section {
	zoom: 1;
}
section:before, section:after {
	content: "";
	display: table;
}

/* Common
=========================================== */
img {
	width: auto\9;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
}
i {
	margin-right: 4px;
}
#contents h2 {
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 0.5em;
	border-bottom: 1px dotted;
	padding-bottom: 4px;
	background: url("../images/side_list.png") 0px 6px no-repeat;
	padding-left: 24px;
	color: rgb(0, 73, 124);
}
#contents h3 {
	font-size: 20px;
	line-height: 1.7;
	background: #001A31; 

	margin-bottom: 10px;
	padding: 4px 8px;
	color: #fff;
	box-shadow: 0 0 4px 0px #A5A5A5;
}
#contents h3 span {
	padding: 1px 5px 1px 10px;
	border-left: 10px solid #003366;
}
#contents h4 {
	font-size: 1em;
	line-height: 1.642857143em;
}

/* Sanitation */
hr {
	border: 1px solid;
	margin: -1px 0;
}
ul ul, ol ol, ul ol, ol ul {
	margin-top: 0;
	margin-bottom: 0;
}
b, strong, em, small, code {
	line-height: 1;
}
sup, sub {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
}
sub {
	top: 0.4em;
}

/* Contenair
=========================================== */
.container {
	width: 1000px;
	margin: 0 auto;
}

/* table
=========================================== */
table {
	border-collapse: collapse;
	margin: 5px auto 15px auto;
}
table td {
	border-collapse: collapse;
	background-color: #ffffff;
	text-align: left;
	padding: 8px 4px;
	border: 1px solid #D6D6D6;
	line-height: 20px;
}
table td  span {
	line-height: 1;
}
table th {
	background-color: #1D88D3;
	text-align: right;
	padding: 8px 4px;
	white-space: nowrap;
	color: #fff;
	border-top: 1px solid #D4D4D4;
	border-right: 1px solid #D4D4D4;
	border-bottom: 1px solid #D4D4D4;
	border-left: 1px solid #D4D4D4;
	font-weight: normal;
	letter-spacing: 1px;
	background-repeat: repeat-x;
	background-position: top;
}

/* list
=========================================== */
section ul {
	list-style: none;
	padding-left: 20px;
}
section li {
}
section ul.list {
	list-style: none;
}
section ul.list li:before {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f138";
	margin-right: 5px;
}

/*横並びリスト*/
section ul.listbox {
	display: table;
}
section  ul.listbox li {
	display: table-cell;
	padding-left: 10px;
}
section ul.listbox li h4 {
	background: none;
	color: #ed7100;
	font-size: 0.875em;
	text-align: center;
}

/* dl dt dd
=========================================== */

/****************************************************
横並びリスト
****************************************************/
dl, dt, dd {
	margin: 0;
	padding: 0;
}
dl.dllist {
	width: 100%;
	background-color: #00497c;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: #001A31;
}
dl.dllist dt {
	float: left;
	clear: both;
	width: 150px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #001A31;
	font-weight: bold;
	padding: 5px;
	color: #fff;
}
dl.dllist dd {
	margin-left: 150px;
	background-color: white;
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #001A31;
	padding: 5px;
}

/* カラム
=========================================== */

/*margin,padding
=========================================== */
.mt05 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
	margin-top: 40px;
}
.mt45 {
	margin-top: 45px;
}
.mt50 {
	margin-top: 50px;
}
.mt60 {
	margin-top: 60px;
}
.mt70 {
	margin-top: 70px;
}
.mt80 {
	margin-top: 80px;
}
.mt120 {
	margin-top: 120px;
}
.mr02 {
	margin-right: 2px;
}
.mr03 {
	margin-right: 3px;
}
.mr04 {
	margin-right: 4px;
}
.mr05 {
	margin-right: 5px;
}
.mr10 {
	margin-right: 10px;
}
.mr15 {
	margin-right: 15px;
}
.mr20 {
	margin-right: 20px;
}
.mr25 {
	margin-right: 25px;
}
.mr30 {
	margin-right: 30px;
}
.mr35 {
	margin-right: 35px;
}
.mr40 {
	margin-right: 40px;
}
.mr45 {
	margin-right: 45px;
}
.mr50 {
	margin-right: 50px;
}
.mb0 {
	margin-bottom: 0;
}
.mb05 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb45 {
	margin-bottom: 45px;
}
.mb50 {
	margin-bottom: 50px;
}
.ml02 {
	margin-left: 2px;
}
.ml03 {
	margin-left: 3px;
}
.ml04 {
	margin-left: 4px;
}
.ml05 {
	margin-left: 5px;
}
.ml10 {
	margin-left: 10px;
}
.ml15 {
	margin-left: 15px;
}
.ml20 {
	margin-left: 20px;
}
.ml25 {
	margin-left: 25px;
}
.ml30 {
	margin-left: 30px;
}
.ml35 {
	margin-left: 35px;
}
.ml40 {
	margin-left: 40px;
}
.ml45 {
	margin-left: 45px;
}
.ml50 {
	margin-left: 50px;
}
.ml80 {
	margin-left: 80px;
}
.ml100 {
	margin-left: 100px;
}
.ml160 {
	margin-left: 160px;
}
.ma10 {
	margin: 10px;
}
.ma15 {
	margin: 15px;
}
.m0a {
	margin: 0 auto;
}
.ma_auto {
	margin-left: auto;
	margin-right: auto;
}
.ml08 {
	margin-left: 8px;
}
.mr08 {
	margin-right: 8px;
}
.pt05 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt25 {
	padding-top: 25px;
}
.pt30 {
	padding-top: 30px;
}
.pt35 {
	padding-top: 35px;
}
.pt40 {
	padding-top: 40px;
}
.pt45 {
	padding-top: 45px;
}
.pt50 {
	padding-top: 50px;
}
.pt70 {
	padding-top: 70px;
}
.pt120 {
	padding-top: 120px;
}
.pr02 {
	padding-right: 2px;
}
.pr03 {
	padding-right: 3px;
}
.pr04 {
	padding-right: 4px;
}
.pr05 {
	padding-right: 5px;
}
.pr10 {
	padding-right: 10px;
}
.pr15 {
	padding-right: 15px;
}
.pr20 {
	padding-right: 20px;
}
.pr25 {
	padding-right: 25px;
}
.pr30 {
	padding-right: 30px;
}
.pr35 {
	padding-right: 35px;
}
.pr40 {
	padding-right: 40px;
}
.pr45 {
	padding-right: 45px;
}
.pr50 {
	padding-right: 50px;
}
.pb0 {
	padding-bottom: 0;
}
.pb05 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb15 {
	padding-bottom: 15px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb25 {
	padding-bottom: 25px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb35 {
	padding-bottom: 35px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb45 {
	padding-bottom: 45px;
}
.pb50 {
	padding-bottom: 50px;
}
.pl02 {
	padding-left: 2px;
}
.pl03 {
	padding-left: 3px;
}
.pl04 {
	padding-left: 4px;
}
.pl05 {
	padding-left: 5px;
}
.pl10 {
	padding-left: 10px;
}
.pl15 {
	padding-left: 15px;
}
.pl20 {
	padding-left: 20px;
}
.pl25 {
	padding-left: 25px;
}
.pl30 {
	padding-left: 30px;
}
.pl35 {
	padding-left: 35px;
}
.pl40 {
	padding-left: 40px;
}
.pl45 {
	padding-left: 45px;
}
.pl50 {
	padding-left: 50px;
}
.pa05 {
	padding: 5px;
}
.pa10 {
	padding: 10px;
}
.pa15 {
	padding: 15px;
}

/*img
=========================================== */
.alignleft {
	float: left;
	clear: left;
	margin: 3px 10px 10px 1px;
}
.alignright {
	float: right;
	clear: right;
	margin: 3px 1px 10px 10px;
}
.alignleft img, .alignright img {
	max-width: 220px;
}

/*パンくず
=========================================== */
.bread ul {
	height: 40px;
	overflow: hidden;
	margin: 0 auto;
	overflow: hidden;
}
.bread ul li a {
}
.bread ul li {
	position: relative;
	float: left;
	font-size: 12px;
	line-height: 40px;
	margin-left: 5px;
	list-style: none;
	padding-right: 15px;
}
.bread ul li:after {
	content: ">";
	position: absolute;
	top: 0;
	right: 0;
	color: #999;
}
.bread ul li:last-child:after {
	content: "";
}

/*btn
=========================================== */
a.btn {
	background: #1d88d3;
	color: #ffffff;
	padding: 8px 16px;
	text-decoration: none;
	display: block;
	text-align: center;
}
a.btn:after {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f105";
	margin-left: 5px;
}
a.btn:hover {
	background: #2F76B5;
	color: #F8F8F6;
}

/* text
=========================================== */
.text80 {
	font-size: 80%;
}
.text90 {
	font-size: 90%;
}
.text120 {
	font-size: 120%;
}
.text140 {
	font-size: 140%;
}
.bold {
	font-weight: bold;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.red {
	color: rgb(179, 25, 25);
}

/* 流れのボックス
=========================================== */
.sectionBox {
	margin-bottom: 30px;
	display: block;
	overflow: hidden;
}
.flowBox {
	padding-bottom: 30px;
	margin-bottom: 15px;
	display: block;
	overflow: hidden;
	background: url(../image/arrow_down.png) center bottom no-repeat;
}
.flowBox dl {
	display: block;
	overflow: hidden;
	padding: 15px 20px;
	border: 3px solid #e5e5e5;
}
.flowBox dl dt {
	border-bottom: 1px dotted #ccc;
	margin-bottom: 10px;
	font-size: 1.2em;
}
.flowBox dl dd {
	margin-bottom: 0;
}

/* よくある質問
=========================================== */
dl.qaItem {
	display: block;
	overflow: hidden;
	border-bottom: 1px dotted #ccc;
	padding: 0 0 20px;
	margin: 0 0 20px;
	width: 100%;
}
dl.qaItem dt {
	margin-bottom: 15px;
	background: url(../image/options/qaIconQ.gif) left top no-repeat;
	padding-left: 32px;
	border: none;
}
dl.qaItem dt:before {
	content: "Q";
	background: #000000;
	padding: 0 4px;
	color: #ffffff;
	margin-right: 10px;
}
dl.qaItem dd {
	margin-bottom: 0;
	background: url(../image/options/qaIconA.gif) left top no-repeat;
	padding-left: 32px;
}
dl.qaItem dd:before {
	content: "A";
	background: red;
	padding: 0 4px;
	color: #ffffff;
	margin-right: 10px;
}

/****************************************************
パネル
****************************************************/
.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #EFEEEC;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid #EFEEEC;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	background: #F2FCFD;
	background: -moz-linear-gradient(-90deg, #ffffff 0%, #F2FCFD 100%);
	background: -webkit-linear-gradient(-90deg, #ffffff 0%, #F2FCFD 100%);
	background: linear-gradient(180deg, #ffffff 0%, #F2FCFD 100%);
	line-height: 30px;
	color: #00497C;
	font-weight: 700;
	font-size: 16px;
	font-size: 1.6rem;
}
#submain .panel-heading img {
	width: 30px;
	height: auto;
	border: none;
	float: left;
	margin-right: 10px;
}
.panel-body {
	padding: 15px;
}
