@charset "utf-8";

body:not(.home) .site-body{
	text-align:left;
}
body:not(.home) .entry-footer{
	margin-top:1.5em;
}
body:not(.home) .page-header{
	text-align:left;
}
body:not(.home) .page-header .page-header-title{
	font-family: "Poppins", sans-serif;
	font-size:4.375rem;
	font-weight:400;
}
body:not(.home) .page-header .page-header-subtext{
	font-size:1.25rem;
}
body:not(.home) .breadcrumb-list{
	text-align:left;
	padding-block: 3em;
}

/* head,text */
body:not(.home) :is(h2,h3,h4,h5,h6){
	position:relative;
	margin-bottom:1em;
}
body:not(.home) p{
	line-height: 1.75;
}
body:not(.home) p a{
	text-decoration: underline;
	color: var(--vk-color-text-link);
	text-underline-offset: 5px;
}
body:not(.home) .entry-header{
	padding-bottom:2em;
	margin-bottom:2em;
	border-bottom: 1px solid #cdc6bd;
}
body:not(.home) .entry-title,
body:not(.home) .archive-header-title{
	font-size: 1.75rem;
	font-weight:bold;
}
body:not(.home) h2{
	font-family: "Poppins", sans-serif;
	font-size:2.375rem;
	font-weight:500;
	color:#32634b;
}
body:not(.home) h3{
	font-size:1.875rem;
	font-weight:bold;
}
body:not(.home) h4{
	font-size:1.5rem;
	font-weight:bold;
	color:#32634b;
	padding-bottom: 0.5em;
	border-bottom: 1px solid;
}
body:not(.home) h5{
	font-size:1.25rem;
	font-weight:500;
	color:#32634b;
}
body:not(.home) h6{
	font-size:1.125rem;
	font-weight:500;
}
p.text,
.texts > p{
	font-size:1rem;
	line-height:1.875;
	text-align:left;
}
.f_small{
	font-size:0.875rem;
}
.mb1em{
	margin-bottom:1.875em;
}
.mb2em{
	margin-bottom: 3.75em;
}

