@charset "utf-8";
/* ================= 目次 ======================

　1.  Header
		- 訪問者別ナビ
		- グローバルナビ［PC］
			> ドロップダウン（グローバルナビの親ulにclass="dropdown"）
			> メガドロップダウン（グローバルナビの親ulにclass="megaDropdown"）
		- グローバルナビ［MB］
		- サイド固定ボタン
　2.  Contents（共通箇所）
		- hタグ
		- サイドナビ
		- メインコンテンツ
		- ページトップ
		- information
  3.  Footer
		- フッター固定ナビ

============================================= */



/* ----------------------------------------------
  1.  Header
---------------------------------------------- */

header > .container #mapBtn a {
	display: block;
	width: 32px;
	height: 27px;
	background: url(../img/map.png) no-repeat center / 100%;
	transition: all 0.5s;
}
header > .container #mapBtn a:hover {
	background: url(../img/map_hover.png) no-repeat center / 100%;
}

/*--- header[iPad] ----------*/

@media screen and (max-width: 1039px) {
	header > .container {
		margin: 0;
		width: 100%;
		padding: 0 2%;
		box-sizing: border-box;
	}
	header .sideNav {
		margin-right: -5px;
	}
}
/*--- header[PC] ----------*/

@media screen and (min-width: 768px) {
	header {
		margin: 0;
	}
	header > .container {
		height: 110px;
	}
	header > .container img.logo {
		width: 40%;
		float: left;
		margin-bottom: 5px;
	}
	header > .container #mapBtn {
		float: left;
	}
	header .snsList {
		position: absolute;
		top: 50px;
		right: 35%;
		width: 184px;
	}
	header .snsList li {
		font-size: 2.4rem;
		float: left;
		margin-left: 6px;
	}
	header .head_tel_box {
		position: absolute;
		top: 10px;
		right: 35%;
	}
	header #head_category_link {
		width: 270px;
		position: absolute;
		top: 0px;
		right: 1.5%;
		border-left: 1px #ccc dotted;
	}
	header #head_category_link li {
		float: left;
		width: calc(100% / 3 - 1px);
		text-align: center;
		border-right: 1px #ccc dotted;
	}
	header #head_category_link li a {
		font-size: 0.9em;
		padding: 3px 5px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		display: block;
	}
	header #head_category_link li.head_link_top a {
		color: #999;
	}
	header #head_category_link li.head_link_top a:hover {
		background: #EFEFEF;
		-webkit-transition: 0.5s;
		   -moz-transition: 0.5s;
		    -ms-transition: 0.5s;
		     -o-transition: 0.5s;
		        transition: 0.5s;
	}
	header #head_category_link li.head_link_cre a {
		color: #004fd0;
	}
	header #head_category_link li.head_link_cre a:hover {
		background: #e2f1e6;
		-webkit-transition: 0.5s;
		   -moz-transition: 0.5s;
		    -ms-transition: 0.5s;
		     -o-transition: 0.5s;
		        transition: 0.5s;
	}
	header #head_category_link li.head_link_eco a {
		color: #17c717;
	}
	header #head_category_link li.head_link_eco a:hover {
		background: #e9fce9;
		-webkit-transition: 0.5s;
		   -moz-transition: 0.5s;
		    -ms-transition: 0.5s;
		     -o-transition: 0.5s;
		        transition: 0.5s;
	}
	header #head_category_link li.head_link_cul a {
		color: #CB211F;
	}
	header #head_category_link li.head_link_cul a:hover {
		background: #F5D8D8;
		-webkit-transition: 0.5s;
		   -moz-transition: 0.5s;
		    -ms-transition: 0.5s;
		     -o-transition: 0.5s;
		        transition: 0.5s;
	}
	header p.btn_public_info_head {
		position: absolute;
		top: 30px;
		right: 1.5%;
		width: 270px;
	}
	header .sideNav {
		position: absolute;
		top: 60px;
		right: 1.5%;
	}
	header .sideNav li {
		/*width: 70px;*/
		float: left;
		margin-left: 8px;
	}
}

