body {
    font-family: 'M PLUS 1p', sans-serif;
}
/* ==== ft対策 === */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    min-height: 100vh;
}
body > *{
    width: 100%;
}
#ft{
    margin-top: auto!important;
}

#wrap {
    width:100%;
}


header{

    z-index: 1000;
    width:100%;
}
#hd {
    width: 100%;
    max-width:960px;
    margin:0 auto;
    overflow:hidden;
    padding:10px 0;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;

}
#global_nav{
   width: 100%;
   z-index: 999999
}
#global_nav.fixed {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%
}

#hd h1 {
    font-size: 1.0rem;
    line-height: 1.2;
    color: #000;
    font-family: 'Kaisei Decol', sans-serif;
    }
#hd h1 span{
    font-size: 1.6rem;
    line-height: 1.2;
}

#hd h1.en {
    width:250px
}
#hd h1.en img {
    width:100%
}
#hd .language ul {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex
}
#hd .language ul li {
    margin-left:5px
}
#hd .language ul li a {
    display:block;
    color:#fff;
    background: #1F9985;
    padding:2px 15px;
    text-decoration:none;
    border: 1px solid #146557;
    -webkit-transition:All 0.5s ease;
    transition:All 0.5s ease;
    font-family: 'Kaisei Decol', sans-serif;
}
#hd .language ul li a:hover {
    border:1px solid #146557;
    background:#fff;
    color:#146557;
}

#nav_bg {
    background: -moz-linear-gradient(top,  #23AD95 0%, #1F9985 100%);
    background: -webkit-linear-gradient(top,  #23AD95 0%,#1F9985 100%);
    background: linear-gradient(to bottom,  #23AD95 0%,#1F9985 100%);
    width:100%;
    border-top: 1px solid #1F9985;
    border-bottom: 1px solid #1F9985;
}
#nav_bg .nav {
    width:100%;
    max-width:960px;
    margin:0 auto;
    overflow:visible;
}
#nav_bg .nav ul {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    z-index:1000;
}
#nav_bg .nav ul li {
    width:calc(100% / 6);
    position:relative;
    border-right:1px solid rgba(242, 242, 242, 0.3);
    border-left:1px solid rgba(242, 242, 242, 0.3);
}
#nav_bg .nav ul li a {
    display:block;
    font-weight:bold;
    color:#fff;
    text-align:center;
    text-decoration:none;
    padding:15px 0;
    -webkit-transition:All 0.5s ease;
    transition:All 0.5s ease;
    text-shadow: 1px 1px 1px #666;
    font-family: 'Kaisei Decol', sans-serif;
}
#nav_bg .nav ul li:first-child {
    border-left:1px solid rgba(242, 242, 242, 0.3);
}
#nav_bg .nav ul li:hover a {
    background:#fff;
    color: #1F9985;
    text-shadow: none;
}
#nav_bg .nav ul li.current-menu-item, #nav_bg .nav ul li.current-menu-parent {
    background:#fff
}
#nav_bg .nav ul li.current-menu-item a, #nav_bg .nav ul li.current-menu-parent a {
    color: #1F9985;
    text-shadow: none;
}
#nav_bg .nav ul ul {
    display:none;
    width:100%;
    position:absolute;
    top:100%;
    left:0
}
#nav_bg .nav ul ul li {
    width:100%;
    border:none !important
}
#nav_bg .nav ul ul li a {
    background:rgba(0, 0, 0, 0.7) !important;
    padding:10px;
    text-decoration:none;
    color:#fff !important;
    display:block;
    border:none;
    border-bottom:1px solid rgba(255, 255, 255, 0.4)
}
#nav_bg .nav ul ul li.current-menu-item {
    background:rgba(0, 0, 0, 0.5) !important
}
#nav_bg .nav ul ul li.current-menu-item a {
    color:#003166
}
#nav_bg .nav ul ul li ul {
    position:absolute;
    top:0px;
    left:100%
}
#nav_bg .nav ul ul li ul li {
    width:100%
}
#nav_bg .nav ul ul li ul li a {
    border-left:1px solid rgba(255, 255, 255, 0.4)
}
.menu-trigger {
    display:none
}
#con {
    width:100%;
    max-width:960px;
    margin: 20px auto 30px;
    /*overflow:hidden*/;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center/**/;
    min-height: calc(100vh - 200px);
}
#con.pg_con {
    max-width: 960px;
    margin: 30px auto 30px;
    justify-content: flex-start;
    align-items: flex-start;
}
#main {
        width: calc(100% - 240px);
        position: relative;
}
.pg_con #main:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    top: 0;
    left: -10px;
}
#main ol, #main ul {
    padding:5px 0px 5px 25px
}
#main ul {
    list-style-type:disc
}
#main ol li, #main ul li {
    padding:5px 0px
}
#main table {
    margin:10px 0px
}
#main table th, #main table td {
    padding:5px
}
#main img {
    max-width:100%;
    height:auto
}
#main a img {
    display:inline-block;
    -webkit-transition:All 0.5s ease;
    transition:All 0.5s ease
}
#main a img:hover {
    opacity:0.7
}
#main h1 {
    font-size:1.7em;
    font-weight:bold;
    line-height:1.4em;
    color:#fff;
    padding:0.7em;
    margin:0 0 25px 0;
    background: -moz-linear-gradient(top,  #23AD95 0%, #1F9985 100%);
    background: -webkit-linear-gradient(top,  #23AD95 0%,#1F9985 100%);
    background: linear-gradient(to bottom,  #23AD95 0%,#1F9985 100%);
    border: 3px double #dfdfdf;
    font-family: 'Kaisei Decol', sans-serif;
}
#main h2 {
    position: relative;
    margin:24px 0 14px 0;
    padding:0.5em 0 0.4em 2em;
    font-size:1.3em;
    border: 1px solid #ccc;
    border-top: 3px solid #1F9985;
    background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
    background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
    font-family: 'Kaisei Decol', sans-serif;
}
#main h2::after {
    position: absolute;
    top: 0.67em;
    left: .6em;
    z-index: 2;
    content: '';
    width: 10px;
    height: 10px;
    border: 3px solid #23AD95;
    border-radius: 100%
}
#main h3 {
    font-size:1.1em;
    font-weight:bold;
    padding:1px 0 1px 10px;
    margin:12px 0 8px 0;
    border-left:4px solid #00885a;
    font-family: 'Kaisei Decol', sans-serif;
}
#main h4 {
    font-size:1.1em;
    font-weight:bold;
    color: #00885a;
    padding:1px 0 ;
    margin:10px 0 5px 0;
    font-family: 'Kaisei Decol', sans-serif;
}
#side {
    width:220px;
    position: sticky;
    top: 80px;
}

