@charset "utf-8";

/* ==================================================
reset
================================================== */

html{-webkit-text-size-adjust:100%;box-sizing:border-box;-moz-tab-size:4;tab-size:4;word-break:normal}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}hr{color:inherit;height:0;overflow:visible}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}iframe{border-style:none}input{border-radius:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[disabled]{cursor:default}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}

ul {
	list-style-type: none;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
@media print, screen and (max-width: 1200px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

.btn a {
	display: inline-block;
	padding: .2rem .7rem;
	border: 1px solid #a5a5a5;
	font-weight: 700;
	color: #fff;
	background:rgba(0,0,0,0.27);
}
.btn a:hover {
	border: 1px solid #fff;
	color: #fff;
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/

html {
	--10px: 62.5%;
	--11px: 68.8%;
	--12px: 75%;
	--13px: 81.3%;
	--14px: 87.5%;
	--15px: 93.8%;
	--16px: 100%;
	--17px: 106.3%;
	--18px: 112.5%;
	--19px: 118.8%;
	--20px: 125%;
	--21px: 131.3%;
	--24px: 150%;
	--28px: 175%;
	--34px: 212.5%;
}
body {
  font-family:"游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}
*, *::before, *::after {
  box-sizing:border-box;
}
.clearfix::after {
  content:'';
  display:block;
  clear:both;
}

.bold {
  font-family:"游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 700;
}
.font-min {
	font-family:"游明朝","Yu Mincho","YuMincho",'Hiragino Mincho Pro',serif !important;
}

a {
	text-decoration: none;
	color: #0e467b;
}
a:hover,
a:focus {
	opacity: .7;
	transition: .5s;
}
a:hover img,
a:focus img {
	opacity: .7;
	transition: .5s;
}
.link-img {
  cursor: pointer;
  max-width: 600px;
  overflow: hidden;
  width: 100%;
	line-height: 0;
}
.link-img img {
  height: auto;
  transition: transform .6s ease;
}
.link-img:hover img {
  transform: scale(1.1);
}
.opacity-n a:hover,
.opacity-n a:focus,
.opacity-n a:hover img,
.opacity-n a:focus img {
	opacity: 1 !important;
}

#header a, #footer a {
  color: #fff;
}

main > section {
  width:100%;
}
main > section .container {
  max-width:1200px;
  margin:0px auto;
	/* display: flex;
	justify-content: center; */
}
main > section .container .content {
	text-align: left;
	width: 100%;
}
@media print, screen and (max-width: 1200px) {
	main > section .container {
		padding: 0 1rem;
	}
}
#top .container,
.top-campus .container,
#footer .container {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
#top .fadein,
.top-campus .fadein,
#footer .fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.top-topics .container {
	opacity: 1 !important;
	visibility: initial !important
}

/* header
============================== */

#header {
	background:#1e2c39;
	width: 100%;
	height: 71px;
	z-index: 2;
	position: relative;
	line-height: 1;
}
@media print, screen and (max-width: 1200px) {
	#header {
		height: auto;
	}
}
#header.HeightMin {
	position: fixed;
  z-index: 10;
	animation: DownAnime 0.5s forwards;
	height: auto;
}
@keyframes DownAnime {
  from {
  	opacity: 0;
		transform: translateY(-170px);
  }
  to {
  	opacity: 1;
		transform: translateY(0);
  }
}

#header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
#header .inner > a {
	display: flex;
	height: 100%;
	position: relative;
}
#header .inner > a:hover {
	opacity: 1;
}
#header a #header_logo {
	height: 100%;
	margin-right: 1rem;
}
#header a #header_logo {
	display: flex;
	align-items: center;
	padding: 0 15px;
	background: #fff;
	height: 100%;
	min-height: 50px;
}
#header_logo img {
	display: block;
}
#header .header_tit {
	color: #fff;
	font-family: "游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-weight: 700;
	font-size: var(--17px);
	white-space: nowrap;
	position: absolute;
	bottom: 19px;
	left: 230px;
}
#header .header_tit span {
	font-size: 70%;
	margin-left: .5rem;
}
#header.HeightMin .header_tit {
	bottom: 10px;
}
@media print, screen and (max-width: 1200px) {
	#header .inner {
		align-items: flex-start;
		justify-content: space-between;
	}
	#header_logo img {
		width: 70%;
	}
	#header .inner > a {
		display: block;
	}
	#header a #header_logo {
		padding: 5px calc(100vw - 251px) 5px 15px;
		margin-right: 0;
		min-height: 50px;
	}
	#header .header_tit {
		font-size: var(--11px);
		white-space: nowrap;
		position: initial;
		padding: 4px 15px;
	}
	#header .header_tit span {
		font-size: 80%;
		margin-top: 0;
		margin-left: .5rem;
		display: inline-block;
	}
}

