/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
}
.w_base {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	border-top: 2px solid #054ba6;
}
.hd {
	height: 95px;
	display: flex;
	justify-content: space-between;
}
a.hd_logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	color: #054ba6;
}
a.hd_logo img{
	margin-right: 10px;
}

.hd_r{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
ul.link_bnr {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
ul.link_bnr li:not(:last-child){
	margin: 15px;
}
ul.link_bnr li a{
	text-decoration: none;
	color: #fff;
	background-color: #68a4f2;
	border: 2px solid #076df2;
	padding: 7px 40px 7px 20px;
	position: relative;
	transition: 0.2s;
	font-size: 1.1em;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
ul.link_bnr li a:after{
	content: url(../images/icon_elink_white.png);
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-40%);
}
ul.link_bnr li a:hover{
	background-color: #076df2;
}

ul.lang_btn{
	cursor: pointer;
	z-index: 2000;
	margin-right: 10px;
	font-family: "Josefin Sans";
}
ul.lang_btn > li> a{
	margin-right: 20px;
	padding-left: 20px;
	position: relative;
	color: #054ba6;
	font-size: 1.2em;
}
ul.lang_btn > li> a:before{
	content: url(../images/lang.png);
	display: block;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-40%);
}
ul.lang_btn > li> a:after{
	content:"";
	display: block;
	width: 3px;
	height: 3px;
	border-bottom: 1px solid #054ba6;
	border-right: 1px solid #054ba6;
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translateY(-45%) rotate(45deg);
}

.sub-nav {
  display : flex;
}
.sub-nav__item{
  position: relative;
}
.sub-nav__link {
  font-weight : bold;
  position : relative;
  padding-left : 20px;
}
.sub-nav__link--language{
  margin-right: 15px;
}
.sub-nav__child{
  position:absolute;
  background: #68a4f2;
  width:100%;
  z-index: 9998;
  opacity: 0;
  transition : all ease 0.3s;
  transform : scale(1, 0);
  transform-origin : top ;
}
.sub-nav__child li:not(:last-child){
	border-bottom: 1px solid #fff;
}
.sub-nav__child li a{
	display: block;
	padding: 5px 10px 4px 20px;
	color: #fff;
	text-decoration: none;
	transition: 0.2s;
}
.sub-nav__child li a:hover{
	color: #076df2;
}
.sub-nav__item--parent:hover .sub-nav__child{
  opacity: 1;
  transform : scale(1, 1);
  transform-origin : top;
}


/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	overflow: visible;
}
.nav_list {
	display: flex;
	width: 100%;
	height: 58px;
}
.nav_list>li {
	position: relative;
	z-index: 1000;
	width:calc((100%) / 7);
	height: 100%;
	border-right: 1px solid #fff;
	background-color: #054ba6;
}
.nav_list>li:last-child {
	border-right: none;
}
.nav_list>li.c_trg{
	position: relative;
}
.nav_list>li.c_trg:before{
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 45%;
	right: 10px;
	transform: rotate(45deg) translateY(-60%);
}
.nav_list>li>a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-bottom: 2px solid #076df2;
	font-family: "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: bold;
	font-size: 1.1em;
}
.nav_list>li>a:hover,
.nav_list>li.current>a{
	background-color: #076df2;

}
.nav_list>li:hover .nav_clist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}
@-webkit-keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
.nav_clist {
	display: none;
	transition: All 0.5s ease;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(6, 93, 206, 0.85);
}
.nav_clist>li {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
	position: relative
}
.nav_clist>li:last-child {
	border-bottom: 0;
}
.nav_clist>li>a {
	background-color: rgba(6, 93, 206, 0.55);
	color: #fff;
	display: block;
	text-decoration: none;
	font-size: 0.9em;
	padding: 13px 10px 13px 30px;
	position: relative;
}
.nav_clist>li>a:before {
	content: "-";
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
.nav_clist>li>a:hover, 
.nav_clist>li.current>a {
	background-color: #68a4f2;
}
.nav_clist>li:hover .nav_glist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: #054ba6;
	color: #fff;
	margin-top: 160px;
}
.ft_bg a{
	text-decoration: none;
	color: #fff;
}
.ft {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 0 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

a.ft_logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	color: #054ba6;
	margin-right: 30px;
	color: #fff;
}
a.ft_logo img{
	margin-right: 10px;
}
a.ft_logo h1{
	font-size: 2.4rem;
	letter-spacing: 1.55rem;
	line-height: 1.2;
}
a.ft_logo h1 span{
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0;
}
a.ft_logo p{
	font-weight: lighter;
	font-size: 0.6em;
}
.ft_logo img{
	margin-right: 15px;
}

