﻿@charset "utf-8";

/******************** qa ********************/
dl.accordion {
	zoom: 1;
	overflow: hidden;
    text-align: left;
    margin: 10px;
    background: #fffecb;
    padding: 10px;
}
dl.accordion dt {
	cursor: pointer;
	clear: both;
	padding: 5px 0 5px 30px;
	font-size: 16px;
    background: url("../img/icon_plus.png") no-repeat 0 center;
}
dl.accordion dt:hover {
	color: #7bf;
}
dl.accordion dt:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
	border-bottom: none;
}
dl.accordion dd {
	padding: 10px 5px 10px 10px;
	line-height: 160%;
    background: #fff;
}
dl.accordion dd:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
	border-bottom: 1px dotted #ddd;
}
dl.accordion dd .red {
    font-weight: bold;
    margin: 0 5px 0 0;
}
/******************** company ********************/
.company {
    background: #f6f6f6;
    padding: 5px 0 20px;
}
/******************** privacy ********************/
.privacy {
    text-align: left;
    margin: 20px 15px 0;
}
.privacy dt {
    font-weight: bold;
    margin-bottom: 5px;
}
.privacy dd {
    margin-bottom: 10px;
}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
    background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#066));　/* Safari,Google Chrome用 */  
}
/********************
* html  IE6
*:first-child+html  IE7
head~/* */body  IE8/*
html>body  Firefox
body:last-child  Opera
html:not([lang*=""])  Firefox
html:not(:only-child:only-child)  Safari
********************/