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

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

/* CSS Document */

/**

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

7. breadcrumb
8. sidebar
9. main_content

20. PC
30. SP

35. admin


40. print

main colors: 

#2c75db    theme color
#e6f7ff    theme light color


**/

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


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

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

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

.left,
.left_column{
	float:left;	
}

.right,
.right_column{
	float:right;	
}

.current{
	background-color:#dedede;	
}

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

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

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

ul{
	padding-left:0px;
}

ol{
	padding-left:15px;
}

ul li{
	list-style:none;
	
}

p{
	padding:4px;	
}

.full{
	width:100%;
}

a:focus{
	color:#aaa;	
}

a.more{
	float:right;
}

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

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

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

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

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

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

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

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

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

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

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

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

.label{
	padding:4px;
	background-color:#ccc;
    border-radius: 0px;
}

.label.news{
	background-color:#009e96;
}

.label.press{
    background-color:#00479d;
}

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

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

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

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


/* font awesome */

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

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

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

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

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

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

div#main_content .category:before{
    content: "\f02b";
}


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

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


/* slick */


.slick-prev{
    left:10px;
    width:30px;
    z-index: 1;
}

.slick-next{
    right:10px;
    width:30px;
    z-index: 1;
}

.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;
}

#sub header{
}

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

header div#logo_area p{
	padding:0px;
    margin: 0;
}

header h1{
	display:none;	
}

header div#menu_area{
	padding:10px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header div#menu_area ul li{
	float: right;
}

header div#menu_area ul li img{
	width: 60px;
}

#home header{
}

#sub header{
}

.sub_head{
    height: 600px;
    overflow: hidden;
    margin-top: -96px;
    position: relative;
}
.sub_head .wrapper{
    margin:0px auto;
    width: 1300px;
    position: relative;
}

.sub_head img{
    height:600px;
    object-fit: cover;
}

.sub_head h1{
    position: absolute;
    bottom: 6%;
    left: 5%;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
    font-size: 34px;
}

.sub_head h1 span{
    font-size: 26px;
}

.sub_head2{
    background: url("images/sub_head2.jpg");
background-position: top center;
background-size: cover;
    height: 150px;
    margin-top: -96px;
}

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

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

/*search_form*/
#search_form{
    padding-right: 20px;
    display: flex;
}

/* テキスト入力欄 */
#search_form input[type="text"] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: #ccc solid 1px;
    outline: none;
    height: 40px;
}

/* 検索ボタン */
#search_form button {
    background-color: #000;
    color: #fff;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    height: 40px;
}

/* ホバー時のカラー変化 */
#search_form button:hover {
    opacity: 0.8;
}

/* アイコンのスタイル（Font Awesome） */
#search_form i {
    font-size: 16px;
}

nav #search_form{
    display: none;
}

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


nav{
	margin:0px;
    position: absolute;
    top: 80px;
    left:0;
    width: 100%;
    z-index: 9999;
    display: none;
    background: rgba(255,237,8,0.9);
    padding :50px 0 150px 120px;
}

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

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

nav > ul > li,
nav > div > ul > li{
	float: left;
}

nav ul li:nth-child(6) {
  clear: both;
}

nav ul li a{
	margin:0px 0px;
	display:inline-block;
	padding:30px 10px 5px;
    width: 220px;
	color:#000;
	font-size:16px;
	vertical-align:middle;
    font-weight: bold;
}

nav > ul > li > a{
	
}

nav ul ul{
    clear: both;
}

nav ul ul li{
}

nav ul ul li a{
	text-align: left;
    padding: 3px 0 3px 15px;
    display: block;
    font-weight: normal;
}


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

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

nav ul li:last-child a{
	
}

nav ul li a:hover,
nav ul li.current-menu-item a{
	color:#2c75db;
	text-decoration:none;
}


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



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


section#eyecatch{
    margin-top: -100px;
}

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

section#eyecatch a{
	color: #fff;
}

section#eyecatch .wrapper{
	width: 100%;
    height: 728px;
    /*overflow: hidden;*/
    position: relative;
}

section#eyecatch .text{
   position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
section#eyecatch .wrapper img{
   height: 728px;
    object-fit: cover;
}

