@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
 **************************************************************/
.unknown{
	padding: 30px;
	background: darkred;
	color:#ffffff;
	font-size: 22px;
	font-weight: bold;
}

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

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

.wrapper{
	width:1000px;
	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 #fff;
	padding:5px 10px;
	float:right;
    color: #fff;
    margin-top: 20px;
}

.pagetop2{
	border:1px solid #20b2aa;
	padding:5px 10px;
	float:right;
    color: #20b2aa;
    margin-top: 10px;
}

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{
  font-size: 26px; 
}

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,
.pagetop2:before{
 	content: '\f0aa';
}

.ft14{
	font-size: 13px;
	line-height: 1.75em;
}

.pagetop2{
	background: #ffffff;
	position: fixed;
	bottom:20px;
	right: 20px;
	z-index: 99;
}

a:focus {
    color: initial;
}

a.pagetop2:focus,
a.pagetop2:hover{
	color:#20b2aa;
}

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

nav{
	display: flex;
	justify-content: right;
	height: 80px;
	align-items: center;
	width: 100%;
}

header h1{
	display:none;	
}



#home header{
	
}

#sub header{

}

.head-btn{
	display: flex;
	align-items: center;
	background: #20b2aa;
	justify-content: center;
	height: 40px;
	width: 150px;
	font-size: 18px;
	border-radius: 100px;
	color:#ffffff;
	box-shadow: 0 0 13px 0 rgba(0 0 0 / 30%);
	transition: 0.5s;
}

.btn_menu{
	display: flex;
	gap:40px;
	align-items: center;
	justify-content: right;
	
}

.head-btn:hover{
	filter: brightness(1.25);
	color:#ffffff;
	text-decoration: none;
}

.head-btn:visited{
	color:#ffffff;
}

header .btn-info{
    padding: 15px 15px;
    display: block;
    border-radius: 5px;
    background: #20b2aa;
    color: #fff;
}
header .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}



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

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



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



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

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

nav > ul > li{
	float:left;
}

nav ul li a{
	display:block;
	color:#000;
	font-size:16px;
	text-align:center;	
	vertical-align:middle;
    font-weight: bold;
}

nav > ul > li{
	border-left:1px solid #fff;	
	
}

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

nav ul li:nth-child(n+3){
	border-right:0;
}

nav ul ul li:last-child a{
	border:none;
}

nav ul li a:hover{
	color:#20b2aa;
	text-decoration:none;
}

nav ul li img.logo{
	height: 30px;
    margin-top: -10px;
}

/***************************************************************
5 toppage section
***************************************************************/
body{
	background-image: url("images/bg_about.jpg");
	background-position: top center;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

section#eyecatch{
}

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

section#eyecatch .main-visual{
    position: relative;
	width: 100%;
	max-width: 1000px;
	margin: auto;
	height:450px;
}

.main-visual__block{
	height: 100%;
	display: flex;
	align-items: center;
	text-align: right;
	padding-right: 5%;
	position: absolute;
	top:0;
	right: 0;
	justify-content: flex-end;
	letter-spacing: 0.2em;
}

.main-visual img{
	object-fit: cover;
	object-position: center;
	width:100%;
	height: 100%;
}

.main-visual:before{
	content:" ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0 0 0 / 30%);
	top:0;
	left: 0;
}


.main-visual__title{
    font-size: 68px;
    font-weight: bold;
    line-height: 110%;
    /*text-shadow:2px 2px 0 #fff,
            -2px 2px 0 #fff,
            2px -2px #fff,
            -2px -2px #fff,
            0 2px 0 #fff,
            0 -2px 0 #fff,
            -2px 0 0 #fff,
            2px 0 0 #fff;*/
	margin-bottom: 30px;
	 font-family: "Zen Maru Gothic", sans-serif;
	color:#ffffff;
	position: relative;
	z-index: 3;
}

.main-visual__text{
	    font-size: 35px;
    font-weight: bold;
    line-height: 110%;
	color:#ffffff;
    /*text-shadow:2px 2px 0 #fff,
            -2px 2px 0 #fff,
            2px -2px #fff,
            -2px -2px #fff,
            0 2px 0 #fff,
            0 -2px 0 #fff,
            -2px 0 0 #fff,
            2px 0 0 #fff;*/
	font-family: "Zen Maru Gothic", sans-serif;
	position: relative;
	z-index: 3;
}

