@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {min-height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	border-right:solid 10px #3333bb;
	border-left:solid 10px #3333bb;
/*	background: #3333bb;	/*背景色（古いブラウザ用）*/
/*	background: linear-gradient(#3333bb 150px, #fff 150px);	/*トップページ以外の背景設定。画面の上から150pxまでが#3333bbで、そこからすぐ#fffの白色に切り替える内容。*/
}
body#top {
	border-right:solid 10px #3333bb;
	border-left:solid 10px #3333bb;
/*	background: linear-gradient(#3333bb 450px, #fff 450px);	/*トップページの背景設定。画面の上から450pxまでが#3333bbで、そこからすぐ#fffの白色に切り替える内容。*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #3333bb;	/*マウスオン時の文字色*/
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: 80%;			/*ブロックの幅を画面の80%にする設定。*/
	max-width: 1000px;	/*上のwidth指定の追加設定。幅1000pxを最大幅に設定し、それ以上広げない。*/
	margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/
	overflow:hidden;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	text-align: center;		/*headerの中身をセンタリングさせる設定*/
	height: auto;			/*headerの高さ*/
	padding:25px 500px 10px 500px;
	margin:0 -500px 0 -500px;
	background: #3333bb;	/*headerの背景色*/
}
.inner {
	width:100%;
	max-width:1000px;
	margin:0 auto;
}
/*ロゴ画像設定*/
#logo img {
	width: 300px;			/*画像幅*/
}
#logo {
	float:left;
	margin-left:10px;
}

#logoimg {
	width:100%;
	max-width:1000px;
	height:90px;
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
	text-align:left;
}
.toplogo {
	width:300px;
	/*position:absolute;
	left:20px;
	top:10px;*/
}
.crown {
	width:300px;
	padding:0 0 0 10px;
	/*position:absolute;
	left:330px;
	top:10px;*/
}


.headerbutton {
	width:auto;
	max-width:1000px;
	height:60px;
	margin:20px 20px 15px 0;
	float: right;
}

a.button {
	float:right;
	color:#3333bb;
	/*height:60px;
	width:120px;*/
	text-decoration:none;
	padding:10px 15px;
	border-radius:5px;
	margin:0 10px;
	background:#66ff66;
	font-weight:bold;
	border-top:3px #afa solid;
	border-right:3px #3a3 solid;
	border-bottom:3px #3a3 solid;
	border-left:3px #afa solid;
}

a:hover.button {
	background:#55dd55;	
	border-top:3px #1a1 solid;
	border-right:3px #afa solid;
	border-bottom:3px #afa solid;
	border-left:3px #1a1 solid;
	padding:12px 13px 8px 17px;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	text-align: center;	/*文字をセンタリング*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline-block;	/*横並びにする設定*/
	margin-bottom:10px;
}
#menubar li a {
	font-weight:bold;
	text-decoration: none;
	padding: 15px 15px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/
	color: #fff;	/*文字色*/
}
/*マウスオン時の設定*/
#menubar li a:hover {
	background: url(../images/icon_arrow1.png) no-repeat center top;	/*矢印アイコンを出す設定。矢印が不要ならここは丸ごと削除する。*/
}

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
#contents {
	background: #fff;	/*背景色*/
	padding:20px 3%;		/*ボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
#contents h2 {
	font-size:22px;
	clear: both;
	margin-bottom: 12px;
	margin-top:5px;
	color: #3333bb;		/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
	border-bottom:3px solid #3333bb;	/*枠線　下*/
	border-left:15px solid #3333bb;	/*枠線　左*/
}
/*コンテンツのh3タグの設定*/
#contents h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 3px 20px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

