@charset "utf-8";

/* デフォルトcss 
-----------------------------------*/

/*==========*/
/* タグの設定 */
/*==========*/
section,article {
	overflow: hidden;
}

/*============*/
/* リンク設定 */
/*============*/
/*未観覧リンク*/
a {
	color: #003399;
	text-decoration: none;
}
/*観覧済リンク*/
a:visited {
	color: #003399;
	text-decoration: none;
}
a:hover,a:active {
	color: #990000;
	text-decoration: underline;
}
/*ゆっくりと動かす場合*/
a,a:hover {
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

/*画像リンクの設定*/
a img:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}
@media only screen and (max-width: 640px) {
/*ゆっくりと動かす場合*/
a,a:hover {
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
}
/*画像リンクの設定*/
a img:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
}}



/*================*/
/* サイト共通設定 */
/*================*/

/* 回り込み解除 */
.clear { clear: both;}
@media (max-width: 767px) {
.spclear {
	clear: both;
}
.spclear .text-right {
	text-align: left !important;
}

}
/* 回り込み回避 */
.cl { overflow: hidden;}

/* 位置 */
.left { text-align: left !important;}/* 左 */
.right { text-align: right !important;}/* 右 */
.center { text-align: center !important;}/* 中央 */
.vtop { vertical-align: top !important;}/* 上 */
.vmiddle { vertical-align: middle !important;}/* 中央 */
.vbottom { vertical-align: bottom !important;}/* 下 */

/* ボックスシャドウ */
.box-shadow {
	-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.4);
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.4);
	-o-box-shadow: 3px 3px 5px rgba(0,0,0,0.4);
	-ms-box-shadow: 3px 3px 5px rgba(0,0,0,0.4);
}

/* 角丸 */
.radius {
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}

.enlist {
	list-style-type: lower-alpha;
	margin-left: -1em;
	margin-bottom: 1em;
}

/* フォントサイズ（基本サイズ14px）を基準に */
.f10 { font-size: 72% !important;}/* 10px相当 */
.f11 { font-size: 78% !important;}/* 11px相当 */
.f12 { font-size: 86% !important;}/* 12px相当 */
.f13 { font-size: 93% !important;}/* 13px相当 */
.f14 { font-size: 100% !important;}/* 14px相当 */
.f15 { font-size: 107% !important;}/* 15px相当 */
.f16 { font-size: 114% !important;}/* 16px相当 */
.f17 { font-size: 121% !important;}/* 17px相当 */
.f18 { font-size: 128% !important;}/* 18px相当 */
.f19 { font-size: 135% !important;}/* 19px相当 */
.f20 { font-size: 142% !important;}/* 20px相当 */