@charset "utf-8";


/* CSS Document */

/**

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

7. breadcrumb
8. sidebar
9. main_content


main colors: 

#0E1446
#dedede


**/

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


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

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;
	padding-right: 0;
}

.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, ol{
	padding-left:20px;
}

ul li{
	list-style:none;

}

p{
	padding:4px;
}

img.center{
	display: block;
	margin:0 auto;
}

a:focus{
	color:#aaa;
}

a.more{
	float:right;
}

.pagetop{
	border:1px solid #242086;
	padding:5px 10px;
	float:right;
    border-radius: 5px;
    color: #242086;
    margin-top: 30px;
}

img.full{
width:100%;
}

table{
    width:auto;
}

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

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

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

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

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

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

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

/* font awesome */

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

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

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

.date:before{
	content: "\f133";
}

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

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


span.label {
    background-color:#ccc;
    color:#fff;
    font-size: 14px;
    padding: 1px 6px;
    display: inline-block;
    margin: 2px 10px;
    text-indent: 2px;
    border-radius: 4px;
}
span.label.label-year{
    background-color:#D09FA0;
}

span.label.label-group{
    background-color:#8CAE99;
}

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


.btn{
    border-radius: 0px;
}

.btn-info{

}

.badge{
	padding:1px 20px;
    border-radius: 20px;
    font-size:16px;
    min-width:80%;
    font-weight: normal;
    display: inline-block;
    color: #fff;
    background: #ccc;
}

.act{
    padding:5px 20px;
}

.badge-news{
    background: #242086;
}

.badge-result{
    background: #88abda;
}

.badge-award{
    background: #aa89bd;
}

.badge-event{
    background: #f29c9f;
}

.badge-paper{
    background: #89c997;
}

.badge-press{
    background: #6699CC;
}

.badge-young{
    background: #FF99CC;
}

.badge-out{
    background: #f29b76;
}

.badge-newsltr{
    background: #8FBC8F;
}


.table-flexible{
    padding-left:0px;
    width:100%;
}

.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{
	border-bottom: 1px solid transparent;
    position: sticky;
    top:0;
    background: #fff;
    z-index: 999;
    box-shadow: 0px 8px 9px -7px #c4e8fc;
}

header h1{
	display:none;	
}

header #logo_area {
	padding: 10px 10px;
}

header #logo_area img {
	width: 100%;
}

header div#lang_area{
	padding:10px 0;
}

header div#lang_area ul li{
	padding:15px 10px 0;
	float:right;
}

header div#lang_area ul li.lang a{
	color: #fff;
    background: linear-gradient(#67d6d8,#7fc98f);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 26px;
}

header div#lang_area ul li img{
	width: 30px;
}

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

#home header{
}

#sub header{
}


/*for wordpress qtranslate x*/
body.lang-en .lang-ja{
	display:none;
}

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



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


nav{
}

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


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

nav > ul > li{
	float:left;
    position: relative;
    padding: 0 20px;
}

nav > ul > li:after{
	position: absolute;
    right:0;
    top:3px;
    content: "/";
    color: #2ca58a;
}

nav ul li a{
	display:block;
	padding:1px 30px;
	color:#000;
	font-size:16px;
	text-align:center;
	vertical-align:middle;
    position: relative;
}

nav ul li a:after{
	content: "\f107";
    color: #a5a5a5;
    position: absolute;
    bottom: -20px;
    right:0;
    left: 0;
}

nav > ul > li{


}

nav > ul > li.active > a,
nav ul li a:hover{
	background-color:#148da0;
	color:	#fff;
	text-decoration:none;
    border-radius: 25px;
}

nav ul ul{
	display:none;
	position:absolute;
	z-index:100;
	background-color:#333;
	color:#fff;
	width: 150px;
    padding-left: 0;
}

nav ul li:nth-child(7) ul{
	width: 200px;
}

nav ul ul li a {
    color: #fff;
    text-align: left;
    padding: 10px 10px;
}

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

nav ul ul li.active a,
nav ul ul li a:hover{
	background-color:#148da0;
	text-decoration:none;
    border-radius: 0px;
}


nav ul li:nth-child(7):after{
	content: none;
}

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




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

section#eyecatch video{
    width: 100%;
    display: block;
    border: none;
    outline: none;
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
}

section#eyecatch .slider_photo{
    width: 100%;
    aspect-ratio: 1200 / 675;
    text-align: center;
}