#header nav {
	padding: 0 70px;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
}
#header.HeightMin nav {
	align-content:flex-end;
}
#header nav.sp {
	display: none;
}

/* グローバルメニュー */
#gnav {
  margin: 0;
	font-size: var(--16px);
}
#gnav a {
  position: relative;
  display: inline-block;
  transition: .3s;
	padding: 7px 12px 0;
	margin-bottom: 10px;
}
#gnav .nav-item:last-of-type a {
	padding-right: 0;
}
#gnav .nav-item > a::after {
  position: absolute;
  bottom: -13px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #bababa;
  opacity: 0;
  transition: .3s;
}
#gnav .nav-item > a:hover::after {
  bottom: -10px;
  opacity: 1;
}
#gnav .nav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
#gnav .nav-list .nav-item a {
  display: block;
}

@media print, screen and (min-width: 768px) {
  #gnav .nav-list {
  }
  #gnav .nav-item_sub {
    background: #1e2c39;
		border-top: 2px solid #bababa;
    left: 0;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
    position: absolute;
    top: 71px;
    transition: all 0.2s ease;
    visibility: hidden;
    width: 100%;
  }
	#header.HeightMin #gnav .nav-item_sub {
    top: 50px;
  }
  #gnav .nav-item_sub .inner {
    margin: 0 auto;
    width: 1150px;
  }
  #gnav .nav-item_sub .inner ul {
    display: flex;
		flex-wrap: wrap;
    margin: 20px 0;
		width: 100%;
		gap: 20px 50px;
  }
  #gnav .nav-item_sub .inner ul li {
		width: 30.4%;
  }
  #gnav .nav-list .nav-item_sub a {
		position: relative;
    text-align: left;
		font-family:"游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
		font-weight: 400;
		color: #1e2c39;
		background: #fff;
		padding: 18px 30px;
  }
	#gnav .nav-list .nav-item_sub a::before {
    content: '';
    position: absolute;
    bottom: 50%;
		transform: translateY(50%);
    left: -0;
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #1e2c39;
}
  #gnav .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
		z-index: 2;
  }
}

#purpose {
	font-size: var(--12px);
	margin-top: 10px;
	width: 100%;
}
#header.HeightMin #purpose {
	display: none;
}
@media print, screen and (max-width: 1200px) {
	#header.HeightMin #purpose {
		display: block;
	}
}

#purpose ul {
	display: flex;
	justify-content: flex-end;
}
#purpose ul li {
	margin-left: 20px;
}
#purpose ul li a {
	position: relative;
	padding-left: 23px;
}
#purpose ul li a::before {
	content: "";
	display: inline-flex;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px !important;
	transform: translateY(-50%);
}
#purpose ul li:first-of-type a::before {
	width: 11px;
	height: 13px;
	background-image: url(/common/common_images/icon_admissions.png);
}
#purpose ul li:nth-of-type(2) a::before {
	width: 13px;
	height: 10px;
	background-image: url(/common/common_images/icon_current.png);
}
#purpose ul li:nth-of-type(3) a::before {
	width: 11px;
	height: 13px;
	background-image: url(/common/common_images/icon_graduate.png);
}
#purpose ul li:nth-of-type(4) a::before {
	width: 18px;
	height: 13px;
	background-image: url(/common/common_images/icon_general.png);
}
#purpose ul li:nth-of-type(5) a::before {
	width: 9px;
	height: 13px;
	background-image: url(/common/common_images/icon_relation.png);
}