section#topics{
    background: rgba(89,89,89,0.8);
    position: relative;
    z-index: 9;
    height: 92px;
     margin-top: -92px;
}

section#eyecatch .update{
    width: 100%;
    background: rgba(89,89,89,0.8);
    padding: 15px 10px;
    color: #fff;
    position: absolute;
  bottom: 0;
}


section#eyecatch .update table{
    width: 1200px;
    margin-left: 100px;
}

@media screen and (max-width: 1200px) {
      section#eyecatch .update table{
        margin-left: 0;
        width: 100%;
    }
}

section#eyecatch .update table td:first-child{
    width: 80%;
}

section#eyecatch .update p{
    margin-bottom: 0;
}

section#eyecatch .update p.title{
    font-size: 18px;
    line-height: 160%;
    margin-left: 30px;
}

section#eyecatch .update p.title span{
    font-size: 26px;
}

section#eyecatch .update p.day{
    font-size: 22px;
    font-weight: bold;
    text-align: right;
}

section#eyecatch .update .place{
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 1px 30px;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
}

section#eyecatch ul.slick li{
    position: relative;
}

section#eyecatch .eyecatch_icon{
    position: absolute;
    top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%; /* 必要なら調整 */
      height: 100%;
      background-color: rgba(0, 0, 0, 0.2); /* 半透明フィルター（任意） */
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none; /* ホバー干渉を避けたい場合 */
}

section#eyecatch .eyecatch_icon img{
    width: 25%;
    height: auto;
}


section#event{ 
    padding: 60px 0 20px;
}

section#event h2{ 
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

section#event .col-md-4 a{ 
    color: #000;
    text-decoration: none;
}

section#event .thumbnail{ 
    height: 217px;
    overflow: hidden;
}

section#event .thumbnail img{ 
    height: 217px;
    width: 100%;
    object-fit: cover;
}

section#event .city{ 
    padding: 0px 30px;
    border-radius: 25px;
    border: 1px solid #d6d6d6;
    display: inline-block;
    float: right;
}

section#event table{
    width: 100%;
}

section#event td{ 
    padding: 5px;
    font-size: 16px;
    width: 50%;
}

section#event td.title{ 
    font-size: 18px;
    font-weight: bold;
}

section#event .locate:before{ 
    content: "\f3c5";
}

section#event .btn-info{ 
    color: #000;
    background: transparent;
    padding: 5px 15px;
    border-bottom: 2px solid #d9d9d9;
    display: inline-block;
    margin-top: 15px;
}

/* イベントサムネイルの上にアイコンを配置　*/
.thumbnail,
.thumbnail2{
    position: relative;
}

.category-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img{
    width: auto!important;
    height: auto!important;
    max-height: 80%;
    max-width: 80%;
}

.sub_head .category-icon{
    background-color: transparent;
}

.sub_head .category-icon img{
    width: auto!important;
    height: auto!important;
    max-height: 30%;
    max-width: 80%;
}

section#calender{ 
    padding: 30px 0 30px;
    background: #e5e5e5;
}

section#calender h2{ 
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

section#calender .btn-info{ 
   color: #000;
    background: transparent;
    display: inline-block;
    margin-top: 30px;
    margin-right: 50px;
    position: relative;
    
}
section#calender .btn-info:hover{ 
   text-decoration: none;
    opacity: 0.8;
}
section#calender .btn-info:after{ 
   content: "\f061";
    display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  text-align:center;
  line-height: 40px;
    color: #fff;
    font-size: 20px;
    padding-right: 5px;
    position: absolute;
    right: -50px;
    top: -10px;
}

section#calender table tr td{ 
   border: 0;
    background: transparent;
}

section#calender table.schedule{ 
   width: 100%;
}

section#calender table.schedule tr td{ 
   border-bottom: 2px solid #000;
    padding: 5px 10px;
}

section#calender table.schedule tr td:first-child{ 
   width: 22%;
    border-right: 1px solid #000;
}

section#calender table.schedule span{ 
   text-align: center;
    color: #fff;
    border-radius: 20px;
    display: block;
    padding: 0px 2px;
}

section#calender table.schedule a{ 
    color: inherit;
}

section#calender .roll{ 
   overflow-y: scroll;
    padding: 10px;
    height: 650px;
}