.maru{
	/*font-family: "Zen Maru Gothic", sans-serif;*/
}

section#eyecatch .text{
    position: absolute;
    top: 15%;
	right: 20%;
    text-align: center;
}

section#eyecatch p{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 110%;
    text-shadow:2px 2px 0 #fff,
            -2px 2px 0 #fff,
            2px -2px #fff,
            -2px -2px #fff,
            0 2px 0 #fff,
            0 -2px 0 #fff,
            -2px 0 0 #fff,
            2px 0 0 #fff;
}

.main-visual__text.mb10{
	margin-bottom: 20px;
}

section#eyecatch p.title1{
    font-size: 62px;
    line-height: 120%;
	text-align: center;
}

section#eyecatch p.title2{
    font-size: 32px;
    line-height: 120%;
	text-align: center;
}

section#eyecatch p.sp_date{
    font-size: 12px;
    line-height: 120%;
	text-align: center;
}
section#about{
    /*background: url("images/bg_about.jpg");*/
	background-position: top center;
	background-size: cover;
    padding: 80px 40px 80px;
	max-width: 1000px;
	margin: auto;
	width: 100%;
	background: #ffffff;
}

section#about h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-heading{
	margin-bottom: 40px;
}

section#about h2.about-heading__maintitle{
font-family: "Zen Maru Gothic", sans-serif;	
	font-size: 28px;
	line-height: 1.5em;
	margin-bottom: 10px;
	font-weight: bold;
}



section#about .about-heading__text{
	font-size: 15px;
	margin-bottom: 0;
	line-height: 1.5em;
	font-weight: bold;
}

section#about .about-heading__inner{
	text-align: center;
	display: inline-block;
}

section#about .about-heading__inner p{
	display: inline-block;
	text-align: left;
	width: 100%;
	font-size: 12px;
}

section#about p{
	line-height: 2em;
	margin-bottom: 50px;
}

section#about .col-md-3 img{
    width: 81%;
    margin-left: 20px;
}

.about-ud-text{
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.topic-area{
	display: inline-block;
	padding: 2px 10px;
	border-radius: 100px;
	font-size: 22px;
	border:1px solid darkred;
	color:darkred;
	text-align: center;
}

.about__table{
	width:100%;
	line-height:2em;
	border-top:#dddddd 1px solid;
}

.about__table td:nth-child(1){
	padding: 20px;
	border-bottom:#dddddd 1px solid;
	width: 100px;
	background: #efefef;
	font-weight: bold;
}

.about__table td:nth-child(2){
	padding: 20px;
	border-bottom:#dddddd 1px solid;
	width: calc(100% - 100px);
}

section#keynote{
    padding: 35px 0;
    background: #00ced1;
    color: #fff;
}

section#keynote h2{
    margin-bottom: 30px;
    font-weight: bold;
}

section#keynote a{
    color:#fff;
    text-decoration: underline;
}

section#keynote a:hover{
    opacity: 0.8;
}

section#keynote .speaker{
    color: #fff;
    padding: 5px 15px;
    background: #afeeee;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
}

section#program{
    padding: 35px 0;
}
.program_area{
    padding: 35px 0 15px;
}

section#program h2{
    font-weight: bold;
    margin-bottom: 20px;
}

h2.block-title{
font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
	
h2.block-title{
	position: relative;
	padding-left: 1em;
}

h2.block-title:after{
	content:" ";
	width: 10px;
	height: 1.5em;
	background:#20b2aa;
	display: block;
	position: absolute;
	left: 0;
	top:-1px;
}


.time{
    padding:0 0 15px;
}

.time table{
    width: 100%;
}

.time table tr td{
    border: 0;
    border-top: 1px solid #20b2aa;
    font-size: 16px;
    padding: 5px;
	vertical-align: top;
}

.time table tr td,
.time table tr th{
	padding: 20px 0;
}

/*.time table tr td:first-child{
    width: 10%;
}

.time table tr td::nth-child(3){
    width: 20%;
}*/

.time table tr:first-child td{
    border-top: 0;
}

.time table tr td:first-child{
	font-weight: bold;
}

.program_box{
	padding: 30px;
	border:1px solid #20b2aa;
}

.program_box__title{
	color:#20b2aa;
	font-size: 18px;
	margin-bottom: 10px;
}

section#program .detail,
.program_area .detail{
    color: #20b2aa;
    margin-top: 5px;
}
section#program ul,
.program_area ul{
 	margin: 10px 0;
}
section#program ul li00{
    padding-left:1em;
    text-indent:-1em;
}
section#program ul li:before{
 	content: '・';
    padding-right: 0px;
    margin-left:0px;
}

