@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 #1563a3;
	padding:5px 10px;
	float:right;
    color: #1563a3;
    border-radius: 5px;
    margin-top: 50px;
}
.pagetop:hover{
	text-decoration: none;
}

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{
	
}

.location:before{
	content: "\f3c5";
}

.pagetop:before{
 	content: '\f0aa';
}


/***************************************************************
 2. override bootstrap / slick
 **************************************************************/
 

.btn{
    border-radius: 0px;
}

.btn-info{

}

.badge{
	padding:1px 10px;
    border-radius: 25px;
    font-size:16px;
    min-width:80%;
    font-weight: normal;
    color: #fff;
    background: #41e9cb;
    line-height: 130%;
}

.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;
    transition: background-color 0.5s;
}

header h1{
	display:none;	
}

header div#lang_area{
	padding:10px 0 5px;
}

header div#lang_area ul{
    padding: 0;
    margin: 0;
}
header div#lang_area ul li{
    float: right;
}

header div#lang_area ul li a{
    width: 38px;
        height:38px;
    border-radius: 50%;
    color: #000;
    background: linear-gradient(to right,#3ce7ce,#82fb7b);
    display: flex;
    align-items: center;
    justify-content: center; 
}

header #logo_area img {
	width: 100%;
}

#home header{
	
}

#sub header{

}

#nav_area{
    background: #fff;
    border-radius: 5px;
    padding: 5px 0 5px 10px;
}

.sub_head{
    background: url("images/sub_head.jpg");
background-position: center;
background-size: cover;
    height: 180px;
    margin-top: -120px;
}

/*for wordpress qtranslate x*/
body.lang-en .lang-ja{
	display:none;
}

body.lang-ja .lang-en{
	display:none;
}


/***************************************************************
4 nav
***************************************************************/

nav{
    padding-top: 15px;
}

nav ul{
	margin:0px;
	padding:0px;
}

nav ul li{
	padding:0px;
	margin:0px;
}

nav > ul > li{
	float:left;
    padding: 0 2px;
}

nav ul li a{
	display:block;
	padding:1px 20px;
	color:#000;
	font-size:16px;
	text-align:center;	
	vertical-align:middle;
}

nav > ul > li:nth-child(9) a{
	padding: 10px 10px;
    background: #1563a2;
    color: #fff;
    border-radius: 5px;
    position: relative;
    margin-top: -10px;
}

nav > ul > li:nth-child(9) a:before {
    content: "";
    display: inline-block;
    width: 23px;  /* 画像サイズ */
    height: 23px;
    margin-right: 3px;
    background-image: url("images/only.png"); /* 画像パス */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

nav ul ul{
	display:none;
	position:absolute;
	z-index:100;
	background-color:#333;
	color:#fff;
	min-width: 150px;
}

nav ul ul li a{
	color:#fff;
    padding: 10px;
}

nav ul ul li:last-child a{
	border:none;
}

nav ul li a:hover,
nav ul li.active a{
	background-color:#daf835;
	color:	#000;
	text-decoration:none;
    border-radius: 25px;
}

nav > ul > li:nth-child(9) a:hover {
    background: #1563a2;
    color: #ccc;
    border-radius: 5px;
}

nav ul ul li a:hover,
nav ul ul li.active a{
	border-radius: 0;
}

/***************************************************************
5 toppage section
***************************************************************/

section#eyecatch{
    margin-top: -118px;
}

section#eyecatch .wrapper{
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    
}

section#eyecatch .wrapper img{
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: bottom;
}

section#eyecatch .text{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-580px);
    display: block;
    width: 1200px;
}

section#eyecatch .text p{
    font-size: 62px;
    font-weight: bold;
    color: #1563a2;
    text-shadow:
        2px 2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        -2px -2px 0 #fff,
        0px 2px 0 #fff,
        0px -2px 0 #fff,
        2px 0px 0 #fff,
        -2px 0px 0 #fff;
}

section#eyecatch .text p.hero-copy{
    display: inline-block;
    white-space: nowrap;
}


section#eyecatch .text p.sub{
    font-size: 26px;
    margin-top: -10px;
}


section#event{
    background: url("images/bg_event.jpg");
background-position: top center;
background-size: cover;
    padding: 50px 0 30px;
    margin-top: -30px;
}

section#event h2{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
}

section#event h2 span{
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
    color: #686868;
}

section#event .col-md-4 a{
    color: #000;
}
section#event .col-md-4 a:hover{
    text-decoration: none;
}

section#event .box{
    position: relative;
}

section#event .box p{
    margin: 0;
}