section#eyecatch .slider_photo img{
    width:90%;
    margin: auto;
}

section#eyecatch .text{
    margin-top: -80px;
    position: relative;
}

section#eyecatch .text p{
    font-size: 40px;
    font-weight: bold;
    display: inline-block;
  background: linear-gradient(135deg, #0956c0 0%, #31a986 100%);
    background: -webkit-linear-gradient(-45deg, #0956c0 0%, #31a986 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    line-height: 180%;
    white-space: nowrap;
}

section#about{
    background: url("images/bg_about.jpg");
    background-position: center;
    background-size: cover;
    padding: 30px 0 50px;
}

section#about .tile{
    background: #fff;
    border-radius: 5px;
    padding: 30px 20px 5px;
    position: relative;
    box-shadow: 0 0 3px #ccc;
}

section#about .tile p{
    margin: 0;
}

section#about .tile h2{
    position: absolute;
    top: 20px;
    left:-50px;
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

section#about img.right{
    margin-top: 30px;
}

section#about .btn-info{
    color: #fff;
    background: #242086;
    padding: 5px 60px;
    border-radius: 25px;
    margin-bottom: -20px;
    margin-right: -30px;
    position: relative;
}

section#about .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 15px;
    /*color: #7de314;*/
}

section#about .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#research{
    padding:50px 0 30px;
}

section#research h2{
    text-align: center;
    line-height: 90%;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: bold;
}

section#research h2 span{
    font-size: 18px;
}

section#research .cover{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

section#research .box{
    width: 19%;
    border-radius: 25px;
    border: 2px solid #0c53c1;
    padding: 0 0 20px;
    margin-right: 1%;
    height: auto;
}

section#research .box h3{
    font-size: 22px;
    background: #0c53c1;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    border-top-left-radius:22px;
    border-top-right-radius:22px;
}

section#research .box table{
    width: 90%;
    margin: 0 10px;
}

section#research .box table td{
    border-bottom: 1px solid #0c53c1;
    padding: 3px 3px;
    width: 50%;
    line-height: 120%;
}

.box h3,
.box p,
.box table {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

section#research p.title{
    padding: 5px 10px;
    font-weight: bold;
}

section#research .a1{
    border: 2px solid #ea627f;
}

section#research .a1 h3{
    background: #ea627f;
}

section#research .a1 table td{
    border-bottom: 1px solid #ea627f;
}

section#research .a2{
    border: 2px solid #7d6cd3;
}

section#research .a2 h3{
    background: #7d6cd3;
}

section#research .a2 table td{
    border-bottom: 1px solid #7d6cd3;
}

section#research .a3{
    border: 2px solid #51b44f;
}

section#research .a3 h3{
    background: #51b44f;
}

section#research .a3 table td{
    border-bottom: 1px solid #51b44f;
}

section#research .a4{
    border: 2px solid #169fe2;
}

section#research .a4 h3{
    background: #169fe2;
}

section#research .a4 table td{
    border-bottom: 1px solid #169fe2;
}

section#research .btn-info{
    color: #fff;
    background: #242086;
    padding: 5px 60px;
    border-radius: 25px;
    position: relative;
    margin: 20px 0 0;
}

section#research .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 15px;
    /*color: #7de314;*/
}

section#research .btn-info:hover,
section#research .box a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#research .box a{
    color: #000;
    height: 100%;
    width: 100%;
    display: inline-block;
}


section#news{
    padding: 40px 0;
    background: #c4e8fc;
}

section#news h2{
    text-align: center;

    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

section#news ul{
    padding: 0px 20px;
}

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

section#news .btn-info{
    color: #fff;
    background: #242086;
    padding: 5px 60px;
    border-radius: 25px;
    position: relative;
    margin-top: 20px;
    min-width: 235px;
}

section#news .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 15px;
    /*color: #7de314;*/
}

section#news .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#bnr{
    padding: 30px 0 20px;
}



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

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

footer p.title span{
	font-size: 20px;
}

footer p.copy{
	margin-top: 50px;
}


/***************************************************************
7 breadcrumb
***************************************************************/
/* overwrite bootstrap */
.breadcrumb{
    background-color:transparent !important;
}


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

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

div#sidebar h2{
	background-color:#5bb9a8;
	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;
    padding-left:0px;
}

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

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

}

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

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

div#sidebar ul ul{
    padding-left:20px;
}

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
***************************************************************/