.tokyo{ 
   background: #e71d03;
}
.kanagawa{ 
   background: #0fa5a6;
}
.saitama{ 
   background: #3fc253;
}
.chiba{ 
   background: #316FCD;
}
.ibaraki{ 
   background: #A28EBF;
}
.tochigi{ 
   background: #A9E081;
}
.gunma{ 
   background: #2e80ef;
}
.yamanashi{ 
   background: #a00ccb
}
.other{ 
   background: #B5B5B5
}

/* カレンダーカスタマイズ*/

.fc-center h2{
    font-size: 24px !important;
}

.fc-title{
    display: none !important;
}

.eo-fullcalendar .fc-event
 {
    padding: 2px !important;
}

section#calender button{
    border-radius: 20px;
    border: 1px solid #000;
}
.fc-state-default{
    background: #fff !important;
    padding: 0px 25px !important;
}

.fc-icon {
    font-size: 16px !important;
    line-height: .5em;
    height: .5em;
}

.fc-time{
    display: none !important;
}

.eo-fullcalendar .fc-view>table>thead {
    background: transparent !important;
    border-bottom: 2px solid #000;
}

.eo-fullcalendar .fc-view table th {
    padding-bottom: 5px !important;
}
.eo-fullcalendar .fc-view table td {
    background: #e5e5e5 !important;
}

.eo-fullcalendar .fc-event {
  cursor: pointer;
}

th.fc-sat{
    color: #5a75d4 !important;
}
th.fc-sun{
    color: #b73030 !important;
}

@media print, (max-width: 601px) {
  .fc-left {
    float: left !important;
      display: inline-block !important;
  }
    
    .fc-right {
    float: right !important;
  }
}


/* カレンダーカスタマイズ*/


section#report{ 
    padding: 30px 0 50px;
    background: #ffed08;
}

section#report h2{ 
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

section#report .col-md-4{ 
    margin-bottom: 20px;
}

section#report .col-md-4 a{ 
    color: #000;
    text-decoration: none;
}

section#report .thumbnail{ 
    height: 202px;
    overflow: hidden;
}

section#report .tile{ 
    background: #fff;
    height: 100%;
    position: relative;
    
}

section#report .article{ 
   padding: 10px;
    margin-bottom: 10px;
}

section#report .article p{ 
   font-size: 18px;
    font-weight: bold;
}

section#report p.date{ 
   position: absolute;
    right: 10px;
    bottom: 5px;
    color: #a3a3a3;
    margin: 0;
}

section#report p.date:before{ 
   content: none;
}

section#report .btn-info{ 
    color: #000;
    background: transparent;
    padding: 5px 15px;
    border-bottom: 2px solid #000;
    display: inline-block;
    margin-top: 15px;
}

section#research{ 
    padding: 40px 0 20px;
}

section#research h2{ 
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

section#research .col-md-4{ 
    margin-bottom: 20px;
}

section#research .col-md-4 a{ 
    color: #000;
    text-decoration: none;
}

section#research .thumbnail{ 
    height: 202px;
    overflow: hidden;
}

section#research .tile{ 
    background: #fff;
    height: 100%;
    position: relative;
    
}

section#research .article{ 
   padding: 10px;
    margin-bottom: 10px;
}

section#research .article p{ 
   font-size: 18px;
    font-weight: bold;
}

section#research p.date{ 
   position: absolute;
    right: 10px;
    bottom: 5px;
    color: #a3a3a3;
    margin: 0;
}

section#research p.date:before{ 
   content: none;
}

section#research .btn-info{ 
    color: #000;
    background: transparent;
    padding: 5px 15px;
    border-bottom: 2px solid #d9d9d9;
    display: inline-block;
    margin-top: 15px;
}


section#newsletter{ 
    /*padding: 40px 0 20px;*/
    padding: 20px 0 60px;
}

section#newsletter a{ 
    color: #000;
}

section#newsletter h2{ 
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

section#newsletter p.content{ 
    margin-top: 60px;
}

section#newsletter .box{ 
    background: #ffed08;
    padding: 40px 15px 50px;
    margin-top: -40px;
    position: relative;
    z-index: -99;
}


section#newsletter span.more{ 
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px 15px;
    background: #f5f5f5;
}

