/******************************************************************************
******************************************************************************
**
** 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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	border-top: 2px solid #054ba6;
}
.hd {
	padding: 5px 10px;
	height: auto;
}
a.hd_logo img{
	margin-right: 10px;
	max-width: 250px;
}

.hd_r{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 5px;
}
ul.link_bnr {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
ul.link_bnr li{
	margin-left: 5px;
}
ul.link_bnr li a{
	text-decoration: none;
	color: #fff;
	background-color: #68a4f2;
	border: 2px solid #076df2;
	padding: 7px 15px 7px 5px;
	position: relative;
	transition: 0.2s;
	font-size: 0.8em;
	font-family: "ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
ul.link_bnr li a:after{
	content: "";
	background: url(../../images/icon_elink_white.png) no-repeat;
	background-size: cover;
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 3px;
	transform: translateY(-50%);
}
ul.link_bnr li a:hover{
	background-color: #076df2;
}

ul.lang_btn{
	cursor: pointer;
	z-index: 2000;
	font-family: "Josefin Sans";
}
ul.lang_btn > li> a{
	margin-right: 20px;
	padding-left: 20px;
	position: relative;
	color: #054ba6;
	font-size: 1em;
}
ul.lang_btn > li> a:before{
	content: "";
	background: url(../../images/lang.png) no-repeat;
	width: 15px;
	height: 15px;
	background-size: cover;
	display: block;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}
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 {
	background: #054ba6;
	color: #fff;
	height: calc(100% + 500px);
	padding-bottom: 500px;
	z-index: 100;
	width: 70%;
	overflow-y: auto;
	top: 0px;
	right: -70%;
	position: fixed;
	transition: All 0.5s ease;
	z-index: 9000;
}
.nav_list>li>a {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	display: block;
	padding: 1em 1em 1em 1.5em;
	text-decoration: none;
	position: relative
}
.nav_list>li>a:hover,
.nav_list>li.current>a{
	background-color: rgba(0, 0, 0, 0.2)
}
.nav_list>li>a::after {
	content: attr(data-text);
	display: block
}
.nav_list>li>a img {
	display: none
}
.nav_clist>li>a {
	background-color: rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	display: block;
	font-size: 13px;
	padding: 1em 1em 1em 2em;
	text-decoration: none
}
.nav_clist>li>a:hover, .nav_clist>li.current>a {
	background-color: rgba(104, 164, 242, 0.3);
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
.nav_glist>li>a {
	background-color: rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	display: block;
	font-size: 11px;
	padding: 1em 1em 1em 3em;
	text-decoration: none
}
.nav_glist>li>a:hover, .nav_glist>li.current>a {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
.sp_nav_open {
	right: 0 !important
}
.sp_nav_trigger {
	cursor: pointer;
	z-index: 9999;
	position: fixed !important;
	top: 25px;
	right: 15px;
	margin-top: -5px;
	width: 36px;
	height: 24px
}
.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	transition: all .4s;
	box-sizing: border-box
}
.sp_nav_trigger span:nth-of-type(1) {
	top: 0
}
.sp_nav_trigger span:nth-of-type(2) {
	top: 10px
}
.sp_nav_trigger span:nth-of-type(3) {
	bottom: 0
}
.sp_nav_trigger::after {
	position: absolute;
	left: 0;
	bottom: -20px;
	content: 'MENU';
	display: block;
	width: 100%;
	padding-top: 20px;
	color: #000;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s
}
.sp_nav_trigger.sp_active::after {
	content: 'CLOSE';
	bottom: -25px;
	color: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
	background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
	opacity: 0;
	background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
	background: #fff
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: #054ba6;
	color: #fff;
	margin-top: 100px;
}
.ft_bg a{
	text-decoration: none;
	color: #fff;
}
.ft {
	padding: 40px 10px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

a.ft_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #054ba6;
	color: #fff;
	margin-bottom: 20px;
}
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_contact{
	font-size: 1em;
	text-align: center;
}

.ft_nav{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 20px 0 30px;
}
.ft_nav li{
	border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
	margin: 10px auto 0;
}
.ft_nav li a{
	display: block;
	padding: 5px 10px;
	text-align: center;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #054ba6;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	right: 10px;
	position: fixed;
	width: 40px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 5px;
	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: 5px;
	bottom: 0;
}
.pt_btn::after{
	height: 5px;
	right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
	margin-bottom: 20px;
}

h2{
	margin-top: 40px;
	font-size: 2rem;
	font-family: "Josefin Sans";
	color: #054ba6;
	position: relative;
	overflow: hidden;
}
h2:after{
	content: "";
	width: 100%;
	height: 2px;
	background-color: #076df2;
	position: absolute;
	bottom: 20px;
}

.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_info_scrl,
.index_topic_scrl{
	max-height: 300px;
	overflow: auto;
	margin-bottom: 55px;
}
.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: 10px 5px 30px;
	vertical-align: top;
	font-size: 1.1em;
	line-height: 1.7;
	width: 100%;
	display: block;
}
.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;
	padding-bottom: 0;
	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,
.index_slider img {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.index_slider a span {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 150px;
	height: 50px;
	background: rgba(144, 144, 255, 0.5);
	color: #ccc;
	text-shadow: 2px 2px 2px #222;
	font-weight: bold;
	font-size: 1em;
}


/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	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: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	font-family: "Josefin Sans";
	color: #054ba6;
	font-size: 2.2rem;
	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: 1.8rem;
}
.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: 5px;
	transform: translateY(-50%);
}
.mcon h5, .mcon h6 {
	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;
	padding: 0 10px;
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}

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: 10px!important;
  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;
  left: -1.1rem;
}

a.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: 90%;
	margin: 50px auto 0;
}
.link_box .link_btn{
	display: block;
	margin: 15px 5px 0;
}
.link_btn{
	text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    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);
}
.box img{
	display: block;
	margin: 10px auto!important;
}
.img_r,
.img_l{
	margin-bottom: 10px!important;
}

/*----faculity---*/
.faculity_list li{
	list-style: none!important;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 10px 5px!important;
	padding: 10px;
	position: relative;
	background: #f8f8f8;
}
.faculity_list li img{
	margin-right: 10px;
	width: 120px;
}
.faculity_list li p{
	padding-top: 10px;
	font-size: 1rem;
	margin-bottom: 0;
	position: relative;
}
.faculity_list li .modal_content{
	position: absolute;
	bottom: 0px;
	right: 10px;
}
.faculity_list li p span{
	font-size: 1.15rem;
}
.faculity_list li img{
	width: 120px;
}
.faculity_list li .link_btn{
    border-right: 2px solid rgba(5, 75, 166, 0.1);
    border-bottom: 2px solid rgba(5, 75, 166, 0.1);
}
.faculity_list li .link_btn:hover{
    border: 2px solid rgba(5, 75, 166, 0.7);
}

/*---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;
}


@media screen and (min-width:580px) and ( max-width:769px) {
	.ft_nav li{
		width: calc((100% - 40px) / 2);
		border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
		margin: 10px 10px 0;
	}
	.box{
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.box img{
			margin: 10px!important;
	}
	.img_l{
		float: left;
		margin: 10px!important;
	}
	.img_r{
		float: right;
		margin: 10px!important;
	}
	.faculity_list{
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.faculity_list li{
		width: calc(50% - 10px);
	}

}