#rnav {
	background: #fff;
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.6));
	position: absolute;
	right: 7px;
	top: 7px;
	text-align: center;
	width: 50px;
	padding: 5px 0;
	z-index: 2;
}
#rnav ul li {
	height: 49px;
}
#rnav ul li a, #rnav ul li button {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#rnav button:hover,
#rnav button:focus {
	opacity: .7;
	transition: .5s;
}

#rnav .hide-area{
  display: none;
}

#header_r ul li button {
  color: #CB2E27;
  padding: 10px 10px 10px 20px;
  font-weight: bold;
}

#header_r ul li button.txt {
  width: 100%;
  cursor: pointer;
}

#rnav .modaal-close:after, 
#rnav .modaal-close:before{
  background:#ccc;  
}

#rnav .modaal-close:focus:after,
#rnav .modaal-close:focus:before,
#rnav .modaal-close:hover:after,
#rnav .modaal-close:hover:before{
  background:#666;
}

.rnav_search {
	text-align: center;
	margin-bottom: 80px;
}
.rnav_search input {
	width: 65%;
	max-width: 500px;
	padding: 10px;
	background: #fff;
}
.rnav_search button {
	border: none;
	background-color: transparent;
	background-image: url(/common/common_images/btn_search.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-left: 5px;
	vertical-align: middle;
	transition: .4s;
}
.modaal-container {
	background: initial !important;
	box-shadow: none !important;
}

.txt_clr {
  float: right;
  display: none;
  position: absolute;
  right: 55px;
  top: 253px;
  z-index: 10;
  background: #fff;
	align-items: center;
	justify-content: center;
}
.txt_clr > div {
	display: flex;
}
.txt_clr dd, .txt_clr dt {
	display: flex;
	align-items: center;
}
.txt_clr dl {
	margin: 5px 10px;
	display: flex;
	align-items: center;
}
.txt_clr dt {
	margin: 0 10px;
	white-space: nowrap;
}
.txt_clr dd {
	/* border: 1px solid #fff; */
	padding: 5px;
}
.txt_clr dd img {
	width: auto;
	height: auto;
}

@media print, screen and (max-width: 1200px) {
	
	#header nav.pc {
		display: none;
	}
	#header nav.sp {
		display: block;
		position: relative;
	}
	
	#header nav {
		padding: 0;
	}

	#header .menu_btn{
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
		width: 50px;
		height:50px;
		z-index: 1000;
	}
	#header .menu_btn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		background: #fff;
		width: 45%;
	}
	#header .menu_btn span:nth-of-type(1) {
		top:15px;
	}
	#header .menu_btn span:nth-of-type(2) {
		top:23px;
	}
	#header .menu_btn span:nth-of-type(3) {
		top:31px;
	}
	#header .menu_btn.panelactive span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 45%;
	}
	#header .menu_btn.panelactive span:nth-of-type(2) {
		opacity: 0;
	}
	#header .menu_btn.panelactive span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 45%;
	}

	#sp_nav {
    position:fixed;
		overflow-y: scroll;
    z-index: 200;
	  top:0;
    right: -120%;
	  width:100%;
    height: 100vh;
	  background:rgba(0,0,0,0.9);
	  transition: all 0.6s;
		padding: 3rem 1rem 3rem;
	}
	#sp_nav.panelactive {
    right: 0;
	}
	#sp_nav > ul {
    position: absolute;
    z-index: 100;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
		width: 80%;
	}
	#sp_nav li {
  	list-style: none;
		border-bottom: 1px solid #696763;
	}
	#sp_nav li a {
		color: #fff;
		text-decoration: none;
		padding:15px 30px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}
	#sp_nav .sp_gnav {
		width: calc(100% - 3rem - 50px);
		margin-bottom: 20px;
	}
	#sp_nav .sp_gnav ul li {
		position: relative;
	}
	#sp_nav .sp_gnav ul li:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    vertical-align: middle;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    border: 4px solid transparent;
    border-left: 6px solid #fff;
}

	#sp_nav .search {
		text-align: center;
		margin-bottom: 10px;
	}
	#sp_nav .search input {
		width: calc(100% - 50px - 3rem);
		max-width: 500px;
		padding: 5px;
		border: none;
		color: #fff;
		background: rgba(255,255,255,0.2);
		border: 1px solid #fff;
	}	
	#sp_nav .search button {
		border: none;
		background-color: transparent;
		background-image: url(/common/common_images/btn_search.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		display: inline-block;
		width: 50px;
		height: 30px;
		margin-left: 5px;
		vertical-align: middle;
		transition: .4s;
	}

	#purpose {
		font-size: var(--12px);
		margin-bottom: 20px;
	}
	#purpose ul {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	#purpose ul li {
		margin-left: 5px;
		border-bottom: none;
	}
	
	#rnav {
		background: none;
		filter: initial;
		position: absolute;
		right: 15px;
		top: 104px;
		text-align: center;
		width: 55px;
		padding: 5px 0;
	}
	#rnav ul li {
		height: 60px;
		border-bottom: none;
	}
	#rnav ul li a {
		display: block;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