section#newsletter .box p{ 
    margin-bottom: 0;
}

section#newsletter p.name{ 
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

section#newsletter p.name span{ 
    font-size: 20px;
    font-weight: normal;
    line-height: 190%
}

section#newsletter .number{ 
    display: inline-block;
    border-bottom: 3px solid #000;
    padding: 0;
    margin-left: 10px;
    margin-bottom: 5px;
}
section#newsletter .number span{ 
     font-size: 55px;
    font-weight: bold;
    margin-left: 5px;
}

section#newsletter p.title{ 
    font-size: 25px;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 5px;
}

section#newsletter .btn-info{ 
   color: #000;
    background: transparent;
    display: inline-block;
    /*margin-top: 100px;*/
}
section#newsletter .btn-info:hover{ 
   text-decoration: none;
    opacity: 0.8;
}
section#newsletter .btn-info:after{ 
   content: "\f061";
    display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  text-align:center;
  line-height: 40px;
    margin-left: 10px;
    color: #fff;
    font-size: 20px;
    padding-right: 5px;
}

section#newsletter .col-md-7 a{ 
   color: #000;
}
section#newsletter .col-md-7 a:hover{ 
   text-decoration: none;
    opacity: 0.8;
}


section#seminar{ 
    padding: 30px 0;
    background: #e5e5e5;
}

section#seminar h2{
    background: #000;
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 10px;
    margin-top: 50px;  
}

section#seminar .seminar_date{
    background: url("images/fukidasi.png");
background-position: top center;
background-size: 350px;
    background-repeat: no-repeat;
    padding: 15px 0 5px;
    text-align: center;
    width: 350px;
    height: 80px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
section#seminar .seminar_date:after{
    content: "\f061";
    display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  text-align:center;
  line-height: 40px;
    color: #fff;
    font-size: 20px;
    padding-right: 5px;
    position: absolute;
    right: -50px;
    top: 5px;
}

section#seminar .space{ 
    margin-top: -100px;
}

section#seminar .col-md-7 a{ 
    color: #000;
}
section#seminar .col-md-7 a:hover{ 
    text-decoration: none;
    opacity: 0.8;
}

/* autoHeight.jquery */

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

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

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

footer{
	background-color:#4c4c4c;
	color:#fff;
	padding:30px 0 80px;
}

footer p{
	margin-bottom: 0;
    font-weight: bold;
}

footer ul{
	margin-left: 15px;
}

footer a{
	color:#fff;
}

footer a:hover{
	color:#fff;
}

footer p.copy{
    font-weight: normal;
    text-align: right;
    margin-top: 50px;
}

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

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

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

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

div#sidebar{
	border:0;
	padding:0;
	margin-bottom:20px;
    position: sticky;
    top:100px;
    background-color:#f1f1f1;
}


div#sidebar h2{
    background-color:#ffec09;
	color:#000;
	font-size:18px;
	margin:0px;
	padding:15px 10px;	
    margin-top: 20px;
}

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

div#sidebar p{
	color:#000;
    padding:15px 10px;
}

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

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

div#sidebar ul li a{
	display:block;
	min-height:40px;	
	padding:10px;
	border-bottom:0;
	color:#000;
    background-color:#f1f1f1;
}

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

div#sidebar ul li a:before{
 	content: '\f105';
}


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

div#sidebar .apply{
	text-align: center;
    padding: 30px 0;
    background: #000;
    color: #fff;
    display: block;
    position: relative;
    margin: 10px 0;
}
div#sidebar .apply:after{
    content: "\f061";
    display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffed08;
  text-align:center;
  line-height: 30px;
    color: #000;
    font-size: 20px;
    padding-right: 5px;
    position: absolute;
    right: 10px;
}

div#sidebar dl{
    display: flex;
  flex-wrap: wrap;
  width: 100%;
    padding: 10px;
}

div#sidebar dt{
    width: 30%;
}
div#sidebar dd{
    width: 70%;
}


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


img#sub_eyecatch{
    filter: brightness(90%);
}

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

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

div#main_content h1:before{
    content:"";
   display:inline-block;
   width:5px;
   height:38px;
   background-color:#4c4c4c;
   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 0px;
	border:0;
    font-weight: bold;
   position: relative;
}