.program_area{
	line-height: 2em;
}

.program_area ul li{
	display: flex;
	margin-left: 0;
	margin-bottom: 5px;
}

.program_area ul{
	padding-left: 0;
}

.program_title{
width: 65%;
	display: grid;
	grid-template-columns: auto 1fr;
}

.program_title:after{
content:" ";
	display: inline-block;
	background: url("images/tddot.png");
	background-repeat: repeat-x;
	background-position: center right;
	height: 1.5em;
	margin-left: 10px;
}

.program_text{
	
}

.photo p{
    text-align: center
}

section#panelist{
    padding: 0 40px 80px;
	width: 100%;
	max-width: 1000px;
	margin: auto;
}
	
.panelist__list{
	display: grid;
	grid-template-columns: 1fr;
	gap:35px;
	margin-top: 50px;
}

	.panelist__list li{
		position: relative;
		padding-right: 180px;
		min-height: 180px;
	}

.panelist__list__img{
	width: 160px;
	position: absolute;
	top:0;
	right: 0;
}
	
	.panelist__list__name{
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.panelist__list__name span{
		font-size: 12px;
		margin-left: 10px;
	}

section#register{
    padding: 35px 0;
    background: #20b2aa;
}

section#register h2{
    font-weight: bold;
    margin-bottom: 35px;
    color: #fff;
}

section#register .tile{
    background: #fff;
    padding: 20px 20px 20px;
    height: 100%;
}

section#register p.top{
    text-align: center;
}

section#register p.top span{
    color: #20b2aa;
    padding: 3px 50px;
    border-radius: 20px;
    border: 1px solid #20b2aa;
    font-weight: bold;
    font-size: 18px;
}

section#register p.when{
    font-weight: bold;
    font-size: 16px;
}

section#register p span{
    font-size: 14px;
}

section#register .btn-info{
    padding: 15px 15px;
    display: block;
    border-radius: 5px;
    background: #20b2aa;
    color: #fff;
    margin-top: 50px;
}
section#register .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}

.register__text{
	line-height:1.2em;
}

section#outline{
    padding: 35px 0 20px
}

section#outline h2{
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 22px;
}

section#outline .logo{
    text-align: center;
    margin-bottom: 30px;
}

section#outline .logo img{
    width: 500px;
}

section#outline .logo2,
section#outline .logo3{
    text-align: center;
    margin-bottom: 10px;
}

section#outline .logo2 img{
    width: 60%;
}

section#outline .logo3 img{
    width: 30%;
}

section#outline ol{
    list-style: none;
}

/*section#outline ol li{
    padding-left: 1.5em;
    text-indent: -1.5em;
}*/

section#outline ol li:before{
  
}

.youtube_icon {
    width: 25px;
}

.youtube_icon:hover{
    opacity: 0.8;
}

/***************************************************************
6 footer
***************************************************************/
.logo-title{
	font-size: 22px;
	font-weight: bold;
	margin: 20px 0 0;
	color:#ffffff;
	background: none;
}
footer{
	background-color:#008b8b;
	color:#fff;
	padding:20px 0 50px;
}

footer p.name{
	font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

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

footer .bnr{
    height: 55px;
}

footer p{
    margin-bottom: 10px;
}

footer p a{
    color: #fff;
    font-size: 16px;
    background: #20b2aa;
    padding: 1px 15px;
    border-radius: 20px;
}

footer p a:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

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

div#main_content table tr{
    border-top:1px solid #999;
    border-bottom:1px solid #999;
}

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: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:1000px;
	}
	
}


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


