@charset "utf-8";
/*
Theme Name: jabpe
Theme URI: 
Author: Science Graphics
Author URI: https://wordpress.org/
Description: This template is designed by Science Graphics
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Science Graphics

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* CSS Document */

/**

1. common
2. override bootstrap slick
3. header
4. navi
5. toppage section
6. footer

7. breadcrumb
8. sidebar
9. main_content

20. PC
30. SP

35. admin


40. print

main colors: 

#2c75db    theme color
#e6f7ff    theme light color


**/

/***************************************************************
 1. common
 **************************************************************/


body{
	font-family:"Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;		
	line-height:150%;
	font-size: 16px;
}

a:hover img{
	opacity:0.8;	
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}

.wrapper{
	width:1200px;
	margin:0px auto; 
}

.left,
.left_column{
	float:left;	
}

.right,
.right_column{
	float:right;	
}

.current{
	background-color:#dedede;	
}

h3{
	background-color:#dedede;
	font-size:18px;
	padding:15px 8px;
	margin:30px 0px 20px 0px;	
}

h4{
	border-left:3px solid #dedede;
	padding:10px 20px;
	margin:20px 0px;
	font-size:16px;
}

h5{
	font-size:16px;
	padding:20px 10px;
	border-bottom: 1px solid #dedede;
}

ul{
	padding-left:0px;
}

ol{
	padding-left:15px;
}

ul li{
	list-style:none;
	
}

p{
	padding:4px;	
}

.full{
	width:100%;
}

a:focus{
	color:#aaa;	
}

a.more{
	float:right;
}

.pagetop{
	padding:5px 10px;
	float:right;
    border: 1px solid #3d5595;
        border-radius: 5px;
        color: #3d5595;
}

.pagetop:before{
 	content: '\f0d8';
}

table td, table th{
	font-size:16px;
}

table.noborder,
table.noborder td,
table.noborder th{
	border:none;
}

.alignleft {
display: block;
float:left;
}

.aligncenter {
display: block;
margin: 0 auto;
}

.alignright {
display: block;
float:right;
}

span.date{
	font-size: 12px;	
}

h2 .btn, h3 .btn, h4 .btn, h5 .btn
{
	float:right;
}

table th, table td{
	font-size:16px;
}

/***************************************************************
 2. override bootstrap / fontawesome / slick
 **************************************************************/
 
/* bootstrap */

.btn-info{
	background-color:#2c75db;
	border-radius:0px;
	border:none;
}

.label{
	padding:1px 15px;
    border-radius: 20px;
    display: inline-block;
    min-width: 80%;
    border: 1px solid #65d5be;
    color: #65d5be;
    text-align: center;
}

.label.news{
	
}

.label.book, .label-book{
    border: 1px solid #327cc7;
    color: #327cc7;
}

.label.events{
	background-color:#22731E;
}

.label.topics{
	background-color:#274BBF;
}

.label.research{
	background-color:#A8590B;
}

.row h1, .row h2, .row h3, .row h4, .row h5, .row h6{
	display: block;
	width: 100%;
}


/* font awesome */

*:before, *:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

#wpadminbar *:before{
	font-family: dashicons !important;
}

*:before{
	padding-right:5px;
}

*:after{
	padding-left:5px;
}

.date{
	color: #3d5595;
}

.date:before{
	
}

.location:before{
	content: "\f3c5";
}


/*polylang*/
body.lang-ja .lang-item-ja,
body.lang-ja .lang-en{
    display:none;
}

body.lang-en .lang-item-en,
body.lang-en .lang-ja{
    display:none;
}


/* slick */


.slick-prev{
    left:-35px;
    width:30px;
}

.slick-next{
    right:-35px;
    width:30px;
}

.slick-prev:before, .slick-next:before{
    font-size: 30px;
}


.slick div.slick-item{
    position:relative;
}

.slick div.slick-item p.caption{
    position: absolute;
    bottom:0px;
    left:0px;
    background-color:rgba(0,0,0,0.90);
    z-index: 100;
    width: 100%;
    margin:0px;
    color:#fff;
}


/***************************************************************
 2.5. animation
 **************************************************************/


.fade-in{
    opacity: 0;
}

.fade-in.is-animated{ 
　opacity:0;
  animation-name:fadeIn;
  animation-duration:1s; 
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fade-in.rise-up.is-animated{
  animation-name:fadeRiseUp;
}

.fade-in.rise-left.is-animated{ 
  animation-name:fadeRiseLeft;
}

.fade-in.fade-simple{
  animation-name:fadeIn;
}

.fade-in.zoom-in{
  animation-name:fadeZoomIn;
}

.fade-in.zoom-out{
  animation-name:fadeZoomOut;
}


@keyframes fadeIn {
  0% {
   opacity: 0;
  }
  100% {
    opacity:1;
  }
}

@keyframes fadeZoomIn {
  0% {
   opacity: 0;
   transform:scale(0.9);
  }
  100% {
    opacity:1;
    transform:scale(1.0);
  }
}

@keyframes fadeZoomOut {
  0% {
   opacity: 0;
   transform:scale(1.1);
  }
  100% {
    opacity:1;
    transform:scale(1.0);
  }
}

@keyframes fadeRiseUp {
0% {
 opacity: 0;
 transform: translateY(30px);
}

100% {
 opacity:1;
 transform: translateY(0px);
 } 
}

@keyframes fadeRiseLeft {
0% {
 opacity: 0;
 transform: translateX(-60px);
}

100% {
 opacity:1;
 transform: translateX(0px);
 } 
}


/***************************************************************
 3. header
 **************************************************************/

header{
    position: sticky;
    top:0;
    padding-bottom: 20px;
    background: rgba(255,255,255,0.9);
    z-index: 999;
}

#sub header{
}

header div#logo_area{
	padding:5px 0px;
}