div#main_content h2:before{
  content: "";
  width:35px;
    height: 5px;
    background: #000;
    position: absolute;
    top:-10px;
    left: 0;
}

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

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

div#main_content h4{
	border-left:6px solid #ccc;
	padding:6px 10px;
	margin:30px 0px 20px;
	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{
	margin-bottom:15px;
}

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

div#main_content table tr th{
	background-color:#84A3B1;
	color:#fff;
	padding:10px 15px;	
	border-bottom:1px solid #fff;
}

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

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

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

div#main_content ul.list li,
div#main_content ol.list li{
    padding:10px 0;
}

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


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

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

body.search div#main_content .clearfix{
	margin-bottom: 0;
}

body.search div#main_content .date{
	text-align: right;
}

.dummy-category-space {
  visibility: hidden;
  height: 0px; 
}


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


div#main_content table.responsive{
	
}

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

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



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

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

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


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

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

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

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

div#main_content .news_pic{
	margin-bottom:50px;
}

div#main_content .border-box{
	padding: 15px;
    border: 2px solid #b3b3b3;
    width: 100%;
    margin-bottom: 20px;
}

div#main_content dl{
    display: flex;
  flex-wrap: wrap;
  width: 100%;
    margin-bottom: 0;
}

div#main_content dt{
    width: 25%;
}
div#main_content dd{
    width: 75%;
}

div#main_content table.program tr{
    background: #e5e5e5;
}

div#main_content table.program td{
    border: 0;
}

div#main_content table.program tr:nth-child(2n)
{
	background-color:#f1f1f1;
}

div#main_content table.rules{
    width: 100%;
}

div#main_content table.rules tr{
    border-bottom: 1px solid #ccc;
    vertical-align: top;
}

div#main_content table.rules tr th{
    background-color: transparent;
    color: inherit;
    border-bottom: none;
}

div#main_content table.rules tr th:first-child{
    width: 20%;
}

.setumei{
    font-weight: normal;
}

div#main_content table.event{
    margin-top: 15px;
    width: 100%;
}

div#main_content table.event tr th{
    background-color: rgba(89,89,89,0.8);
    text-align: center;
}

div#main_content table.event tr td{
   border: 1px #ccc solid;
}

body.archive div#main_content .col-md-4 a{ 
    color: #000;
    text-decoration: none;
}

body.archive div#main_content .thumbnail{ 
    height: 217px;
    overflow: hidden;
}

body.archive div#main_content .thumbnail img{ 
    height: 217px;
    width: 100%;
    object-fit: cover;
}

body.archive div#main_content .city{ 
    padding: 0px 30px;
    border-radius: 25px;
    border: 1px solid #d6d6d6;
    display: inline-block;
    float: right;
}

body.archive div#main_content table{
    width: 100%;
}

body.archive div#main_content td{ 
    padding: 5px;
    font-size: 16px;
    width: 50%;
}

body.archive div#main_content td.title{ 
    font-size: 18px;
    font-weight: bold;
}

body.archive div#main_content .locate:before{ 
    content: "\f3c5";
}

body.archive div#main_content .thumbnail2{ 
    height: 202px;
    overflow: hidden;
}

body.archive div#main_content .tile{ 
    background: #fff;
    height: 100%;
    position: relative;
    
}

body.archive div#main_content .article{ 
   padding: 10px;
    margin-bottom: 10px;
}

body.archive div#main_content .article p{ 
   font-size: 18px;
    font-weight: bold;
}

body.archive div#main_content p.date{ 
   position: absolute;
    right: 10px;
    bottom: 5px;
    color: #a3a3a3;
    margin: 0;
}

body.archive div#main_content p.date:before{ 
   content: none;
}

div#main_content .intro a{
    text-align: center;
    background:  #ffec09;
    padding: 10px 15px;
    margin: 10px 0px;
    color: inherit;
    display: block;
}

div#main_content .container{
    width: 600px;
    display: block;
}


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

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


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

