@charset "utf-8";
/*--------------------------
◇0.ブラウザ初期化
--------------------------*/

html,body {
	color: #666;
	background: #fff;
	height:100%;
	line-height:1;
}
#contents{
	text-align:center;
	width:100%;
	height:auto !important;
	height:100%;
	min-height: 100%;
	line-height:1;
}
body > #contents {
    height: auto;
}
#content,#content:focus{
    outline:none;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img {
	border: 0;
	vertical-align:top;
}
address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}
ul, ol, dl {
	list-style: none;
}
caption, th {
	text-align: left;
}
q:before, q:after {
	content: '';
}
abbr, acronym {
	border: 0;
	font-variant: normal;
}
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
object {
	outline:none;
}
a {
	cursor:pointer;
}

body, select, option {
	font-size:12px;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
table, th, td {
	font-size:12px;
	font-weight: normal;
}
pre, code, kbd, samp, tt {
	font-family:monospace;
}
h1, h2, h3, h4, h5, h6 {
	font-size:12px;
	font-weight: normal;
	line-height:1;
}

/*--------------------------
◇1.汎用スタイル
--------------------------*/

/* マージン */
.mar_t0{
	margin-top:0px;
}
.mar_t5{
	margin-top:5px;
}
.mar_t10{
	margin-top:10px;
}
.mar_t15{
	margin-top:15px;
}
.mar_h0{
	margin-top:0px;
	margin-bottom:0px;
}
.mar_h5{
	margin-top:5px;
	margin-bottom:5px;
}
.mar_h10{
	margin-top:10px;
	margin-bottom:10px;
}
.mar_h15{
	margin-top:15px;
	margin-bottom:15px;
}

.mar_w0{
	margin-left:0px;
	margin-right:0px;
}
.mar_w5{
	margin-left:5px;
	margin-right:5px;
}
.mar_w10{
	margin-left:10px;
	margin-right:10px;
}
.mar_w15{
	margin-left:15px;
	margin-right:15px;
}
.mar_w20{
	margin-left:20px;
	margin-right:20px;
}
.mar_w30{
	margin-left:30px;
	margin-right:30px;
}
.mar_w40{
	margin-left:40px;
	margin-right:40px;
}
.mar_w45{
	margin-left:45px;
	margin-right:45px;
}

/* 横一列表示(IE6/IE7対応) */
.d_inline {
	display:inline-block;
	/display:inline;
	/zoom:1;
}

/* 非表示 */
.d_none{
	display:none;
}

/* アウトライン非表示(Firefox用) */
.outline{
	overflow:hidden;
	outline:none;
}

/* フロート */
.f_left{
	float:left;
	zoom:1;
}
.f_right{
	float:right;
	zoom:1;
}
.f_clear{
	clear:both;
	zoom:1;
}

/* 位置 */
.ctr{
	text-align:center;
}
.left{
	text-align:left;
}
.right{
	text-align:right;
}
.top{
	vertical-align:top;
}
.middle{
	vertical-align:middle;
}
.bottom{
	vertical-align:bottom;
}

/* テキスト */
.txt{
	line-height:1.5;
}
.txt_l{
	font-size:14px;
	line-height:1.5;
}
.txt_m{
	font-size:12px;
	line-height:1.5;
}
.txt_s{
	font-size:10px;
	line-height:1.3;
}

/* ※等の文字を1文字分外側に出す */
.kome{
	margin-left:1em;
	text-indent:-1em;
}

/* clearfix */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}

/*--------------------------
◇JavaScript / Ajax 用
--------------------------*/

