  @charset "utf-8";
/* CSS Document */
img{
	max-width: 100%;
	height: auto;
}
body.cat{
	background: #2C2C2C;
}
.cat-box{
	background: #fff;
}
.res-box .cat-box{
	background: #2C2C2C;
}
.slide-item .cat-box{
	background: none;
}
.position{
	position: relative;
}
.trans{
	display: block;
	width: 100%;
	height: 100%;
}
/*ヘッダー*/
.header{
	background: url("/researchinfo/images/common/head_bg.jpg") no-repeat center top;
	background-size:cover;
	padding-top: 15px;
	padding-bottom: 15px;
	position: fixed;
	top:0;
	width: 100%;
	left:0;
	z-index: 9999;
	opacity: 0.9;
}
.header h1{
	width: 50%;
	max-width: 640px;
	padding-left: 2%;
	float: left;
}
.head-list{
	text-align: right;
	float: right;
	width: 49%;
	max-width: 550px;
	padding-top: 0px;
}
.head-list .search-box{
	padding-top: 12px;
	margin-right: 3%;
	width: 50%;
}
.head-list .flex{
	align-content: center;
	display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
}

.head-list .flex .form-box input[type="text"]{
	border-radius: 20px;
	border: 1px solid #989898;
	padding:4px 12px 4px 18px;
	font-size: 12px;
	width: 70%;
	margin-right: 2%;
}
.head-list .flex .form-box button{
	background: #000;
	color:#fff;
	border: 1px solid transparent;
	text-align: center;
	padding:4px 12px;
	border-radius: 20px;
	font-size: 11px;
	line-height: 1.2;
	width: 28%;
    transition: all 0.7s ease;
	cursor: pointer;
}

.head-list .flex .form-box button:hover{
	background: #fff;
	color:#000;
	border: 1px solid #000;
}
.head-list .flex .form-box .icon{
	width: 12px;
	position: absolute;
	top: 54%;
    left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.head-list .flex .form-box .icon img{
	display: block;
}
.head-list .flex .form-box{
	margin-right: 3%;
}
.head-list .flex .form-box .form-wrap form{
	display: flex;
	align-items: center;
}
.head-list .lun-box{
	margin-right: 7%;
}
.head-list .lun-box ul{
	display: flex;
	margin-right: 3%;
	align-items: center;
	padding-top: 12px;
}
.head-list .lun-box li:first-child{
	border-right:1px solid #fff;
}
.head-list .lun-box li{
	padding-left: 5px;
	padding-right: 5px;
	line-height: 1;
}
.head-list .lun-box li a{
	color:#fff;
}
.head-list .lun-box li.current a{
	border-bottom: 1px solid #fff;
}
.menu-btn {
	cursor: pointer;;
    background: #000000;
    padding: 12px 12px 1px;
	margin-left: 3%;
	position: fixed;
	z-index: 10001;
	right:3%;
	top:15px;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
	cursor: pointer;
}
.menu-trigger {
  position: relative;
  height: 24px;
    width: 22px;
	z-index: 9998;
	left:0;
	right:0;
	margin-left: auto;
	margin-right: auto;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #fff;
  border-radius: 0px;
  display: inline-block;
  box-sizing: border-box;
}
.link-area {
    margin-top: -17vw;
    padding-top: 17vw;
}
/*.menu-trigger.active span {
	background-color:#fff;
}
.menu-trigger.ex span {
	background:#fff;
}*/
.menu-trigger span:nth-of-type(1) {
  top: 0px;
  width: 22px;
  height: 4px;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
  width: 22px;
  height: 4px;
}
.menu-trigger span:nth-of-type(3) {
  top: 20px;
  width: 22px;
  height: 4px;
}
.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .50s forwards;
  animation: menu-bar01 .50s forwards;
}
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .50s forwards;
  animation: menu-bar02 .50s forwards;
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .50s forwards;
  animation: active-menu-bar01 .50s forwards;
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .50s forwards;
  animation: active-menu-bar03 .50s forwards;
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.nav-area {
    background: rgba(255,255,255,0.95);
    width: 100%;
    height: 100%;
    position: fixed;
    transition: all 0.7s ease;
    top: 0px;
    left: 0;
    z-index: -2;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s;
	padding:70px 0%;
	overflow-y: scroll;
    transition-timing-function: ease-in-out;
}
.nav-area.open {
    z-index: 10000;
    opacity: 1;
}
.nav-area h2,.nav-area p.link{
	border-left: 10px solid #000;
	font-size: 25px;
	font-weight: 700;
}
.nav-area h2 span,.nav-area p.link span{
	padding-left: 1%;
	color:#000;
}
.nav-area .cat-list ul{
	/*font-size: 0;*/
	display: flex;
    flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 25px;
}
.nav-area .cat-list li{
	margin-bottom: 15px;
	/*display: inline-block;
	vertical-align: top;*/
	width: 18%;
	max-width: 143px;
	margin-right: 2%;
	line-height: 1.3;
	
}
.nav-area .cat-list li a{
	display: block;
	width: 100%;
	padding:4px 8px;
	text-align: center;
	color:#fff;
	font-size: 15px;
	background: #000;
	border: 1px solid transparent;
	border-radius: 22px;
    transition: all 0.7s ease;
}
.nav-area .cat-list li a:hover{
	background: #fff;
	color:#000;
	border: 1px solid #000;
}
.nav-area .menu-area{
	margin-bottom: 35px;
}