@media (max-width: 767px) {
	
	.pc_none{
	}
	
	.sp_none{
		display:none;
	}
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
	
    header{
        background: #fff;
    }
    
	header div#menu_area{
	display: none;
}
	
	header div#logo_area{
		padding:5px 10px;
	}
	
	header div#logo_area img{
		width:80%;
	}
    
    img#sub_eyecatch{
        position:relative;
    }	
    
    .sub_head{
    height: 300px;
    margin-top: -65px;
}
.sub_head .wrapper{
    width: 100%;
}

.sub_head img{
    height:300px;
}

.sub_head h1{
    text-shadow: 1px 1px 3px #000;
    font-size: 22px;
}

.sub_head h1 span{
    font-size: 16px;
}
    
    .sub_head2{
    height: 60px;
    margin-top: 0;
}
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute !important;
		background-color:transparent;
		padding-left:0px !important;
		padding-right:0px !important;
		border-top: 1px solid #2c75db;
		top:7vh;
        padding :0px 0 0px 0px;
        bottom:0;
        height: 93vh !important;
        position: fixed!important;
        overflow-y: scroll;
	}

nav ul li:nth-child(6) {
  clear: both;
}
	
	nav ul{
		width:100%;	
		height:auto;
	}

	nav ul li{
		width:100%;	
        min-height: 30px;
        height:auto;
        border-top:1px solid #fff;
	}
	
	nav > ul > li, nav > div > ul > li{
		float:none; 
	}	
	
	nav ul ul{
        display: block;
        background-color:transparent;
        position: relative;
	}
    
    nav ul ul li{
        display:block;
        border-top:1px dashed #fff;
    }
    
    nav ul li a{
        display:block;
        color:#000;
        text-align: left;
		margin:0px; 
        padding:10px 15px 10px;
        width: 100%;
        background: #ffed08;
    }
    
    
    nav > ul > li > a:before{
        content:"";
    }
    
    nav ul ul li a{
        padding-left:40px;
    }
	
    nav > ul li.menu-item-has-children > a:after{
        float:none;
    }

    nav > ul > li > ul > li.menu-item-has-children > a:after{
        float:none;
    }
    
    #search_form{
        background: #ffed08;
        padding: 10px 15px 10px;
        width: 100%;
    }
    
    nav #search_form{
        display: flex;
    }
	
	.wrapper{
		width:100% !important;	
		min-width:100% !important;
	}
    
    section#eyecatch{
    margin-top: 0px;
}


section#eyecatch .wrapper{
	width: 100%;
    height: auto;
}

section#eyecatch .text{
   position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
section#eyecatch .text img{
   width: 200px;
}
    
    
section#eyecatch .wrapper img{
    width: 100%;
   height: auto;
    aspect-ratio:2/1;
}
section#eyecatch .eyecatch_icon img{
    width: 25%;
    aspect-ratio:auto;
}


section#eyecatch .update{
    padding: 5px 5px;
    position: relative;
}


section#eyecatch .update table{
    width: 100% !important;
    margin-left: 0px;
}
    
    section#eyecatch .update table td:first-child{
    width: 70%;
}

section#eyecatch .update p{
    margin-bottom: 0;
}

section#eyecatch .update p.title{
    font-size: 8px;
    margin-left: 0px;
}

section#eyecatch .update p.title span{
    font-size: 8.3px;
}

section#eyecatch .update p.day{
    font-size: 8px;
    line-height: 100%;
}

section#eyecatch .update .place{
    padding: 1px 5px;
    font-size: 10px;
    margin-top: 5px;
}
    
    section#topics{
     margin-top: -40px;
}

    
    section#event{ 
    padding: 20px 0 20px;
}

section#event h2{ 
    font-size: 22px;
    margin-bottom: 20px;
}

section#event .thumbnail{ 
    height: auto;
    overflow: hidden;
    aspect-ratio: 7 / 4;
}

    section#event .thumbnail img{ 
    height: 100%;
        
}
    
section#event .city,
body.archive div#main_content .city{ 
    padding: 0px 15px;
    border-radius: 25px;
    font-size: 8px;
}

section#event table,
body.archive div#main_content table{
    width: 100%;
}

section#event td,
body.archive div#main_content td{ 
    padding: 3px;
    font-size: 10px;
    width: 50%;
}

section#event td.title,
body.archive div#main_content td.title{ 
    font-size: 10px;
}

