@charset "UTF-8";
/* ---------------------------------------------------------------------------

	基本スタイル

 -----------------------------------------
	目次
 -----------------------------------------
 	1.基本構造
	　バディ・リンク・見出し・イメージ・リスト・段落・非表示用タグ
 	2.フロート解除
	3.回り込みBOX・ボーダーBOX・回り込みボーダーBOXなど各種BOX
	4.基本の表組（table）

---------------------------------------------------------------------------

 1.基本構造（バディ・リンク・段落・見出し・リストタグなど）
---------------------------------------------------- */
html,body{
	font-family:メイリオ,Meiryo,"ＭＳ Ｐゴシック" , "Hiragino Kaku Gothic Pro" , "ヒラギノ角ゴ Pro W3", Osaka, sans-serif;
	font-size:16px;
	color: #323232;
	margin: 0;
	padding: 0;
}

a:link, a:visited {
	color: #002A7E;
}

a:hover {
	color: #404040;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
margin:0;
line-height:1.3em;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
	display:block;
}

img, img a{
border:none;
vertical-align: top;
}

p{
font-size:16px;
margin:0 0 16px 0;
padding:0;
line-height:1.4em;
text-align:justify;
}

p img{
	margin:0 0 3px;
}

.mintyo{
	font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "平成明朝", "細明朝", "ＭＳ Ｐ明朝", serif;
}

.xltext{
font-size:22px;
margin:0 0 18px;
padding:0;
line-height:1.4em;
}

.ltext{
font-size:19px;
margin:0 0 16px;
padding:0;
line-height:1.4em;
}

.stext{
font-size:14px;
margin:0 0 14px;
padding:0;
line-height:1.4em;
}

.xstext{
font-size:12px;
margin:0 0 12px;
padding:0;
line-height:1.4em;
}

.indent{
	text-indent: 1.0em;
}
.indent2{
	padding-left: 1.0em;
}

ul{
list-style-type:none;
list-style-position:outside;
margin:0; 
padding:0; 
}

li{
margin:0;
padding:0;
line-height:1.2em;
}

iframe{
	border: none;
	}

.centertext{
text-align:center;
margin:0 0 15px 0;
}

.righttext{
text-align:right;
}

.leftbox{
	float:left;
	margin:0 15px 15px 0;
}

.rightbox{
	float:right;
	margin:0 0 15px 15px;
}

.leftbox img, .rightbox img{
display:block;
	margin:0 0 3px;
}

.leftbox img.block, .rightbox img.block{
	display:block;
}

.block{
	display:block;
}

/* 
 2.フロート解除スタイル
---------------------------------------------------- */
.clearfix:after { /*floatの解除、ここがポイント*/
display:block;
clear:both;
height:0px;
visibility:hidden;
content:".";
}
.clearfix {
min-height: 1px; /*IE6、7対策*/
}
* html .clearfix {
height: 1px;
/*¥*//*/ /*MAC IE5.x対策*/
height: auto;
overflow: hidden;
/**/
}

.clear{
	clear:both;
}

/* 
 2.基本色
---------------------------------------------------- */
.White{
	color:#FFF;
}

.Red{
color:#C00;
}

.WineRed{
color:#540a3d;
}

.Pink{
color:#DA5F5F;
}

.Blue{
	color:#002A7E;
}

.WaterBlue{
	color:#29AAE1;
}

.Orenge{
	color:#F05A24;
}

.Gray{
	color:#404040;
}

.LightGray{
	color:#999;
}

.Brown{
	color:#5e472a;
}

.Ocher{
	color:#9C9C3C;
}

