/* ==== Base === */
body {
	background: url(/gakubu/hoshasen/images/body_bg.jpg);
}

/* ==== Backgraund === */
#wrap {}
/* ==== Header === */
#hd {
	background-color: rgba(2,9,125,0.85);
	height:160px;
	box-sizing:border-box;
	position:absolute;
	top:0;
	z-index:100;
	width:100%;
}
header {
	width:960px;
	margin:0 auto;
}
/*ホームボタン、Facebookボタン*/
header ul#hd_icon_nav  {
	margin-top:-10px;
}

header ul#hd_icon_nav li {
	display:inline-block;
}
header ul#hd_icon_nav li:first-child {
	border-right: 1px solid #FFF;
}
header ul#hd_icon_nav li a {
	display:block;
	padding:0 15px;
}
header ul#hd_icon_nav li a:hover {
	opacity:0.8;
}

header ul#hd_icon_nav li img {
	width:20px;
	height:auto;
}
#hd h1  {	
	width:420px;
	margin:30px auto 0;
}
#hd h1 img {
	width:100%;
	display:block;
}
#hd_icon_nav {
	float:right;
}


/* ==== Navigation === */
.i_nav {
	width:960px;
	margin:0 auto -110px;
	height: 110px;
	box-sizing:border-box;
	position: relative;
	top:-55px;
	background:#fff	;
	border-radius:5px 5px 0 0;
	z-index:101;
}
.nav {
	width:960px;
	margin:180px auto 0;
	height: 110px;
	box-sizing:border-box;
	border-radius:5px 5px 0 0;
}
ul.menu {
    position: relative;
    width: 100%;
    margin: 0 auto;
	display: -ms-flexbox; 
	display: -webkit-box;
	display: -webkit-flex; 
	display: flex;
	-ms-flex-pack: justify; 
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between; 
	justify-content: space-between;
}
ul.menu > li.menu__mega {
    width: 160px; 
	font-size: 17px;
	line-height:20px;
}
ul.menu > li.menu__mega a {
	height:110px;
	box-sizing:border-box;
    display: block;
    color: #fff;
	text-decoration:none;
	padding-top:15px;
	padding-left:20px;
}
ul.menu > li.menu__mega:nth-child(1) a{
	background: url(/gakubu/hoshasen/images/nav_arrow.png) no-repeat right 10px bottom 10px #FE9A14;
	background-size:20px;
	padding-top:30px;
	border-radius:5px 0 0 0;
}
ul.menu > li.menu__mega:nth-child(2) a{
	background: url(/gakubu/hoshasen/images/nav_arrow.png) no-repeat right 10px bottom 10px #B6393C;
	background-size:20px;
}
ul.menu > li.menu__mega:nth-child(3) a{
	background: url(/gakubu/hoshasen/images/nav_arrow.png) no-repeat right 10px bottom 10px #3F277E;
	background-size:20px;
}
ul.menu > li.menu__mega:nth-child(4) a{
	background: url(/gakubu/hoshasen/images/nav_arrow.png) no-repeat right 10px bottom 10px #0074BF;
	background-size:20px;
	padding-top:30px;
}
ul.menu > li.menu__mega:nth-child(5) a{
	background: url(/gakubu/hoshasen/images/nav_arrow.png) no-repeat right 10px bottom 10px #53A060;
	background-size:20px;
	padding-top:30px;
}
ul.menu > li.menu__mega:nth-child(6) a{
	background: url(/gakubu/hoshasen/images/nav_arrow.png) no-repeat right 10px bottom 10px #99BA3C;
	background-size:20px;
	padding-top:30px;
	border-radius:0 5px 0 0;
}
ul.menu > li.menu__mega span.nav_s {
	font-size:11px;
	display:block;
	line-height:14px;
	margin-top:10px;
	letter-spacing:0.5px;
}
ul.menu > li.menu__mega:nth-child(1) span.nav_s {
	margin-top:15px;
}
ul.menu > li.menu__mega:nth-last-child(-n+3) span.nav_s {
	margin-top:15px;
}

/*navi子メニュー*/
ul.menu > li.menu__mega > ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
	padding:40px 10px;
	box-sizing:border-box;
}
ul.menu > li.menu__mega:hover ul.menu__second-level {
    visibility: visible;
    opacity: 1;
}
ul.menu > li.menu__mega ul.menu__second-level  li {
	display:inline-block;
	position:relative;
}
ul.menu > li.menu__mega ul.menu__second-level  li::before {
	position: absolute;
	content:"→";
	left:20px;
	top:50%;
	color: #FFF;
	font-size:13px;
}