header h1{
	display:none;	
}

header div#search_area{
	padding:5px 10px;
	text-align:right;
}

header div#search_area ul li{
	float:right;
	padding:5px;
}
header div#search_area ul li img{
	height: 50px;
}

header div#search_area ul li.lang-item a{
	color: #fff;
    font-size: 20px;
    padding: 13px 15px;
    background: #00a0e9;
    display: inline-block;
    margin-top:0;
}

#home header{
}

#sub header{
}

.sub_head{
    background: url("images/subhead.jpg");
background-position: center;
background-size: cover;
    height: 100px;
}

.sub_head2{
    background: url("images/subhead.jpg");
background-position: center;
background-size: cover;
    padding: 70px 0;
}

.sub_head2 h1{
    text-align: center;
}

/*qtranslate x*/
header.lang-en li.lang-en{
	display:none;
}

header.lang-ja li.lang-ja{
	display:none;
}


/***************************************************************
4 nav
***************************************************************/


nav{
	margin:0px;
	padding:0px;
}

nav ul{
	margin:0px;
	padding:0px;
}

nav ul li{
	padding:0px;
	margin:0px;
}

nav > ul > li,
nav > div > ul > li{
	float:left;
    padding: 0 2px;
}

nav > ul > li:after{
    content: "/";
    color: #a7a7a7;
}

nav ul li a{
	margin:0px 0px;
	display:inline-block;
	min-width:70px;
	padding:3px 25px;
	color:#000;
	font-size:16px;
	text-align:center;
	vertical-align:middle;
    line-height: 110%;
    position: relative;
}

nav > ul > li > a:after{
    content: "\f107";
    position: absolute;
    left:0;
    right: 0;
    bottom: -15px;
}

nav > ul > li > a{
}

nav ul ul{
	display:none;
	position:absolute;
	z-index:100;
	background-color:#333;
	color:#fff;	
    min-width: 200px;
}

nav ul ul li a{
    padding: 15px 15px;
	text-align: left;
    background-color:#333;
    color:#fff;
    display: block;
}


nav > ul li.menu-item-has-children > a:after{
    content:"\f107";
    float:right;
}

nav > ul > li > ul > li.menu-item-has-children > a:after{
    content:"\f105";
    float:right;
}

nav ul li:last-child:after{
	content: none;
}

nav > ul > li > a:hover,
nav > ul > li.current-menu-item > a,
nav ul li.current-menu-ancestor a{
	background-color:#cdedf8;
	color:#000;
	text-decoration:none;
    border-radius: 25px;
    
}

nav ul ul li a:hover,
nav ul ul li.current-menu-item a{
	color:#cdedf8;
    text-decoration:none;
    border-radius: 0px;
}

nav ul li.current-menu-ancestor ul li a{
	color:#fff;
    text-decoration:none;
    border-radius: 0px;
    background-color:#333;
}

nav ul li.current-menu-ancestor ul li a:hover{
    color:#cdedf8;
}

nav ul ul ul{
    position:absolute;
    left:100%;
    top:0px;
    min-width:100%;
}


/***************************************************************
5 toppage section
***************************************************************/


section#eyecatch{
    /*background-image:url("images/eyecatch.jpg");*/
    background: #cdedf8;
    background-size: cover;        /* 画像を全体にフィットさせる */
    background-repeat: no-repeat;  /* 繰り返さない */
    background-position: center;   /* 中央に配置 */
    /*margin-top: -142px;*/
    
}

section#eyecatch > .wrapper{
    height: 500px;
    position: relative;
}

section#eyecatch > .wrapper > .wrapper{
    position: absolute;
    bottom:0;
}

section#eyecatch p{
	padding:0px;
	margin-bottom:0px;
}

section#eyecatch p{
	padding:0px;
	margin-bottom:0px;
}

section#eyecatch .text{
    position: absolute;
  top: 60%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
}

section#eyecatch p.title{
    font-size: 25px;
    margin-bottom: 15px;
}
section#eyecatch p.title span{
    font-size: 35px;
}
section#eyecatch p.eng{
    font-size: 28px;
    color: #3d5595;
}

section#eyecatch .bnr{ 
    position: fixed;
    top: 173px;
    right: 0;
    background-color: rgba(61, 85, 149, 0.9);
    padding: 20px;
    border-radius: 20px 0 0 20px;
    z-index: 1;
}

section#eyecatch .btn1 {
    display: block;
    position: relative;
}

section#eyecatch .bnr a{ 
    color: #fff;
    padding: 4px 0px 4px 4px;
}

section#eyecatch .bnr a:hover{ 
    color: #fff;
}

/*section#eyecatch .bnr a{ 
    text-align: center;
    color: #fff;
    border-radius: 5px;
    border: 2px solid #3d5595;
    display: block;
    position: relative;
    width: 230px;
    height: 65px;
    margin-bottom: 10px;
    overflow: hidden;
}

section#eyecatch .bnr span{ 
        position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      -webkit- transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
}

section#eyecatch .bnr a img{ 
    object-fit: cover;
    width: 100%;
}*/

/*section#eyecatch .btn1 {
    padding: 15px 45px 15px 30px;
    text-align: center;
    color: #212529;
    border-radius: 5px;
    border: 2px solid #3d5595;
    display: block;
    position: relative;
    background: #fff;
    margin-bottom: 5px;
}

section#eyecatch .btn1:after{ 
    content: "\f105";
    color: #fff;
    background: #3d5595;
    padding: 3px 15px;
    position: absolute;
    right: -1px;
    bottom: -1px;
    border-radius: 5px 0 5px 0;
}*/

section#about{
	padding:30px 0;
}

section#about h2{
	color: #3d5595;
    font-weight: bold;
    font-size: 26px;
    line-height: 180%;
}

section#about p{
	margin: 0;
}