.nav-area .tag-list ul{
	font-size: 0;
	line-height: 2;
	
}
.nav-area .tag-list{
}
.nav-area .tag-list li{
	display: inline;
	margin-right: 0%;
	font-size: 15px;
}
.nav-area .tag-list li a{
	color:#000;
	/*border-bottom: none;*/
	position: relative;
	text-decoration: none;
    transition: all 0.7s ease;
	border-bottom: 1px solid transparent;
}
.nav-area .tag-list li a:hover{
	/*text-decoration: underline;*/
	border-bottom: 1px solid #000;
}
.nav-area .tag-list li a::after{
	opacity: 0;
	height: 1px;
	position: absolute;
	bottom:-2px;
	left:0;
	content: "";
    transition: all 0.7s ease;
	width: 100%;
	background: #000;
}
/*.nav-area .tag-list li a:hover::after{
	opacity: 1;
}*/
.nav-area .tag-list li::after{
	content: "　/　";
}
.nav-area .tag-list li:last-child{
	margin-right: 0;
	padding-right: 0;
}
.nav-area .tag-list li:last-child::after{
	content: "";
}
.nav-area .pro-list ul{
	font-size: 0;
	margin-top: 25px;
}
.nav-area .pro-list li{
	display: inline-block;
	margin-right: 2%;
}
.nav-area .pro-list li a{
	font-size: 15px;
	color:#000;
}
.nav-area .input{
	width: 80%;
	margin-right: 2%;
}
/*a img{
	opacity: 0.6;
}
.trans{
	opacity: 0.6;
}*/
.wrap{
	max-width: 1150px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.wrap.ex{
	max-width: 980px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
/*フッター*/
.footer{
	padding:60px 0 20px;
	background: url("/researchinfo/images/common/footer_bg.jpg");
	background-size: cover;
}
.footer h2{
	font-size: 46px;
	padding-bottom: 25px;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: 700;
	line-height: 1;
}
.footer h2 span{
	font-size: 17px;
	font-weight: 500;
}
.footer h3{
	border-left: 10px solid #fff;
	font-size: 25px;
	color: #fff;
	letter-spacing: 0.1em;
}
.footer h3 span{
	padding-left: 15px;
}
/*.footer .res-list{
	font-size: 0;
}*/
.footer .res-list li{
	display: inline-block;
	width: 46%;
	margin-right: 7%;
	font-size: 15px;
	color:#fff;
	line-height: 1.5em;
	vertical-align: top;
	margin-bottom: 50px;
	
}

.footer .res-list li .bg{
	padding:15px 0 20px;
	width: 100%;
}

.footer .res-list li .bg .tex-wrap{
	height: calc(1.3em * 3);
    position: relative;
	line-height: 1.3em;
	width: 100%;
	display: block;
	font-size: 25px;
	z-index: 2;
}
.footer .res-list li .bg .tex-wrap p{
	position: absolute;
    width: 100%;
    top: 50%;
	font-weight: 700;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	color:#fff;
	text-align: center;
}
.footer .res-list li .bg .span{
	position: absolute;
	bottom:0;
	right:0;
	padding:5px 10px;
	line-height: 1;
	background: #fff;
	color:#000;
	text-align: center;
	font-size: 13px;
	z-index: 2;
}
.footer .res-list li .bg{
	overflow: hidden;
	position: relative;
}
.footer .res-list li .bg::after{
	transition: all 0.7s ease;
}
.footer .res-list li .bg:hover::after{
	transform: scale(1.2);
  /*transition-duration: 0.3s;*/
}
.footer .res-list li:nth-child(1) .bg::after{
	background: url("/researchinfo/images/common/footbg_01.jpg") no-repeat center center;
	background-size:cover;
	position: absolute;  
    content: "";  
    display: block;  
    width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
}
.footer .res-list li:nth-child(2) .bg::after{
	background: url("/researchinfo/images/common/footbg_02.jpg") no-repeat center center;
	background-size:cover;
	position: absolute;  
    content: "";  
    display: block;  
    width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
	
}
.footer .res-list li:nth-child(3) .bg::after{
	background: url("/researchinfo/images/common/footbg_03.jpg") no-repeat center center;
	background-size:cover;
	position: absolute;  
    content: "";  
    display: block;  
    width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
}
.footer .res-list li:nth-child(4) .bg::after{
	background: url("/researchinfo/images/common/footbg_04.jpg") no-repeat center center;
	background-size:cover;
	position: absolute;  
    content: "";  
    display: block;  
    width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
}
.footer .res-list li:nth-child(5) .bg::after{
	background: url("/researchinfo/images/common/footbg_05.jpg") no-repeat center center;
	background-size:cover;
	position: absolute;  
    content: "";  
    display: block;  
    width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
}
.footer .res-list li:nth-child(6) .bg::after{
	background: url("/researchinfo/images/common/footbg_06.jpg") no-repeat center center;
	background-size:cover;
	position: absolute;  
    content: "";  
    display: block;  
    width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
}

.footer .link-list{
	font-size: 0;
}
.footer .link-list li{
	display: inline-block;
	width: 24%;
	margin-right: 1%;
}
.footer .link-list li:last-child{
	margin-right: 0;
}
.footer .info-list ul{
	
}
.footer .info-list li{
	font-size: 15px;
	display: inline-block;
	margin-right: 2%;
}
.footer .info-list li a{
	color: #fff;
	position: relative;
	border-bottom: 1px solid transparent;
    transition: all 0.7s ease;
}
.footer .info-list li a:hover{
	border-bottom: 1px solid #fff;
}
/*.footer .info-list li a::after{
	opacity: 0;
	height: 1px;
	position: absolute;
	bottom:2px;
	left:0;
	content: "";
    transition: all 0.7s ease;
	width: 100%;
	background: #fff;
}
.footer .info-list li a:hover::after{
	opacity: 1;
}*/
.footer .info-list li:last-child{
	margin-right: 0;
}
.footer .copy{
	font-size: 12px;
	color:#fff;
	text-align: center;
}
.contents{
	margin-top: 75px;
}
/*カテゴリー*/
.cat-wrap h2{
	font-size: 50px;
	border-bottom: 5px solid #000;
	padding-bottom: 10px;
	margin-bottom: 20px;
	line-height: 1;
}
.cat-wrap .cat-list ul{
	/*font-size: 0;*/
	display: flex;
    flex-wrap: wrap;
	align-items: flex-start;
}
.cat-wrap .cat-list li{
	margin-bottom: 15px;
	display: flex;
	/*display: inline-block;
	vertical-align: top;*/
	width: 30%;
	margin-right: 4%;
	line-height: 1.3;
	
	position: relative;
}
.cat-wrap .cat-list li a{
	width: 100%;
	height:100%;
	padding:4px 8px;
	border-radius: 22px;
	background: #000;
	text-align: center;
	top:50%;
	color:#fff;
	font-size: 15px;
	border:1px solid transparent;
    transition: all 0.7s ease;
}
.cat-wrap .cat-list li a:hover{
	background: #fff;
	color:#000;
	border: 1px solid #000;
    transition: all 0.7s ease;
}
.cat-wrap .tag-list ul{
	font-size: 0;
	line-height: 2;
	
}
.cat-wrap .tag-list{
}
.cat-wrap .tag-list li{
	display: inline;
	margin-right: 0%;
	font-size: 15px;
}
.cat-wrap .tag-list li a{
	color:#000;
	/*border-bottom: none;*/
	position: relative;
	text-decoration: none;
    transition: all 0.7s ease;
	border-bottom: 1px solid transparent;
}
.cat-wrap .tag-list li a:hover{
	/*text-decoration: underline;*/
	border-bottom: 1px solid #000;
}
.cat-wrap .tag-list li a::after{
	opacity: 0;
	height: 1px;
	position: absolute;
	bottom:-2px;
	left:0;
	content: "";
    transition: all 0.7s ease;
	width: 100%;
	background: #000;
}
/*.cat-wrap .tag-list li a:hover::after{
	opacity: 1;
}*/
.cat-wrap .tag-list li::after{
	content: "　/　";
}
.cat-wrap .tag-list li:last-child{
	margin-right: 0;
	padding-right: 0;
}
.cat-wrap .tag-list li:last-child::after{
	content: "";
}
.cat-search .input{
	width: 80%;
	margin-right: 2%;
}
.cat-search form{
	display: flex;
}
.cat-search .button{
	width: 18%;
	cursor: pointer;
}
.cat-search .input{
	position: relative;
}
.cat-search .input input{
	border-radius: 20px;
	border: 1px solid #707070;
	padding:18px 5px 18px 36px;
	width: 100%;
	display: block;
}
.cat-search .input .icon {
    width: 16px;
    position: absolute;
    top: 32%;
    left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.cat-search .button button{
	border-radius: 20px;
	padding:18px 0;
	text-align: center;
	color:#fff;
	background: #026E4F;
	border: 1px solid transparent;
	font-size: 18px;
	line-height: 1;
	width: 100%;
	display: block;
    transition: all 0.7s ease;
	cursor: pointer;
}
.cat-search .button button:hover{
	
	color:#026E4F;
	background:#fff ;
	border: 1px solid #026E4F;
}
/*RESULT*/
.res-box{
	background: #2C2C2C;
}
.res-box .head-box,.res-box .head-box2,.res-box .head-box3{
	background: #fff;
	padding:20px 3%;
}
.res-box .head-box .left,.res-box .head-box2 .left{
	/*width: 35%;*/
	margin-right: 3%;
	border-right:3px solid #000;
	padding-right: 3%;
	letter-spacing: 0.05rem;
}
.res-box .head-box .right{
	width: 59%;
	letter-spacing: 0.1em;
}
.res-box .head-box .left h2{
	font-size: 50px;
}
.res-box .head-box .left h2 span{
	font-size: 30px;
	margin-right: 1%;
}

.res-box .head-box3 .left{
	margin-right: 3%;
	padding-right: 3%;
	letter-spacing: 0.05rem;
}
.res-box .head-box3 .left h2{
	font-size: 50px;
}
.res-box .head-box3 .left h2 span{
	font-size: 30px;
	margin-right: 1%;
}

.res-box .head-box2 .left h2{
	font-size: 30px;
}
.res-box .head-box .right p{
	font-size: 29px;
	font-weight: 500;
	
}
.res-box .head-box2 .right p{
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	
}
.res-box .head-box .right p span.sm{
	margin-right: 3%;
	font-size: 21px;
}
.res-list ul.inline-list{
	font-size: 0;
}
.res-list ul.inline-list > li{
	width: 29.3%;
	display: inline-block;
	margin-right: 6%;
	margin-bottom: 50px;
	vertical-align: top;
}
.res-list ul.inline-list > li .res-img{
	margin-bottom: 10px;
	/*height: 212px;*/
	overflow: hidden;
}
.res-list ul.inline-list > li .res-img img{
    transition: all 0.7s ease;
}
.res-list ul.inline-list > li .res-img:hover img{
	transform: scale(1.2);
  /*transition-duration: 0.3s;*/
}
.res-box .head-box .right p span{
    display: inline-block;
}
/*.res-list ul li .res-tex{
	display: flex;
	align-items: center;
}*/
.res-list ul.inline-list > li .res-box{
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #BABABA;
}
.res-list ul.inline-list > li .res-tex .cat{
	background: url("/researchinfo/images/common/cat_bg.png") no-repeat left top;
	background-size:cover;
	/* padding:10px 5px; */
	padding:0.5em 1em;	
	color:#fff;
	/* width: 40%; */
	/* text-align: center; */
	text-align: left;	
	/* margin-right: 6%; */
	margin-right: 1em;	
	font-size: 13px;
	/* font-weight: 700; */
	/*  */
	line-height: 1.2em;
	display: inline-block;
}


.res-list ul.inline-list > li .res-tex .cat a{
	color:#fff;
}


.res-list ul.inline-list > li .res-tex .cat a:hover{
	color: #111111;
}

.res-list ul.inline-list > li .res-tex .day{
	/* width: 54%; */
	font-size: 15px;
	color:#fff;
}
.res-list ul.inline-list > li .res-tex .text{
	line-height: 1.5em;
	font-size: 19px;
	color:#fff;
	letter-spacing: 0.1em;
	
	/*text-overflow: ellipsis;
	max-height: calc(1.5em * 3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	overflow-y: hidden;
	*/
}
.res-list ul.inline-list > li .res-tex .text a{
	color:#fff;
    transition: all 0.7s ease;
}
.res-list ul.inline-list > li .res-tex .text a:hover{
	color: #36A7B7;
}
.res-list ul.inline-list > li .tab ul{
	font-size: 0;
	display: flex;
    flex-wrap: wrap;
}
.res-list ul.inline-list > li .tab li{
	/*display: inline-block;*/
	margin-right: 2%;
	margin-bottom: 8px;
	/* width: 49%; */
	display: flex;
	align-items: center;
	/*vertical-align: middle;*/
	line-height: 1.3;
	text-align: center;
	
}
.res-list ul.inline-list > li .tab li:nth-child(2n){
	/* margin-right: 0; */
}
.res-list ul.inline-list > li .tab li a{
	padding: 5px 12px;
	font-size: 12px;
	line-height: 1.2em;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	height: 100%;
	color:#000;
    transition: all 0.7s ease;
	border: 1px solid transparent;
	background: #fff;
	border-radius: 5px;
}
.res-list ul.inline-list > li .tab li a:hover{
	background: #000;
	color:#fff;
	border: 1px solid #fff;
}
.res-box .btn-area .link{
	width: 52%;
	max-width: 270px;
	margin-left: auto;
	margin-right: auto;
}
.res-box .btn-area .link a{
	width: 100%;
	border:1px solid #000;
	padding:15px 4% 15px 4%;
	border-radius: 8px;
	font-size: 18px;
	line-height: 1;
	color:#000;
	display: block;
	background: #fff;
	text-align: center;
    transition: all 0.7s ease;
}
.res-box .btn-area .link a:hover{
	background: #000;
	color:#fff;
	border: 1px solid #fff;
}
.res-box .btn-area a .yajirushi img{
	transition: all 0.7s ease;
}
.res-box .btn-area:hover a .yajirushi img{
	filter: brightness(1) invert(0);
	filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}
.res-box .btn-area a .yajirushi{
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	width: 18px;
	right:6%;
	top:50%;
	position: absolute;
}
.link-area{
	margin-top: -40px;
	padding-top: 40px;
}
.pan{
	font-size: 15px;
	color:#fff;
}
.pan a{
	color:#fff;
    transition: all 0.7s ease;
}
.pan a:hover{
	color: #36A7B7;
}

.cat-pan a{
	color:#fff;
    transition: all 0.7s ease;
}
.cat-pan a:hover{
	color: #36A7B7;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.pager a.num,.pager a.page-numbers,
.pager span {
  display: inline-block;
  font-weight: bold;
  border: 1px solid transparent;
	background: #fff;
	color:#000;
  text-decoration: none;
  vertical-align: middle;
  margin-right: 4px;
  margin-left: 4px;
  padding: 5.5px 9px 7px;
	line-height: 1;
	margin-bottom: 1em;
}
.pager a.num:hover,
.pager span.current {
  color: #fff;
  background: #000;
  transition: all .3s;
  border: 1px solid #fff;
}
.pager a.prev,
.pager a.next {
  /*border: none;
  margin-top: 5px;*/
}
/*.pager a.prev {
  margin-right: 15px;
}
.pager a.next {
  margin-left: 15px;
}*/
@media print, screen and (min-width : 769px) {

.footer .res-list li:nth-child(2n){
	margin-right: 0;
}
.cat-wrap{
    display: flex;
}
.cat-wrap .box{
	width: 46%;
}


.cat-wrap .box:first-child{
	margin-right: 6%;
}
.cat-wrap .cat-list li:nth-child(3n){
	margin-right: 0;
}
	
/*RESULT*/
.res-box .head-box{
	display: flex;
}
.res-box .head-box2{
	display: flex;
}
.res-box .head-box .left, .res-box .head-box2 .left{
	display: flex;
	align-items:flex-end;
}
.res-box .head-box .right, .res-box .head-box2 .right{
	display: flex;
	align-items:flex-end;
	line-height: 1.4;
}
.res-box .head-box .right p{
    width: 100%;
}
.res-list ul li .cat-box{
    display: flex;
    margin-bottom: 15px;
}	
.res-list ul li:nth-child(3n){
	margin-right: 0;
}
}
@media screen and (min-width: 769px) and (max-width: 980px){
	.cat-wrap .cat-list li a{
		font-size: 12px;
	}
	.footer .res-list li .bg .tex-wrap{
		font-size: 18px;
	}
	.footer .res-list li .bg .span{
		font-size: 13px;
	}
}
@media only screen and (max-width : 768px) {

/*ヘッダー*/
.header{
	background: url("/researchinfo/images/common/head_bg_sp.jpg") no-repeat center top;
	background-size:cover;
	padding-top: 2vw;
	padding-bottom: 2vw;
}
.header h1{
	padding-top: 1vw;
	padding-bottom: 1vw;
	width: 58%;
}
.contents {
    /* padding-top: 16vw; */
}
/* sp_nav */
/*#sp_menu{width: 16%; float: right; margin-right: 6%;}
#sp_menu img{ max-width:100%;}*/
#sp_nav{position:absolute; top:100%; width:100%; color:#FFF; z-index:1000;display:none; left:0; height: 95vh; overflow-y: scroll; padding-bottom: 15%;}
#sp_nav dl{width:100%; clear:both;border-top: 1px solid #CCC;}
#sp_nav dl dt,#sp_nav dl dd{width: 100%;float: left;border-bottom: 1px solid #fff;border-left: 1px solid #fff;border-right: 1px solid #fff; background-color:#000; font-size: 3.8vw; /*height:50px;*/ position:relative;}
/*#sp_nav ul.sub_list li{
	border:none;
}*/
#sp_nav ul li:nth-child(odd){box-shadow:none;}
#sp_nav dl dt a{ color:#fff; padding:3% 6%; text-align:left; display:block; font-size:3.8vw; /*background:url(/researchinfo/images/common/sp_menu_bg.png) no-repeat 90% center; background-size:8%;*/}
#sp_nav dl dd a{ color:#000; padding:3% 6%; text-align:left; display:block; font-size:3.8vw; /*background:url(/researchinfo/images/common/sp_menu_bg.png) no-repeat 90% center; background-size:8%;*/}
#sp_nav dl dt a.fade,#sp_nav dl dd a.fade { opacity:0.5;pointer-events: none;}
#sp_nav ul li.all{width:100%;}

#sp_nav ul li a:hover{ text-decoration:none;}
#sp_nav li{
    border-bottom: 1px solid #FFFFFF;
	background: #398CD6;
	position: relative;
	font-size: 3.9vw;
	
}	
#sp_nav li a{
    display: block;
    width: 100%;
    height: 100%;
	padding:3vw 8vw;
	color:#fff;
	position: relative;
}
	#sp_nav li a::after{
		position: absolute;
		top:30%;
		width: 3vw;;
		background: url("/researchinfo/images/common/yajirushi.png") no-repeat right top;
		background-size:100%;
		height: 6vw;
		right:5%;
		content: "";
	}
	#sp_nav li img{
		width: 8%;
		margin-right: 3%;
		vertical-align: middle;
		opacity: 1!important;
	}
#sp_nav dd ul li:last-child{
    border-bottom: none;
}