/*--- header[MB] ----------*/

@media screen and (max-width: 767px) {
header {
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	z-index: 10000;
}
header > .container img.logo {
	max-height: 50px;
	max-width: 208px;
	margin: 15px 0 0 5px;
}
header #mapBtn {
	position: absolute;
	left: 218px;
	top: 5px;
}
header > .container #head_category_link {
	display: none;
}
header > .container p.btn_public_info_head {
	display: none;
}
}


/*--- 訪問者別ナビ ----------*/

#navVisitor {
	clear: both;
	background: #F9F9F7;
	border: 1px #EFEFEF solid;
}
#navVisitor > ul {
	margin: 0 auto 0 auto;
}
#navVisitor > ul li a {
	width: 15%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #333;
	border-left: 1px dashed #ccc;
	transition: all 0.3s;
}
#navVisitor > ul li:nth-of-type(1) a,
#navVisitor > ul li:nth-of-type(2) a {
	width: 20%;
}
#navVisitor > ul li:last-child a {
	border-right: 1px dashed #ccc;
}
#navVisitor > ul li a:before {
	display: none;
}
#navVisitor > ul li a:hover {
	background: #EFEFEf;
}
@media screen and (max-width: 768px) {
	#navVisitor > ul li:first-child a {
		border-left: none;
	}
	#navVisitor > ul li:last-child a {
		border-right: none;
	}
}


/*--- グローバルナビ［PC］ ----------*/

#navGlobal {
	clear: both;
	background: #fff;
	border-top: #ccc dashed 1px;
}
#navGlobal.fixed {
	clear: both;
	border-top: none;
	border-bottom: #ccc solid 1px;
	box-shadow:0px 0px 5px -2px #000000;
	-moz-box-shadow:0px 0px 5px -2px #000000;
	-webkit-box-shadow:0px 0px 5px -2px #000000;
}
#navGlobal > ul {
	height: 40px;
}
#navGlobal > ul > li {
	width: 16%;
	width : -webkit-calc(100% / 6 ) ;
	width : calc(100% / 6 ) ;
	height: 40px;
	line-height: 40px;
	font-size: 1.2rem;
	text-align: center;
}
#navGlobal > ul > li:first-child {
	/*width: 16%;*/
}
#navGlobal > ul > li a {
	background: #fff;
	height: 40px;
	color: #555;
}
#navGlobal > ul li a:before {
	display: none;
}
#navGlobal > ul > li a:hover {
	background: #EFEFEF;
}
@media screen and (max-width: 1039px) {
	#navGlobal > ul li {
		font-size: 1rem;
	}
}


/* メガドロップダウン（ul class="megaDropdown"） */

#navGlobal > ul.megaDropdown > li {
}
#navGlobal > ul.megaDropdown > li ul,
#navGlobal > ul.megaDropdown > li > div {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	padding: 2% 2% 1.5%;
	background: #ece5d6;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}
#navGlobal > ul.megaDropdown > li:hover ul,
#navGlobal > ul.megaDropdown > li:hover > div {
	top: 40px;
	visibility: visible;
	opacity: 1;
}
#navGlobal > ul.megaDropdown > li ul > li {
	float: left;
	width: 33%;
	height: 40px;
	margin: 0 0.5% 0.5% 0;
}
#navGlobal > ul.megaDropdown > li ul li a,
#navGlobal > ul.megaDropdown > li > div dl dd a {
	display: block;
	background: #fff;
	color: #653208;
}
#navGlobal > ul.megaDropdown > li ul li a:hover,
#navGlobal > ul.megaDropdown > li > div dl dd a:hover {
	background: #8F8260;
	color: #fff;
}
#navGlobal > ul.megaDropdown > li ul li:nth-child(3n),
#navGlobal > ul.megaDropdown > li > div dl:nth-child(4n) {
	margin-right: 0;
}