section#about .btn-info{
	color: #000;
    background: transparent;
    margin-top: -20px;
}

section#about .btn-info:after{
	content: "\f105";
    color: #316ea4;
    display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccdbef;
  text-align:center;
  line-height: 40px;
    margin-left: 10px;
    padding-right: 3px;
}
section#about .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#about .picture{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

section#about .p1{
    width: 20%
}
section#about .p2{
    width: 25%;
    margin-top: 25px;
}
section#about .p3{
    width: 25%
}
section#about .p4{
    width: 20%;
    margin-top: 25px;
}

section#news{  
}

div#news_area{
    padding:30px 0px 50px;
	/*border-top: 2px solid #3d5595;*/
}

section#news h2{
	border-left: 0;
	color:#3d5595;
	font-size:26px;
	font-weight: bold;
}

section#news ul{
	margin: 20px 15px;
}

section#news ul li{
	padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

section#news ul li a{
	color: #3d5595;
}

section#news .btn-info{
	padding: 5px 10px;
    border-radius: 25px;
    background: #3d5595;
    color: #fff;
    display: inline-block;
    width: 35%;
}

section#kensaku{ 
    padding: 60px 0 30px;
    background: url("images/bg_ai.jpg");
background-position: center;
background-size: cover;
    display: none;
}

section#kensaku .title{ 
    color: #fff;
    border-radius: 5px;
    padding: 20px 70px;
    font-size: 28px;
    background: #3d5595;
    margin-top: 70px;
    display: inline-block;
}

section#kensaku .search{
    background: linear-gradient(180deg, #cbe0fe, #c1ebff);
    border-radius: 40px;
    padding: 7px;
    display: inline-block;
}

section#kensaku .search_btn{
    background: #fff;
    border-radius: 35px;
    padding: 25px 170px;
    color: #000;
    position: relative;
}

section#kensaku .search_btn:hover{
    opacity: 0.8;
}

section#kensaku .search_btn:after{
	content: "\f105";
    color: #316ea4;
    display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ccdbef;
  text-align:center;
  line-height: 35px;
    padding-right: 3px;
    position: absolute;
    right:20px;
    top: 20px;
}

section#interview{ 
    padding: 30px 0;
}

section#interview h2{ 
    text-align: center;
    color: #3d5595;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

section#interview .col-md-4 p{ 
    margin: 0;
}

section#interview .pic{
    position: relative;
}

section#interview img.new{
    position: absolute;
    left:-30px;
    top: 40px;
    width: 100px;
}

section#interview .box{
    border-top-right-radius: 5px;
    width: 75%;
    padding: 10px 10px 0;
    margin-top: -60px;
    z-index: 99;
     background: #fff;
    position: relative;
}

section#interview .box:after{
    content: "\f105";
    color: #316ea4;
    display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ccdbef;
  text-align:center;
  line-height: 35px;
    padding-right: 3px;
    position: absolute;
    right:-80px;
    top: 10px;
}

section#interview span.name{ 
    color: #000;
    font-weight: bold;
    font-size: 17px;
}

section#interview span.day{ 
    color: #3d5595;
    border: 1px solid #3d5595;
    padding: 1px 10px;
    border-radius: 15px;
    display: inline-block;
}

section#interview p.title{ 
    color: #3d5595;
    font-weight: bold;
    padding-left: 10px;
}

section#interview .btn-info{ 
    background: #3d5595;
    color: #fff;
    padding: 2px 50px;
    border-radius: 20px;
}
section#interview .btn-info:hover{ 
    text-decoration: none;
    opacity: 0.8;
}

section#interview .panf{ 
    text-align: center;
    background: linear-gradient(180deg, #fff 50%, #ccdbef 50%, #ccdbef 100%);
    padding-bottom: 70px;
}
section#interview .panf img{ 
    width: 55%;
}

section#interview .btn-info2{ 
    color: #000;
    border-bottom: 1px solid #000;
    position: relative;
    margin-top: 15px;
    display: inline-block;
}

section#interview .btn-info2:after{ 
    content: "\f105";
    color: #316ea4;
    display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  text-align:center;
  line-height: 35px;
    padding-right: 3px;
    position: absolute;
    right: -40px;
    top: -5px;
}

section#interview .btn-info2:hover{ 
    text-decoration: none;
    opacity: 0.8;
}


section#bnr{ 
    padding: 30px 0;
}

section#bnr .btn1{ 
    padding: 30px 0;
    text-align: center;
    color: #000;
    border-radius: 5px;
    border: 2px solid #3d5595;
    display: block;
    font-weight: bold;
    position: relative;
}
section#bnr .btn1:after{ 
    content: "\f105";
    color: #fff;
    background: #3d5595;
    padding: 3px 15px;
    position: absolute;
    right: -1px;
    bottom: -1px;
    border-radius: 5px 0 5px 0;
}

section#bnr .left_side{ 
    margin: 30px 0 20px;
    padding-right: 80px;
}

section#bnr .right_side{
    margin: 30px 0 20px;
    padding-left: 80px;
}
/* autoHeight.jquery */

div.item{
	margin-bottom:10px;
	height:auto;
}

div.item div{
	border:1px solid #ccc;
	padding:2px 4px;
}


/***************************************************************
6 footer
***************************************************************/

footer{
	background-color:#316ea4;
	color:#fff;
	padding:20px 0 50px;
}

footer p{
	margin: 0;
}

footer p.name{
	font-size: 24px;
    margin-bottom: 1rem;
}

footer p.name span{
	font-size: 18px;
}

footer ul{
	margin: 0;
}

footer ul li{
	/*float: left;*/
    padding: 0 10px;
}

footer ul li:before{
	content: "\f105";
}

footer ul li a{
	color:#fff;
}

footer img{
	width: 200px;
}

footer p.copy{
	text-align: center;
}

/***************************************************************
7 breadcrumb
***************************************************************/