@media (max-width: 767px) {


	
	section#eyecatch .main-visual {
height: auto;

}
	.sp_none{
		display:none;
	}
	
	.pc_none{
		
	}
    
    body{
    text-align: left;
}


	
	header div#search_area{
		display:none;
	}
	
	header #logo_area {
	padding: 5px 5px;
}
header #logo_area img {
	width: 50%;
}
	
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
    
    /*header #logo_area .col-md-6{
        padding-left: 0;
        padding-right: 0;
    }*/
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute;
        left: 0;
        margin: 0;
	}
	
	nav ul{
		width:100%;	
		height: auto;
		background-color:#caebf7;
	}

	nav ul li{
		float:left;
        width:100%;
	}
    
    nav ul li a{
        padding: 10px;
        min-height: 45px;
        border-bottom: 1px solid #fff;
	}
    
    nav > div > ul > li{
        border-bottom:1px dashed #fff;
    }
    
    nav div ul ul{
        padding-left:20px;
        position: relative;
        display: block;
        width:100%;
    }
    
    nav div ul li ul li{
        display: block;
        position: relative;
    }
	
    nav div ul li a{
        text-align: left;
        padding-top:10px;
    }
    
    nav ul li img.logo {
        margin-top: 0px;
    }
	
	.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 img.eye{
    width: 100%;
	height: 100%;
}

section#eyecatch .text{
    top: 53%;
    right: 2%;
}

section#eyecatch p{
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 0;
}

section#eyecatch p.title2{
    font-size: 16px;
}
	
.main-visual__title {
    font-size: 28px;
	}
	
.main-visual__text {
    font-size: 12px;
	}
	

	

section#about,
.about_area{
    padding: 25px 10px 30px;
    margin-top: 0px;
}
section#about h2,
.about_area{
    margin-bottom: 15px;
    font-size: 16px !important;
}
section#about p,
.about_area{
    /*line-height: 120%;*/
}
	
section#about h2.maintitle span {
    font-size: 16px;
	}
section#about .col-md-3{
    text-align: center;
}
section#about .col-md-3 img{
    width: 60%;
    margin-left: 0px;
}

.box{
    padding: 15px 10px 0px 10px;
}

/*.box2 table tr td{
    font-size: 16px;
    display: block;
}

.box2 table tr td:first-child{
    width: 100%;
}*/
    
.box table tr td:first-child,
.box2 table tr td:first-child{
    width: 25%;
}

.box2{
    padding: 0px 10px 20px;
    margin-bottom: 15px;
}

	section#outline .logo img{
    width: 80%;
}
    
    section#keynote{
    padding: 30px 10px;
}

section#keynote h2{
    margin-bottom: 25px;
}

section#keynote p{
    text-align: left;
    /*line-height: 120%;*/
}

section#keynote .speaker{
    padding: 5px 10px;
    display: block;
    font-size: 18px;
}

section#program,
.program_area{
    padding: 35px 10px 15px;
}

.time{
    padding: 15px 20px;
    border: 0;
}

.time table tr td{
    font-size: 16px;
    padding: 8px 3px;
}
/*.time table tr td:first-child{
    width: 50%;
}    
.time table tr td:nth-child(2){
    width: 50%;
}
.time table tr td:nth-child(3){
    border-top: 0;
    width: 100%;
    display: block;
}*/
    
section#program ul,
.program_area ul{
    padding-left: 0;
  }
    
.time table tr {
    display: flex;
    flex-wrap: wrap;
  }

 .time table td:nth-child(1) {
    flex: 0 0 30%; /* 時間：25% */
  }

  .time table td:nth-child(2) {
    flex: 0 0 70%; /* タイトル：75% */
  }

 .time table td:nth-child(3) {
    flex: 1 0 100%;
     border-top:none;
     padding: 0 3px 8px 3px;
  }
    
    section#panelist {
        padding: 30px 40px;
    }
	
	.panelist__list li {
    grid-template-columns: 1fr;
    row-gap: 20px;
}
	
/*.time table tr td:nth-child(2){
    border-bottom: 0;
}*/

    section#panelist{
    padding: 30px 5px;
}

section#panelist h2{
    margin-bottom: 25px;
}
    
section#register{
    padding: 35px 10px;
}
    
section#register .tile{
    padding: 20px;
}
    
section#register .btn-info{
    margin-top: 0;
}
    
section#register p.top span {
    padding: 3px 30px;
    display: block;
}
    
section#outline{
    padding: 35px 10px 20px;
}
    
section#outline ol{
    padding-left: 10px;
    padding-right: 10px;
}
    
