@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 #026898;
	padding:5px 10px;
	float:right;
    color: #026898;
    border-radius: 5px;
}
.pagetop:hover{
	text-decoration: none;
    opacity: 0.8;
}

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';
}


/***************************************************************
 2. override bootstrap / slick
 **************************************************************/
 
.btn{
    border-radius: 0px;
}

.btn-info{
}

.badge{
	padding:4px;
    border-radius: 0px;
    font-size:14px;
    min-width:60px;
    font-weight: normal;
}

.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{
	position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

header h1{
	display:none;	
}

header div#bnr_area{
	padding:10px 5px 5px;
}

header div#bnr_area ul {
	margin-bottom: 0;
}

header div#bnr_area ul li{
	float:right;
	padding:0 10px;
}

header div#bnr_area img.logo1{
	width: 80px;
}

header div#bnr_area img.logo2{
	width: 200px;
}

header #logo_area {
	padding: 10px 0 5px 25px;
}
header #logo_area img {
	width: 100%;
}

#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 ul{
	margin:0px;
	padding:0px;
}

nav ul li{
	padding:0px;
	margin:0px;
}

nav > ul > li{
	float:left;	
}

nav ul li a{
	display:block;
	padding:10px 17px;
	color:#000;
	font-size:18px;
	text-align:center;	
	vertical-align:middle;
}

nav ul li a:after{
	content: "\f107";
    color: #026897;
}

nav > ul > li{
}

nav ul ul{
	display:none;
	position:absolute;
	z-index:100;
	background-color:#333;
	color:#fff;
	width: 150px;
}

nav ul li:nth-child(7n) a{
}

nav ul ul li:last-child a{
	border:none;
}

nav ul li a:hover{
	color:	#026897;
	text-decoration:none;
}


/***************************************************************
5 toppage section
***************************************************************/


section#eyecatch{
}

section#eyecatch .wrapper{
    width: 100%;
    height: 620px;
    overflow: hidden;
    position: relative;
}

section#eyecatch img.eyecatch{
    width: 100%;
    height: 620px;
    object-fit: cover;
}

section#eyecatch .text {
    position: absolute;
    top:33%;
    left: 50%;
    transform: translateX(-600px);
    width: 100%;
}

section#eyecatch p{
    font-weight: bold;
    text-shadow:
        2px 2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        -2px -2px 0 #fff,
        0 2px 0 #fff,
        2px 0 0 #fff,
        0 -2px 0 #fff,
        -2px 0 0 #fff;
}

section#eyecatch p.title{
    color: #000859;
    font-size: 30px;
}

section#eyecatch p.subtitle{
    color: #026897;
    font-size: 45px;
    line-height: 120%;
}

section#eyecatch p.schedule{
    color: #000859;
    font-size: 33px;
    line-height: 120%;
}

section#eyecatch img.logo{
    width: 300px;
    margin-bottom: 15px;
}

section#overview{
    background: url("images/bg_overview.jpg");
background-position: bottom center;
background-size: cover;
    padding: 50px 0;
    color: #000859;
}

section#overview h2{
    text-align: center;
    font-weight: bold;
    color: #000859;
    margin-bottom: 30px;
}

section#overview img.logo{
    margin-top: 30px;
    float: right;
    width: 300px;
}

section#time{
    background: #000859;
    padding: 50px 0;
    color: #fff;
}

section#time p.venue{ 
    background: #026897;
    padding: 5px 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

section#time p.line{ 
    border-bottom: 2px dotted #026595;
    padding: 5px 5px;
    color: #fff;
}

section#program{
    padding: 50px 0;
}

section#program h2{
    text-align: center;
    font-weight: bold;
}

section#program h3{
    font-weight: bold;
    background: #000859;
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    margin-top: 50px;
}
section#program h3 span{
    font-size: 20px;
    font-weight: normal;
    margin-left: 30px;
}

section#program table.schedule{
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 0;
    margin-top: 15px;
}

section#program table.schedule th{
    width: 15%;
    font-size: 16px;
    color: #000859;
    padding: 12px 10px;
    vertical-align: top;
    border-right: 3px solid #000859;
}

section#program table.schedule th.line{
    border-right: 3px solid #cde0fd;
}

section#program table.schedule td{
    font-size: 16px;
    padding: 12px 15px;
    border-bottom: 2px solid #ccc;
}

section#program table.schedule td.noline{
    border-bottom: 0;
}

section#program table.schedule td a{
    color: #026897;
    font-weight: bold;
    border-bottom: 2px solid #026897;
    position: relative;
}
section#program table.schedule td a.noborder{
    border-bottom: 0;
}
section#program table.schedule td a:after{
    
}
section#program table.schedule td a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#program img.sympo{
    width: 20%;
    margin-top: 10px;
}