#breadcrumb{
padding:15px 0px;
}
#breadcrumb ul li{
	float:left;
	margin:0px 10px;
}

#breadcrumb ul li a{
	color:#000;
}

/***************************************************************
8 sidebar
***************************************************************/

div#sidebar{
	border:0;
	padding:0px;
	margin-bottom:20px;
    position: sticky;
    top:150px;
}

div#sidebar h2{
	background-color:#316ea4;
	color:#fff;
	font-size:18px;
	margin:0px;
	padding:15px 10px;	
}

div#sidebar h2 i{
	display:none;
	float:right;
	width:50px;
}

div#sidebar ul{
	margin-bottom:0px;
}

div#sidebar ul li{
	background-color:#fff;	
}

div#sidebar ul li a{
	display:block;
	min-height:40px;	
	padding:10px;
	border-bottom:1px dashed #316ea4;
	color:#666;
    position: relative;
}

div#sidebar ul li a:hover{
	background-color:#efefef;
	text-decoration:none;	
}

div#sidebar ul li a:after{
 	content: '\f105';
    color: #316ea4;
    position: absolute;
    right: 5px;
}


div#sidebar ul li ul li{

}

div#sidebar ul li ul li a{
	background-color:#efefef;	
	min-height:40px;
	padding:10px 10px 10px 20px;
	border-bottom:1px solid #ccc;
	color:#666;	
}

div#sidebar ul li ul li a:hover{
	background-color:#FFF6E8;
	text-decoration:none;		
}


/***************************************************************
9 main_content
***************************************************************/


img#sub_eyecatch{
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    margin:auto;
    max-width: 1400px;
    z-index: -1;
}

div#main_content{
	padding:0px;
	min-height: 500px;
    margin-bottom: 30px;
    line-height: 180%;
}


div#main_content h1 {
    background: linear-gradient(to bottom, #fff, #f8f8f8);
    border: 1px solid #eceae3;
    border-radius: 3px;
    padding: 10px 10px 10px 25px;
    margin-top: 0px;
    font-size: 24px;
    color: #000;
    position: relative;
    margin-bottom: 15px;
}

div#main_content h1:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 38px;
    background-color: #3d5595;
    position: absolute;
    top: 6px;
    left: 10px;
}

div#main_content div#content_area{
	padding:10px 0px;	
	min-height:500px;
}


div#main_content h2 {
    position: relative;
    padding: 12px 15px;
    background: #3d5595;
    font-size: 22px;
    color: #fff;
    margin: 20px 0 10px;
}

div#main_content h2:before {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    content: '';
    border: 2px dotted #fff;
}

div#main_content h2:nth-child(n+2) {
    margin-top: 50px;
}

div#main_content h3 {
    background-color: #fff;
    font-size: 20px;
    padding: 10px 5px;
    margin: 20px 0px 10px;
    border-bottom: 3px solid #3d5595;
    font-weight: bold;
}

div#main_content h3:nth-child(n+2) {
    margin-top: 30px;
}

div#main_content h4{
	border-left:6px solid #3d5595;
	padding:5px 10px;
	margin:20px 0px 10px;
	font-size:18px;
    font-weight: bold;
    color: #3d5595;
}


div#main_content h5{
	font-size:16px;
	padding:20px 10px 10px 10px;
	border-bottom: 1px solid #ccc;
}


div#main_content div.clearfix{
	margin-bottom:30px;	
}

div#main_content table{
    width: 100%;
	margin-bottom:15px;
}

div#main_content table tr td{
	border:1px solid #ccc;
	padding:10px 15px;
}

div#main_content table tr th{
	background-color:#3d5595;
	color:#fff;
	padding:10px 15px;	
	border:1px solid #ccc;
}

div#main_content table tr:nth-child(2n)
{
	clear:both;
}

div#main_content table.about tr td{
	border:0;
    border-bottom:1px dashed #ccc;
}

div#main_content table.member tr td{
	width: 25%;
}

div#main_content table.member tr td a{
	color: #000;
}

div#main_content table.member tr:nth-child(2n){
	background: #f5fcff;
}

div#main_content table.cycle{
	text-align: center;
    width: 700px;
}

div#main_content table.cycle tr td{
	padding: 5px 10px;
}

div#main_content table.result{
	text-align: center;
}

div#main_content ul{
    padding-left:12px;
    margin-left: 12px;
}

div#main_content ul li:before{
 	content: '\f0da';
    margin-left: -12px;
}

div#main_content ul.books{
    padding-left:0;
    margin-left: 10px;
}
div#main_content ul.books li:before{
 	content: none;
}

div#main_content ul.books li{
    padding: 5px 0;
}




div#main_content .center{
    text-align: center;
}

div#main_content .center p{
    font-size: 24px;
    margin-bottom: 0;
}

div#main_content .center p.ai{
    color: #316ea4;
    font-size: 20px;
}

div#main_content .center img{
    width: 50%;
}




/******　検索ページ　**********/



div#main_content div.search_box{
    background: #f5f5f5;
    border-radius: 5px;
    width: 100%;
    padding: 30px 20px;
}



div#main_content div.search_box h3{
    text-align: left;
    font-size: 18px;
    background: #f5f5f5 !important;
    border-bottom: 0 !important;
	pdding: 8px 12px;
}

div#main_content div.search_box a.btn.btn-default{
	background-color:#ccc;
	border-radius: 0px;
	margin-top: 45px;
}

div#main_content div.search_box a.btn.btn-default.closed i.fa-circle-minus{
	display:none;
}

div#main_content div.search_box a.btn.btn-default.opened i.fa-circle-plus{
	display:none;
}

div#main_content div.search_box h3.keyword-search{
	margin-top: 0px;
	padding-top: 0px;
}

div#main_content div.search_box div.col-md-3 h3{
	display:inline-block;
}