/* PNG表示 */
.png { 
	behavior: url(../../javascripts/common/iepngfix.htc);
}

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	height: 40px;
	width: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 9104;
	display: none;
}
* html #fancybox-loading {	/* IE6 */
	position: absolute;
	margin-top: 0;
}
#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('../../images/common/fancybox/fancybox.gif');
}
#fancybox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: 9100;
	display: none;
}
* html #fancybox-overlay {	/* IE6 */
	position: absolute;
	width: 100%;
}
#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}
#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 20px;
	z-index: 9101;
	display: none;
}
#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
}
#fancybox-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0;
	outline: none;
	overflow: hidden;
}
#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}
#fancybox-close {
	position: absolute;
	top: -30px;
	right: 0px;
	width: 30px;
	height: 30px;
	background-image: url('../../images/common/fancybox/fancybox.gif');
	background-position: -40px 0px;
	cursor: pointer;
	z-index: 9103;
	display: none;
}
#fancybox_error {
	color: #444;
	font: normal 12px/20px;
	padding: 7px;
	margin: 0;
}
#fancybox-content {
	height: auto;
	width: auto;
	padding: 0;
	margin: 0;
}
#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}
#fancybox-frame {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}
#fancybox-title {
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: Arial;
	font-size: 12px;
	line-height:1.5;
	z-index: 9102;
}
.fancybox-title-inside {
	padding: 0;
	text-align: left;
	color: #fff;
	background-image: url('../../images/common/fancybox/fancy_title_over.png');
	_background:#000;
}
#fancybox-title-inside{
	padding: 5px 10px;
}
.fancybox-title-outside {
	padding-top: 5px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}
.fancybox-title-over {
	color: #FFF;
	text-align: left;
}
#fancybox-title-over {
	padding: 10px;
	background-image: url('../../images/common/fancybox/fancy_title_over.png');
	_background:#000;
	display: block;
}
#fancybox-title-wrap {
	display: inline-block;
}
#fancybox-title-wrap span {
	height: 32px;
	float: left;
}
#fancybox-title-left {
	padding-left: 15px;
	background-image: url('../../images/common/fancybox/fancybox.gif');
	background-position: -40px -90px;
	background-repeat: no-repeat;
}
#fancybox-title-main {
	font-weight: bold;
	line-height: 29px;
	background-image: url('../../images/common/fancybox/fancybox-x.gif');
	background-repeat: repeat-x;
	color: #FFF;
}
#fancybox-title-right {
	padding-left: 15px;
	background-image: url('../../images/common/fancybox/fancybox.gif');
	background-position: -55px -90px;
	background-repeat: no-repeat;
}
#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background-image: url('../../images/common/fancybox/blank.gif');
	z-index: 9102;
	display: none;
}
#fancybox-left {
	left: 0px;
}
#fancybox-right {
	right: 0px;
}
#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 9102;
	display: block;
}
#fancybox-left-ico {
	background-image: url('../../images/common/fancybox/fancybox.gif');
	background-position: -40px -30px;
}
#fancybox-right-ico {
	background-image: url('../../images/common/fancybox/fancybox.gif');
	background-position: -40px -60px;
}
#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible;    /* IE6 */
}
#fancybox-left:hover span {
	left: -15px;
}
#fancybox-right:hover span {
	left: auto;
	right: -15px;
}
.fancy-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 9001;
}

/* ツールチップ */

body:nth-of-type(1) .tooltip { /* Chrome */
 text-decoration: none;
}
.tooltip{
	position: relative;
	/zoom:1;
}
.tooltip_cnt {
	display: none;
	position: absolute;
	left:0;
	top:0;
	z-index: 1000;
	/white-space: nowrap;
	/zoom:1;
}
.tool_txt {
	text-decoration: none;
	padding: 5px 10px;
	color:#fff;
	border:#fff solid 1px;
	font-size:10px;
	line-height:1.5;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow:0 0 3px #000;
	-webkit-box-shadow:0 0 3px #000;
	background:#000;
	-moz-opacity:0.8;
	opacity:0.8;
	background-color: rgba(0, 0, 0, 0.9);
	/background:#000;
	/zoom:1;
}
p#vtip {
	display: none;
	position: absolute;
	left:30px;
	top:30px;
	/zoom:1;
}

/* タブ切り替え */
.tabs ul.tabs-list {
	list-style:none;
}
.tabs ul.tabs-list li {
	display:inline-block;
	/display:inline;
	/zoom:1;
}
.tabs ul.tabs-list a {
	display:block;
	text-decoration:none;
}
.tabs ul.tabs-list .current {
	border-width:0;
}
.tabs ul.tabs-list .current a {
}
.js .tabs .current-info,
.js .tabs .accessibletabsanchor,
.js .tabs .tabhead {
	position:absolute;
	left:-999em;
}