/*学科*/
#navGlobal > ul.megaDropdown > li > div dl {
	float: left;
	width: 32.5%;
	margin: 0 0.5% 0.5% 0;
}
#navGlobal > ul.megaDropdown > li > div dl dt a {
	width: 100%;
	height: auto;
	display: block;
}
#navGlobal > ul.megaDropdown > li > div dl dt a:hover {
	opacity: 0.6;
}
#navGlobal > ul.megaDropdown > li > div dl dd a {
	margin-bottom: 5px;
}



/*--- グローバルナビ［MB］ ----------*/

#navGlobalMb {
	display: none;
}

@media screen and (max-width: 767px) {
header #menuBtn {
	width: 50px;
	position: fixed;
	right: 3px;
	top: 5px;
}
header #shiryoBtn {
	position: fixed;
	right: 0;
	top: 60px;
	width:48px;
}
#navGlobalMb {
	width: 100%;
	position: absolute;
	top: 0;
	padding: 20px 10px;
	color: #fff;
	min-height: 475px;
  box-sizing: border-box;
	overflow: scroll;
	background: rgba(255,255,255,0.8);
}
#navGlobalMb a {
	color: #fff;
}
#navGlobalMb .bg {
	background: #aaa;
	padding: 20px 0;
	border-radius: 5px;
}

/*headメニュー*/
#navGlobalMb .head {
	margin: 0 10px 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
					flex-wrap: wrap;
	-webkit-justify-content: space-between;
					justify-content: space-between;
}
#navGlobalMb .head li {
	width: 32%;
	font-weight: bold;
	line-height: 1;
	background: #fff;
	border-radius: 3px;
	text-align: center;
}
#navGlobalMb .head li a {
	display: block;
	height: 100%;
}
#navGlobalMb .head li a span {
	display: inline-block;
	position: relative;
	padding: 15px 0;
	color:#666;
}
#navGlobalMb .head li:nth-child(1) a span { padding-left: 1.4em; }
#navGlobalMb .head li:nth-child(2) a span { padding-left: 1.8em; }
#navGlobalMb .head li:nth-child(3) a span { padding-left: 2.3em; }

#navGlobalMb .head li:nth-child(2) a span,
#navGlobalMb .head li:nth-child(3) a span {
 margin-top: 0.5em;
}
#navGlobalMb .head li a span:before {
	font-family: FontAwesome;
	font-size: 2rem;
	font-weight: normal;
	margin-right: 3px;
	position: absolute;
	top: calc(50% - 0.5em);
	left: 0;
}
#navGlobalMb .head li:nth-child(1) a span:before { content: "\f024"; }
#navGlobalMb .head li:nth-child(2) a span:before { content: "\f0f6"; }
#navGlobalMb .head li:nth-child(3) a span:before { content: "\f278"; }