div#main_content div.search_box textarea.ai_search{
    border-radius: 10px;
    width: 100%;
    background: #fff;
    border: 1px solid #b0b6bc;
    padding: 15px;
    height: 120px;
}

div#main_content div.search_box label.university_type{
	padding:5px 15px;
}

div#main_content div.search_box #keyword{
    width: 100%;
    background: #fff;
    border: 1px solid #b0b6bc;
    padding: 5px 10px;
}

div#main_content div.search_box div#search_option_area_left,
div#main_content div.search_box div#search_option_area_right{
	padding-top: 15px;
}
div#main_content div.search_box div#search_option_area_left h3,
div#main_content div.search_box div#search_option_area_right h3{
	margin-top: 0px;
	padding-top: 0px;
}

div#main_content div.helpbox{
	margin-bottom: 30px;
}

div#main_content div.helpbox h3{
	border-bottom: none;
}

div#main_content div.helpbox table th{
	background-color:#999;	
}

div#main_content div.helpbox table th,
div#main_content div.helpbox table td{
	padding:3px  15px;
	line-height: 130%;
}

div#main_content div.search_box p.keyword{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

div#main_content div.search_box p.keyword:before{
    content: "\f002";
}

div#main_content div.search_box .checkbox{
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
}

div#main_content div.search_box select.univ{
    width: 100%;
}

div#main_content div.search_box select.univ option{
    padding: 5px;
  border-bottom: 1px solid #949ba1
}

div#main_content div.search_box label.radio{
    margin-left: 20px;
    font-size: 18px;
}

div#main_content div.search_box input[type=radio] {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

div#main_content div.search_box select.year{
    margin: 5px 10px;
    padding: 5px 10px;
}

div#main_content div.search_box select.year option{
    padding: 5px 10px;
}

div#main_content div.search_box .kensaku_btn{
    background: #316ea4;
    color: #fff;
    font-size: 20px;
    padding: 5px 10px;
    display: inline-block;
    width: 30%;
    text-align: center;
}

div#main_content div.search_box .center_btn{
    margin: 10px 0 20px;
    text-align: center;
}

div#main_content h4#toggler{
	border:1px solid #3d5595;
	display:inline-block;
	float:right;
}
div#main_content h4#toggler:hover{
	cursor:pointer;
}


div#main_content table.evaluation{
	
}

div#main_content table.evaluation tr td,div#main_content table.evaluation tr th{
	padding:10px 2px;
	line-height: 130%;
	font-size: 14px;
	min-width: 65px;
	text-align:  center;
}

div#main_content table.evaluation p{
	margin-bottom: 0px;
}

div#main_content table.evaluation a.btn.btn-default{
	padding: 1px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #65d5be;
    color: #65d5be;
    text-align: center;
	margin-bottom:3px;
	background-color:#fff;
	margin-top: 0px;
}

div#main_content table.evaluation div.item{
	margin-bottom:0px;
}

div#main_content table.evaluation div.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 9999;
  padding-right: 20px;
  color:#000;
}
div#main_content table.evaluation div.lightbox-content {
  background: #fff;
  padding: 20px 40px 80px !important;
  max-width: 800px;
  max-height: 600px;
  margin: 100px auto;
  border-radius: 20px;
  line-height: 160%;
}

div#main_content table.evaluation div.lightbox-content div.lightbox-content-inner{
  overflow-y: scroll;
  border:none;
  height:500px;
  text-align: left;
}

div#main_content table.evaluation div.lightbox-content div.lightbox-content-inner h3{
  text-align: center;
}

div#main_content table.evaluation div.lightbox-content div.lightbox-content-inner div.context{
	border:none;
	line-height: 140%;
}

div#main_content table.evaluation a.close-lightbox{
	background-color:#666;
	color:#fff;
	display: inline-block;
	padding:5px 10px;
	margin-top: 10px;
	margin-left:auto;
	margin-right: auto;
}
div#main_content table.evaluation a.close-lightbox:before{
	content:"\f00d";
}

div#main_content table.evaluation tr.parent_tr td{
	background-color:#f9f9f9;
	color:#999;
	border-bottom:none;
}

div#main_content table.evaluation tr.child_tr td{
	background-color:#f9f9f9;
	color:#999;
}

div#main_content table.evaluation tr.main_tr.parent td{
	
}
div#main_content table.evaluation tr.main_tr.child td{
	
}

div#main_content table.evaluation tr.main_tr.parent td{
	border-bottom: none;
}

div#main_content table.evaluation tr.main_tr.child td{
	border-top: none;
}


div#main_content table.evaluation tr.related td{
	background-color:#f9f9f9;
	border-top: none;
}

div#main_content table.evaluation tr.same_fy,
div#main_content.university table.evaluation tr.main_tr.child,
div#main_content.university table.evaluation tr.parent_tr{
	display:none;
}

div#main_content ul.index_list li.col-md-2{
	padding-left:5px;
}


div#main_content table.evaluation.is_main tr.same_fy,
div#main_content.university.is_main table.evaluation tr.main_tr.child,
div#main_content.university.is_main table.evaluation tr.parent_tr{
	display: table-row;
}


body.archive div#main_content ul,
body.category div#main_content ul,
body.search div#main_content ul{
	margin-top:30px;
}

body.archive div#main_content ul li:before,
body.category div#main_content ul li:before,
body.search div#main_content ul li:before{
 	content: '';
	padding-right:0px;
}



div#main_content ul li ul{
	margin-left:20px;	
}

div#main_content ol{
    margin-left: 12px;
}

div#main_content table.responsive{
	
}

div#main_content table.responsive th,
div#main_content table.responsive td{
	padding: 6px 2px;
	text-align:center;
}