.head-list{
	width: 20%;
}
	.menu-btn{
		padding:2vw 3vw 1vw;
	}
/*フッター*/
.footer{
	padding:6vw 0 8vw;
	background: url("/researchinfo/images/common/footer_bg_sp.jpg");
	background-size: cover;
}
.footer h2{
	font-size: 7.0vw;
	padding-bottom: 4vw;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: 700;
	line-height: 1;
}
.footer h2 span{
	font-size: 3.3vw;
	font-weight: 500;
	margin-top: 3vw;
	display: block;
}
.footer h3{
	border-left: 10px solid #fff;
	font-size: 3.9vw;
	padding-left: 4vw;
}
.footer h3 span{
	padding-left: 0vw;
}
.footer .res-list li{
	display: block;
	width: 100%;
	margin-right: 0%;
	font-size: 3.3vw;
	margin-bottom: 8vw;
}

.footer .res-list li .bg{
	padding:3vw 0 4vw;
	width: 100%;
}
.footer .res-list li .bg .tex-wrap{
	height: calc(1.3em * 3);
    position: relative;
	line-height: 1.3em;
	width: 100%;
	display: block;
	font-size: 4.6vw;
}
.footer .res-list li .bg .tex-wrap p{
	position: absolute;
    width: 100%;
    top: 50%;
	font-weight: 700;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	color:#fff;
	text-align: center;
}
.footer .res-list li .bg .span{
	position: absolute;
	bottom:0;
	right:0;
	padding:1vw 3vw;
	font-size: 3.3vw;
	font-weight: 700;
}
.footer .link-list li{
	width: 48%;
	margin-right: 3%;
	margin-bottom: 3vw;
}
.footer .link-list li:nth-child(2n){
	margin-right: 0;
}
.footer .info-list li{
	font-size: 3.3vw;
	display: inline-block;
	margin-right: 3.5%;
}
.footer .info-list li a{
	color: #fff;
}
.footer .info-list li:last-child{
	margin-right: 0;
}
.footer .copy{
	font-size: 3.0vw;
}
.footer .info-list li a::after{
	
	bottom:-0.5vw;
}
.menu-btn{
	top:2vw;
}
.nav-area {
    background: rgba(255,255,255,0.95);
    width: 100%;
    height: 100%;
    position: fixed;
    transition: all 0.7s ease;
    top: 0px;
    left: 0;
    z-index: -2;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s;
	padding:8vw 0%;
	overflow: scroll;
    transition-timing-function: ease-in-out;
}
.nav-area h2,.nav-area p.link{
	border-left: 10px solid #000;
	font-size: 4.4vw;
}
.nav-area h2 span,.nav-area p.link span{
	padding-left: 1%;
}
.nav-area .cat-list ul{
	font-size: 0;
	margin-top: 5vw;
}
.nav-area .cat-list li{
	margin-bottom: 4vw;
	display: inline-block;
	vertical-align: top;
	width: 31.3%;
	margin-right: 3%;
}
.nav-area .cat-list li:nth-child(3n){
	margin-right: 0;
}
.nav-area .cat-list li a{
	display: block;
	width: 100%;
	padding:1.5vw 3vw;
	font-size: 2.7vw;
	background: #000;
	border-radius: 20px;
}	
.nav-area .tag-list ul{
	font-size: 0;
	margin-top: 5vw;
}
.nav-area .tag-list li{
	display: inline;
	margin-right: 0%;
	font-size: 3.3vw;
}
.nav-area .tag-list li a{
	color:#000;
}
.nav-area .tag-list ul {
    font-size: 0;
    line-height: 1.8;
}
.nav-area .tag-list li::after{
	content: "　/　";
}
.nav-area .tag-list li:last-child{
	margin-right: 0;
	padding-right: 0;
}
.nav-area .tag-list li:last-child::after{
	content: "";
}
.nav-area .pro-list ul{
	font-size: 0;
	margin-top: 5vw;
}
.nav-area .pro-list li{
	display: block;
	margin-right: 0%;
	margin-bottom: 1%;
}
.nav-area .pro-list li a{
	font-size: 3.3vw;
	color:#000;
}