/* 
 2.取り消し線
---------------------------------------------------- */
.CancelLine{
text-decoration: line-through;	
}
del{
    background-image: linear-gradient(transparent 0.5em, #404040 0, #404040 calc(0.5em + 1px), transparent 0, transparent calc(0.5em + 3px), #404040 0, #404040 calc(0.5em + 4px), transparent 0);
    text-decoration: none;
}

/* 
 7.基本表組みTABLE
----------------------------------------------------
-------------7-1 表組み1--------------------------*/
.basic1 {
    border-spacing: 0;
	width:100%;
    border: 1px solid #CCC;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
         -o-border-radius: 6px;
            border-radius: 6px;
    box-shadow: 0 1px 1px #CCC;	
	margin-bottom:10px;
}
.basic1 th,
.basic1 td {
    padding:5px 12px;
    background:#FFF;
    border-bottom:solid 1px #CCC;
    border-right:solid 1px #CCC;
}
.basic1 th {
    background:#e3dcd5;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    color:#69655c;
}


/* -----------------------
  左上角丸　最初の行の最初のセル
----------------------- */
.basic1 tr:first-child th:first-child,
.basic1 tr:first-child td:first-child {
    -webkit-border-radius: 6px 0 0 0;
       -moz-border-radius: 6px 0 0 0;
         -o-border-radius: 6px 0 0 0;
            border-radius: 6px 0 0 0;
}
/* -----------------------
  右上角丸　最初の行の最後のセル
----------------------- */
.basic1 tr:first-child th:last-child,
.basic1 tr:first-child td:last-child {
    -webkit-border-radius: 0 6px 0 0;
       -moz-border-radius: 0 6px 0 0;
         -o-border-radius: 0 6px 0 0;
            border-radius: 0 6px 0 0;
}
/* -----------------------
  左下角丸　最後の行の最初のセル
----------------------- */
.basic1 tr:last-child th:first-child,
.basic1 tr:last-child td:first-child {
    -webkit-border-radius: 0 0 0 6px;
       -moz-border-radius: 0 0 0 6px;
         -o-border-radius: 0 0 0 6px;
            border-radius: 0 0 0 6px;
}
/* -----------------------
  右下角丸　最後の行の最後のセル
----------------------- */
.basic1 tr:last-child th:last-child,
.basic1 tr:last-child td:last-child {
    -webkit-border-radius: 0 0 6px 0;
       -moz-border-radius: 0 0 6px 0;
         -o-border-radius: 0 0 6px 0;
            border-radius: 0 0 6px 0;
}
/* --------------------------------------------
  thaed,tbodyを使う場合の設定
-------------------------------------------- */
.basic1 thead th {background:#e3dcd5;}
.basic1 thead+tbody th {background:#f4ede6;}
.basic1 tbody th {text-align:left;}/*IE*/
/* -----------------------
  左上角丸 thead内　最初の行の最初のセル
----------------------- */
.basic1 thead tr:first-child th:first-child,
.basic1 thead tr:first-child td:first-child {
    -webkit-border-radius: 6px 0 0 0;
       -moz-border-radius: 6px 0 0 0;
         -o-border-radius: 6px 0 0 0;
            border-radius: 6px 0 0 0;
}
/* -----------------------
  右上角丸 thead内　最初の行の最後のセル
----------------------- */
.basic1 thead tr:first-child th:last-child,
.basic1 thead tr:first-child td:last-child {
    -webkit-border-radius: 0 6px 0 0;
       -moz-border-radius: 0 6px 0 0;
         -o-border-radius: 0 6px 0 0;
            border-radius: 0 6px 0 0;
}
/* -----------------------
  角丸なし　thaedの後のtbody 最初の行の最初のセル
  角丸なし　thaedの後のtbody 最初の行の最後のセル
----------------------- */
.basic1 thead+tbody tr:first-child th:first-child,
.basic1 thead+tbody tr:first-child td:first-child,
.basic1 thead+tbody tr:first-child th:last-child,
.basic1 thead+tbody tr:first-child td:last-child {
    -webkit-border-radius:0px;
       -moz-border-radius:0px;
         -o-border-radius:0px;
            border-radius:0px;
}
/* -----------------------
  左下角丸　thaedの後のtbody 最後の行の最初のセル
----------------------- */
.basic1 thead+tbody tr:last-child th:first-child,
.basic1 thead+tbody tr:last-child td:first-child {
    -webkit-border-radius: 0 0 0 6px;
       -moz-border-radius: 0 0 0 6px;
         -o-border-radius: 0 0 0 6px;
            border-radius: 0 0 0 6px;
}
/* -----------------------
  右下角丸　thaedの後のtbody 最後の行の最後のセル
----------------------- */
.basic1 thead+tbody tr:last-child th:last-child,
.basic1 thead+tbody tr:last-child td:last-child {
    -webkit-border-radius: 0 0 6px 0;
       -moz-border-radius: 0 0 6px 0;
         -o-border-radius: 0 0 6px 0;
            border-radius: 0 0 6px 0;
}

/* 
 表組み2
---------------------------------------------------- */
table.basic2 {
  width: auto;
  border-spacing: 0;
  font-size:14px;
}
table.basic2 th {
  color: #000;
  padding: 8px 15px;
  background: #eee;
  background:-moz-linear-gradient(#eee, #ddd 50%);
  background:-webkit-gradient(linear, 100% 0%, 100% 50%, from(#eee), to(#ddd));
  font-weight: bold;
  border-top:1px solid #aaa;
  border-bottom:1px solid #aaa;
  line-height: 120%;
  text-align: center;
  text-shadow:0 -1px 0 rgba(255,255,255,0.9);
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}
table.basic2 th:first-child {
  border-left:1px solid #aaa;
  border-radius: 5px 0 0 0;	
}
table.basic2 th:last-child {
  border-radius:0 5px 0 0;
  border-right:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table.basic2 tr td {
  padding: 8px 15px;
}
table.basic2 tr td:first-child {
  border-left: 1px solid #aaa;
}
table.basic2 tr td:last-child {
  border-right: 1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table.basic2 tr {
  background: #fff;
}
table.basic2 tr:nth-child(2n+1) {
  background: #eee;
}
table.basic2 tr:last-child td {
  border-bottom:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table.basic2 tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
table.basic2 tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
table.basic2 tr:hover {
  background: #ccc;
  cursor:pointer;
}