div#main_content table.responsive th,
div#main_content table.toggle_next th,
div#main_content table.toggle_nextall th{
	font-weight:bold;
	border-bottom:1px solid #fff;
	border-right: 1px solid #fff;
}



div#main_content table.toggle_next tr td,
div#main_content table.toggle_next tr th,
div#main_content table.toggle_nextall tr td,
div#main_content table.toggle_nextall tr th  {
    padding: 5px 20px;
}

div#main_content table.toggle_next th,
div#main_content table.toggle_nextall th{
	text-align:center;
}

div#main_content table.toggle_next .toggle,
div#main_content table.toggle_nextall .toggle{
	cursor:pointer;
}



div#main_content div.slider-wrapper{
	width:50%;
	margin:10px auto;
}

div#main_content div.slider-wrapper div.nivo-controlNav{
	display:none;	
}

body.archive div#main_content ul li{
	padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

body.archive div#main_content ul li:before{
	padding-right:0px;
	content:"";
}

div#main_content div.navigation{
	margin-bottom:30px;
	text-align: center;
}

.handbook{
    text-align: center;
    color: #fff;
    background: #3d5595;
    border-radius: 5px;
    padding: 5px 20px;
    display: block;
    position: relative;
    margin-bottom: 15px;
}
.handbook:after{
    content: "\f138";
}
.handbook:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.past{
    background: #9daede;
}

div#main_content .col-md-4 p{ 
    margin: 0;
}

div#main_content .pic{
    position: relative;
    border-radius: 5px;
}

div#main_content .pic img.people{
    width: 100%;
    height: 323px;
    object-fit: cover;
    border-radius: 5px;
}

div#main_content img.new{
    position: absolute;
    left:-10px;
    top: 40px;
    width: 70px;
    z-index: 999;
}

div#main_content .box{
    border-top-right-radius: 5px;
    width: 75%;
    padding: 10px 10px 0;
    margin-top: -80px;
    z-index: 99;
     background: #fff;
    position: relative;
    
}

div#main_content .box:after{
    content: "\f105";
    color: #316ea4;
    display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ccdbef;
  text-align:center;
  line-height: 35px;
    padding-right: 3px;
    position: absolute;
    right:-80px;
    top: 10px;
}

div#main_content span.name{ 
    color: #000;
    font-weight: bold;
    font-size: 17px;
}

div#main_content span.day{ 
    color: #3d5595;
    border: 1px solid #3d5595;
    padding: 1px 10px;
    border-radius: 15px;
    display: inline-block;
}

div#main_content p.title{ 
    color: #3d5595;
    font-weight: bold;
    padding-left: 10px;
    margin-bottom: 20px;
}

div#main_content .interview{ 
    text-align: center;
    margin-bottom: 20px;
}

div#main_content .interview img{ 
    width: 70%;
}

div#main_content .prof{ 
    border-radius: 3px;
    background: #e9f0f7;
    padding: 10px 20px;
    margin: 30px 0 20px;
}

div#main_content .faq_a{ 
    padding-left:1.5em;
    text-indent:-1.5em;
}

div#main_content .sitemap li:before {
    content: '-';
}

div#main_content dl{
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.5em;
  /*column-gap: 1em;*/
    margin-bottom: 2rem;
}

div#main_content dl dt:first-of-type,
div#main_content dl dd:first-of-type{
  font-weight: bold;
}

div#main_content dl dd dl{
    margin-bottom: 0;
}

div#main_content dl dt{
    font-weight: normal;
}

div#main_content dl dd{
    margin-bottom: 0;
}

div#main_content dl dd p{
    display: none;
}

div#main_content dl.note{
    grid-template-columns: 3rem 1fr;
}

div#main_content dl.note dt,
div#main_content dl.note dd{
    font-size: 0.85rem;
    font-weight: normal;
}

div#main_content span.note{ 
    font-size: 0.85em;
    /*padding-left:3em;
    text-indent:-3em;*/
}


div#main_content h3.keyword-search{
    font-size: 26px;
}

div#main_content input.keyword-search{
    font-size: 18px;
}

div#main_content h3.search-result{
    border-bottom:3px solid #0056b3;
    font-size: 26px;
}

div#main_content button{
    cursor:pointer;
}

/****** chatgpt *******/

div#loading4,
div#loading5 {
	margin-top: 10px;
	font-weight: bold;
	background-color: rgba(247,224,225,0.5);
	padding:10px 20px;
	border-radius: 5px;
	margin-bottom:20px;
}

div#loading4 .dot::after,
div#loading5 .dot::after{
	content: '';
	display: inline-block;
	width: 1em;
	animation: dots 1.2s steps(3, end) infinite;
}

@keyframes dots {
	0% { content: '...'; }
	33% { content: '.'; }
	66% { content: '..'; }
	100% { content: '...'; }
}
	
div#chat{
	font-size: 16px;
	line-height: 120%;
}
div#chat li{
	margin:0px;	
	padding:0px;
}

div#chat div.chat-user{
	background-color: rgba(209,224,229,0.5);
	padding:10px 20px;
	border-radius: 5px;
	margin-bottom:20px;
}
div#chat div.chat-assistant{
	background-color: rgba(240,224,197,0.5);
	padding:10px 20px;
	border-radius: 10px;
	margin-bottom:20px;
}

div#chat .fade-in {
  opacity: 0;
  transition: opacity 1s ease-in;
}
div#chat .fade-in.show {
  opacity: 1;
}
div#chat span.label-university{
	background-color:#D2D2D2;
	color:#666;
	font-size:10px;
	display: inline-block;
	padding: 0px 2px;
	border-radius: 3px;
	margin-right:10px;
}
	








/***** fancybox *****/

.fancybox-overlay {
	background: transparent;
}

.fancybox-inner{
	width: 100% !important;
}

.fancybox-skin{
	color:inherit;
}