#contents h4 {
	font-size:22px;
	background:url(../images/check.png) no-repeat left;
	padding-left:50px;
}
.uline {
	font-size:25px;
	color:#FFF;
	font-weight:bold;
	text-align:center;
	background:linear-gradient(#ffffff,#3333bb,#ffffff);
	border-radius:20px;
	/*background:url(../images/line.png) repeat-x left;*/
	width:350px;
}
/*コンテンツのp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 14px;	/*上、左右、下への余白*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}


.topbg {
	background:url(../images/topbg4.jpg) repeat;
	overflow:hidden;
}


.daihyo {
	width:200px;
	float:right;
}
.daihyo img {
	width:100%;
}

table.waku {
	width:100%;
}
table.waku th {
	width:160px;
	text-align:left;
	padding: 0 0 0 10px;
	border:1px #3333bb solid;
}
table.waku td {
	border:1px #3333bb solid;
	padding:0 5px;
}

table.waku td input {margin:5px 0;}

a.order:hover img {
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter:"alpha(opacity=80)";
}

#img {
	text-align:center;
}

.OS {
	width:49%;
	float:left;
}

.kishu-pc {
	width:100%;
	margin-bottom:15px;
}
.kishu-pc td {
	width:50%;
	vertical-align:top;
	border:solid 2px #3333bb;
	padding:3px 0 0 10px;
}
.kishu-pc td.kado {
	border:0px;
}
.kishu-mo {
	display:none;
}

.vtr {
	width:90%;
	margin:10px 5%;
}
.vtr2 {
	width:auto;
	height:100%;
}

.time {
	font-size:24px;
	font-weight:bold;
	color:#000000;
	text-align:center;
	line-height:2em;
}
.time span {
	font-size:40px;
	color:#ff0000;
}

.topimg {
	width:100%;
	margin:0;
	text-align:center;
	padding:0;
}

.payback {
	text-align:center;
	font-size:30px;
}

.payback span {
	color:#ff0000;
	font-size:50px;
	margin-left:5px;
}

.cdm {
	width:45%;
	margin:10px;
}

.voice {
	width:89%;
	margin:0 0 0 5%; 
	float:left;
	border:#3333bb solid 1px;
	padding-top:3px;
	font-size:16px;
	margin-bottom:10px;
}
.voice img {
	float:left;
	width:100px;
	margin:5px 20px 5px 0;
}

.vname {
	font-weight:bold;
	font-size:20px;
	color:#fff;
	background:#3333bb;
	padding:2px 35px 0 15px;
	width:100%;
}

.work {
	float:right;
	width:200px;
}

/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    /*max-width: 550px;/*最大幅*/
	width:100%;
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 5px 0 5px 20px;
    color :#2f8fcf;
    font-weight: bold;
    background :#a4cbf3;
    cursor :pointer;
	max-width:400px;
	text-align:left;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#85baef;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
	width:auto;
    /*max-width: 550px;/*最大幅*/
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
	width:auto;
    /*max-width: 550px;/*最大幅*/
    height: auto;
    padding: 5px;
    background: #fff;
    opacity: 1;
}


.ftlink {width:100%;}

.ftlink td a {
	float:left;
	margin:0 10px;
	font-weight:bold;
	padding:2px 8px;
}

.ftlink td a:hover {
	background:#fff;
}

.law {
	width:98%;
}

.law th {
	width:150px;
}

.law th, .law td {
	border:#3333bb solid 1px;
	padding:3px 5px 0 5px;
}

.c {
	width:100%;
	text-align:center;
}


.btn {
	width:150px;
	font-size:16px;
	padding:12px 0;
	margin:0 3px 11px 3px;
}

.btn.send {
	width:250px;
	font-size:22px;
	padding:9px 0;
	margin:0 3px 10px 3px;
}


.ssdselect1 {
	margin:-32px 0 0 30px;
}

.ssdselect2 {
	margin:-32px 0 10px 230px;
}



.tab-content {
	width:100%;
}

.tab-content input[type="radio"] {
  display: none;
}
.tab-content label {
	display:inline-block;
	width:49%;
	padding: 5px 3px;
	margin:0 1% 3px 0;
    cursor: pointer;
    box-sizing: border-box;
	text-align:center;
	border:#0C4282 solid 1px;
	border-radius:3px;
}

.tab-content label {
	height:auto;
	float:left;
}

.tab-content label img {
	max-height:80px;
}

.botan {
}
.tab-content label.umenu {
	height:auto;
	width:auto;
	margin:3px 3px;
	padding:5px 8px;
	border-top:#0C4282 solid 3px;
	border-bottom:#0C4282 solid 3px;
}
.umenu2 {
	text-align:center;
	vertical-align:middle;
}