.toggleBtn{
    position: relative;
}

section#program .toggleBtn:after{
    content: "\f13a";
    position: absolute;
    right: -25px;
}

.toggleContent {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
    margin-top: 5px;
}

section#future{
    padding: 50px 0;
    background: #026897;
    color: #fff;
}

section#future h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

section#future h3{
    background: #000859;
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
}

section#future p.day{
    font-size: 18px;
    font-weight: bold;
}
section#future p.title{
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
}

section#future .btn_area{
    text-align: center;
    margin-top: 20px;
}
section#future .venue_btn{
    color: #fff;
    text-decoration: underline;
}

section#future .box{
    background: #fff;
    padding: 20px;
    color: #000;
    text-align: left;
}

section#future table.schedule{
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 0;
}

section#future table.schedule th{
    width: 15%;
    font-size: 16px;
    color: #000859;
    padding: 12px 10px;
    vertical-align: top;
    border-right: 3px solid #000859;
}

section#future table.schedule td{
    font-size: 16px;
    padding: 12px 15px;
    border-bottom: 2px solid #ccc;
}

section#future table.schedule td a{
    color: #026897;
    font-weight: bold;
    border-bottom: 2px solid #026897;
    position: relative;
}
section#future table.schedule td a:after{
    content: "\f13a";
    position: absolute;
    right: -25px;
}
section#future table.schedule td a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#future .btn-info{
    color: #000859;
    padding: 10px;
    border: 3px solid #000859;
    background: #fff;
    display: inline-block;
    width: 60%;
    font-weight: bold;
}
section#future .btn-info:hover{
    text-decoration: none;
}

section#access{
    padding: 50px 0;
    background: #f6f6f6;
}

section#access h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

section#access h3{
    text-align: center;
    font-weight: bold;
    margin: 50px 0 20px;
    font-size: 24px;
    background: transparent;
}

section#access .box{
    background: #cde0fd;
    padding: 20px 20px;
    border-radius: 5px;
}

section#access p.guide{
    color: #000859;
    font-weight: bold;
    font-size: 18px;
}

section#access ol{
    margin-left: 15px;
}

section#access ol li{
    padding: 3px 0;
    color: #026897;
}

section#access ol li a{
    color: #026897;
}

section#access ul li{
    color: #000859;
    padding: 3px 0;
}
section#access ul li:before{
    content: "・";
}

section#bnr{
    padding: 50px 0;
}

section#bnr h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

section#bnr img.jsps{
    width: 277px;
}


/***************************************************************
6 footer
***************************************************************/

footer{
    background: url("images/bg_footer.jpg");
background-position: top center;
background-size: cover;
	text-align:center;
	padding:50px 0 150px;
}

footer h2{
	font-weight: bold;
}

footer p{
	font-weight: bold;
}

footer p.info{
	margin: 50px 0 30px;
}

.pagetop{
        background: #fff;
	float:none;
    position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
}



/***************************************************************
7 breadcrumb
***************************************************************/
/* overwrite bootstrap */
.breadcrumb{
    background-color:transparent !important;
}


/***************************************************************
8 sidebar
***************************************************************/

div#sidebar{
	border:1px solid #999;
	padding:0px;
	margin-bottom:20px;
}

div#sidebar h2{
	background-color:#0e1446;
	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 solid #ccc;
	color:#666;
    padding-left:30px;
    
}

div#sidebar ul li a:hover{
	background-color:#FFF6E8;
	text-decoration:none;	
}

div#sidebar ul li a:before{
 	content: '\f0da';
    margin-right:10px;
    margin-left:-20px;
}

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 h1{
	border-left:3px solid #0e1446;
	padding:5px 10px 5px 30px;
	margin-top:0px;
	font-size:24px;
	color: #0e1446;
}

div#main_content div#content_area{
	padding:10px 0px;	
	min-height:500px;
}


div#main_content h2{
	font-size:20px;
	margin:20px 0px;
	padding:10px 10px;
	border:1px solid #999;	
}

div#main_content h3{
	background-color:#eee;
	font-size:18px;
	padding:15px 8px;
	margin:30px 0px 20px 0px;	
}

div#main_content h4{
	border-left:3px solid #ccc;
	padding:10px 20px;
	margin:20px 0px;
	font-size:16px;
}

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%;
}

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;
}

div#main_content ul,
div#main_content ol{
    margin:40px 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.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;
}