/*mainメニュー*/
#navGlobalMb .main dt {
	font-size: 1.4rem;
	border-top: 1px solid #fff;
	padding: 15px 10px;
	position: relative;
}
#navGlobalMb .main dt:after {
	content: "\f0fe";
	font-family: FontAwesome;
	font-size: 1.4rem;
	position: absolute;
	right: 10px;
}
#navGlobalMb .main dt.open:after {
	content: "\f146";
}
#navGlobalMb .main dd {
	padding: 0 15px;
}
/**/
#navGlobalMb .main dt:nth-of-type(3),
#navGlobalMb .main dt:nth-of-type(4),
#navGlobalMb .main dt:nth-of-type(5),
#navGlobalMb .main dt:nth-of-type(6) {
	padding: 0;
}
#navGlobalMb .main dt:nth-of-type(3):after,
#navGlobalMb .main dt:nth-of-type(4):after,
#navGlobalMb .main dt:nth-of-type(5):after,
#navGlobalMb .main dt:nth-of-type(6):after {
	content: "";
}
#navGlobalMb .main dt:nth-of-type(3) a,
#navGlobalMb .main dt:nth-of-type(4) a,
#navGlobalMb .main dt:nth-of-type(5) a,
#navGlobalMb .main dt:nth-of-type(6) a {
	display: block;
	position: relative;
	padding: 15px 10px;
}
#navGlobalMb .main dt:nth-of-type(3) a:after,
#navGlobalMb .main dt:nth-of-type(4) a:after,
#navGlobalMb .main dt:nth-of-type(5) a:after,
#navGlobalMb .main dt:nth-of-type(6) a:after
 {
	content: "\f105";
	font-family: FontAwesome;
	font-size: 1.4rem;
	position: absolute;
	right: 10px;
	top:31%;
}
#navGlobalMb .main dd ul {
	margin-top: -15px;
}
#navGlobalMb .main dd li {
	border-bottom: 1px dashed #fff;
}
#navGlobalMb .main dd li:last-child {
	border-bottom: none;
}

/*mainメニュー*/
#navGlobalMb .visitor {
	border-top: 1px solid #fff;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
				  flex-wrap: wrap;
	-webkit-justify-content: space-between;
	 			  justify-content: space-between;
}
#navGlobalMb .visitor li {
	width: 50%;
	border-bottom: 1px solid #fff;
	box-sizing: border-box;
}
#navGlobalMb .visitor li:nth-child(2n) {
	border-left: 1px solid #fff;
}

/*snsメニュー*/
#navGlobalMb .sns {
	margin: 15px 10px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
					justify-content: space-between;
}
#navGlobalMb .sns li {
	width: calc(100% / 5);
	font-size: 30px;
	line-height: 1;
	text-align: center;
}
#navGlobalMb .sns li a {
	display: block;
}


/*メニュー共通arrow*/
#navGlobalMb .main dd li a,
#navGlobalMb .visitor li a {
	display: block;
	padding: 15px 10px;
	position: relative;
}
#navGlobalMb .main li a:after,
#navGlobalMb .visitor li a:after {
	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	right: 10px;
	top:31%;
}

/*閉じる*/
#navGlobalMb #close {
	background: #fff;
	color:#666;
	text-align: center;
	margin: 25px 10px 0;
	padding: 10px 0;
}
}


/* ----------------------------------------------
  2.  Contener
---------------------------------------------- */

/*--- サイド固定ボタン ----------*/

#navFixedSide > ul li {
}

#navFixedSide > ul li:nth-child(2) {
}


/*--- hタグ ----------*/
h1 {
	margin-bottom: 10px;
	font-family: "Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
  font-weight: normal;
	background:url(../img/bg_h1.png) no-repeat top center / 130px;
	color: #333;
	text-align: center;
	padding-top: 40px;
	font-size: 3.6rem;
}
h1:first-letter {
	color: #8f8260;
}
h2 {
	font-size: 2.0rem;
	margin: 20px 0 15px 0;
	padding: 5px 10px;
	font-weight: normal;
	background: #F9F9F7;
	border-bottom: 2px solid #ddd;
	

	border: 1px solid #ccc;
	border-top: 3px solid #bbb;
	background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
	background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
}
h3 {
}
.sectionTitle {
    background-color: #eee;
    border-bottom: 2px solid #ddd;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    clear: both;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 8px 14px;
}

@media screen and (max-width: 767px) {
h1 {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
h2 {
	margin: 20px 0 15px 0;
}
}

/*--- サイドナビ ----------*/
.layoutL nav#sNav,
.layoutR nav#sNav {
	/*width: 250px;*/
	width: 25%;
	margin-bottom: 50px;
}
.layoutL nav#sNav {
	float: left;
	/*margin-right: 50px;*/
	margin-right: 0;
}
.layoutR nav#sNav {
	float: right;
	/*margin-left: 50px;*/
	margin-left: 5%;
}