/* main
============================== */

.slide {
	position: relative;
}
.slide img {
	width: 100%;
}
.slide .catch {
	max-width: 1200px;
	margin: auto;
	z-index: 2;
	position: relative;
	width: 100%;
}
.slide .catch > div {
	position: absolute;
	bottom: calc(50% + 180px);
	left: calc(50% - 544px);
	font-family: '小塚明朝 Pro', 'Kozuka Mincho Pro', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif, sans-serif;
	font-size: 22px;
	letter-spacing: 10px;
	line-height: 1.2;
	color: #fff;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0,0,0,.8));
	filter: drop-shadow(0px 0px 2px rgba(0,0,0,1));
	z-index: 2;
}
.slide .catch span {
	font-size: 18px;
	display: block;
	margin-bottom: 20px;
}

.slide .splide.pc {
	display: block;
}
.slide .splide.sp {
	display: none;
}
@media print, screen and (max-width: 796px) {
	.slide .catch > div {
		bottom: 20px;
		left: 1rem;
		font-size: 16px;
	}
	.slide .splide.pc {
		display: none;
	}
	.slide .splide.sp {
		display: block;
	}
}

.swiper {
	line-height: 0;
	z-index: 1 !important;
}

.swiper div a:hover {
	opacity: 1;
}

.swiper div a:hover img {
	opacity: 1;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide a:hover{
  opacity: 1;
}

.swiper-slide a:hover img{
	opacity: 1;
}

.swiper.sp img {
	width: 100%;
}

.ticker {
  color: #fff;
  background: #1e2c39;
	font-size: var(--16px);
	text-align: center;
	padding: 15px 0;
}
.ticker a {
  color: #fff;
}
.ticker p {
	position: relative;
	display: inline-block;
}
.ticker p:before {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	left: -25px;
	display: inline-block;
	width: 15px;
	height: 17px;
	background-image: url(/common/common_images/icon_bell.png);
}
@media print, screen and (max-width: 1200px) {
	.ticker {
		color: #fff;
		background: #1e2c39;
		font-size: var(--16px);
		text-align: center;
		padding: 15px 15px 15px 36px;
	}
	.ticker p:before {
		top: 4px;
		left: -20px;
	}
}

main > section {
	padding: 2rem 0 2rem;
}
main h2 {
	display: inline-block;
	font-family:"游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 700;
	font-size: var(--18px);
	border-bottom: 1px solid;
	padding: 5px 15px;
	margin-bottom: 2rem;
	margin-left: -14px;
	position: relative;
}
main h2::before {
	content: '';
	position: absolute;
	bottom: -1px;
	left: -60px;
	display: inline-block;
	width: 58px;
	height: 3px;
	background-color: #fff;
}
@media print, screen and (max-width: 1200px) {
	main h2 {
		padding: 5px 10px;
		margin-bottom: 20px;
		margin-left: 0;
	}
}

/* 篮球比分 */
.top-important {
  background: #f0f0f0;
}
.top-important h2 {
	color: #bd1e65;
}
.top-important h2::before {
	background-color: #bd1e65 !important;
}
.top-important .content .inner {
	display: flex;
}
.top-important .btn {
	font-size: var(--12px);
}
.top-important .content .inportant_left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 142px;
}
.top-important .content .inportant_left .btn a {
	background: none;
	border: none;
	color: #333;
	padding: 0;
}
.top-important .important_text {
	margin-left: 6rem;
	font-size: var(--13px);
}
.top-important .important_text ul {
	margin-bottom: 2rem;
}
.top-important .important_text li {
	margin-bottom: 10px;
}
.top-important .important_text a {
	color: #484848;
}
.top-important .important_text .important_tit {
	display: flex;
}
.top-important .important_text a .important_tit .article,
.top-important .note a, .top-campusinfo .campusinfo_tit a {
	text-decoration: underline;
	color: #0e467b;
}
.top-important .important_tit .date {
  width: 16%;
	min-width: 10rem;
}
.top-important .important_tit .article {
  width: 84%;
}
.top-important .important_tit .article span {
	text-decoration: none;
	display: inline-block;
	color: #fff;
	border-radius: 10px;
	padding: 0 10px;
	margin-right: .3rem;
	font-size: 84.6%;
}
.top-important .important_tit .article span.mark-zen {
	background: #1e2c39;
}
.top-important .important_tit .article span.mark-honbu {
	background: #115fad;
}
.top-important .important_tit .article span.mark-sapporo {
	background: #729a1b;
}
.top-important .important_tit .article span.mark-asahikawa {
	background: #64719d;
}
.top-important .important_tit .article span.mark-kushiro {
	background: #227b8e;
}
.top-important .important_tit .article span.mark-hakodate {
	background: #33807a;
}
.top-important .important_tit .article span.mark-iwamizawa {
	background: #3c8163;
}
.top-important .important_tit .article span:last-of-type {
	margin-right: 15px;
}
.top-important .note {
	font-size: var(--12px);
	font-weight: 700;
	text-align: center;
}

