@charset "utf-8";


/*==-----------------------------------------------
CSS Information

 File name:      laquu.css
 Author:         Crea.,Inc. 
 Style Info:     標準のスタイル
 
 ==機能一覧==
■表示関連
01.エクストアイコン
02.要素の固定（ポスフィックス）

■UI
03.フォントサイズ
04.tableのボーダー指定＆オンマウス（ストライプ）
05.ドロップダウン
06.画像ロールオーバーの設定(オーバー)
07.バナーのフェード(クリアオーバー)
08.ブリンク
09.ページのスクロール(スクローラー)
10.ブラックアウトスクロール(任意色指定可能)
11.アコーディオン
12.タブ
13.ティッカー
14.ツールチップ
15.バブルポップ
16.トースト
17.インナースライド

■その他
18.target="_blank"代替


-------------------------------------------------*/




/*==-----------------------------------------------
エクストアイコン
-------------------------------------------------*/
.ei-panel a {
 	padding: 0 0 0 18px;
 	margin: 0 8px 0 0 ;
 }
.ei-panel .icon-jpg{ background: url(../img/common/exticon/jpg.png) no-repeat 0 0; }
.ei-panel .icon-gif{ background: url(../img/common/exticon/pic.png) no-repeat 0 0; }
.ei-panel .icon-png{ background: url(../img/common/exticon/pic.png) no-repeat 0 0; }
.ei-panel .icon-pdf{ background: url(../img/common/exticon/pdf.png) no-repeat 0 0; }


/*==-----------------------------------------------
要素の固定
-------------------------------------------------*/

.fixed {
	background: #FFF;
    border:solid 1px #F00;
    position: fixed;
    text-align: center;
    z-index: 1000;
}
#posfix #fixed1{
	width:150px;
	height:50px;
    right: 50px;
    top: 100px;
}
#posfix #fixed2{
	width:150px;
	height:50px;
    right: 50px;
    top: 200px;
}
#posfix #fixed3{
	width:150px;
	height:50px;
    right: 50px;
    top: 300px;
}




/*==-----------------------------------------------
/* フォントサイズ
--------------------------------------------------*/
body.large{ font-size: 24px; }
body.middle{ font-size: 16px; }
body.small{ font-size: 12px; }



/*==-----------------------------------------------
table、table内のマウスオーバー
-------------------------------------------------*/

#contents .section tbody.odd td{background: #FFF;}
#contents .section tbody.even td{background: #EEE;}
#contents .section tbody.first td{background: #FFF;}
#contents .section tbody.second td{background: #EEE;}
#contents .section tbody.third td{background: #DDD;}
#contents .section tbody.fourth td{background: #CCC;}
#contents .section tbody.hv td{background: #FFC;}/*マウスオーバー*/



/*==-----------------------------------------------
ドロップダウン
-------------------------------------------------*/
.section .drop-panel {}
.section .drop-panel ul {
	zoom: 1;
	margin: 0 0 20px;
}
.section .drop-panel ul:after {
	content: " ";
	display: block;
	clear: both;
}
#contents .section .drop-panel ul li {
	float: left;
	margin: 0 0 0 0;
	position: relative;
	padding: 0;
}
.section .drop-panel ul li a {
	display: block;
	padding: 0;
	width: 150px;
	height:40px;
	background: #000;
	color: #FFF;
}
.section .drop-panel ul li a:hover {
	background: #F00;
}
.section .drop-panel ul li ul {
	position: absolute;
	top: 40px;
	left: 0;
}
.section .drop-panel ul li ul li {
	float: none;
}
.section .drop-panel ul li ul li a {}
.section .drop-panel ul li ul li ul {
	top: 0;
	left: 150px;
}
.section .drop-panel ul li ul li ul li {}
.section .drop-panel ul li ul li ul li a {}



/*==-----------------------------------------------
アコーディオン
--------------------------------------------------*/
#contents .section .accordion-panel h3 a {
    text-decoration: none;
}

/*==-----------------------------------------------
タブ
-------------------------------------------------*/
#contents .section .tab-panel {}
#contents .section .tab-panel ul#tab {
    zoom: 1;
    position: relative;