section#event .box:after{
    content: "\f061";
    color: #36d0ea;
    border: 1px solid #36d0ea;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom:0;
}

section#event .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 2行まで */
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 54px;
    line-height: 140%;
}

section#event .title p{
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

section#event dl {
    display: flex;
    align-items: center;
    gap: 15px;
}

section#event dt {
    color: #1563a2;
    padding: 0px 10px;
    background: #e5e5e5;
    border: 1px solid #1563a2;
}

section#event dd {
    margin: 0;
}

section#event .category1 {
    background: #1563a2;
    color: #fff;
    padding: 1px 15px;
    border-radius: 25px;
    text-align: center;
    min-width: 150px;
    display: inline-block;
    line-height: 130%;
}
section#event .category2 {
    background: #1590a2;
    color: #fff;
    padding: 1px 15px;
    border-radius: 25px;
    text-align: center;
    min-width: 150px;
    display: inline-block;
    line-height: 130%;
}

section#event .btn-info{
    background: #595959;
    color: #fff;
    padding: 1px 80px;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-top: 25px;
    position: relative;
}
section#event .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}

section#bnr{
    padding: 20px 0;
}

section#bnr .contents{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contents > div {
    flex: 0 0 auto; /* サイズを中身（画像）に任せる */
}

.contents img {
    height: 80px;   /* 高さを揃える */
    width: auto;
    display: block;
}

section#news{
    padding: 40px 0 100px;
    background: #c8eafb;
}

section#news h2{
    writing-mode: vertical-rl; 
    font-size: 50px;
    font-weight: bold;
}

section#news h2 span{
    font-size: 20px;
    color: #686868;
    margin-top: 20px;
    display: inline-block;
    transform: translateX(-10px);
}

section#news ul{
    margin-top: 20px;
}

section#news ul li{
    padding: 10px;
    background: #fff;
    border-radius: 3px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

section#news ul li a{
    color: #1563a2;
}

section#news .btn-info{
    background: #595959;
    color: #fff;
    padding: 3px 40px;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-top: 25px;
    position: relative;
}
section#news .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}

section#apply{
    background: url("images/apply.png");
background-position: top center;
background-size: cover;
    padding: 80px 0 50px;
    color: #fff;
    margin-top: -60px;
}

section#apply h2{
    font-size: 24px;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, #6eb4ee, #496df1);
    margin: 30px 0;
}

section#apply .sub_title{
    font-weight: bold;
    font-size: 18px;
}

section#apply p.title{
    font-weight: bold;
    font-size: 35px;
    padding: 10px;
    letter-spacing: 2px;
}

section#apply p.title span{
    font-size: 16px;
    margin-left: 50px;
}

section#apply .nano img{
    width: 100%;
    height: 310px;
    object-fit: cover;
}

section#apply .nano{
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(8, 30, 74, 0.18);
}

section#apply .belong{
    padding: 5px 10px;
    color: #fff;
    background: #105da1;
    border-radius: 3px;
    border: 2px solid #fff;
    box-shadow: inset 0 0 0 5px #012ba4;
}

section#apply .nano p{
    margin: 0;
}

section#apply .nano p.title{
    font-size: 24px;
    padding: 14px 18px 6px;
    letter-spacing: 1px;
}

section#apply .nanoart-slide-credit{
    padding: 0 18px 18px;
    color: #fff;
    line-height: 1.6;
}

section#apply .nanoart-slide-credit p{
    margin-bottom: 6px;
    font-size: 13px;
}

section#apply .nanoart-slide-credit .nanoart-slide-title{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}

section#apply .nanoart-slide-credit .nanoart-slide-award{
    display: inline-block;
    margin-top: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.35);
}

section#apply .btn-info{
    background: #fff;
    color: #000;
    padding: 3px 10px;
    width: 50%;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-top: 148px;
    position: relative;
}
section#apply .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
    color: #1563a2;
}

section#apply .slick-next {
    right: 5px;
    top:35%;
}
section#apply .slick-prev {
    left: 25px;
    top:35%;
    z-index: 999;
}

section#apply .btn-info2{
    background: #fff;
    color: #000;
    padding: 3px 10px;
    width: 55%;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-top: 15px;
    position: relative;
}
section#apply .btn-info2:after{
    content: "\f105";
    position: absolute;
    right: 10px;
    color: #1563a2;
}

/***************************************************************
6 footer
***************************************************************/

footer{
	background-color:#1563a2;
	color:#fff;
	padding:30px 0 70px;
}

footer .logo{
	width: 120px;
}