/*
nav#sNav > .sNavInner {
	width: 250px;
}*/

nav#sNav > .sNavInner .titSideNav a {
 background: #E1DDD2;
 color: #555;
 text-align: center;
 font-weight: bold;
 font-size: 18px;
 padding: 10px 0;
 border-radius: 10px 10px 0 0;
 /*-webkit-border-top-left-radius: 10px;
 -webkit-border-top-right-radius: 10px;
 -moz-border-radius-topleft: 10px;
 -moz-border-radius-topright: 10px;*/
}
nav#sNav > .sNavInner ul li a {
	display: block;
	color: #444;
	border: 1px solid #ddd;
	border-top: none;
	background: #fff;
	/*background-image: url(../img/sub-nav-arrow1.png);
	background-repeat: no-repeat;
	background-position: 230px center;*/
	padding: 3% 6%;
	position: relative;
}
nav#sNav > .sNavInner > ul > li:last-child a {
	border-radius: 0 0 10px 10px;
}
nav#sNav > .sNavInner ul li a:after {
	content:"\f061";
	font-family: fontawesome;
	color: #ccc;
	position: absolute;
	right: 3%;
	top: 50%;
	margin-top: -1em;
}
nav#sNav > .sNavInner ul li a:hover {
	background: #F9F9F7;
}
nav#sNav > .sNavInner ul li > ul li a {
	padding-left: 9%;
	font-size: 1.2rem;
}
nav#sNav > .sNavInner ul li > ul li a:after {
	content: "\f105";
	right: 5%;
}
nav#sNav > .sNavInner ul li a[href^="javascript:void(0)"] {
	background: #f9f9f7;
}

@media screen and (max-width: 767px) {
.layoutL nav#sNav,
.layoutR nav#sNav {
	display: block;
	width: 100%;
}

nav#sNav > .sNavInner {
	width: 100%;
	margin-top: 20px;
}

nav#sNav > .sNavInner ul li a {
	/*background-image: url(../img/sub-nav-arrow1.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	padding: 6px 6px 6px 28px;*/
}

}

/*--- ページトップ ----------*/

#pageTop {
	background: #E1DDD2;
	z-index: 9999;
}
#pageTop a:before {
	border-top: 5px solid #555;
	border-right: 5px solid #555;
	margin: -4px 3px;
}
#pageTop:hover {
	background: #EFEFEF;
}

@media screen and (max-width: 767px) {
#pageTop {
	right: 10px;
	bottom: 10px;
}
#pageTop a:before {
	margin: -1px 3px;
}
}


/*--- information ----------*/