width:230px;
float:left;
}
#contents .section .tab-panel #tabcontentset {
width:550px;
float:right;
}
#contents .section .tab-panel ul#tab li {
    width:200px;
    height: 95px;
    margin: 0 0 10px 0;
    padding: 0 30px 0 0;
}
#contents .section .tab-panel ul li a {
    display: block;
    width:100%;
    text-decoration: none;
}
#contents .section .tab-panel ul li a img{
float:left;
margin-right:10px;
}



/*==-----------------------------------------------
ブリンク
-------------------------------------------------*/


/*==-----------------------------------------------
ティッカー
-------------------------------------------------*/
#contents .section .ticker-panel {
    height: 120px;
    overflow: hidden;
    background: #FFF;
}
#contents .section .ticker-panel img {
    float: left;
    margin: 0 10px 0 0;
}
#contents .section .ticker-panel div.ticker-contents {
    zoom: 1;
    height:100px;
    background: none;
    padding: 10px;
    margin: 0;
}
#contents .section .ticker-panel div:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

/*==-----------------------------------------------
ツールチップ
-------------------------------------------------*/
.laquu-tooltip-container {
    border: 1px solid #999;
    background: #EFEFEF;
    background: -webkit-gradient(linear, center top, center bottom, from(#FFF), to(#DDD));
    background: -moz-linear-gradient(top, #FFF, #CCC);
    padding: 5px 12px;
    border-radius: 6px;
    line-height: 1.5;
}

/*==-----------------------------------------------
バブルポップ
-------------------------------------------------*/
.bubble-panel {
}
.bubble-panel .popup{
	border: 1px solid #39F;
	padding: 6px;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(30, 30, 30, .7);
	background: #FFF;
}

/*==-----------------------------------------------
トースト
-------------------------------------------------*/
.laquu-toast-container {
	padding: 15px 10px;
	border: 3px solid #CCC;
	background: #666;
	background: rgba(60, 60, 60, .75);
	width: 280px;
	text-align: center;
}
.laquu-toast-message {
	color: #FFF;
}


/*==-----------------------------------------------
インナースライド
-------------------------------------------------*/
.innerslide {
	padding: 8px;
	text-align: center;
	border: 1px solid #666;
	color: #333;
	position: relative;
	overflow: hidden;
	width: 450px;
	height: 140px;
	margin: 0 auto 10px;
	background: #FFF;
}
.laquu-innerslide {
	position: absolute;
    background: #666;
	background: rgba(30, 30, 30, .7);
	color: #FFF;
	padding: 8px;
	width: 450px;
	height: 140px;
}

.aInput {
	width: 100%;
	line-height: 40px;
	margin: 0 auto 20px;
	background-color: #fff;
	border: 1px solid #999;
	padding: 0px 0 6px 0;
	height: 38px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	text-align: center;
}

ul#ssss>li {
position: relative;
list-style: none;
float: left;
width: 50%;
}

input[type="radio"] {
opacity: 0;
position: absolute;
top: -3px;
left: -3px;
width: 100%;
height: 100%;
padding: 0;
}

input[type="radio"]:checked + label {
text-shadow: 0 -1px #fff;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(100,100,100,.3)), color-stop(1, rgba(255,255,255,0)));
color: #111;
}

label {
display: block;
padding: 10px 20px;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #ddd), color-stop(0.5, #ccc), color-stop(1, #bbb));
border: 1px solid #fff;
border-radius: 10px 0 0 10px;
-webkit-box-shadow: 0 0 5px #aaa;
color: #333;
font-weight: bold;
text-shadow: 0 1px #fff;
text-align: center;
font-size: 11px;
}

ul#ssss>li:last-child label {
border-left: 0;
border-radius: 0 10px 10px 0;
}

.aInput2 {
width: 100%;
line-height: 40px;
margin: 0 0 10px 0;
background-color: #e6e6e6;
border: 1px solid #999;
padding: 0;
height: 30px;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
.btn_submit {
display: inline-block;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
background: -webkit-linear-gradient(top, #fff 0%, #eee 87%);
background: -moz-linear-gradient(top, #fff 0%, #eee 87%);
background: -o-linear-gradient(top, #fff 0%, #eee 87%);
background: linear-gradient(to bottom, #fff 0%, #eee 87%);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
padding: 10px;
border: solid #CCC 1px;
margin: 0 auto;
text-align: center;
}