.fancybox-wrap, .fancybox-desktop, .fancybox-type-inline, .fancybox-opened{
    width: 70% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 1200px;
	box-sizing: border-box;
}

.fancybox_area{
	display: none;
	padding: 30px 15px;
    overflow-y: auto !important; /* 必要に応じてスクロールバー */
	overflow-x: hidden!important; 
    max-height: 72vh; /* ビューポートの80%以内に制限 */
    box-sizing: border-box;
}

.fancybox_area ul li,
.fancybox_area ol li{
    margin-bottom: 10px;
    line-height: 140%;
}


/***** contact form *****/

div#main_content table.CF7_table{
	width:80%;
	margin:0 auto;
	border: 3px solid #e5e5e5;
}

div#main_content table.CF7_table tr{
	border-top: 1px solid #e5e5e5;
}

div#main_content table.CF7_table tr th{
	color:#000
}

div#main_content table.CF7_table tr td{
}

div#main_content table.CF7_table tr:nth-child(2n)
{
	background-color:#fff;
	clear:both;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
div#main_content table.CF7_table input, div#main_content table.CF7_table textarea {
	border: 1px solid #d8d8d8;
    width:100%
}

div#main_content table.CF7_table ::placeholder {
	color:#797979;
}

/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #f79034;/*オレンジ*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/*「任意」文字*/
.CF7_unreq{
	font-size:.9em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/* タイトル列 */
@media screen and (min-width: 768px){
	div#main_content table.CF7_table th{
	width:30%;/*横幅*/
	background-color:#ebedf5;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	div#main_content table.CF7_table{
	width:95%;
	}
	div#main_content table.CF7_table tr, div#main_content table.CF7_table td, 
    div#main_content table.CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em;
	}
	div#main_content table.CF7_table th{
	background-color:#ebedf5;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#f79034;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:0 auto;
    padding:10px 50px
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}



.catch {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
    margin: 20px 0 20px;
}

.catch:before, .catch:after {
  border-top: 1px solid;
  content: "";
    width: 45%;
}

.catch:before {
  margin-right: 1em;
}
.catch:after {
  margin-left: 1em;
}

/********************************************************************
20 PC
********************************************************************/

@media (min-width: 768px) {
	.pc_none{
		display:none;	
	}
	
	.sp_none{
	}
	
	body{
		min-width:1024px;
	}
	
	div#sp_menu{
		display:none;	
	}
}


/********************************************************************
30 SP
********************************************************************/

@media (max-width: 767px) {
	
	.pc_none{
	}
	
	.sp_none{
		display:none;
	}
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
    
    header{
    padding-bottom: 0px;
}
	
	header div#search_area{
		padding:5px 5px 5px;
	}
    
    header div#search_area ul{
		float: left;
	}
    
    header div#search_area ul li{
        padding:0 5px;
	}
    
header div#search_area ul li img{
	height: 30px;
}

header div#search_area ul li.lang-item a{
    font-size: 16px;
    padding: 3px 8px;
}
	
	header div#logo_area{
		padding:10px 5px 5px;
	}
	
	header div#logo_area img{
		width:80%;
	}
    
    header div#logo_area p{
		padding:0;
        margin: 0;
	}
    
    .sub_head{
    height: 50px;
}
    
    img#sub_eyecatch{
        position:relative;
    }	
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute !important;
		
		padding-left:0px !important;
		padding-right:0px !important;
		border-top: 1px solid #2c75db;
		top:50px;
        left:0;
        
        bottom:0;
        height: 100vh !important;
        position: fixed!important;
        overflow-y: scroll;
	}
    
    nav > ul > li,
nav > div > ul > li{
	float:left;
    padding: 0 0;
}

nav > ul > li:after{
    content: none;
}

nav ul li a:after{
    content: none;
}

	
	nav ul{
		width:100%;	
		height:auto;
		
	}

	nav ul li{
		width:100%;	
        min-height: 30px;
        height:auto;
        border-top:1px solid #fff;
	}
	
	nav > ul > li, nav > div > ul > li{
		float:none; 
	}	
	
	nav ul ul{
        display: none;
        background-color:transparent;
        position: relative;
	}
    
    nav ul ul li{
        display:block;
        border-top:1px dashed #fff;

    }
    
    nav ul li a{
        display:block;
        color:#fff;
        text-align: left;
		margin:0px;
        padding:10px 15px;
        background-color:#3d5595;
    }
    
    nav ul li a:hover,
nav ul li.current-menu-item a{
    border-radius: 0px;
}
    
    nav > ul > li > a:before{
        content:"";
    }
    
    nav ul ul li a{
        padding:15px 15px 15px 40px;
    }
	
    nav > ul li.menu-item-has-children > a:after{
        float:none;
        content:none;
    }

    nav > ul > li > ul > li.menu-item-has-children > a:after{
        float:none;
    }
    
    nav > ul li.menu-item-has-children{
        position: relative;
    }
    
    nav > ul li.menu-item-has-children:after{
        content: "\f107";
        position: absolute;
        right: 10px;
        top:10px;
        color: #fff;
    }
    
    nav > ul > li > a:hover,
    nav > ul > li.current-menu-item > a,
    nav ul li.current-menu-ancestor a{
        border-radius: 0;

    }
    
    a:not([href]):not([tabindex]) {
        color: #fff;
        text-decoration: none;
    }
	
	
	
	.wrapper{
		width:100% !important;	
		min-width:100% !important;
	}
	
	section#eyecatch{
    margin-top: 0px;
    
}

section#eyecatch .wrapper{
    height: auto;
}

section#eyecatch .text{
  top: 55%;
}

section#eyecatch p.title{
    font-size: 16px;
    margin-bottom: 15px;
}
section#eyecatch p.title span{
    font-size: 18px;
}
section#eyecatch p.eng{
    font-size: 16px;
}
    