div#main_content{
	padding:0px;
}

div#main_content .btn-info {
    color: #fff;
    background: #242086;
    padding: 5px 60px;
    border-radius: 25px;
    position: relative;
    margin-top: 20px;
    min-width: 235px;
}


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
}

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

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


div#main_content h2{
	font-size:22px;
	margin:30px 0px 10px;
	padding:10px 15px;
    color:#fff;
    background: #242086;
    font-weight: bold;
}

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

div#main_content h3{
	background-color:#fff;
	font-size:16px;
	padding:5px 8px;
	margin:30px 0px 10px;
    border-bottom: 2px dashed #242086;
    color: #242086;
    font-weight: bold;
}

div#main_content h4{
	border-left:5px solid #242086;
	padding:5px 8px;
	margin:30px 0px 10px;
	font-size:16px;
    font-weight: bold;
}


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{
    border-top:2px solid #999;
    border-bottom:2px solid #999;
    width: 100%;
}

div#main_content table tr{

}

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

div#main_content table tr th{
    font-weight: bold;
	padding:5px 10px;
	border-bottom:2px solid #999;
}

div#main_content ul,
div#main_content ol{
    margin:20px 0px;
}

div#main_content ul li:before{
    content: '\f0da';
    padding-right: 10px;
    margin-left:-15px;
}

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

div#main_content ul.paper li{
    padding: 10px 0;
    line-height: 120%;
    margin-left: 1rem;
    text-indent: -1rem;
}

div#main_content ul.papers li,
div#main_content ol.papers li{
    margin-bottom: 20px;
    line-height: 140%;
}


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 ul.news{
    padding-left: 0;
}

div#main_content ul.news li{
    padding: 10px 0;
    border-bottom: 1px dashed #000;
}

div#main_content ul.news li:before{
    content: none;
}

div#main_content p.title{
    font-weight: bold;
    color: #242086;
    margin-bottom: 0;
}

div#main_content p.name{
    font-weight: bold;
    margin: 0;
}

div#main_content .hp{
    padding: 2px 30px;
    background: #5bb9a8;
    border-radius: 10px;
    color: #fff;
    margin-top: 15px;
    display: inline-block;
}

div#main_content .hp:hover{
    text-decoration: none;
    opacity: 0.8;
}

i {
	font-style: italic;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}


div#main_content table.papers{
    border-top:2px solid #242086;
    border-bottom:2px solid #242086;
}

div#main_content table.papers td{
    font-size: 16px;
    border-bottom: 1px dashed #dcdcdc;
}


div#main_content table.papers td:first-child{
    width: 12%;
    font-weight: bold;
}

div#main_content table.list{
    border-top:2px solid #242086;
    border-bottom:2px solid #242086;
}

div#main_content table.list td{
    font-size: 16px;
    border-bottom: 1px dashed #dcdcdc;
}

div#main_content table.list th{
    font-size: 16px;
    border-bottom: 1px dashed #dcdcdc;
    background: #c4e8fc;
}

/* カバーアートタイル表示*/
figure.gazo-box {
display: inline-block;
padding-right: 20px;
margin: 30px 40px;
}


/* チェックボックス*/
.checkbox01 {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px 5px 5px;
    position: relative;
    width: auto;
}

.checkbox02 {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px 5px 5px;
    position: relative;
    width: auto;
}

/* ラジオボタン */

.radio01 {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px 5px 5px;
    position: relative;
    width: auto;
}

input[type=radio] {
}

input[type=checkbox] {
}

/********************************************************************
10 PC
********************************************************************/

@media (min-width: 768px) {

	.sp_none{

	}

	.pc_none{
		display:none;
	}

	body{
		min-width:1200px;
	}

	div#sp_menu{
		display:none;
	}
}


/********************************************************************
10 SP
********************************************************************/

@media (max-width: 767px) {

	.sp_none{
		display:none;
	}

	.pc_none{

	}

header >  .wrapper > .row{
	position: relative
}

header #logo_area {
	padding: 10px 10px 10px;
}

header div#lang_area{
    position: absolute;
	padding:10px 5px 0;
}

header div#lang_area ul{
	float:right;
    padding-right: 50px;
}

header div#lang_area ul li{
	padding:0px 0px 0;
	float:left;
}

header div#lang_area ul li.lang{
	display: none;
}