@media print, screen and (max-width: 1200px) {
	.top-important .content .inner, .top-important .important_text .important_tit {
		display: block;
	}
	.top-important .important_text {
		margin-left: 0;
	}
	.top-important .content .inportant_left {
		display: flex;
		flex-direction:row;
		justify-content: space-between;
	}
  .top-important .important_tit .article {
  width: 100%;
  }
	.top-important .important_tit .date {
		width: auto;
		margin-bottom: 5px;
	}
}
/* comments */
.top-comments .bg_white_withshadow {
	background-color: #fff;
	box-shadow: 0 5px 8px 0px rgba(0,0,0,0.3);
	padding: 20px 50px;
	border-radius: 25px;
	line-height: 2rem;
}

/* TOPICS*/
.top-topics {
  color: #fff;
  background: #172f46;
}
.top-topics .slide-topics {
	position: relative;
}
.top-topics .topics {
	max-width: 1200px;
	overflow: hidden;
}
.top-topics .topics img {
	width: 100%;
	image-rendering: pixelated;
}
.top-topics .swiper-button-next, .top-topics .swiper-button-prev {
	color: #fff;
}
.top-topics .swiper-button-prev {
	/* display: none; */
  left: -40px;
}
.top-topics .swiper-button-next {
	/* display: none; */
  right: -40px;
}
.top-topics .swiper-button-next:after, .top-topics .swiper-button-prev:after {
 font-size: 38px;
 font-weight: 400;
}
.top-topics .swiper-wrapper .link-img {
	width: 230px;
	margin-right: 20px;
}
.top-topics .swiper-wrapper .link-img:last-child {
	width: 230px;
	margin-right: 0;
}

@media print, screen and (max-width: 796px) {
	.top-topics .container {
		padding: 0 4rem;
	}
	.top-topics .swiper-button-next:after, .top-topics .swiper-button-prev:after {
	 font-size: 24px;
	}
	.top-topics .swiper-wrapper .link-img {
		width: calc(50% - 10px);
		margin-right: 0;
		margin-bottom: 20px;
	}
	.top-topics .swiper-wrapper .link-img:last-child {
		width: calc(50% - 10px);
		margin-right: 0;
	}
	.top-topics .swiper-wrapper .link-img:nth-child(odd) {
		margin-right: 20px;
	}
}

