@charset "UTF-8";

/* CSS Document */

/*========== 目次 ==========

	1.初期化
	2.タグの再定義
	3.リンク設定
	4.BOX設定
	5.共通設定

============================*/





/*===== ■1.初期化 =====*/
* {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
}





/*===== ■2.タグの再定義 =====*/
body {
	color: #333333;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragio Kaku Gothic Pro","Osaka","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	font-size: 75%;
	line-height: 130%;
	background: #F4F1E7;
}

address {
	font-size: 0.9em;
}

strong {
	font-weight: bold;
}

p {
	margin: 10px 0px 30px;
	line-height: 150%;
}

img {
	display: block;
	border: none;
}



/*===== ■3.リンク設定 =====*/
/* 基本リンク */
a {
	outline: hidden;
}

a:link {
	color: #006699;
	text-decoration: underline;
}

a:visited {
	color: #006699;
	text-decoration: underline;
}

a:hover {
	color: #3399cc;
}


/*===== ■4.BOX設定 =====*/
#Entire {
	width: 860px;
	margin: 7px auto 0px;
}

#Header {
	position: relative;
	width: 856px;
	height: 101px;
	margin: 0px 0px 5px;
	background: url(../img/img_bg-header.jpg) no-repeat;
}
body#top #Header {
	background: url(../img/top-img_bg-header.jpg) no-repeat;
}

#Contents {
	width: 860px;
	background: url(../img/img_bg-cont2.jpg) repeat-y;
}
/* トップページのみ画像を別指定 */
body#top #Contents {
    background: url(../img/top-img_bg-cont.jpg) repeat-y;
}

#Navigation {
	width: 190px;
	padding: 3px;
	background: url(../img/img_bg-leftcont.jpg) no-repeat top;
	float: left;
	margin-right: 4px;
}
/* トップページ背景黄色ver */
body#top #Navigation {
	background: url(../img/top-img_bg-leftcont.jpg) no-repeat top;
}


#TopMainCont {
	width: 660px;
	float: right;
}

#ContentsCenter {
	width: 320px;
	padding: 3px;
	float: left;
	background: url(../img/img_bg-centercont.jpg) no-repeat top;
}
/* トップページ背景黄色ver */
body#top #ContentsCenter {
	background: url(../img/top-img_bg-centercont.jpg) no-repeat top;
}

#ContentsRight {
	width: 320px;
	padding: 3px;
	float: right;
	background: url(../img/img_bg-rightcont.jpg) no-repeat top;
	margin-right: 4px;
}
/* トップページ背景黄色ver */
body#top #ContentsRight {
	background: url(../img/top-img_bg-rightcont.jpg) no-repeat top;
}

#ContentsEnd {
	width: 850px;
	padding: 3px;
	height: 13px;
	background: url(../img/img_bg-contend2.jpg) no-repeat;
}
/* トップページのみ画像を別指定 */
body#top #ContentsEnd {
    background: url(../img/top-img_bg-contend.jpg) no-repeat;
}

#Footer {
	width: 856px;
	padding: 10px 0px;
	text-align: center;
}

/*===== ■5.共通設定 =====*/
/* ヘッダーナビゲーション */
ul#HeaderNavi {
	position: absolute;
	top: 64px;
	left: 14px;
	list-style: none;
	border-right: 1px solid #EBEBEB;
}

ul#HeaderNavi li {
	float: left;
	border-left: 1px solid #EBEBEB;
}

/* ヘッダーサブナビゲーション */
ul#SubNavi {
	position: absolute;
	top: 14px;
	right: 14px;
	list-style: none;
}

ul#SubNavi li {
	float: left;
	margin-left: 11px;
}

/* グローバルナビゲーション */
ul#GlobalNavi {
	list-style: none;
	margin-bottom: 10px;
}

#Navigation a{
    display:block;
}

span#GnaviTitle {
	width: 181px;
	height: 19px;
	display: block;
	padding: 4px 4px 3px 5px;
}

span.CnaviTitle {
	display: block;
	margin-bottom: 6px;
}