footer .name{
    font-size: 18px;
	font-weight: bold;
}

footer .copy{
    text-align: center;
    margin-top: 30px;
}

footer a{
	color:#fff;
}


/***************************************************************
7 breadcrumb
***************************************************************/
/* overwrite bootstrap */
.breadcrumb{
    background-color:transparent !important;
}


/***************************************************************
8 sidebar
***************************************************************/

div#sidebar{
	border:0;
	padding:0px;
	margin-bottom:20px;
    position: sticky;
    top: 130px;
}

div#sidebar h2{
	background-color:#595959;
	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 28px 10px 10px;
    position: relative;
    overflow-wrap: anywhere;
    word-break: break-word;
	border-bottom:1px dashed #595959;
	color:#666;
    
}

div#sidebar ul li a:hover{
	background-color:#f5f5f5;
	text-decoration:none;	
}

div#sidebar ul li a:after{
 	content: '\f0da';
    position: absolute;
    right: 5px;
}

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{
    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:#1563a3;
   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 20px;
	padding:12px 15px;
	border:0;
    color: #fff;
    background: #1563a3;
    position: relative;
}

div#main_content h2:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: '';
  border: 1px dotted #fff;
    pointer-events: none;
}

div#main_content h2:nth-child(n+2){
    margin-top: 50px;
}

div#main_content h3{
	background-color:#fff;
	font-size:20px;
	padding:10px 10px;
	margin:30px 0px 20px;
    border-bottom: 2px dotted #1563a3;
    color: #1563a3;
    font-weight: bold;
}

div#main_content h4{
	border-left:7px solid #1563a3;
	padding:5px 10px;
	margin:30px 0px 20px;
	font-size:18px;
    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{
    width: 100%;
    border: 1px solid #ccc;
    margin: 20px 0;
}

div#main_content table tr{
    border-bottom: 1px dashed #ccc;
}

div#main_content table tr td{
	padding:10px 15px;
    font-size: 16px;
}

div#main_content table tr th{
    font-weight: bold;
	padding:10px 15px;
    font-size: 16px;
    background: #f2f4f8;
}

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 ul.news li{
 	padding: 15px 0;
    border-bottom: 1px dashed #999;
}

div#main_content ul.news li:before{
 	content: none;
}

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 .person{
	padding: 10px 0 20px 20px;
    float: right;
    width: 25%;
    text-align: center;
}

div#main_content ul.list{
 	margin: 10px 10px;
}
div#main_content ul.list li:before{
 	content: '■';
    color: #6eb4ef;
}

div#main_content .contents{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

div#main_content .nano img{
    
}

div#main_content .belong{
    padding: 5px 10px;
    color: #fff;
    background: #105da1;
    border-radius: 3px;
    border: 2px solid #fff;
    box-shadow: inset 0 0 0 5px #012ba4;
    margin-top: 10px;
}

div#main_content .nano p{
    margin: 0;
}


div#main_content .nanoart-credit{
    margin-bottom: 25px;
    padding: 12px 8px 0;
}

div#main_content .nanoart-credit p{
    margin-bottom: 6px;
    line-height: 1.7;
}

div#main_content .nanoart-credit .nanoart-title{
    font-weight: bold;
    font-size: 18px;
}

.members_bt {
  display: flex;
  flex-direction: column;  /* 縦並び */
  align-items: center;     /* センタリング */
  gap: 20px;               /* ボタン間の余白 */
  margin-top: 20px;
background: #f5f5f5;
    padding: 25px 5px;
}

.members_bt .btn {
  display: flex;
  align-items: center; 
  justify-content: center;
  flex-direction: row;     /* アイコンを文字の左に */
  width: 330px;            
  padding: 16px 24px;
  background-color: #1563a2;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: left;
}

.members_bt .btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}

.members_bt .btn .icon {
  margin-right: 5px;      /* アイコンと文字の間 */
  font-size: 20px;
}

.members_bt .btn .subtext {
  display: block;
  font-size: 14px;         /* 補足文字は小さく */
  font-weight: normal;
  margin-top: 4px;
  color: #f0f0f0;
}

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#lang_area{
	display: none;
}

    header #logo_area {
	padding: 5px 5px;
}
    