/* NEWS */
.top-news {
	padding-bottom: 5rem;
}
.top-news h2 {
	color: #135fa6;
}
.top-news h2::before {
	background-color: #135fa6 !important;
}
.top-news .btn {
	font-size: var(--12px);
}
.top-news figure.link-img {
	width: 135px;
	margin-right: 2rem;
}
.top-news figure.link-img img {
	width: 100%;
}
.top-news .news_item a {
	display: flex;
	padding: 1rem 0;
	color: #000;
	font-size: var(--15px);
	font-weight: 700;
}
.top-news .news_item {
	border-bottom: solid 1px #ccc;
}
.top-news .text_content .date {
	color: #656565;
	margin-bottom: .5rem;
}
.top-news .text_content .badge {
	display: inline-block;
	padding: .3rem 1rem;
	font-size: var(--12px);
	border-radius: 30px;
	color: #fff;
	font-weight: normal;
	margin-bottom: .5rem;
	line-height: 1;
}
.top-news .text_content .badge.hold {
	background: #135fa6;
}
.top-news .text_content .badge.black {
	background: #000;
}
.top-news .text_content .badge.gray, .top-news .text_content .badge.close {
	background: #656565;
}
.top-news .text_content .badge.red {
	background: #ac0000;
}
.top-news .text_content .badge.blue {
	background: #0f477b;
}
.top-news .text_content .badge.green {
	background: #30843e;
}
@media print, screen and (max-width: 796px) {
	.top-news .text_content .date {
		margin-bottom: .2rem;
	}
	.top-news figure.link-img {
		width: 37.5%;
		margin-right: 10px;
	}
	.top-news .text_content .badge {
		margin-bottom: .2rem;
	}
	.top-news .text_content {
		width: 62.5%;
		margin-left: 10px;
	}
}


/* 課程?学科の紹介 */
.top-course {
  color: #fff;
  background: #193d5e;
}
.top-course .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
}
.top-course section {
	max-width: 370px;
}
.top-course section img {
	width: 100%;
}
.top-course section h3 {
	font-size: var(--28px);
	font-weight: 400;
	margin: 2rem 0 10px;
}
.top-course section .item {
	display: flex;
	font-size: var(--12px);
	margin-bottom: 2rem;
}
.top-course section .item li {
	border: 1px solid #fff;
	padding: 0 .5rem;
	margin-right: 5px;
}
.top-course .btn {
	font-size: var(--12px);
}
.top-course section p:last-of-type {
	font-size: var(--15px);
	margin-bottom: 2rem;
	line-height: 1.8;
}
@media print, screen and (max-width: 796px) {
	.top-course section {
		width: 48%;
	}
}
@media print, screen and (max-width: 1200px) {
	.top-course section {
		margin-bottom: 4rem;
		max-width: initial;
		width: 100%;
	}
	.top-course section:last-of-type {
		margin-bottom: 0;
	}
	.top-course section h3 {
		margin: 20px 0 10px;
	}
	.top-course section .item {
		margin-bottom: 20px;
	}
	.top-course section p:last-of-type {
		margin-bottom: 20px;
	}
}

/* 各校top独自コンテンツ */
.top-campusinfo {
  background: #f0f0f0;
}
.top-campusinfo h2 {
	color: #729a1b;
}
.top-campusinfo h2::before {
	background-color: #729a1b !important;
}
.top-campusinfo .btn {
	font-size: var(--15px);
}
.top-campusinfo .content .campusinfo_tit {
	display: flex;
	min-width: 142px;
}
.top-campusinfo .content .btn {
	display: flex;
	justify-content: center;
}
.top-campusinfo .content .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #b0b0b0;
	background: #fff;
	color: #000;
	width: 220px;
	height: 40px;
	font-size: var(--14px);
}
.top-campusinfo .campusinfo_text ul {
	margin-left: 6rem;
	margin-bottom: 2rem;
	font-size: var(--14px);
}
.top-campusinfo .campusinfo_text li {
	margin-bottom: 10px;
}
.top-campusinfo .campusinfo_text .campusinfo_tit {
	display: flex;
}
.top-campusinfo .campusinfo_text a .campusinfo_tit .article, .top-campusinfo .note a {
	text-decoration: underline;
	color: #0e467b;
}
.top-campusinfo .campusinfo_tit .date {
  width: 16%;
	min-width: 10rem;
}
.top-campusinfo .campusinfo_tit .article {
  width: 84%;
}
.top-campusinfo .campusinfo_tit .article span {
	text-decoration: none;
	display: inline-block;
	color: #fff;
	padding: 0 10px;
	margin-left: .5rem;
	font-size: 84.6%;
	background-color: #729a1b;
}