.nav-area .menu-area {
    margin-bottom: 8vw;
}	
/*カテゴリー*/
.cat-wrap h2{
	font-size: 7.2vw;
	border-bottom: 3px solid #000;
	padding-bottom: 10px;
	margin-bottom: 4vw;
}
.cat-wrap .cat-list ul{
	font-size: 0;
}
.cat-wrap .cat-list li{
	margin-bottom: 2vw;
	display: inline-block;
	vertical-align: top;
	width: 31.3%;
	margin-right: 3%;
}
.cat-wrap .cat-list li:nth-child(3n){
	margin-right: 0;
}
.cat-wrap .cat-list li a{
	display: block;
	width: 100%;
	padding:1vw 3vw;
	font-size: 2.7vw;
	background: #000;
	border-radius: 20px;
}
.cat-wrap .tag-list ul {
    font-size: 0;
    line-height: 1.5;
}
.cat-wrap .tag-list li{
	display: inline;
	margin-right: 0%;
}
.cat-wrap .tag-list li a{
	font-size: 3.3vw;
	color:#000;
}

.cat-wrap .tag-list li::after{
	content: "　/　";
}
.cat-wrap .tag-list li:last-child{
	margin-right: 0;
	padding-right: 0;
}
.cat-wrap .tag-list li:last-child::after{
	content: "";
}
.cat-search .input{
	width: 70%;
	margin-right: 2%;
}
.cat-search .button{
	width: 28%;
	cursor: pointer;
}
.cat-search .input input{
	border-radius: 10px;
	border: 1px solid #707070;
	padding:2vw 2vw 2vw 7vw;
	width: 100%;
	display: block;
	font-size: 3.3vw;
}
.cat-search .button button{
	border:none;
	border-radius: 10px;
	padding:3vw 0;
	text-align: center;
	color:#fff;
	font-size: 3.3vw;
	cursor: pointer;
}
.cat-search .input .icon {
    width: 7%;
    position: absolute;
    top: 40%;
    left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
/*RESULT*/	
.res-box .head-box,.res-box .head-box2{
	padding:4% 4%;
}
.res-box .head-box .left,.res-box .head-box2 .left{
	width: 100%;
	margin-right: 0;
	border-right:none;
	border-bottom:1px solid #000;
	padding-bottom: 2vw;
	margin-bottom: 2vw;
	padding-right: 0%;
}
.res-box .head-box .right{
	width: 100%;
	line-height: 1.3;
}
.res-box .head-box .left h2{
	font-size: 7.2vw;
}
.res-box .head-box .left h2 span{
	font-size: 4.4vw;
	margin-right: 1%;
}
.res-box .head-box3 .left h2{
	font-size: 7.2vw;
}
.res-box .head-box3 .left h2 span{
	font-size: 4.4vw;
	margin-right: 1%;
}
.res-box .head-box2 .left h2{
    font-size: 4.4vw;
}
.res-box .head-box .right p{
	font-size: 4.4vw;
	font-weight: 500;
}
.res-box .head-box2 .right p{
	font-size: 7.2vw;
}
.res-box .head-box .right p span.sm{
	margin-right: 3%;
	font-size: 3.3vw;
}
.res-list ul.inline-list > li{
	width: 100%;
	display: block;
	margin-right: 0%;
	margin-bottom: 9vw;
	padding-bottom: 6vw;
	border-bottom: 1px solid #BABABA;
}
.res-list ul.inline-list > li .res-box{
	margin-bottom: 6vw;
	padding-bottom: 0;
	border-bottom: 0;
	display: flex
}
.res-list ul.inline-list > li .res-img{
	margin-bottom: 0vw;
	width: 39%;
	margin-right: 3%;
	/*height: 100%;*/
}
.res-list ul.inline-list > li .res-tex{
	width: 58%;
}
.res-list ul.inline-list > li .res-tex .cat-box{
    display: block;
}
.res-list ul.inline-list > li .res-tex .cat{
	background: url("/researchinfo/images/common/cat_bg.png") no-repeat left top;
	background-size:cover;
	padding:0.5em 1em;
	color:#fff;
	line-height: 1;
	/* width: 50%; */
	text-align: left;
	margin-right: 0%;
	margin-bottom: 0.5em;
	font-size: 3.0vw;
	line-height: 1.2em;
	display: inline-block;
	

	
}
.res-list ul.inline-list > li .res-tex .day{
	width: 100%;
	margin-bottom: 1vw;
	font-size: 3.3vw;
}
.res-list ul.inline-list > li .res-tex .text{
	line-height: 1.36;
	font-size: 3.3vw;
	color:#fff;
	font-weight: 500;
}
.res-list ul.inline-list > li .tab li{
	/*display: inline-block;*/
	margin-right: 2%;
	margin-bottom: 3vw;
}
.res-list ul.inline-list > li .tab li a{
	/* padding: 2vw 4vw; */
	/* font-size: 3.3vw; */
	line-height: 1.2;
	display: block;
	width: 100%;
	border-radius: 5px;
}
.res-box .btn-area .link{
	width: 62%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}
.res-box .btn-area .link a{
	width: 100%;
	padding:3vw 10% 3vw 8%;
	border-radius: 8px;
	font-size: 4.4vw;
	line-height: 1;
	text-align: center;
}
.res-box .btn-area a .yajirushi{
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	width: 8%;
	right:6%;
	top:50%;
	position: absolute;
}
.link-area{
	margin-top: -12vw;
	padding-top: 12vw;
}
.pan{
	font-size: 3.3vw;
}
.pager{
    margin-top: 2%;
    font-size: 2.7vw;
	padding-bottom: 5vw;
}
	.res-list ul.inline-list > li .res-img img{
		height: 100%;
    object-fit: cover;
        width: 100%;
	}
}