header #logo_area img {
	width: 40%;
}
    
    .sub_head{
    height: 80px;
    margin-top: 0px;
}
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
	
    #nav_area{
    border-radius: 0px;
    padding: 0 0 0 0;
        position: relative;
}
   
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:9999;
		position:absolute;
        top: 0;
        left: 0;
        padding-top: 0px;
	}
	
	nav ul{
		width:100%;	
		height: auto;
	}

	nav ul li{
		float:left;
        width:100%;
	}
    
    nav > ul > li{
        border-bottom:1px dashed #fff;
        padding: 0 0;
    }
    
    nav ul ul{
        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: #1563a2;
        color: #fff;
    }
    
    nav ul ul li a{
    padding: 5px 25px;
        background: #1563a2;
}
    
    nav > ul > li:nth-child(9) a{
	padding: 10px 15px;
    border-radius: 0px;
    margin-top: 0px;
}
    
    nav ul li a:hover,
nav ul li.active a{
    border-radius: 0px;
}

nav > ul > li:nth-child(9) a:hover {
    color: #ccc;
    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;
	}
	
	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;	
	}
    
    section#eyecatch{
    margin-top: 0px;
}

section#eyecatch .wrapper{
    overflow: visible;
    height: auto;
}

section#eyecatch .wrapper img{
    width: 100%;
    height: auto;
}

section#eyecatch .text{
    position: absolute;
    left: 1%;
    bottom: -15%;
    transform: translateX(0px);
    width: 98%;
}

section#eyecatch .text p{
    font-size: 20px;
    margin-bottom: 0;
}

section#eyecatch .text p.hero-copy{
    white-space: normal;
}


section#eyecatch .text p.sub{
    font-size: 16px;
    margin-top: 0px;
    line-height: 130%;
}

    section#event{
    padding: 50px 10px 30px;
    margin-top: 0px;
}

section#event h2{
    font-size: 26px;
}

section#event h2 span{
    font-size: 16px;
}

section#event .box{
    margin-bottom: 20px;
}

section#event .title{
    overflow: visible;
    min-height: auto;
}

section#event .btn-info{
    margin-top: 20px;
}

section#bnr .contents{
    gap: 10px;
    flex-wrap: wrap;
}

.contents img {
    height: 50px;
}

    section#news{
    padding: 30px 10px 30px;
}

section#news h2{
    writing-mode: horizontal-tb;
    font-size: 28px;
}

section#news h2 span{
    font-size: 16px;
    margin-top: 0px;
    transform: translateX(10px);
}

section#news ul{
    margin-top: 20px;
    padding: 0;
}

section#news ul li{
    padding: 10px 0px;
}

section#news ul li a{
    color: #1563a2;
}

section#news .btn-info{
    margin-top: 20px;
}

    section#apply{
    padding: 80px 0 30px;
    margin-top: -70px;
}

section#apply h2{
    font-size: 20px;
    padding: 10px;
    margin: 20px 0;
}

section#apply p.title{
    font-size: 28px;
    padding: 10px 5px;
    letter-spacing: 0px;
}

section#apply p.title span{
    margin-left: 30px;
}

section#apply .nano img{
    width: 100%;
    height: auto;
    margin-top: 0;
}

section#apply .nano p.title{
    font-size: 22px;
    padding: 12px 14px 4px;
}

section#apply .nanoart-slide-credit{
    padding: 0 14px 16px;
}

section#apply .nanoart-slide-credit p{
    font-size: 12px;
}

section#apply .nanoart-slide-credit .nanoart-slide-title{
    font-size: 14px;
}

section#apply .btn-info{
    width: 70%;
    margin-top: 10px;
}

section#apply .btn-info2{
    width: 70%;
}
    
    div#main_content .person{
	padding: 10px;
    float: none;
    width: 50%;
}

	div#sp_menu{
		position:fixed;
		right:20px;
		top:15px;
		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;
	}
    
footer .logo{
	width: 100px;
}
   
    footer p{
    line-height: 140%;
}

footer .copy{
    margin-top: 20px;
}
	

}



/********************************************************************
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;
  }	
	
}

.legacy-content {
    line-height: 1.9;
}

.legacy-content .h3_block {
    margin-bottom: 2.5rem;
}

.legacy-content .inner_block {
    margin-top: 1rem;
}

.legacy-content h2,
.legacy-content h3 {
    scroll-margin-top: 100px;
}

.legacy-content ul,
.legacy-content ol {
    padding-left: 1.5rem;
}

.legacy-content dl dt {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legacy-content dl dd {
    margin-bottom: 1rem;
}

.legacy-content table {
    width: 100%;
}

.legacy-content th,
.legacy-content td {
    vertical-align: top;
}

.legacy-content img {
    max-width: 100%;
    height: auto;
}

.legacy-content .news_ul {
    list-style: none;
    padding-left: 0;
}

.legacy-content .news_ul li {
    border-bottom: 1px solid #d7dde5;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}