.ft_contact{
	font-size: 1.1em;
}

.ft_nav{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 20px 0 40px;
}
.ft_nav li{
	border-right: 1px dashed rgba(255, 255, 255, 0.5);
}
.ft_nav li:last-child{
	padding-right: 0;
	margin-right: 0;
	border-right: 0;
}
.ft_nav li a{
	padding: 5px 30px;
}
.ft_nav li a:hover{
	background-color: rgba(7, 109, 242, 0.6);
}
.ft_copy {
	font-size: 0.9em;
	color:rgba(255, 255, 255, 0.7);
	text-align: center;
	padding: 10px 0 15px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #054ba6;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	right: 30px;
	position: fixed;
	width: 60px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 8px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 7px;
	bottom: 0;
}
.pt_btn::after{
	height: 7px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
	width: 100%;
}

h2{
	margin-top: 40px;
	font-size: 2.4rem;
	font-family: "Josefin Sans";
	color: #054ba6;
	position: relative;
	overflow: hidden;
}
h2:after{
	content: "";
	width: 100%;
	height: 2px;
	background-color: #076df2;
	position: absolute;
	top: calc(50% - 3px);
}

.index_info,
.index_topic{
	position: relative;
}
.index_info .more_btn,
.index_topic .more_btn{
	text-decoration: none;
	font-family: "Josefin Sans";
	position: absolute;
	bottom: -35px;
	right: 0;
	font-size: 1.1em;
	color: #054ba6;
	padding: 5px 10px 4px;
	transition: 0.3s;
	background: rgba(5, 75, 166, 0.1);
}
.index_info .more_btn:hover,
.index_topic .more_btn:hover{
	color: #fff;
	background: rgba(5, 75, 166, 0.8);
}

.index_main .index_info_scrl,
.index_main .index_topic_scrl{
	max-height: 300px;
	overflow: auto;
	margin-bottom: 65px;
}
.index_info_scrl table,
.index_topic_scrl table{
	width: 100%;
}
.index_info_scrl table tr,
.index_topic_scrl table tr{
	border-bottom: 1px solid #d9d9d9;
}
.index_info_scrl table tr td,
.index_topic_scrl table tr td{
	padding: 25px 5px;
	vertical-align: top;
	font-size: 1.1em;
	line-height: 1.7;
}
.index_info_scrl table tr td:first-child,
.index_topic_scrl table tr td:first-child{
	color: #054ba6;
	font-size: 1.2em;
	padding-right: 18px;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}


.index_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_icon_new:before {
	content: "NEW"
}

.index_slider_bg{
	background: rgba(0, 0, 0, 0.8);
}