section#eyecatch .bnr{ 
    display: none;
}
    
    .slick-arrow{
        display: none!important;
    }
    
section#about h2{
    font-size: 18px;
    line-height: 140%;
}

section#about .btn-info{
    margin-top: 10px;
}
	
    div#news_area{
    padding:20px 10px 30px;
}
    
    section#news ul{
	margin: 20px 5px;
}
    
    section#kensaku{ 
    padding: 30px 10px 30px;
}

section#kensaku .title{ 
    padding: 20px 10px;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

section#kensaku .search{
    display: block;
}

section#kensaku .search_btn{
    border-radius: 35px;
    padding: 25px 10px;
    display: block;
}
	
    section#interview{ 
    padding: 30px 0;
}


section#interview img.new{
    position: absolute;
    left:-10px;
    top: 20px;
    width: 70px;
}

section#interview .box{
    width: 80%;
    padding: 5px 5px 0;
    margin-top: -60px;
}

section#interview .box:after{
    position: absolute;
    right:-50px;
    top: 10px;
}

section#interview .btn-info{ 
    margin-bottom: 20px;
}

section#interview .panf{ 
    padding-bottom: 30px;
}

    section#bnr{ 
    padding: 20px 0;
}

section#bnr .btn1{ 
    margin-bottom: 10px;
}


section#bnr .left_side{ 
    margin: 10px 0 10px;
    padding-right: 15px;
}

section#bnr .right_side{
    margin: 10px 0 10px;
    padding-left: 15px;
}
    
	div#main_content{
		border:none;
		padding:0px;
	}
	
	div#content_area{
		padding:0px !important;
	}
    
    .fancybox-wrap, .fancybox-desktop, .fancybox-type-inline, .fancybox-opened{
		width: 80% !important;
		height: 60% !important;
	}
	
	.fancybox-skin, .fancybox-outer, .fancybox-inner{
		height: 100%!important;
	}
	
	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;	
	}

	div#sp_menu{
		position:fixed;
		right:15px;
		top:15px;
		display:block;
        z-index: 999;
	}


	div#sidebar h2:before{
		content:"\f0ca";
	}
	
	div#sidebar h2:after{
		content:"\f055";
        float:right;
	}
		
	
	div#sidebar ul{
		display:none;	
	}
	
	div#sidebar h2{
		cursor:pointer;	
	}
	
	div#sidebar h2 i{
		display:inherit;
	}
	
	table td, table th{
		padding:10px 5px !important;
		line-height: 140% !important;
	}
		
	table.sp tr,
	table.sp th,
	table.sp td{
		display:block;
	}
	
	/* stylesheet for large width table */
	table.widetable{
		border:none !important;
	}
	table.widetable tr{
		border:1px solid #ccc;
		margin-bottom:20px;
	}
	table.widetable td{
		border:none !important;
	}
	
	table.widetable th{
		display:none;
	}
	
	table.widetable tr, table.widetable td{
		display: list-item;
		background-color:transparent !important;
		list-style: none;
	}
	/* stylesheet for large width table */
    
    div#main_content table.cycle{
        width: 100%;
    }

	
    div#main_content div#pagetop{
        position:fixed;
        background-color:#fff;
        right:20px;
    }
	
	

	
	div#main_content table.evaluation, 
	div#main_content table.evaluation thead, 
	div#main_content table.evaluation tbody, 
	div#main_content table.evaluation th, 
	div#main_content table.evaluation td, 
	div#main_content table.evaluation tr {
		display: block; 
		text-align: left !important;
	}
	
	
	
	div#main_content table.evaluation{
		border-top: 1px solid gray;
	}
	
	div#main_content table.evaluation th{
		display: none;
	}	
	
  	div#main_content table.evaluation thead tr { 
		display: none; 
	}
	
  	div#main_content table.evaluation tr td{ 
		border-bottom:1px dashed #ccc !important;
		border-top: none;
		padding:4px 10px !important;
	}
	
  	div#main_content table.evaluation tr td:last-child{ 
		border-bottom:1px solid gray !important;
	}

	
	
  	div#main_content table.evaluation td::before {
    	content: attr(data-label);
    	font-weight: bold;
    	display: inline-block;
    	width: 12em;
  	}
	
	div#main_content table.evaluation tr td a.btn{
		float:right;
		font-size: 14px;
		margin-top: 5px;
		margin-bottom: 0px;
	}
	div#main_content table.evaluation tr td br{
		clear:both;
	}
	
    footer{
        padding-bottom:80px;
    }
	
    footer img{
	width: 150px;
}
	
}


/********************************************************************
35 admin
********************************************************************/



a.editbutton{
	margin-top:-26px;
	margin-right:-26px;
	display:block;
	width:26px;
	height:26px;
	float:right;
	padding:3px;
	border:1px solid #ccc;
	border-radius: 3px;
	z-index: 100;
	background-color:rgba(255,255,255,0.8);
}


/********************************************************************
40 Print
********************************************************************/


@media print {
	

	a[href]:after{
	content: ""!important;
	}

	abbr[title]:after{
	content: ""!important;
	} 	
	
	.row{
		display:block;
	}

  .sp_none{
	display:block !important;
  }
	
  .pc_none{
	display:none !important;
  }
	
  .wrapper{
	width:1024px !important;	
	min-width:1024px !important;
  }	
	
  nav{
	display:block !important;
	float:none !important;
	position:relative !important;
  }
	
  nav ul li{
	width:auto !important;
  }

  div#search_area{
	display:block !important;
  }	
	
  div#sp_menu{
	display:none;	
  }
	
  div#search_area{
	display:block;
  }
	
  div#sidebar ul{
	display:block !important;	
	position: relative;
  }
	
  div#sidebar h2 i{
    display:none !important;
  }	
	
  .left, .left_column{
	float:left !important;
  }
	
  .right, .right_column{
	float:right !important;
  }		
}