#informationArea {
	background: #f6f2ec;
	border-radius: 5px;
	position: relative;
	margin-top: 50px;
	padding: 10px 0 10px;
}
#informationArea img {
	position: absolute;
	top: -25px;
	right: 2%;
	z-index: 9;
}
/*h2*/
#informationArea h2 {
	font-family: Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #401b05;
	border-bottom: 2px solid #e3dcd4;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	padding-bottom: 0;
}
#informationArea h2 span {
	position: relative;
}
#informationArea h2 span:before {
	content:"\f05a";
	font-family: fontawesome;
	font-size: 5.4rem;
	line-height: 1;
	position: absolute;
	left: -5.4rem;
	top: -5px;
}
/*btn*/
#informationArea .btnList {
	padding: 0 2%;
	font-size: 1.8rem;
	position: relative;
	z-index: 10;
}
#informationArea .btnList li {
	width: 49%;
	float: left;
	text-align: center;
	display: table;
	font-weight: bold;
	background: #ffb723;
	border-radius: 5px;
}
#informationArea .btnList li:nth-child(2) {
	margin-left: 2%;
	background: #5fb010;
}
#informationArea .btnList li a {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 0;
	color: #fff;
}
#informationArea .btnList li a:before {
	content:"\f061";
	font-family: fontawesome;
	font-weight: normal;
	margin-right: 10px;
}
/*contact*/
#informationArea .contact {
	clear: both;
	padding: 10px 2% 0;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
}
#informationArea .contact a {
	 color: #401b05;
}
#informationArea .contact li {
	display: inline-block;
}
#informationArea .contact li:first-child {
	margin-right: 10%;
}
@media screen and (max-width: 767px) {
	#informationArea img {
		top: -10px;
	}
	#informationArea h2 {
		font-size: 1.4rem;
	}
	#informationArea h2 span:before {
		font-size: 4rem;
		left: -4rem;
	}
	#informationArea .btnList li {
		width: 100%;
	}
	#informationArea .btnList li:nth-child(2) {
		margin: 10px 0 0;
	}
	/*contact*/
	#informationArea .contact li {
		display: block;
	}
	#informationArea .contact li:first-child {
		margin-right: 0;
	}
}
@media screen and (max-width: 374px) {
	#informationArea h2 {
		font-size: 1.2rem;
	}
	#informationArea h2 span:before {
		font-size: 3.5rem;
		left: -3.5rem;
	}
}
/* ----------------------------------------------
  3.  Footer
---------------------------------------------- */
footer {
	background: #EFEFEf;
	padding: 15px 0 40px;
	color: #333;
}
footer a:link, footer a:visited, footer a:active {
	color: #333;
}
footer a:hover {
	color: #000;
}
@media screen and (max-width: 767px) {
footer {
		padding-bottom: 65px;
		text-align: center;
	}
footer .container > img.logoF {
	width: 300px;
}
footer ul.policy {
	font-size: 1.1rem;
	line-height: 1;
	margin: 15px 0 10px;
}

footer ul.policy li:first-child {
  border-right: 1px solid #333;
	padding-right: 20px;
}
footer ul.contact {
	background: #FFF;
}
footer ul.contact li {
	color: #000;
	width: calc(100% / 3) ;
	float: left;
	margin-right: 0;
}
footer ul.contact li a {
	color: #000;
	display: block;
	width: 100%;
	border-right: #ccc 1px solid;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: 1.0rem;
}
footer ul.contact li:last-child {
	border-right: none;
}
footer ul.policy li {
	float: left;
	margin-right: 20px;
	display: block;
}
footer ul.contact li a i {
	font-size: 2.0em;
	clear: both;
	overflow: hidden;
	padding: 4% 45% 0 45%;
}
footer address {
	padding-bottom: 15px;
}
footer ul.policy {
	text-align: center;
}
footer ul.policy li {
	float: none;
	display: inline-block;
}
footer ul.policy li a {
	color: #333;
	text-decoration: underline;
}
footer .container > img.logoF {
	width: 70%;
	padding: 10px 0;
}

footer img.truste {
	width: 80px;
}
}
@media screen and (min-width: 768px) {
	footer .container {
		text-align: center;
	}
	footer .container address {
		margin: 20px auto;
	}
	footer .container .contact {
		width: 450px;
		margin: 20px auto;
	}
	footer .container ul.contact i.fa {
		padding-right: 5px;
	}
	footer .container .contact li:first-child:before {
		content: "|";
		padding-right: 10px;
	}
	footer ul.contact li:last-child {
		padding-right: 0;
		margin-right: 0!important;
	}
	footer .container ul.contact li:last-child a {
		padding-right: 0;
		margin-right: 0!important;
	}
	footer .container .contact li:after {
		content: "|";
		padding-left: 20px;
	}
	footer .container ul.policy {
		width: 290px;
		margin: 20px auto;
	}
	footer .container ul.policy li {
		display: inline-block;
		float: left;
		padding-left: 10px;
	}
	footer .container ul.policy li:nth-child(2):before {
		content: "|";
		padding-right: 10px;
	}
}