i {
	font-style: italic;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

/********************************************************************
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 div#bnr_area{
	padding:5px 5px 5px;
}

header div#bnr_area ul li{
	float:left;
}

header div#bnr_area img.logo1{
	width: 30px;
}

header div#bnr_area img.logo2{
	width: 100px;
}

header #logo_area {
	padding: 5px 5px;
}
    
    header #logo_area img{
	width: 95%;
}
	
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute;
        top: 0;
        left: 0;
	}
	
	nav ul{
		width:100%;	
		height: auto;
		
	}

	nav ul li{
		float:left;
        width:100%;
	}
    
    nav > ul > li{
        border-bottom:1px dashed #fff;
    }
    
    nav ul ul{
        padding-left:20px;
        position: relative;
        display: block;
        width:100%;
    }
    
    nav ul li ul li{
        display: block;
        position: relative;
    }
	
    nav ul li a{
        text-align: left;
        padding:10px 15px;
        background-color:#333;
        color: #fff;
    }
	
	.wrapper{
		width:100% !important;	
		min-width:100% !important;
	}
	
	
	div#main_content{
		border:none;
		padding:0px;
	}
	
	div#main_content div#content_area{
		padding:0px;
	}
	

	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;	
	}

section#eyecatch .wrapper{
    width: 100%;
    height: auto;
}

section#eyecatch img.eyecatch{
    width: 100%;
    height: auto;
}

section#eyecatch .text {
    position: absolute;
    top:10%;
    left: 1%;
    transform: translateX(0px);
}

    section#eyecatch p{
    line-height: 10%;
}
    
section#eyecatch p.title{
    font-size: 16px;
    margin: 0;
}

section#eyecatch p.subtitle{
    font-size: 18px;
    line-height: 120%;
    margin: 0;
}

section#eyecatch p.schedule{
    font-size: 16px;
}

section#eyecatch img.logo{
    width: 100px;
    margin-bottom: 10px;
}
    
    section#overview{
    padding: 30px 10px;
}

section#overview h2{
    font-size: 24px;
    margin-bottom: 20px;
}

section#overview img.logo{
    margin-top: 10px;
    width: 250px;
}

section#time{
    padding: 30px 0;
}

    section#time p.venue{ 
    margin: 0;
}

section#program{
    padding: 30px 10px;
}

section#program h2{
    font-size: 24px;
}

section#program h3{
    font-size: 20px;
    padding: 10px 15px;
    margin-top: 20px;
}
section#program h3 span{
    font-size: 16px;
    margin-left: 15px;
}

section#program table.schedule{
    border-spacing: 5px 0;
}

section#program table.schedule th{
    padding: 12px 5px;
    line-height: 120%;
}

section#program table.schedule td{
    padding: 12px 5px;
}

section#program table.schedule td a{
    color: #026897;
    font-weight: bold;
    border-bottom: 2px solid #026897;
    position: relative;
    display: inline-block;
}
section#program table.schedule td a:after{
    position: absolute;
    right: 0px;
    bottom: 0px;
}

    section#future{
    padding: 30px 10px;
}

section#future h2{
    font-size: 24px;
    margin-bottom: 20px;
}
    
    section#future h3{
    font-size: 20px;
    padding: 10px 10px;
}

section#future p.title{
    font-size: 18px;
}
    
    section#future .box{
    padding: 10px 5px;
}

section#future .btn-info{
    padding: 10px;
    width: 100%;
}
    
    section#future table.schedule{
    border-spacing: 5px 0;
}
    section#future table.schedule th{
    font-size: 14px;
    padding: 10px 5px;
        line-height: 130%;
}

section#future table.schedule td{
    font-size: 14px;
    padding: 10px 5px;
    line-height: 130%;
}
    
    section#future table.schedule td a:after{
    right: 0px;
}

    section#access{
    padding: 30px 10px;
}

section#access h2{
    font-size: 24px;
    margin-bottom: 20px;
}

section#access h3{
    margin: 20px 0 10px;
    font-size: 22px;
}

section#access .box{
    padding: 20px 10px 10px;
}

section#access p.guide{
    font-size: 16px;
}

section#access ol{
    margin-left: 5px;
}

section#bnr{
    padding: 30px 0;
}

section#bnr h2{
    font-size: 24px;
}
    
    section#bnr img{
    margin-bottom: 10px;
}
    
    section#bnr img.jsps{
    width: 158px;
}

	div#sp_menu{
		position:fixed;
		right:20px;
		top:40px;
		display:block;
        z-index: 999;
	}
    
    div.right_column{
        margin-right:15px;
    }

	div#sidebar ul{
		display:none;	
	}
	
	div#sidebar h2{
		cursor:pointer;	
	}
	
	div#sidebar h2 i{
		display:inherit;
	}
    
    .pagetop{
        background: #fff;
	float:none;
    position: fixed;
        bottom: 20px;
        right: 15px;
        z-index: 999;
}
    
    footer{
	padding:30px 0 80px;
}

footer h2{
	font-size: 24px;
}

footer p.info{
	margin: 10px 0 10px;
}


}


/********************************************************************
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;
  }	
	
}