header div#lang_area ul li img{
	width: 20px;
}

	header div#logo_area img{
		width:100%;
	}

    .sub_head{
    height: 50px;
}

	.row{
		margin-left:0px;
		margin-right:0px;
	}

	nav{
		display:none;
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute;
        top: 60px;
        left:0;
	}


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


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

	nav ul li{
		float:left;
        width:100%;
        padding: 0 0px;
	}

    nav > ul > li{
        border-bottom:1px dashed #fff;
        padding: 0 0px;
    }

    nav ul ul{
        position: relative;
        display: block;
        width:100%;
        border-top:1px dashed #fff;
    }

    nav ul li:nth-child(7) ul{
        width: 100%;
    }

    nav ul ul li a {
        color: #000;
        text-align: left;
        padding: 10px 15px 10px 40px;
    }

    nav ul li ul li{
        display: block;
        position: relative;
        border-top:1px dashed #fff;
    }

    nav ul li a{
        text-align: left;
        padding:10px 15px;
        background: #148da0;
    }

    nav ul li a:after{
        content: none;
    }
    nav ul li.active a,
    nav ul li a:hover{
        background-color:#148da0;
        color:	#fff;
        border-radius: 0px;
    }

	.wrapper{
		width:100% !important;
		min-width:100% !important;
	}


	div#main_content{
		border:none;
		padding:0px;
	}

	div#main_content div#content_area{
		padding:0px;
	}

    .badge{
        white-space: normal;
    }

	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;
	}

section#eyecatch .slider_photo img{
    width: 100%;
}

section#eyecatch .text{
    margin-top: 0;
    padding-left: 10px;
}

section#eyecatch .text p{
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 0;
    white-space: normal;
}

    section#about{
    padding: 10px 5px 20px;
}

section#about .tile{
    padding: 20px 10px 5px;
}

section#about .tile p{
    margin: 0 0 10px;
}

section#about .tile h2{
    position: static;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    font-size: 26px;
}

section#about img.right{
    margin-top: 50px;
}

section#about .btn-info{
    margin-bottom: -20px;
    margin-right: -10px;
}

section#research{
    padding:30px 10px 30px;
}


section#research .cover{
    display: flex;
    flex-wrap: wrap;
}

section#research .box{
    width: 100%;
    margin-bottom: 10px;
}

    section#research .box a{
        display: block;
    }

section#research .box h3{
    padding: 15px 0;
}

section#research .box table{
    width: 93%;
}

section#research .box table td{
    line-height: 130%;
}

section#research p.title{
    margin-bottom: 5px;
}

section#research .btn-info{
    margin: 15px 0 0;
}

    section#news{
    padding: 20px 10px 0;
}


section#news ul{
    padding: 0px 0px;
}

section#news .btn-info{
    margin: 15px 0 30px;
    min-width: 90%;
}


section#bnr{
    padding: 20px 0 10px;
}

    section#bnr ul{
    padding: 0;
}

    section#bnr ul li{
    margin-bottom: 10px;
}

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

    div#main_content p{
	line-height: 140%;
        margin-bottom: 10px;
}

    div.right_column{
        margin-right:15px;
    }

    ul.breadcrumb{
        margin-bottom: 0;
        padding: .75rem 1rem .5rem;
    }

	div#sidebar ul{
		display: flex;
        flex-wrap: wrap;
        padding-left: 20px;
	}

	div#sidebar h2{
		/*cursor:pointer;*/
        display: none;
	}

	div#sidebar h2 i{
		display:inherit;
	}

    div#sidebar ul li {
        margin-right: 30px;
    }

    div#sidebar ul li a {
        padding: 0;
        min-height: auto;
        display:inherit;
        border-bottom: 0;
        color: #007bff;
    }

    div#sidebar ul li:before {
        content: '\f0da';
        padding-right: 10px;
        margin-left: -15px;
        position: absolute;
    }

    div#sidebar ul li a:after{
        content:none;
    }

    footer p.copy{
	margin-top: 10px;
}

    .checkbox01 {
    padding: 5px 10px 5px 0;
}

.radio01 {
    padding: 5px 10px 5px 0;
}

}



/********************************************************************
41 Print
********************************************************************/


@media print {


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

	abbr[title]:after{
	content: ""!important;
	}

	.row{
		display:block;
	}

  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
	

  .sp_none{
	display:block !important;
  }
	
  .pc_none{
	display:none !important;
  }
	
  .wrapper{
	width:1200px !important;	
	min-width:1200px !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;
  }	
	
}