#side h2 {
    font-size:1.1em;
    font-weight:normal;
    text-align:center;
    padding:5px;
    margin:0 0 6px 0;
    border: 1px solid #ccc;
    border-top: 3px solid #1F9985;
    background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
    background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
    font-family: 'Kaisei Decol', sans-serif;
}
#side #sidenav {
    width:100%
}
#side #sidenav a {
    width:100%;
    padding:8px 6px 8px 23px;
    display:block;
    text-decoration:none;
    background:url(../images/sidenav_icon.png) no-repeat 6px 15px;
    font-size:12px;
    color:#000000;
    border-bottom:dotted 1px #cccccc;
    text-shadow:2px 2px 2px rgba(0, 0, 0, 0.1)
}
#side #bnr {
    width:100%
}
#side #bnr li {
    margin-bottom:4px
}
#side #bnr li a {
    width:100%;
    padding:10px 10px 10px 30px;
    border:1px solid #333;
    border-radius:3px;
    display:block;
    text-decoration:none;
    background:url(../images/bnr_bg.png) no-repeat 8px center;
    font-size:12px;
    color:#333;
    -webkit-transition:All 0.5s ease;
    transition:All 0.5s ease
}
#side #bnr li a:hover {
    opacity:0.5
}
#side #contact {
    margin-bottom:20px
}
#side #contact p {
    padding:5px 10px
}
#side #contact a.form {
    display:block;
    margin:0 10px 10px 10px;
    padding:2px;
    background: #1F9985;
    color:#fff;
    text-align:center;
    text-decoration:none;
    border: 1px solid #146557;
    -webkit-transition:All 0.5s ease;
    transition:All 0.5s ease;
    font-family: 'Kaisei Decol', sans-serif;
}
#side #contact a.form:hover {
    background:#fff;
    color:#146557;
    font-weight: bold;
}
#center {
    width:10px;
    margin:0 10px 0 0;
    border-right:1px solid #dddddd
}
.ft_language {
    display:none
}
#ft {
    margin-top:15px;
    padding-top:15px;
    padding-bottom:20px;
    color:#FFF;
    font-size:13px;
    text-align:center;
    background: -moz-linear-gradient(top,  #2FD5B8 0%, #1F9985 100%);
    background: -webkit-linear-gradient(top,  #2FD5B8 0%,#1F9985 100%);
    background: linear-gradient(to bottom,  #2FD5B8 0%,#1F9985 100%);
}
.index_slider_bg {
    width:100%;
    max-width:960px;
    margin: 20px auto 0;
    box-shadow:0 10px 10px rgba(0, 0, 0, 0.05);
    overflow:hidden;
}
#i_news {
    max-height:300px;
    overflow:auto
}
#i_news table {
    width:100%
}
#i_news table tr {
    border-bottom:1px dotted #cccccc
}
#i_news table td {
    vertical-align:top;
    font-size:0.9em;
    padding:10px;
    white-space:nowrap
}
#i_news table td:first-child {
    background:url(../images/news_icon.png) 5px 18px no-repeat;
    padding-left:20px;
    width:140px
}
#i_news table td:last-child {
    white-space:normal
}
#page-top {
    position:fixed;
    bottom:20px;
    right:20px;
    font-size:0.9em;
    background:rgba(255, 255, 255, 0.8);
    text-decoration:none;
    border: 1px solid #1F9985;
    color: #1F9985;
    padding:10px;
    text-align:center;
    display:block;
    border-radius:5px;
}


ol.list_hrf{
    counter-reset:number;
    list-style-type: none!important;
}
ol.list_hrf li {
  position: relative;
  padding-left: 30px;
  padding: 0.5em 0.5em 0.5em 30px;
}
ol.list_hrf li:before{
  counter-increment: number 1;
  content: counter(number) ")";
  position: absolute;
}
ol.list_hrf li:before{
  display:inline-block;
  font-size: 15px;
  left: -18px;
  top: 5px;
}

/*--program--*/
.program_box{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.program_box figure{
    text-align: center;
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.program_box figure:nth-child(2n){
    margin-right: 0;
}
.program_box figure img{
    max-width: 100%;
}
.photo_01 {
    margin-top: 10px;
}
.photo_01 img {
    width: 400px;
}

/*--table--*/
.table_member_box{
	width:720px;
}

.jornal_content {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 40px;
}

.journal_item {
}

.journal_item a {
    display: block;
    color: #fff;
    text-decoration: none;
    min-width: 200px;
    padding: 5px 15px;
    background-color: #00885a;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.journal_item a:hover {
    filter: brightness(0.8);
}

.journal_item a[tabindex="-1"]:hover {
    filter: brightness(1);
}
