@charset "utf-8";
/* CSS Document */

*{margin: 0;            /*marginとpaddingの設定を初期化*/
	padding: 0;
}

/*ページの幅は100％と指定する*/
body{
	width:100%;
	text-align:center;
}

#wrop{width: 960px;		/*全体の幅を指定する*/
	margin: 0 auto;		/*マージンの指定をする、ブラウザ対策*/
	text-align:left;	/*全体を左揃えにする*/
}

/*リンクの下線消去*/
a {
text-decoration: none;
}


/*トップロゴ*/
.top{
	margin-top: 20px;
	float: right;
	font-size: 28px;
}

/* 隣接する線を重ねて表示 */
.table-link { 
    border-collapse: collapse; 
}

/* 上部と左側、下部の線のみ非表示。右側は残っている */
.td-link1{
	border: 2px solid #fcc672;
	border-top-style:none;
	border-bottom-style:none;
	border-left-style:none;
	background-image: url(work/images/icyou-back.jpg);
	background-position: center 400px;
}

/*タイトルをグレー指定*/
.title-gray{
	color:#999;
	text-align:center;
	margin-top: 30px;
	margin-bottom: 30px;
}

/*タイトルを赤指定*/
.title-red{
	color:#F00;
	text-align:center;
	margin-top: 30px;
	margin-bottom: 30px;
}

/*フッター線*/
#footer-line{
	text-align: center;
	margin-top: 40px;
	margin-bottom: 50px;
}

/*マウスオーバーソフトに変色（フッター）*/
.footer-link a {
	text-decoration: none;
	color:#000;
	font-size: 22px;
    background-color: #ffffff;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all  0.8s ease;
}
	
/*リンク通常時の背景色（フッター）*/
.footer-link a:hover {
    background-color: #ffc9d7;
}

/*アンダー空白*/
.under {
	margin-bottom: 40px;
}

/*サイドよりクリア*/
.clear{
	clear: both;
}