.limit_lh p{
	display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media (any-hover: hover) {
	body:not(.home) p a:hover{
		text-decoration:none;
	}
}
@media screen and (max-width: 768px) {
	p.text,
	.texts > p{
		font-size:1rem;
	}
	body:not(.home) h2{
		font-size:1.71rem;
	}
	body:not(.home) h3{
		font-size:1.47rem;
	}
	body:not(.home) h4{
		font-size:1.29rem;
	}
	body:not(.home) h5{
		font-size:1.14rem;
	}
	body:not(.home) h6{
		font-size:1.07rem;
	}
	.page-header{
		min-height:15em;
	}
	body:not(.home) .page-header .page-header-title{
		font-size:2.5rem;
		font-weight:400;
	}
	body:not(.home) .page-header .page-header-subtext{
		font-size:1rem;
	}
	body:not(.home) .entry-title,
	body:not(.home) .archive-header-title{
		font-size: 1.47rem;
	}
	body:not(.home) .entry-header{
		padding-bottom:1.5em;
		margin-bottom:1.5em;
	}
	body:not(.home) .breadcrumb-list{
		padding-block:1.5em;
	}
}

/* Link */

.text_link a,
a.text_link{
	text-decoration:underline;
	transition: color 0.4s;
	text-decoration-thickness:1px;
}
.text_link a:hover,
a.text_link:hover{
	text-decoration:none;
	color:inherit;
}
.block_link a,
a.block_link{
	display:block;
	transition: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img{
	transition: opacity 0.4s;
}
.block_link a:hover,
a.block_link:hover{
	text-decoration:none;
}
.block_link a:hover img,
a:hover img.opacity{
	opacity: 0.9;
	text-decoration:none;
}
.common_btn{
	text-align:center;
	margin:2em auto 3em;
}
.common_btn a {
	position: relative;
	z-index: 0;
	font-size: 1.125rem;
	color: unset;
	text-decoration: none;
	transition:background .4s,color .4s;
	display: inline-block;
	padding-right: 3.5em;
}
.common_btn a span{
	position: relative;
	z-index: 0;
}
.common_btn a span::before{
  position: absolute;
  z-index: 5;
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  background: #32634b;
  left: 0;
  bottom: -3px;
  transform: scale(1, 1);
  transform-origin: left;
  transition: transform .4s;
}
.common_btn a span:after{
	content: "→";
	width: 40px;
	height: 39px;
	position: absolute;
	margin:auto;
	inset: 0 -3em 0 auto;
	background: #32634b;
	color: #fff;
	border: 1px solid #32634b;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 1px;
	transition: background 0.3s, color 0.1s;
}
body:not(.home) .vk_button .vk_button_link{
	border-radius: 4px;
	position:relative;
	padding-inline: 2em 3.5em;
	min-height:5em;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	min-width: 250px;
	transition: .5s background-color,.5s color;
	border: 1px solid #32634b;
}
body:not(.home) .vk_button .vk_button_link:after{
	content:"\2192";
	width:40px;
	height:40px;
	background:#fff;
	border-radius:50%;
	position:absolute;
	inset:0 5% 0 auto;
	margin:auto;
	color: #32634b;
	display:flex;
	justify-content:center;
	align-items:center;
	transition: .5s background-color,.5s color;
}
@media (any-hover: hover) {
  .common_btn a:hover span::before{
    transform: scale(0, 1);
    transform-origin: right;
  }
	.common_btn a:hover span:after{
		background: #ffffff;
		color: #32634b;
	}
	body:not(.home) .vk_button .vk_button_link:hover{
		background: #fff !important;
		color: #32634b;
		opacity: 1;
	}
	body:not(.home) .vk_button .vk_button_link:hover:after{
		background:#32634b;
		color: #fff;
	}
}
@media screen and (max-width:767px) {
	.common_btn a {
		padding-right: 2.5em;
	}
	.common_btn a span:after{
		width: 30px;
		height: 29px;
	}
	body:not(.home) .vk_button .vk_button_link{
		padding-inline:1.5em 3em;
		min-height:4em;
		min-width: 200px;
	}
	body:not(.home) .vk_button .vk_button_link:after{
		width:30px;
		height:30px;
	}
}
a.arrow_link,
.arrow_link a{
	position: relative;
	padding-left:14px;
}
a.arrow_link:before,
.arrow_link a:before{
    content: "";
    position: absolute;
    left: -1px;
    margin-top:-3px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ico_blank{position:relative;padding-right: 20px;}
.ico_blank:before, .ico_blank:after{
	content: "";
	width: 11px;
	height: 11px;
	display: inline-block;
	position: absolute;
	border: 1px solid #333;
	background:#fff;
	right: 0;
	top: 2px;
	z-index:10;
}
.ico_blank:after{
	right: 3px;
	top: 5px;
	z-index:9;
}
img.icon{
	vertical-align:middle;
	margin-right:5px;
}
/* image */
.scale { }
.scale_m { 
	max-width:100%;
	width:auto;
	height:auto;
}
.scale_all{	
	width:100%;
	height:auto;
}
.img_fit{
	position:relative;
	width:100%;
	padding-bottom:63%;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}
.img_fit img{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	margin:auto;
	max-width:100%;
	max-height:100%;
	transition:transform .4s;
	display:block;
}
a.img_fit:hover img,
a:hover .img_fit img{
	transform:scale(1.05);
}
@media screen and (max-width: 768px) {
	.scale {
		width:100%;
		height:auto;
	}
}

/* table,list */

.table_style {
	border:#ddd solid 1px;
	border-bottom:none
}
.table_style dl{
	position:relative;
	border-bottom:#ddd solid 1px;
	width:100%;
}
.table_style dt{
	position:absolute;
	top:0;
	left:0;
	background:#EEEEEE;
	width:250px;
	padding:16px 20px;
	box-sizing:border-box;
}
.table_style dd{
	padding:16px 20px;
	padding-left:270px;
	box-sizing:border-box;
}
.list_style ul li{
	margin-left:1em;
	margin-bottom:5px;
	text-indent: -1em;
}
.list_style ul li:before{
	content:"\30FB";
	margin-right:5px;
	color:#005BAC;
	font-weight:bold;
	
}
.list_style ul li.inlist ul{
	margin-top:5px;
}
.list_style ul li.inlist li{
	margin-left:3em;
	padding-left:0;
	text-indent:-3em;
}
.ol_style ol li{
	margin-left:-1em;
	padding-left:1em;
	margin-bottom:5px;
	text-indent: -1em;
	list-style-position:inside;
}

.dl_style dl{
	margin:0;
	padding:15px;
	background:#f6f6f6;
}
.dl_style dl dt{
	font-weight:bold;
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom: dotted 1px #999;
}
.table_wrap {
	margin:40px 0;
}
.table_wrap.overs {
	padding-bottom:10px;
	overflow-x:auto;
	overflow-y:hidden;
}
.table_wrap table{
	width:100%;
	box-sizing:border-box;
	font-size:16px;
}
.table_wrap table th,
.table_wrap table td{
	box-sizing:border-box;
	padding:20px;
	border:solid 1px #ddd;
}


.table_wrap::-webkit-scrollbar {
	height: 15px;
}

.table_wrap::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #c1c1c1;
}

.table_wrap::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #666;
}
@media only screen and (max-width: 768px) {
	.table_style dl,
	.table_style dt,
	.table_style dd{
		display:block;
	}
	.table_style dt{
		border-bottom:#ddd solid 1px;
		width:100%;
		padding:10px;
		position:static;
		top:auto;
		left:auto;
	}
	.table_style dd{
		padding:15px 10px;
	}
	.dl_style dl{
		font-size:14px;
		margin:0;
	}
	.table_wrap{
		overflow-x:auto;
	}
	.table_wrap table{
		font-size:12px;
	}
	.table_wrap table th,
	.table_wrap table td{
		padding:10px;
	}
}

}
.topics_list{ border-top:#DDDDDD solid 1px;}
.topics_list li{
	border-bottom:#DDDDDD solid 1px;
}
.topics_list li a,
.topics_list li > div{
	display:flex;
	flex-wrap:wrap;
	padding:20px;
}
.topics_list li a:hover{
	text-decoration:none;
}
.topics_list time,
.topics_list h2,
.topics_list p{ display:inline-block;}
.topics_list a:hover h2{ 
	color:#fff;
	background:#E60012;
	border-color:#ddd;
	transition: background-color 0.5s, color 0.5s;
}
.topics_list a:hover time,
.topics_list a:hover p{ text-decoration:underline;}

.topics_list time{ margin-right:20px;}
.topics_list h2{
	padding:5px 5px;
	width: 10em;
	text-align:center;
	border:solid 1px #666666;
	margin-right:20px;
	transition: background-color 1s, color 1s;
}


/*  GoogleMAP・動画埋め込み  */
.map_wrap iframe{
	width:100%;
}
#campus_map{
	height:390px;
	margin-bottom:20px;
}
.movie_wrap{
	position:relative;
	width:100%;
	padding-bottom:56.25%;
}
.movie_wrap iframe{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.movie_wrap2{
	width: 100%;
	height:  0;
	padding-bottom:  590px;
	overflow:hidden;
	position:  relative;
}
.movie_wrap2 iframe,
.movie_wrap2 video{
	min-width: 100%;
	min-height: 590px;
	height:  auto;
	position:  absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
	margin:  auto;
}
@media only screen and (max-width: 768px) {
	#campus_map {
	    margin: 0 15px;
	    box-sizing: border-box;
	    width: auto;
	    height: 320px;
	}
}