section#event .btn-info{ 
    margin-top: 5px;
}

    section#calender h2{ 
    font-size: 22px;
    margin-bottom: 25px;
}

section#report{ 
    padding: 20px 0 20px;
}

section#report h2,
section#research h2{ 
    font-size: 22px;
    margin-bottom: 25px;
}
    
    section#report .col-md-4{ 
    margin-bottom: 15px;
}

section#report .thumbnail,
section#research .thumbnail,
body.archive div#main_content .thumbnail{ 
    height: auto;
    overflow: hidden;
    aspect-ratio: 7 / 4;
}
    
section#report .thumbnail img,
section#research .thumbnail img,
body.archive div#main_content .thumbnail img{ 
    height: 100%;
    object-fit: cover;
}

section#report .article,
section#research .article,
body.archive div#main_content .article{ 
   padding: 5px 5px;
}

section#report .article p,
section#research .article p,
body.archive div#main_content .article p{ 
   font-size: 10px;
    line-height: 100%;
}

section#report p.date,
section#research p.date,
body.archive div#main_content p{ 
    font-size: 10px;
}

section#report .btn-info{ 
    margin-top: 5px;
}
    
    section#newsletter{ 
    padding: 20px 0 30px;
}

section#newsletter h2{ 
    font-size: 20px;
    margin-bottom: 20px;
}

section#newsletter p.content{ 
    margin-top: 10px;
}

section#newsletter .box{ 
    padding: 10px 15px;
    margin-top: -25px;
}

section#newsletter p.name{ 
    font-size: 22px;
    margin-bottom: 0px;
}
    
section#newsletter p.name span{ 
    font-size: 16px;
    line-height: inherit;
}

section#newsletter .number{ 
    display: inline-block;
    border-bottom: 3px solid #000;
    padding: 0;
    margin-left: 10px;
    margin-bottom: 5px;
}
section#newsletter .number span{ 
     font-size: 50px;
}

section#newsletter p.title{ 
    font-size: 16px;
    line-height: 120%;
}

section#newsletter .btn-info{ 
    margin-top: 0px;
}
	
    section#seminar{ 
    padding: 30px 0 10px;
}

section#seminar h2{
    margin-top: 0px; 
    font-size: 16px;
}

section#seminar .space{ 
    margin-top: 10px;
}
    
	section#seminar .seminar_date{
background-size: 300px;
    padding: 15px 0 5px;
    width: 300px;
    height: 80px;
    font-size: 16px;
}
section#seminar .seminar_date:after{
    display: none;
}
    
    section#seminar .row{ 
    flex-direction: column;
}
    
    .order1{
  order: 1;
}
.order2{
  order: 2;
}
	
	div#main_content{
		border:none;
		padding:0px;
	}
	
	div#content_area{
		padding:0px !important;
	}

    body.archive div#main_content .thumbnail2{ 
    height: auto;
}
    
    div#main_content table.rules tr th:first-child{
    width: 28%;
}
    
    div#main_content table.sp tr th:first-child{
    width: 100%;
}
    
    div#main_content .container{
    width: 100%;
}
	
	
	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;	
	}

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


	div#sidebar h2:before{
		
	}
	
	div#sidebar h2:after{
		content:"\f055";
        float:right;
	}
		
	
	div#sidebar ul{
		display:none;	
	}
	
	div#sidebar h2{
		cursor:pointer;	
	}
	
	div#sidebar h2 i{
		display:inherit;
	}
	
	
	table td, table th{
		padding:10px 5px;
		line-height: 140%;
	}
		
	table.sp tr,
	table.sp th,
	table.sp td{
		display:block;
	}
	
	

	/* stylesheet for large width table */
	table.widetable{
		border:none !important;
	}
	table.widetable tr{
		border:1px solid #ccc;
		margin-bottom:20px;
	}
	table.widetable td{
		border:none !important;
	}
	
	table.widetable th{
		display:none;
	}
	
	table.widetable tr, table.widetable td{
		display: list-item;
		background-color:transparent !important;
		list-style: none;
	}
	/* stylesheet for large width table */

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

    footer .col-md-3 {
	text-align: center;
}

    footer .col-md-3 img{
	width: 85%;
}
    
footer p.copy{
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
}

	
	
}


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



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


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


@media print {
	

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

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

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