/*20210827*/
.nen_list{margin-bottom: 1em;}

.nen_list li{
    display: inline-block;
    margin-right:1em;}
    
.nen_list li a{color:#111;
    padding: 0.5em 2em;
    margin-bottom: 2em;
    display: inline-block;
    background: #ccc;}
    
.nen_list li a:hover{
    padding: 0.5em 2em;
    margin-bottom: 2em;
    display: inline-block;
    background: #fff;}
    
    
.kiji-box a[target="_blank"]:after
{
content: url('/researchinfo/css/img/ico_window.gif');
	position: relative;
	top: 2px;
	left: 3px;
	padding-right: 5px;
}

.kiji-box a[href$=".docx"]:afte{
	content: url('/researchinfo/css/img/ico_word.gif')!important;
	position: relative;
	top: 4px;
	left: 3px;
	padding-right: 5px;
     }
.kiji-box a[href$=".doc"]:after,
.senyou a[href$=".doc"]:after {
	content: url('/researchinfo/css/img/ico_word.gif')!important;
	position: relative;
	top: 2px;
	left: 3px;
	padding-right: 5px;
     }
.kiji-box a[href$=".xlsm"]:after{
	content: url('/researchinfo/css/img/ico_xls.gif')!important;
	position: relative;
	top: 2px;
	left: 3px;
	padding-right: 5px;
     }
     
.kiji-box a[href$=".pdf"]:after{
	content: url('/researchinfo/css/img/ico_pdf.gif')!important;
	position: relative;
	top: 2px;
	left: 3px;
	padding-right: 5px;
     }



.kiji-box .box01{
    padding: 14px;
    border: 1px #DADADA solid;
    background-color:#F9F9F9;
   
}


.kiji-box .box02{
    padding: 10px;
    border: 3px #D5325A solid;
    text-indent: 0px;
}

.kiji-box .box03{
    padding: 10px;
    border: 1px #111 solid;
    text-indent: 0px;
}


.kiji-box .box02 *,.kiji-box  .box01 *,.kiji-box  .box03 *{
   text-indent: 0px;
}


.kiji-box .urlbox{
    border: 1px #E3E3E3 solid;
    border-width:1px;
    text-indent: 0px;
    width: auto;
    overflow: hidden;
    padding: 5px 10px 5px 81px;
    background-image: url(/../../admissions/common/img/urlbg.gif);
	background-repeat: repeat-y;
	background-position: 0px 0px;
}


.caption{text-align: center;    padding: 2em 2em 2em 2em;    color: #555;}