.top-campusinfo .note {
	font-size: var(--12px);
	font-weight: 700;
	text-align: center;
}

@media print, screen and (max-width: 1200px) {
	.top-campusinfo .content .inner, .top-campusinfo .campusinfo_text .campusinfo_tit {
		display: block;
	}
	.top-campusinfo .campusinfo_text ul {
		margin-left: 0;
	}
	.top-campusinfo .content .campusinfo_left {
		display: flex;
		flex-direction:row;
		justify-content: space-between;
	}
  .top-campusinfo .campusinfo_tit .article {
  width: 100%;
  }
	.top-campusinfo .campusinfo_tit .date {
		width: auto;
		margin-bottom: 5px;
	}
}

/* 各校?大学院等 */
.top-campus {
  color: #fff;
  background: #13283b;
}
.top-campus .inner {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px 3rem;
}
@media print, screen and (max-width: 1200px) {
	.top-campus .inner {
		margin: 0 -10px 2rem;
	}
}
.top-campus .inner section {
	margin: 0 10px;
}
.top-campus .inner section > div {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.top-campus h2 {
	color: #fff !important;
}
.top-campus h2::before {
	background-color: #fff !important;
}
.top-campus .inner section h3 {
	font-family:"游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 700;
	font-size: var(--13px);
	letter-spacing: .1rem;
	padding: .2rem .5rem;
	margin: 0 0 20px;
}
.top-campus .inner section h3 {
	background: #185d5f;
	-webkit-background-size: 4px 4px;
	-moz-background-size: 4px 4px;
	background-size: 4px 4px;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%,
	color-stop(.25, #377374), color-stop(.25, transparent),
	color-stop(.5, transparent), color-stop(.5, #377374),
	color-stop(.75, #377374), color-stop(.75, transparent),
	to(transparent));
	background-image: -webkit-linear-gradient(-45deg, #377374 25%, transparent 25%,
	transparent 50%, #377374 50%, #377374 75%,
	transparent 75%, transparent);
	background-image: -moz-linear-gradient(-45deg, #377374 25%, transparent 25%,
	transparent 50%, #377374 50%, #377374 75%,
	transparent 75%, transparent);
	background-image: -ms-linear-gradient(-45deg, #377374 25%, transparent 25%,
	transparent 50%, #377374 50%, #377374 75%,
	transparent 75%, transparent);
	background-image: -o-linear-gradient(-45deg, #377374 25%, transparent 25%,
	transparent 50%, #377374 50%, #377374 75%,
	transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #377374 25%, transparent 25%,
	transparent 50%, #377374 50%, #377374 75%,
	transparent 75%, transparent);
}
.top-campus .inner section .box {
	margin: 0 10px 20px;
	max-width: 224px;
}
.top-campus .inner section .box img {
	width: 100%;
}
@media print, screen and (max-width: 1200px) {
	.top-campus .inner section {
		width: 100%;
	}
	.top-campus .inner section .box {
		display: flex;
		width: 100%;
		max-width: initial;
	}
	.top-campus .inner section .box > p:first-of-type {
		width: 40%;
	}
	.top-campus .inner section .box > p {
		width: 60%;
	}
}

.top-campus .inner section a {
	color: #fff;
	text-decoration: none;
}
.top-campus .inner section p:last-of-type {
	margin: 15px 0px;
	font-size: var(--16px);
	font-family:"游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 700;
	letter-spacing: .03rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.top-campus .inner section .name p:last-of-type {
	margin: 15px 0px;
	font-size: var(--16px);
	display: block;
	line-height: 1.2;
}
.top-campus .inner section p:last-of-type span {
	font-size: var(--10px);
	opacity: .47;
}
.top-campus .inner section .name p:last-of-type span {
	opacity: 100;
}
@media print, screen and (max-width: 1200px) {
	.top-campus .inner section p:last-of-type, .top-campus .inner section .name p:last-of-type {
		margin: 0 10px;
		align-items: flex-start;
	}
	.top-campus .inner section .name p:last-of-type {
		display: inline-block;
	}
}

.top-campus .banner {
	margin: 0 -10px;
}
.top-campus .banner ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 !important;
}
.top-campus .banner ul li {
	width: 224px;
	margin: 0 10px 20px;
	padding: 0 !important;
}
.top-campus .banner ul li::after {
	content: none !important;
}
.top-campus .banner ul li img {
	width: 100%;
}
@media print, screen and (max-width: 1200px) {
	.top-campus .banner ul li {
		width: calc((100% - 4rem) / 3);
	}
	.top-campus .banner ul li img {
		height: auto !important;
	}
}
@media print, screen and (max-width: 796px) {
	.top-campus .banner ul li {
		width: calc((100% - 2.5rem) / 2);
	}
	.top-campus .banner ul li img {
		height: auto !important;
	} 
}

.top-banner .banner {
	margin: 0 -10px;
}
.top-banner .banner ul {
	display: flex;
	flex-wrap: wrap;
}
.top-banner .banner ul li {
	width: 224px;
	margin: 0 10px 20px;
}
.top-banner .banner ul li img {
	width: 100%;
}

@media print, screen and (max-width: 1200px) {
	.top-banner .banner ul li {
		width: calc((100% - 4rem) / 3);
	}
	.top-banner .banner ul li img {
		height: auto !important;
	}
}
@media print, screen and (max-width: 796px) {
	.top-banner .banner ul li {
		width: calc((100% - 2.5rem) / 2);
	}
	.top-banner .banner ul li img {
		height: auto !important;
	}
}

/* footer
============================== */

#footer {
  color: #fff;
  background: #13283b;
  text-align: center;
	font-size: var(--12px);
}
#footer .logo {
	margin: 0 auto 2rem;
}
#footer .logo span {
	display: block;
	margin-top: 10px;
}
#footer .logo img {
	height: auto;
}
#footer .sns {
	margin: 0 auto 20px;
}
#footer .sns dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 auto 10px;
}
#footer .sns dt {
	margin: 0 5px;
	text-align: right;
	width: calc(50% - 10px);
}
#footer .sns dd {
	margin: 0 5px;
}
#footer .sns img {
	width: 24px;
}
#footer .copy {
	font-size: var(--10px);
	padding: 10px;
}
#footer .btn {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}
#footer .btn a {
	display: flex;
	justify-content: center;
	margin: 0 .5rem;
	background: none;
	padding: 5px;
}
#footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto 20px;
}
#footer ul:nth-of-type(2) {
	margin-bottom: 0;
}
#footer ul:last-of-type {
	margin-bottom: 3rem;
}
#footer ul li {
	padding: 0 5px 10px 0;
}
#footer ul li:after {
	content: "|";
	margin-left: 5px;
	color: #fff;
}
#footer ul li:last-of-type::after {
	content: none;
}
#footer ul.sns li:after {
	content: none;
}

/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#729a1b;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}
#page-top span {
	display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
#page-top a:hover{
	opacity: .7;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}

.mb1 {
	margin-bottom: 10px;
}
.mb2 {
	margin-bottom: 20px;
}
/* ==================================================
voice navi & skip
================================================== */
p.voice_navi {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #ffffff;
  position: absolute;
  left: -3000px;
}
.skip {
  width: 1px;
  font-size: 0.1%;
  line-height: 0.1;
  position: absolute;
  left: -3000px;
}
a.skip {
  text-align: center;
  padding: 2px 0;
  top: auto;
}
a.skip:active {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
}
a.skip:focus {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
}

/* only print */
@media only print {
	* {
		-webkit-print-color-adjust: exact;
	}
	.container{
		opacity: 1;
    visibility: visible;
    transform: translateX(0);
	}

	#header.HeightMin, #footer {
		position: relative;
	}
	#header_logo {
		width: 100%;
	}
	nav *, .pankuzu, .top-campus, #page-top, aside {
		display: none;
	}
	.slide img{
		width: 100vw;
	}
	#page_main .category_title h2 {
		top: 50% !important;
		left: 50vw !important;
		transform: translate(-50%, -50%);
	}
	#footer {
		display: none;
	}
}