@charset "utf-8";
/* CSS Document */

body {
	font: 100% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	margin: 0; /
	padding: 0;
	text-align: center; /* IE 5* でコンテナが中央揃えに。テキストは、#container セレクタの初期設定である左揃えに設定されます */
	color: #000000;
	width:100%;
	height:100%;
}

#loader {
	background: #fff;
	margin: 0 auto;
	text-align: center;
	width:100%;
	height:100%;
	position:absolute;
}

#container {
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	display:none;
}


#header { 
	background: #FFF; 
	padding: 0 10px 0 20px;  
}


#header h1 {
	margin: 0; 
	padding: 0; 
}

#header p {
	margin: 0; 
	padding: 0;
}


h2 {
color: #364e96;
border: solid 3px #364e96;
padding: 0.5em;
border-radius: 0.5em;
margin-right:15px;
margin-left:15px;
}


/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	text-align: center;
	font-size: 18px;
	margin: 0;
	background: #364e96;
	padding: 5px 10px;
}

#menubar li {
	display: inline;
}
#menubar li a {
	text-decoration: none;
	padding: 10px;	
	color: #fff;
}
/*マウスオン時、現在表示中、の設定*/
#menubar li a:hover,
#menubar li.current a {
	color: #fff;	/*文字色*/
	border-bottom: 2px solid #fff;	/*下線の幅、線種、色*/
}

/*トップページのお知らせのデザイン
---------------------------------------------------------------------------*/
#mainContent {
	padding: 0 40px 0 40px; 
	background: #FFFFFF;
}

#info_area {
	clear: both;
	border-collapse: collapse;
	width: 100%;
	position:relative;
	margin-left:15px;
}


#info_area th {
  border-bottom: dashed 1px orange;
  width: 180px;
  font-weight: bold;
}


#info_area td {
  border-bottom: dashed 1px orange;
  width-min: 600px;
}

#footer { 
	background:#000;
} 


/*フッターメニューのデザイン
---------------------------------------------------------------------------*/
.footerpadding{
	width: 100%;
	height: 60px;
}

.footer_hold {
	width: 100%;
	height: 54px;
	position: fixed;
	bottom: 0;
	vertical-align:middle;
	font-size:small;
}

#foot-menu{
	text-align: left;
	font-size: small;
	background: #ccc;
}

#foot-menu ul {
	margin: 0;
}

#foot-menu li {
	font-size:12px;
	display: inline;
	padding: 0 5px;
	border-right: solid 2px #fff;
	font-weight:bold;
}

#foot-menu li a {
	text-decoration: none;
	color: #fff;
}

#foot-menu li a:hover{
	color: #364e96;
}



/*フッターのデザイン
---------------------------------------------------------------------------*/
#footer p {
	font-size:12px;
	margin: 0; 
	padding: 10px 0; 
	color:#FFF;
	text-align: center;
	font-size: smaller;
}


/*特商法ページのデザイン
---------------------------------------------------------------------------*/
#law {
  margin: 30px 0;

}

#law dl{
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background: #f1f1f4;
}

.SCTL dt{
  width: 30%;
  float: left;
  padding: 20px;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
}
.SCTL dd{
  margin-left: 30%;
  padding: 20px;
  border-top: 1px solid #ccc;
  background: #fff;
  text-align:left;
}
.SCTL dd:after{
  display: block;
  content: "";
  clear: both;
}
@media screen and (max-width: 320px) {
.SCTL dt{
    width: 100%;
    float: none;
  }
.SCTL dd{
    margin-left: auto;
    border-left: none;
  }
}

/*お問い合わせページのデザイン
---------------------------------------------------------------------------*/
#form {
  margin: 30px 0;

}

#form table{
  width: 100%;
  overflow: hidden;
  border: 1px solid #ccc;
  border-bottom: none;

}


#form th{
  width: 40%;
  border-bottom: 1px solid #ccc;
  background: #f2eb97;
  text-align:left;
  padding:10px;
}

#form td{
  border-bottom: 1px solid #ccc;
  text-align:left;
  padding:10px;
}

input[type="text"],
textarea {
    padding: 10px;
    outline: none;
    border: 1px solid #DDD;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
}

textarea {
    width: 300px;
}

input[type="text"]:focus,
texture:focus {
    box-shadow: 0 0 7px #3498db;
    border: 1px solid #3498db;
}


.square_btn {
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    color: #364e96;
    border: solid 2px #364e96;
    border-radius: 3px;
    transition: .4s;
	margin-right:30px;
	font-weight: bold;
	font-size:large;
	text-align: center;

}

.square_btn:hover {
    background: #67c5ff;
    color: white;
}



/*赤太文字
---------------------------------------------------------------------------*/

.red{font-weight: bold;
     color:red;
}