section#outline .logo3 img,
section#outline .logo2 img{
    width: 100%;
}
    
    
    footer{
	padding:20px 5px 80px;
}
    
    footer .col-md-3,
    footer .col-md-2{
    text-align: center;
}
    
    footer p.name{
        font-size:18px;
    }
    
    footer .bnr{
        padding: 10px 0;
        height: 90px;
        display: block;
        margin: auto;
    }
    

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

	div#sidebar ul{
		display:none;	
	}
	
	div#sidebar h2{
		cursor:pointer;	
	}
	
	div#sidebar h2 i{
		display:inherit;
	}
	
	.time{
		padding: 20px 0;
	}
	
	.time table,
	.time tbody,
	.time tr,
	.time th,
	.time td{
		display: block;
		width: 100%;
	}

    .time table td:nth-child(2) {
        flex:none;
	}
	
	  .time table td:nth-child(1) {
        flex: none;
    }
	
	.time table tr:first-child td:nth-child(1) {
    border-top: 1px solid #20b2aa;
	border-bottom: 1px solid #20b2aa;
}
	
.program_title,
	.program_text{
		font-size: 14px;
		width: 100%;
		align-items: center;
	}
	
	.program_text{
		text-align: right;
	}
	
	.program_area ul li{
		display: block;
	}	
	

}



/********************************************************************
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:1000px !important;	
	min-width:1000px !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;
  }	
	
}

@media (min-width: 480px) and (max-width:767px) {
	#copyright .row{
		grid-row-gap: 20px;
	}
	
	footer #copyright .col-md-2{
		width: 50%;
	}
	
	footer #copyright .col-md-2 img{
		width: 100%;
	}
	
}

@media (max-width: 767px) {
	section#about .about-heading__text{
		font-size: 10px;
	}
	
section#about .about-heading__inner{
    line-height: 1.25em;
}	
	
section#about .about-heading__inner p {
    font-size: 10px;
	line-height: 1.2em;
}
	
	.about__table table,
	.about__table tbody,
	.about__table th,
	.about__table td{
		display: block;
		width: 100% !important;
		font-size:14px !important;
	}
	
	.about__table td{
		padding: 10px !important;
	}
	
	section#program,.about_area{
		padding-left: 0;
		padding-right: 0;
	}
	
	.panelist__list__img{
		width: 100px;
	}
	
	.panelist__list li {
    position: relative;
    padding-right: 0;
    min-height: auto;
}
	
.panelist__list__name {
    font-size: 16px;
    margin-bottom: 10px;
    height: 100px;
    padding-right: 120px;
    padding-top: 20px;
}
	
	.register__text{
		font-size: 12px;
		text-align: left;
	}
	

}
/* ハンバーガーメニュー復活させるなら削除 */
@media (max-width: 767px) {
	body{
		padding-top: 0;
	}	
	
	
	nav{
		display: block;
		position:initial;
		height: 50px;
	}

    nav ul {
        display: flex;
        position:initial;
		padding-right: 10px;
		width: 100%;
		background: #ffffff;
		top:0;
		left: 0;
    }
	
    nav ul li {
        float: none;
        width: auto;
    }
	
nav ul li a {
        padding: 10px;
	font-size: 12px;
	min-height: auto;
    }	
	
.head-btn {
    display: flex;
    align-items: center;
    background: #20b2aa;
    justify-content: center;
    height: 30px;
    width: 110px;
    font-size: 12px;
    border-radius: 100px;
    color: #ffffff;
    box-shadow: 0 0 13px 0 rgba(0 0 0 / 30%);
    transition: 0.5s;
	margin-left: 15px;
}
	
.btn_menu {
    gap: 0px;
}
	
.main-visual__text.mb10,
.main-visual__title {
    margin-bottom: 10px;
}

	#menu{
		display: none;
		position: fixed;
		top:0;
		left: 0;
		width: 100%;
		z-index: 900;
		height: auto !important;
	}
	
	.btn_menu{
		display: block;
		padding-top: 40px;
		padding-bottom: 20px;
	}
	
	.head-btn{
		margin: auto;
		margin-top:10px;
	}
	
	#menu.open{
		display:block;
	}
	
	div#sp_menu{
		position:fixed;
		right:15px;
		top:10px;
		display:block;
        z-index: 999;

	}
	
	div#sp_menu.is-visible{
		opacity: 1;
	}
	
	body{padding-top:50px;}
	
}


@media (min-width: 768px) {
	
	div#sp_menu{display:none;}
	
}