.index_slider,
.index_slider img {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.index_slider a span.i_comment {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: column;
	padding: 20px 30px;
	min-width: 30%;
	min-height: 100px;
	position: absolute;
	top: 50px;
	left: 30px;
	background: #054ba6;
	color: #fff;
	text-shadow: 2px 2px 2px #222;
	font-weight: bold;
	font-size: 1.2em;
}
.index_slider a span.i_comment span{
	font-weight: normal;
	display: block;
	width: 100%;
	padding-top: 10px;
	text-align: right;
}


/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

.main .index_info_scrl,
.main .index_topic_scrl{
	margin: 50px 0 65px;
}
.main .index_info_scrl table tr:first-child,
.main .index_topic_scrl table tr:first-child{
	border-top: 1px solid #d9d9d9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1.page_ttl{
	background-image: url(../images/pg_top.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	font-family: "Josefin Sans";
	color: #054ba6;
	font-size: 2.5rem;
	position: relative;
	line-height: 2.2;
}
.mcon h1.page_ttl span{
	position: relative;
	font-size: 1.15rem;
}
.mcon h1.page_ttl span:before{
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: linear-gradient(to left, #076df2 0%, #076df2 50%, #054ba6 50%, #054ba6 100%);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.mcon h2 {
	font-size: 2.1rem;
}
.mcon h3 {
	font-size: 1.3rem;
	margin-bottom: 8px;
	margin-top: 20px;
	background-color: #f8f8f8;
	color: #054ba6;
	border-bottom: 1px dashed rgba(5, 75, 166, 0.5);
	padding: 10px 10px 5px;
	position: relative;
}
.mcon h3:before {
	content: "";
	display: block;
	width: 2px;
	height: 70%;
	background: linear-gradient(to top, #054ba6 0%, #054ba6 50%, #076df2 50%, #076df2 100%);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.mcon h4 {
	font-size: 1.15em;
	margin-bottom: 5px;
	margin-top: 5px;
	position: relative;
	color: #054ba6;
	padding-left: 1rem;
}
.mcon h4:before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background: #054ba6;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.mcon h5, .mcon h6 {
	font-size: 1.1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em;
	font-size: 1.13em;
	line-height: 1.8;
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em;
	font-size: 1.13em;
}

.img_r{
	margin-left: 10px!important;
}
.img_l{
	margin-right: 10px!important;
}

p.ind_1{
	text-indent: -1rem;
	margin-left: 1rem;
}

.alt_box .box:nth-child(even){
	flex-flow: row-reverse;
}
.alt_box .box{
	padding: 20px 0 15px;
}

ol.alph_list{
  counter-reset:alpha;
  list-style-type: none!important;
}
ol.alph_list li{
  position: relative;
  padding-left: 30px;
  padding: 0.5em 0.5em 0.5em 30px;
}
ol.alph_list li:before{
  counter-increment: alpha A;
  content: counter(alpha, upper-alpha);
  position: absolute;
}
ol.alph_list li:before{
  display:inline-block;
  border: 1px solid red;
  color: red;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 22px;
  text-align: center;
  top: 5px;
}

.pdf{
	padding-left: 1.5rem;
	background: url(../images/pdficon_small.gif) no-repeat left center;
}

.link_box{
	background: rgba(104, 164, 242, 0.5);
	padding: 30px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	max-width: 80%;
	margin: 50px auto 0;
}
.link_box .box{
	width: 100%;
	justify-content: center;
}
.link_box .link_btn{
	margin: 15px 5px 0;
}
.link_list{
	display: flex;
	justify-content: center;
}
.link_list li{
	list-style: none!important;
	margin-left: 0!important;
	width: 40%;
}
.link_btn{
	text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.13rem;
    min-width: 25%;
    min-height: 40px;
    margin: 10px;
    padding: 5px 15px 5px 22px;
	background: #f8f8f8;
    transition: 0.2s;
    position: relative;
	border: 2px solid rgba(5, 75, 166, 0);
}
.link_btn:hover{
	border: 2px solid rgba(5, 75, 166, 0.7);
}
.link_btn:before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #054ba6;
	border-right: 1px solid #054ba6;
	position: absolute;
	top: 38%;
	left: 6px;
	transform: rotate(45deg);
}

.back_btn .link_btn{
	background:rgba(5, 75, 166, 0.1);
	width: 250px;
	margin: 30px auto 0;
}

/*---curriculu---*/
.curriculum_tbl{
	width: 95%;
	margin: 30px auto;
}
.curriculum_tbl tr{
	border-bottom :1px solid #333;
}
.curriculum_tbl tr:first-child{
	border-top :1px solid #333;
}
.curriculum_tbl tr th,
.curriculum_tbl tr td{
	border-right :1px solid #333;
	padding: 5px;
}
.curriculum_tbl tr th{
	text-align: center;
}
.curriculum_tbl tr td{
	vertical-align: top;
}
.curriculum_tbl tr th:first-child,
.curriculum_tbl tr td:first-child{
	border-left :1px solid #333;
}

.curriculum_tbl tr.g1 th{
	background-color: rgb(148, 152, 226);
}
.curriculum_tbl tr.g2 th{
	background-color: rgb(175, 147, 227);
}
.curriculum_tbl tr.g3 th{
	background-color: rgb(218, 146, 228);
}
.curriculum_tbl tr.g4 th{
	background-color: rgb(232, 142, 189);
}
.curriculum_tbl tr:last-child th{
	background-color: rgb(233, 141, 143);
}

/*---activities---*/
.activities .alt_box .box:not(:last-child){
	border-bottom: 1px solid #ddd;
}
.activities .alt_box .box:nth-child(even) img{
	margin-left: 10px;
}

/*---labs---*/
.labs_linklist{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	padding: 0!important;
}
.labs_linklist li{
	width: 20%;
	list-style: none!important;
	margin: 0!important;
}
.labs_linklist li a{
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
	padding: 5px;
	background: #f8f8f8;
	color: #054ba6;
	font-size: 1.1em;
    border-bottom: 1px dashed rgba(5, 75, 166, 0.5);
    transition: 0.2s;
}
.labs_linklist li a:hover{
	background-color: rgba(5, 75, 166, 0.1);
}
.labs_linklist li a.faculty_btu{
	background: rgba(5, 75, 166, 0.1);
	border-bottom: 2px solid transparent;
}
.labs_linklist li a.faculty_btu:hover{
	border-bottom: solid 2px rgba(5, 75, 166, 0.7);
}

.member_ttl {
	position: relative;
}
.member_ttl .hp_btn{
	position: absolute;
	top: 6px;
	right: 10px;
	text-decoration: none;
	padding: 5px 10px 5px 20px;
	background: rgba(5, 75, 166, 0.1);
	transition: 0.2s;
	font-size: 1rem;
	font-weight: normal;
}
.member_ttl .hp_btn:hover{
	background: rgba(5, 75, 166, 0.3);
}
.member_ttl .hp_btn:before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #054ba6;
	border-right: 1px solid #054ba6;
	position: absolute;
	top: 38%;
	left: 6px;
	transform: rotate(45deg);
}
.member_box{
	padding: 0 10px;
	margin-bottom: 60px;
}
.member_box p:first-child{
	background-color: rgba(5, 75, 166, 0.1);
	padding: 10px 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.member_box p:first-child img{
	width: 80px;
	margin-right: 10px;
}
.member_box p.theme,
.member_box ul{
	margin-left: 1rem;
}
.member_box_theory{
	background-color: rgba(5, 75, 166, 0.1);
	padding: 10px 15px;
}
.member_box_theory ul{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.member_box_theory ul li{
	list-style: none;
	width: calc((100% - 40px) / 9);
	margin-right: 5px;
}
.member_box_theory ul li:last-child{
	margin-right: 0px;
}
.member_box_theory ul li img{
	width: 100%;
}

/*----faculty---*/
.faculty_list{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.faculty_list li{
	width: calc(50% - 10px);
	list-style: none!important;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 10px 5px!important;
	padding: 10px;
	position: relative;
	background: #f8f8f8;
}
.faculty_list li img{
	margin-right: 10px;
	width: 120px;
}
.faculty_list li p{
	padding-top: 5px;
	font-size: 1rem;
	margin-bottom: 0;
	position: relative;
}
.faculty_list li .faculty_btn{
	position: absolute;
	bottom: 0px;
	right: 10px;
}
.faculty_list li p span{
	font-size: 1.15rem;
}
.faculty_list li img{
	width: 120px;
}
.faculty_list li .link_btn{
    border-right: 2px solid rgba(5, 75, 166, 0.1);
    border-bottom: 2px solid rgba(5, 75, 166, 0.1);
}
.faculty_list li .link_btn:hover{
    border: 2px solid rgba(5, 75, 166, 0.7);
}

/*--faculty_member---*/
.faculty_member .box{
	margin: 20px 0 10px;
	justify-content: flex-start;
	padding: 20px 30px;
    background-color: #f8f8f8;
    position: relative;
}
.faculty_member .box > img{
	width: 120px;
    display: block;
    margin-right: 40px;
}
.faculty_member .box table{
	margin-top: 10px;
	min-width: 45%;
}
.faculty_member .box table tr{
	border-bottom: 1px solid #888;
}
.faculty_member .box table tr th,
.faculty_member .box table tr td{
	padding: 5px 20px 0 10px;
}
.faculty_member .box table tr th{
	width: 8rem;
}
.faculty_member .box table tr td img{
	margin-left: 0!important;
	margin-bottom: 5px!important;
}
.faculty_member .box .icon_box{
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.faculty_member .box .icon_box a.home_btn,
.faculty_member .box .icon_box a.mail_btn{
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f8f8f8;
	width: 35px;
	height: 35px;
	border-radius: 35px;
	background-color: rgba(5, 75, 166, 0.6);
	transition: 0.2s;
	margin-left: 5px;
}
.faculty_member .box .icon_box a.home_btn:hover,
.faculty_member .box .icon_box a.mail_btn:hover{
	background-color: rgba(5, 75, 166, 0.9);
}
a.home_btn .material-icons{
	font-size: 2em!important;
}
a.mail_btn .material-icons{
	font-size: 1.9em!important;
}


/*---entance---*/
.entrance .tbl_bdr{
	margin: 0 auto 30px;
}

/*---contact---*/
.contact a.link_btn{
	width: 50%;
	margin: 20px auto 0;
	background-color: rgba(5, 75, 166, 0.1);
}
.contact a span.pdf{
	background-position: right center;
	margin-left: -2rem;
	padding-right: 1.5rem;
}


/*---theory---*/
.theory_list{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 5px 0 10px!important;
}
.theory_list li{
	list-style: none!important;
	padding-left: 0;
}
.theory_list li:not(:last-child):after{
	content: "/";
	padding-left:1rem;
}
.theory_list02{
	background-color: #f8f8f8;
	padding: 20px 10px;
	margin: 10px;
}
.theory_list02 li{
	list-style: none!important;
	padding-bottom: 5px;
}

/*---news---*/
.news table{
	width: 100%;
	margin: 0 auto 30px;
}