/* 造形美術科ナビゲーション */
ul.ClassNavi {
	list-style: none;
	margin: 0px 0px 10px 9px;
}

ul.ClassNavi li {
	width: 172px;
	padding: 5px 0px;
	border-bottom: 1px dotted #AAAAAA;
}

ul.ClassNavi li.All {
	border-bottom: none;
}

/* バナーナビゲーション */
ul#BannerNavi {
	list-style: none;
	width: 181px;
	padding: 4px 4px 10px 5px;
}

ul#BannerNavi li {
	margin-bottom: 5px;
	font-size: 0px;
}

/* フッターナビゲーション */
#Footer ul {
	list-style: none;
	padding-bottom: 5px;
}

#Footer li {
	display: inline;
}

#Footer li img {
	display: inline;
	background: url(../img/img_triangle.gif) no-repeat 10px 50%;
	padding: 3px 15px 3px 18px;
	border-right: 1px dotted #666666;
}

#Footer li.last img {
	border-right: none;
}

/* 横浜美術短期大学ロゴ */
body#top a#CampusLogo {
	position: absolute;
	top: 14px;
	left: 19px;
}

#CampusLogo {
    position: absolute;
	top: 14px;
	left: 19px;
}

#Header em {
	position: absolute;
	top: 44px;
	left: 21px;
}

/* フロート解除 */
.clearfix:after {
	content: ".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/* Hides from IE-mac ￥*/
*html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/* End hides from IE-mac ￥*/

/* ページトップへ戻る */
ul.ToPageTop {
	list-style: none;
	padding: 30px 25px 0px 0px;
	float: right;
}

/* 茶色の矢印 */
ul.BrownArrow {
	list-style: none;
	padding: 0px 0px 30px 40px;
}

ul.BrownArrow li {
	background: url(../img/img_arrow-brown.gif) no-repeat left 2px;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 10px;
}

/*===== ■-.トップページ設定 =====*/
body#top p#MainVisual {
	font-size: 0px;
	margin: 0px;
	padding-bottom: 5px;
	background: #F4F1E7;
}

body#top ul#NoticeBanner {
	background: #F4F1E7;
	margin: 0px;
	padding: 0px 5px 5px;
	list-style: none;
}

body#top ul#NoticeBanner li {
}

body#top ul#NoticeBanner a {
	background: url(../../img/banner_notice-big.jpg) no-repeat;
	display: block;
	width: 650px;
	height: 100px;
}

body#top ul#NoticeBanner a:hover {
	background-position: 0px -100px;
}

body#top ul#NoticeBanner a span {
	position:absolute;
	width:0;
	height:0;
	overflow:hidden;
}

/* タイトル部分 */
body#top h2 {
	width: 312px;
	padding: 4px 4px 10px;
}

body#top #ContentsCenter ul,
body#top #ContentsRight ul {
	width: 305px;
	margin: 0px auto;
	list-style: none;
}

body#top #ContentsCenter li,
body#top #ContentsRight li {
	width: 280px;
	background: url(../img/img_circle.gif) no-repeat 5px 15px;
	padding: 10px 5px 10px 15px;
	border: 2px solid #F4F1E7;
	margin-bottom: 5px;
}

/*===== ■-.中ページ設定 =====*/

#MainCont {
	width: 660px;
	float: right;
	background: url(../img/img_bg-contstart.jpg) no-repeat 0px 82px;
}

#MainCont h1 img {
    display: block;
}

#pankuzu {
	display: block;
    padding: 3px 5px;
}


/*===== 四年制へ移行期の注意文 =====*/

#MainCont p.Wait4SystemInfo {
	clear: both;
	width: auto;
	margin: 0px auto;
	padding: 10px 20px 30px;
	color: #03c;
	font-weight: bold;
}

#MainCont p.Wait4SystemInfoOthers {
	width: auto;
	margin: 0px auto;
	padding: 150px 20px 35px;
	color: #03c;
	text-align: center;
	font-weight: bold;
}
  
  
   