ul.menu > li.menu__mega ul.menu__second-level li a {
	font-size:15px;
	height:0;
	margin-left:20px;
}
ul.menu > li.menu__mega ul.menu__second-level li a:hover {
	opacity:0.8;
}
ul.menu > li.menu__mega ul.menu_01 {
	background:#FE9A14;
}
ul.menu > li.menu__mega ul.menu_02 {
	background:#B6393C;
}
ul.menu > li.menu__mega ul.menu_03 {
	background:#3F277E;
}
ul.menu > li.menu__mega ul.menu_04 {
	background:#0074BF;
}
ul.menu > li.menu__mega ul.menu_05 {
	background:#53A060;
}
ul.menu > li.menu__mega ul.menu_06 {
	background:#99BA3C;
}
ul.menu > li.menu__mega ul.menu_01 li a,
ul.menu > li.menu__mega ul.menu_02 li a,
ul.menu > li.menu__mega ul.menu_03 li a,
ul.menu > li.menu__mega ul.menu_04 li a,
ul.menu > li.menu__mega ul.menu_05 li a,
ul.menu > li.menu__mega ul.menu_06 li a {
	padding-top:0px;
}


/* ==== Content === */
#con {}
.outline {
	width:960px;
	margin:0 auto;
	display: -ms-flexbox;
	display: -webkit-box; 
	display: -webkit-flex; 
	display: flex;
	-ms-flex-pack: justify; 
	-webkit-box-pack: justify; 
	-webkit-justify-content: space-between; 
	justify-content: space-between;
}
#main {
	width:720px;
}

/* ol,ul */
#main ol, #main ul {
	padding: 5px 0px 5px 25px;
}
#main ul {
	list-style-type: disc;
}
#main ol li, #main ul li {
	padding: 5px 0px;
}
/* table */
#main table {
	margin: 10px 0px;
}
#main table th, #main table td {
	padding: 5px;
}
/* img */
#main a img{
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
#main a img:hover, .shrink:focus, .shrink:active {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

/*----sidenav----*/
#sidenav {
	width: 220px;
	margin-top:30px;
}
#sidenav h2{
	font-size:16px;
	font-weight:normal;
	color:#FFFFFF;
	width:100%;
	margin:0 0 5px 0;
	padding:15px 0 ;
	text-align:center;
}
.overview #sidenav h2 {
	background:#FE9A14;
}
.admission #sidenav h2 {
	background:#B6393C;
}
.institutions #sidenav h2 {
	background:#3F277E;
}
.alumnus #sidenav h2 {
	background:#0074BF;
}
.research #sidenav h2 {
	background:#53A060;
}
.graduate #sidenav h2 {
	background:#99BA3C;
}
#sidenav ul {
	border: 1px solid #CCC;
	box-sizing:border-box;
}
#sidenav li {}
#sidenav li a {
	box-sizing:border-box;
	height: auto;
	padding: 10px 5px 10px 20px;
	display: block;
	text-decoration: none;
	background: url(/gakubu/hoshasen/images/sidenav_icon.jpg) no-repeat 6px 15px;
	color: #333333;
	border-bottom:solid 1px #CCC;
}
#sidenav li a:hover {
	opacity:0.8;
}
#sidenav li:last-child a {
	border-bottom:none;
}
/*----------------------------------------------------------------------------
h2-h5
----------------------------------------------------------------------------*/
.overview h2,
.admission h2,
.institutions h2,
.alumnus h2,
.research h2,
.graduate h2 {
	width:960px;
	margin:30px auto 0px;
	color:#FFF;
	font-size:28px;
	font-weight:normal;
	padding:20px 10px 20px 20px;
	box-sizing:border-box;
}
h2 span.h2_s {
	font-size:18px;
	margin-left:20px;
	vertical-align:middle;
}
.overview h2 {
	background:#FE9A14;
}
.admission h2 {
	background:#B6393C;
}
.institutions h2 {
	background:#3F277E;
}
.alumnus h2 {
	background:#0074BF;
}
.research h2 {
	background:#53A060;
}
.graduate h2 {
	background:#99BA3C;
}
	
#main h3 {
	border: 1px solid #CCC;
	border-left:8px solid #CCC;
	box-sizing:border-box;
	font-size:15px;
	font-weight:normal;
	padding:10px 5px 10px 15px;
	margin:30px 0 10px;
	
}	
h1.img, h2.img, h3.img, h4.img, h5.img, h6.img { margin: 0;padding: 0;background: none;border: none; }