/*  パンくずリスト  */
#pan {
	padding-top:15px;
	padding-bottom: 25px;
}
#pan ol{ 
	padding:0;
	margin:0;
	font-size:0.75rem;
}
#pan li,
#pan li *{ 
	display:inline-block;
	vertical-align:middle;
}
#pan li *{ 
	display:inline;
	vertical-align:middle;
}
#pan li{
	margin-right:0.25em;
}
#pan li:before{
	content: "\003E";
	display:inline-block;
	margin-right:0.5em;
	vertical-align:middle;
}
#pan li:first-child:before{
	content: "";
	display:none;
	margin-right:0;
}
@media only screen and (max-width: 767px) {
	#pan {
		padding-top:15px;
		padding-bottom:15px;
	}
	#pan a{
		text-decoration:underline;
	}
}

/*  ページャー  */
.pager_style{
	text-align:center;
	padding:30px 0 0 0;
}
.pager_style li{
	width:40px;
	border:1px solid #BBBBBB;
	background:#fff;
	display:inline-block;
	margin:0 0 10px 0;
}
.pager_style li:hover{
	background:#024384;
}
.pager_style li.on{
	background:#024384;
}
.pager_style li a{
	font-size:16px;
	text-decoration:none;
	display:block;
	padding:8px 0;
}
.pager_style li.on a{
	color:#fff;
}
.pager_style li a:hover{
	color:#fff;
}
.pager_style li.prev{
	margin:0 10px 0 0;
}
.pager_style li.next{
	margin:0 0 0 10px;
}
@media screen and (max-width: 768px) {
	.pager_style li{
		width: 30px;
	}
	.pager_style li a{
		font-size:12px;
		padding:6px 0;
	}
	.pager_style li.prev,
	.pager_style li.next{
		margin:0;
	}
}
.modal-content { 
	width: 80%;
	max-width: 1240px;
	margin: 0px;
	padding: 10px 20px;
	background: none;
	position: fixed;
	display: none;
	z-index:1020;
}
#modal-overlay { 
	z-index: 1000;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.66);

}
.modal_tit { 
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	max-width: 250px;
	text-align: center;
	line-height: normal;
	font-size: 20px;
	z-index: 1025;
	overflow: hidden;
	padding: 0px 30px;color:#fff;
}
.modal_tit span {
	display: block;
	position: relative;
	padding: 10px 0px;
	background: rgb(0, 0, 0);
	z-index: 2;
	border-bottom: 1px solid rgb(255, 255, 255);
}
.modal-content .close_btn {
	position: absolute;
	top: -10%;
	right: 0px;
	color: rgb(255, 255, 255);
	font-size: 40px;
	line-height: 1;
	display: block;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	modal-content { width: 100%;
	padding: 15px;
	box-sizing: border-box;
}
}