.tab-content label:hover,
.tab-content input[type="radio"]:checked + label {
  color: #FFF;
  background-color: #0C4282;
}

.tab-content .tab-box {
  width: 100%;
  /*border: 2px solid #0C4282;*/
  transition-duration:1500ms;
}

.tabbox {
	padding:8px 2% 10px;
	width:95%;
	float:left;
}

.tabbox img {
	max-width:48%;
}

.tabbox .halfbox {
	width:50%;
	display:block;
	float:left;
}

.tabbox .halfbox img {
	max-width:98%;
}

.tabbox.boxright {
	/*margin:0 -50% 0 0;
	width:195%;*/
}

.boxleft {
	/*margin:0 50% 5px 0;*/
}

.boxright {
	/*margin-left:50%;*/
}

.tab-content > .tab-box > div {
  display: none;
}


#tab1:checked ~ .tab-box > #tabView1,
#tab2:checked ~ .tab-box > #tabView2,
#tab3:checked ~ .tab-box > #tabView3,
#tab4:checked ~ .tab-box > #tabView4,
#tab5:checked ~ .tab-box > #tabView5,
#tab6:checked ~ .tab-box > #tabView6,
#tab7:checked ~ .tab-box > #tabView7 {
  display: block;
}


table.model {
	width:90%;
	margin:0;
}

span.list {
	font-size:20px;
	font-weight:bold;
	color:#000000;
	border:none;
	margin-bottom:5px;
}



/*SERVICEページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*h4見出しの設定*/
.list h4 {
	color: #3333bb;	/*文字色*/
	font-size: 16px;	/*文字サイズ。少し大きくしています。*/
}
/*画像の設定*/
.list img {
	width: 20%;		/*画像幅*/
	float: left;	/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
.list p {
	padding: 0 !important;
}

/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 20px 500px;	/*左から、上下、左右への余白*/
	background:#3333bb;
	margin:0 -500px 0 -500px;
	color:#ffffff;
}
footer a {
	text-decoration: none;
	border: none;
	color:#ffffff;
}
footer .pr {
	display: block;
}

ftlogo {
	margin-left:50px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*tテーブルブロック設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 2px solid #000;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #000;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	width: 30%;	/*幅*/
	text-align: center;	/*センタリング*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #3333bb;}
.pr {font-size: 10px;}
cspan {color: #ff0000;}

@media screen and (max-width:1250px){

#container {
	width:100%;
	max-width:1250px;
}

#menubar li a {
	padding: 15px 35px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/
}

}

@media screen and (max-width:830px){

.ssdselect1 {
	margin:-32px 0 0 30px;
}

.ssdselect2 {
	margin:0 0 10px 0;
}

}

@media screen and (max-width:640px){

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: 100%;	/*ブロックの幅を画面の100%にする設定。*/
}

#menubar li a {
	padding: 15px 15px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/
}

.image {
	width:100%;
	text-align:center;
	margin:0;
}
.cdm {
	width:100%;
	margin:0;
}

table.waku th {
	float:left;
	width:94%;
	text-align:center;
	padding: 0 0 0 10px;
	border:1px #3333bb solid;
	border-bottom:0px #3333bb solid;
}
table.waku td {
	float:left;
	width:94%;
	border-bottom:0px #3333bb solid;
}
table.waku td.last {
	border-bottom:1px #3333bb solid;
}
/*
.tab-content label {
	width:80%;
}
.tabbox {
	width:90%;
}*/

}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	width: 100%;	/*ブロックの幅を画面の100%にする設定。*/
}

/*メニュー
---------------------------------------------------------------------------*/
#menubar li a {
	padding: 15px 10px;	/*各メニュー内の余白。上下に15px、左右に10pxあけるという意味。*/
}

.kishu-pc {
	display:none;
}

.kishu-mo {
	display:block;
	width:100%;
	vertical-align:top;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new h2.open {
	background: #3333bb url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
#new h2.close {
	background: #3333bb url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*tテーブルブロック設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;			/*テーブル内の余白*/
}

}