/*----pagetop----*/
#page-top {
	width:64px;
	margin:30px auto 0;
}
#page-top img {
	width:100%;
}
#page-top a:hover {}

/* ==== Footer === */
#ft {
	margin-top:20px;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #333333;
	color:#FFFFFF
}
#ft_wrap {
	width:960px;
	margin:0 auto;
	display: -ms-flexbox;
	display: -webkit-box; 
	display: -webkit-flex; 
	display: flex;
	-ms-flex-pack: justify; 
	-webkit-box-pack: justify; 
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#ft_contact {
	background:url(/gakubu/hoshasen/images/komazawa_university.png) no-repeat left 8px;
	background-size:50px;
	padding-left: 60px;
}

/*----------------------------------------------------------------------------
Index
----------------------------------------------------------------------------*/
/* ==== about us === */
#about_us {
	background:url(/gakubu/hoshasen/images/about_us_bg.jpg) no-repeat top center;
	height:560px;
	box-sizing:border-box;
	padding:60px 0 20px;
	color:#FFFFFF;
	font-size:15px;
	position:relative;
	z-index:100;
}
#about_us_wrap {
	width:960px;
	margin:0 auto;
	position: relative;
}
#about_us_wrap #about_us_txt {
	width:500px;
}
#about_us h2 {
	color:#4E53A2;
	font-size:80px;
	letter-spacing:3px;
	font-weight:normal;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#about_us_wrap #about_us_txt #ttl {
	font-weight:bold;
	font-size:30px;
	line-height:1.3em;
}
#about_us_wrap #about_us_txt #btn  {
	width:300px;
	margin-top:15px;
	margin-left:50px;
}
#about_us_wrap #about_us_txt #btn a {
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	padding:13px 0;
	text-align:center;
	border:1px solid #FFF;
}
#about_us_wrap #about_us_txt #btn span#arrow  {
	margin-left:30px;
}
#about_us_wrap #about_us_txt #btn a:hover {
	color:#FFFFFF;
	background:#02097D;
}
#about_us .about_img {
	position:absolute;
	right:0;
	top:95px;
}

/* ==== information === */
h2.top_h2 {
	font-size: 25px;
	font-weight:normal;
	color:#333333;
	letter-spacing:2px;
	margin-bottom:10px;
	margin-top:30px;
}
#information {
	width:530px;
	height:490px;
	overflow:auto; 
    -webkit-overflow-scrolling:touch;
}
#information {}
#information table {
	width:100%;
}
#information table td {
	vertical-align: top;
	padding: 15px 15px;
	border-bottom: 1px dotted #CCC;
}
#information table td.day {
	width: 70px;
	padding-left: 5px;
}
#information table td.icon {
	width:40px;
	color: #999999;
	font-size:10px;
	position:relative;
	text-align:center;
	padding-top:18px
}
#information table td.icon:before {
	position:absolute;
	content:url(/gakubu/hoshasen/images/info_line.png);
	left:0;
	top: 20px;
}
#information table td.icon:after {
	position:absolute;
	content:url(/gakubu/hoshasen/images/info_line.png);
	right:0;
	top: 20px;
}

/* ==== facebook === */
#Facebook {
	width: 100%;
	height:auto;
	background:#666;
}

/* ==== 学部概要 === */
ol.list_parentheses{
  padding:0 0 0 2em;
  margin:0;
  text-indent: -2em;
  padding-left: 2em;
}
ol.list_parentheses li{
  list-style-type:none;
  list-style-position:inside;
  counter-increment: cnt;
  
}
ol.list_parentheses li:before{
  display: marker;
  content: "(" counter(cnt) ") ";
}

.table_body {
	
}
.table_body_L01 {
	
}
.table_body_L01 th {
	border: 1px solid #000;
	text-align: center;
}
.table_body_L01 td {
	border: 1px solid #000;
}
.container {
	width: 80%;
	margin: 0 auto;
}
.xls_icon {
	background: url(/gakubu/hoshasen/images/xls_icon.jpg) center top 50% no-repeat;
	padding-right: 3%;
}
.img_box {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.img_box_item img {
	width: 358px;
}
/*学部概要カリキュラム*/
.tblScroll thead th {
    background: #FFC473;
}
.tblScroll tbody th {
    background: #FFF1DB;
}
.tblScroll table tbody td {
    background: #f7f5f2;
}
/*学部概要学事情報*/
.mark {
	display: inline-block;
	border-bottom: double 5px #cccccc;
	padding: 0 5px;
	margin-top: 20px;
}
.lecture li {
	list-style: none;
	margin: 10px 0 10px 20px;
}