@charset "UTF-8";

html body {
  background-color: #E0F1F4;
}
a:link {
  color: #036eb7;
}


/* ============================== 
 SKIP LINK
============================== */
#skiplink {
  display: block;
  margin: auto;
  max-height: 0;
  background-color: rgba(0,0,0,0.6);
  color: #FFF;
  overflow: hidden;
  z-index: 5000;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#skiplink.-active {
  max-height: 100vh;
  -webkit-box-shadow: 0 -3px 3px 0 rgba(0,0,0,0.3) inset;
  box-shadow: 0 -3px 3px 0 rgba(0,0,0,0.3) inset;
  overflow-y: auto;
}
#skiplink .menu_list {
  padding: 1rem;
  font-size: 0.75em;
}
#skiplink .menu_list > li::before {
  border-color: #FFF
}
#skiplink .menu {
  color: inherit;
  text-decoration: none;
}
@media (min-width:720px) {
  #skiplink .menu_list > li {
    display: inline-block;  
  }
}
@media only print {
  #skiplink {
    display: none;
  }
}


#notice {
  background-color: #c33;
  color: #FFF;
position: fixed;
	width: 100%;
	z-index: 3800;
}
#notice a {
  color: inherit;
}
#notice .inner {
  padding: 1rem 0;
}
#notice .notice_list {
  font-size: 0.875em;
}
#notice .notice_list > dt, 
#notice .notice_list > dd {
  line-height: 1.5;
}
#notice .notice_list > dt {
  clear: left;
  float: left;
  width: 7em;
}
#notice .notice_list > dd {
  padding-left: 7em;
}
#notice .notice_list > dd:not(:last-child) {
  margin-bottom: 0.5em;
}
@media print, (min-width:720px) {
  #notice .notice_list {
    font-size: 0.7em;
  }
}



#header a:link, 
#footer a:link {
  color: inherit;
}


#header::before, 
#footer::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto 0;
  background-image: url( ../images/wave.svg );
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
	background-size: 100%;
 width: 100%;
  z-index: 0;
}
#header::before {
  top: 4em;
}
#footer::before {
  top: 0;
}
@media print, (min-width:720px) {
  #header::before {
    top: 5em;
  }
}


#header {
  padding: 1rem 0;
  border-bottom: solid 0.25rem #BBD3D8;
}
#notice + #header{
	margin-top:5rem;
}
@media print, (min-width:720px) {
  #header {
    padding-top: 3rem;
    padding-bottom: 6em;
  }
  #notice + #header{
    margin-top:3rem;
  }
}

#header .site_head {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
  z-index: 3300;
}
#header .site_head::before {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  width: 4em;
  height: 4em;
  background-image: url(../images/esashi_point.svg);
}
#header .site_head .site_title {
  margin-top: 0.5em;
}
@media only screen and (max-width:719px) {
	#header .site_copy{
		margin-bottom:1em;
	}
  #header .site_head::before {
    top: -0.75em;
    right: 0;
    font-size: 0.875em;
  }
}
@media print, (min-width:720px) {
  #header .site_head::before {
    top: 0;
    left: 100%;
    margin-left: 0.5em;
  }
}

/* ============================== 
 SITE MENU 
============================== */

html.-fixed {
  position: fixed;
  overflow: hidden;
}

/* site_menu_btn */

@media only screen and (max-width:719px) {
  #site_menu_btn {
    font-size: 0.75em;
  }
  #site_menu_btn::before,
  #site_menu_btn::after {
    border-style: solid;
    border-width: 2px;
    border-color: #000;
  }
  #site_menu_btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    width: 4em;
    height: 4em;
    overflow: hidden;
    background-color: rgba(255,255,255,0.8);
    z-index: 4100;
  }
  #site_menu_btn::before,
  #site_menu_btn::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 60%;
    height: 25%;
    border-right: 0;
    border-left: 0;
    -webkit-transition: height 0.2s 0.2s, -webkit-transform 0.2s 0s;
    -o-transition: height 0.2s 0.2s, -o-transform 0.2s 0s;
    transition: height 0.2s 0.2s, transform 0.2s 0s;
  }
  #site_menu_btn::before {
    margin-bottom: -1px;
    bottom: 50%;
  }
  #site_menu_btn::after {
    margin-top: -1px;
    top: 50%;
  }
  #site_menu_switch:checked ~ #site_menu_btn {
    position: fixed;
  }
  #site_menu_switch:checked ~ #site_menu_btn::before,
  #site_menu_switch:checked ~ #site_menu_btn::after {
    height: 0;
    border-width: 1px 0;
    -webkit-transition: height 0.2s 0s, -webkit-transform 0.2s 0.2s;
    -o-transition: height 0.2s 0s, -o-transform 0.2s 0.2s;
    transition: height 0.2s 0s, transform 0.2s 0.2s;
  }
  #site_menu_switch:checked ~ #site_menu_btn::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #site_menu_switch:checked ~ #site_menu_btn::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #site_menu_btn .btn_txt {
    display: block;
    position: absolute;
    bottom: 100%;
    right: 100%;
  }
}
@media print, (min-width:720px) {
  #site_menu_btn {
    display: none;
  }
}



/* site_menu */
@media only screen and (max-width:719px) {
  #site_menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: auto;
    height: 0;
    overflow-y: auto;
    opacity: 0;
    background-color: rgba(161, 199, 206, 0.95);
    z-index: 4000;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #site_menu_switch:checked ~ #site_menu {
    height: 100%;
    height: 100vh;
    opacity: 1;
  }
  #site_menu > .inner {
    min-height: 100%;
    padding-right: 4rem;
    z-index: auto;
  }
  
  #site_menu .site_menu {
    margin: 1rem auto;
    font-size: 0.875em;
  }
  .site_menu .menu_list > li {
    border-style: dotted;
    border-width: 0 0 1px;
  }
  .site_menu .menu {
    display: block;
    margin-left: 1.5em;
    padding: 0.5em 0;
    -ms-word-break: keep-all;
    word-break: keep-all;
    white-space: nowrap;
  }
  
  .site_menu .submenu_list {
    padding-left: 1em;
  }
  .site_menu .submenu_list::before {
    content: '+';
    position: absolute;
    bottom: 100%;
    left: 0;
    margin: 0.5em;
    z-index: 0;
  }
  .site_menu .submenu_list.-active::before {
    content: '-';
  }
  .site_menu .menu_list .submenu_list > li {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  .site_menu .submenu_list.-active > li {
    max-height: 200vh;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  
  .site_menu .site_unit {
    margin: 1rem auto;
  }
}
@media print, (min-width:720px) {
  #site_menu {
    position: absolute;
    height: 7.5rem;
    bottom: 0;
    right: 0;
    left: 0;
  }
  #site_menu > .inner {
    height: 100%;
  }

  #site_menu .site_menu {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3200;
  }
  .site_menu .menu {
    display: block;
    padding: 1.5em 0.5em;
    font-size: 0.7em;
  }
  .site_menu .menu_list {
    display: table;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 1px 0;
    width: 100%;
    text-align: center;
  }
  .site_menu .menu_list > li {
    display: table-cell;
    vertical-align: middle;
    border-style: dashed;
    border-width: 0 0 0 1px;
  }
  .site_menu .menu_list > li:last-child {
    border-right-width: 1px;
  }
  
  .site_menu .submenu_list {
    position: absolute;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
  }
  .site_menu .submenu_list > li {
    display: none;
  }
  .site_menu .menu_list > li > .submenu_list {
    top: 100%;
    right: 0;
    left: 0;
  }
  .site_menu .submenu_list > li > .submenu_list::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    margin: 0.75em 0.25em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.3em 0 0.3em 0.3em;
    border-top-color: transparent;
    border-bottom-color: transparent;
  }
  .site_menu .submenu_list > li > .submenu_list {
    top: 0;
    left: 100%;
    right: -100%;
  }
  .site_menu .menu_list > li:last-child .submenu_list > li > .submenu_list {
    left: -100%;
    right: 100%;
  }
  .site_menu .menu_list > li:last-child .submenu_list::before {
    right: auto;
    left: 100%;
    border-right-width: 0.3em;
    border-left-width: 0;
  }
  .site_menu .menu_list > li:hover > .menu, 
  .site_menu .menu_list .menu:hover {
    color: #ff8dcf;
  }
  .site_menu .menu_list > li:hover > .submenu_list > li, 
  .site_menu .submenu_list > li:hover > .submenu_list > li{
    display: block;
  }
  .site_menu .submenu_list > li {
    border-style: solid;
    border-width: 0 1px 1px;
    border-color: #8cbec8;
  }
  .site_menu .submenu_list > li:first-child {
    margin-top: -1px;
    border-top-width: 1px;
  }
  .site_menu .submenu_list a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    height: 3em;
    background-color: rgba(255,255,255,0.8);
  }
  .site_menu .submenu_list  a:hover {
    background-color: rgba(255,255,255,1);
  }

  #site_menu .site_unit {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 28rem;    
    z-index: 3500;
  }
}

.site_search {
  white-space: nowrap;
  -ms-word-break: keep-all;
  word-break: keep-all;
width: 14em;
}
.site_search .search_word, 
.site_search .search_submit {
  padding: 0.25em;
  border-color: #999;
}
.site_search .search_word {
  width: 10em;
}
.site_search .search_submit {
  width: 4em;
  background-color: #ccc;
}

.gsc-search-button-v2 svg {
    width: 13px!important;
	height: 13px!important;
}
.site_search svg{
	max-width:initial!important;
}

@media print, (min-width:720px) {
  .site_search .search_word, 
  .site_search .search_submit {
    font-size: 0.875em;
  }
  .site_search .search_word {
    width: 12em;
  }
}


#site_lang .lang_menu_btn {
  display: block;
  position: relative;
  line-height: 1;
}
#site_lang .lang_menu_btn .btn_icn {
  font-size: 1.2em;
}
#site_lang .menu_list a {
  display: block;
  line-height: 1;
}
@media only screen and (max-width:719px) {
  #site_lang {
    margin: 1rem auto;
  }
  #site_lang .lang_menu_btn {
    font-size: 0.875em;
  }
  #site_lang .menu_list {
    padding-left: 1.5em;
    font-size: 0.75em;
  }
  #site_lang .menu_list > li {
    display: inline-block;
    margin-top: 0.5rem;
  }
  #site_lang .menu_list a {
    padding: 0.5em 0;
    width: 5em;
    border-style: solid;
    border-width: 1px;
    text-align: center;
  }
}
@media print, (min-width:720px) {
  #site_lang {
    margin-right: 1rem;
    width: 10em;
    color: #FFF;
    fill: #FFF;
    text-align: center;
    font-size: 0.75em;
    overflow: hidden;
  }
  #site_lang .lang_menu_btn {
    padding: 0.6em 1em;
    background-color: #323333;
    z-index: 100;
  }
  #site_lang .menu_list {
    background-color: rgba(102, 102, 102, 0.9);
    -webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.3 );
    box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.3 );
    overflow: hidden;
  }
  #site_lang .menu_list > li {
    float: left;
    margin-top: -100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  #site_lang .menu_list > li + li {
    border-style: dotted;
    border-width: 1px 0 0;
  }
  #site_lang:hover .menu_list > li {
    margin-top: 0;
    opacity: 1;
  }
  #site_lang .menu_list a {
    padding: 0.5em;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  #site_lang .menu_list a:hover {
    background-color: #323333;
  }
}


#site_share {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #323333;
  color: #FFF;
  text-align: right;
}
#site_share > .inner {
  padding: 0.4em 0;
}
#site_share .sns_list {
  list-style: none;
  line-height: 1;
}
#site_share .sns_list > li {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width:719px) {
  #site_share {
    background-color: rgba(50, 51, 51, 0.9);
    opacity: 0;
    z-index: -1;
    -webkit-transform: translate( 0, -100% );
    -ms-transform: translate( 0, -100% );
    -o-transform: translate( 0, -100% );
    transform: translate( 0, -100% );
    -webkit-transition: opacity 0.4s, transform 0.4s;
    -o-transition: opacity 0.4s, transform 0.4s;
    transition: opacity 0.4s, transform 0.4s;
    -webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.3 );
    box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.3 );
  }
  #site_share > .inner {
    padding: 1.5rem 4rem 1.5rem 0;
  }
  #site_share .sns_list {
    text-align: center;
  }
  #site_share .sns_list > li {
    margin: 0.25em;
    z-index: 10;
  }
  #share_menu_btn {
    position: absolute;
    top: 3.75rem;
    right: 0;
    margin: 1rem;
    padding: 0.5em;
    width: 5em;
    background-color: #323333;
    color: #FFF;
    font-size: 0.625em;
    font-weight: bold;
    z-index: 3999;
  }
  #share_menu_close_btn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 0.625em;
    text-align: center;
    line-height: 1;
  }
  #share_menu_close_btn > .btn_txt {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 5%;
    padding-top: 3.5em;
    width: 5em;
    height: 5em;
  }
  #share_menu_close_btn > .btn_txt::before, 
  #share_menu_close_btn > .btn_txt::after {
    content: '';
    display: block;
    position: absolute;
    top: 1.5em;
    right: 0;
    left: 0;
    margin: auto;
    width: 2em;
    height: 0;
    border-style: solid;
    border-width: 2px 0 0;
  }
  #share_menu_close_btn > .btn_txt::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #share_menu_close_btn > .btn_txt::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #share_menu_switch:checked ~ #site_share {
    z-index: 4100;
    opacity: 1;
    -webkit-transform: translate( 0, 0 );
    -ms-transform: translate( 0, 0 );
    -o-transform: translate( 0, 0 );
    transform: translate( 0, 0 );
  }
}
@media print, (min-width:720px) {
  #share_menu_close_btn, 
  #share_menu_btn {
    display: none;
  }
}





#footer {
  padding-top: 5%;
  z-index: 1000;
  text-align: center;
}
#footer > .inner {
  padding: 1.5rem 0;
}
@media only screen and (max-width:719px) {
}
@media print, (min-width:720px) {
  #footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
  }
  #footer > .inner {
    height: 8em; /* → #content : padding-bottom */
  }
}

/* site_address */
.site_address {
  display: inline-block;
  text-align: left;
}
.site_address .address_info > dt {
  margin-bottom: 1rem;
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
}
.site_address .address_info > dd {
  font-size: 0.75em;
  line-height: 2;
}
@media print, (min-width:720px) {
  .site_address .address_info > dt {
    font-size: 0.8em;
  }
  .site_address .address_info > dd {
    font-size: 0.6em;
  }
}

/* breadcrumb */
.breadcrumb {
  font-size: 0.625em;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb .bc_list {
  list-style: none;
  padding: 1em 0;
}
.breadcrumb .bc_list > li {
  display: inline-block;
}
.breadcrumb .bc_list > li + li::before {
  content: '';
  display: inline-block;
  margin: -0.1em 0.5em auto;
  width: 0.4em;
  height: 0.4em;
  border-style: solid;
  border-width: thin thin 0 0;
  border-color: #333;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb .home, 
.breadcrumb .current {
  font-weight: bold;
}
@media only screen and (max-width:719px) {
  .breadcrumb .bc_list {
    padding: 1em 5%;
    overflow-x: auto;
    white-space: nowrap;
    -ms-word-break: keep-all;
    word-break: keep-all;
  }
}


/* pager */
.pager {
  margin: 1.5em auto;
}
.pager a {
  display: block;
  text-decoration: none;
  color: #8cbec8;
}
.pager .pager_list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
.pager a.prev::before, 
.pager a.next::after {
}
.pager a.prev::before {
  content: '< ';
}
.pager a.next::after {
  content: ' >';
}
.pager .pager_numbers {
  list-style: none;
  margin-right: 0.5em;
  margin-left: 0.5em;
  font-size: 0.75em;
  text-align: center;
}
.pager .pager_numbers > li {
  display: inline-block;
}
.pager .pager_numbers .current {
  display: block;
}
.pager .pager_numbers .current, 
.pager .pager_numbers a {
  width: 2em;
  height: 2em;
  line-height: 2;
  border: solid thin #8cbec8;
  background-color: #FFF;
  color: #8cbec8;
}
.pager .pager_numbers .current {
  background-color: #8cbec8;
  color: #FFF;
}
.pager .pager_numbers a {
  text-decoration: none;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
}
.pager .pager_numbers a:hover {
  -webkit-box-shadow: 0 2px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 2px 1px 1px rgba(0,0,0,0.2);
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  transform: translate(0, -1px);
}


.pager .page_link {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  font-size: 0.75em;
}
.pager .page_link > li {
  display: block;
  width: 50%;
  padding: 0 1.5em;
}
.pager .page_link > li:first-child:last-child {
  width: 100%;
}
.pager .page_link a {
  display: block;
}
.pager .page_link a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0.6em;
  border-color: transparent #ccc;
}
.pager .page_link a.link_prev {
  text-align: left;
}
.pager .page_link a.link_prev:first-child {
  padding-left: 1.5em;
}
.pager .page_link .link_prev::before {
  content: 'Prev: ';
}
.pager .page_link a.link_prev:first-child::after {
  left: 0;
  border-left-width: 0;
}
.pager .page_link a.link_next {
  text-align: right;
}
.pager .page_link a.link_next:last-child {
  padding-right: 1.5em;
}
.pager .page_link a.link_next::before {
  content: 'Next: ';
}
.pager .page_link a.link_next:last-child::after {
  right: 0;
  border-right-width: 0;
}


/* #content */
#content {
  overflow: hidden;
  background-image: url(../images/content-bg.png);
  background-repeat: repeat-y;
  background-position: center top;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
#content::after {
  content: ' ';
  clear: both;
  display: block;
}
@media print, (min-width:720px) {
  #content {
    padding-bottom: 8rem; /* = #footer : height */
  }
  #content::after {
    padding-top: 5%;
  }
}


#main {
}
#side {
  border-radius: 1rem;
  overflow: hidden;
}
#main, 
#side {
  margin-bottom: 3rem;
}
@media print, (min-width:720px) {
  .inner > #main {
    float: left;
    width: 72%;
  }
  #side {
    float: right;
    width: 25%;
  }
}

#side nav + nav {
  margin-top: 1.5rem;
}

.cont_block {
  font-size: 0.8125em;
  overflow: hidden;
  background-color: #FFF;
}
.cont_block .cont_head {
  padding: 1rem 1rem 20%;
  background-color: #8cbec8;
  background-image: -moz-linear-gradient( 0% 0% -45deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.2) 12%, 
    rgba(255, 255, 255, 0) 12%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.2) 62%, 
    rgba(255, 255, 255, 0) 62%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-image: -webkit-linear-gradient( -45deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.2) 12%, 
    rgba(255, 255, 255, 0) 12%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.2) 62%, 
    rgba(255, 255, 255, 0) 62%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-image: -o-linear-gradient( -45deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.2) 12%, 
    rgba(255, 255, 255, 0) 12%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.2) 62%, 
    rgba(255, 255, 255, 0) 62%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-image: -ms-linear-gradient( -45deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.2) 12%, 
    rgba(255, 255, 255, 0) 12%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.2) 62%, 
    rgba(255, 255, 255, 0) 62%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-image: linear-gradient( 135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.2) 12%, 
    rgba(255, 255, 255, 0) 12%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.2) 62%, 
    rgba(255, 255, 255, 0) 62%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-repeat: repeat;
  -webkit-background-size: 0.6rem 0.6rem;
  background-size: 0.6rem 0.6rem;
  color: #FFF;
}
.cont_block .cont_body {
  padding: 1rem;
  background-color: #FFF;
}
.cont_block .cont_body::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  right: -1px;
  left: -1px;
  margin: 0 0 -1px;
  padding-top: 20%;
  background-image: 
    url(../images/cont_body_top-img02.png), 
    url(../images/cont_body_top-img01.png), 
    url(../images/cont_body_top-bg.svg);
  background-position: 
    98% bottom, 
    2% bottom, 
    center bottom;
  -webkit-background-size: 
    auto 100%, 
    auto 100%, 
    100% 50%;
  background-size: 
    auto 100%, 
    auto 100%, 
    100% 50%;
}
.cont_block .cont_title {
  font-size: 1.54em;
  font-size: -webkit-calc( 20 / 13 * 1em );
  font-size: calc( 20 / 13 * 1em );
  text-align: center;
}
.cont_block .cont_update {
  text-align: right;
}

.cont_block .cont_foot {
}
@media print, (min-width:720px) {
  .cont_block {
    font-size: 0.65em;
  }
  .cont_block .cont_body::before {
    padding-top: 10%;
    background-position: 
      95% bottom, 
      5% bottom, 
      center bottom;
  }
  .cont_block .cont_head {
    padding: 1.5rem 1.5rem 7.5%;
  }
  .cont_block .cont_body {
    padding: 1.5rem;
  }
  .cont_block .cont_title {
    padding: 0 10%;
    font-size: 1.85em;
    font-size: -webkit-calc( 24 / 13 * 1em );
    font-size: calc( 24 / 13 * 1em );
  }
}


.cate_menu {
  border-radius: 1rem;
  background-color: #FFF;
  color: #666;
  font-size: 1em;
  overflow: hidden;
}
.cate_menu .menu {
  display: block;
  padding: 0.5em 0 0.5em 1em;
  font-size: 0.875em;
}
.cate_menu .menu::before {
  content: '';
  display: inline-block;
  margin-top: -0.2em;
  margin-left: -1em;
  margin-right: 0.5em;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: solid 0.3em #fff078;
  vertical-align: middle;
}
.cate_menu .menu_title {
  padding: 1em 1.5rem;
  background-color: #8cbec8;
  color: #FFF;
  border-radius: 1rem 1rem 0 0;
}
.cate_menu .menu_list {
  padding: 1em 1.5rem;
}
@media print, (min-width:720px) {
  .cate_menu {
    font-size: 0.8em;
  }
}


.block_list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;

}
.block_list > li {
  margin: 1%;
}
@media only screen and (max-width:719px) {
  .block_list > li {
    width: 100%;
    max-width: 15em;
  }
  .block_list > li:not(:last-child) {
    margin-bottom: 5%;
  }
}
@media print, (min-width:720px) {
  .block_list > li {
    width: 31.333%;
    width: -webkit-calc( 94% / 3 );
    width: calc( 94% / 3 );
  }
}

.card {
  display: block;
  margin: auto;
  background-color: #FFF;
  color: inherit;
  text-decoration: none;
  -webkit-box-shadow: 0.1em 0.1em 0.4em 0 rgba(0,0,0,0.3);
  box-shadow: 0.1em 0.1em 0.4em 0 rgba(0,0,0,0.3);
}
a.card:link, 
.card a:link {
  color: inherit;
}
.thumb {
  display: block;
  width: 100%;
  padding-top: 62%;
  background-color: #FFF;
  background-image: url(../images/blankimg.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
  overflow: hidden;
  z-index: 0;
}
.thumb > img {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.card .card_title {
  z-index: 10;
}
@media print, (min-width:720px) {
  .thumb {
    padding-top: 75%;
  }
  .card .card_title {
    letter-spacing: 0.1em;
  }
}


.news_list {
}
.news_list > li {
  border-style: dashed;
  border-width: 0;
}
@media only screen and (max-width:719px) {
  .news_list > li:not(:last-child) {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom-width: 1px;
  }
}
@media print, (min-width:720px) {
  .news_list > li {
    margin-right: 0;
    margin-left: 0;
    padding: 0 1.5%;
    width: 25%;
    border-left-width: 1px;
  }
  .news_list > li:nth-child( 4n + 1 ) {
    border-left: none;
  }
}
.news_block {
  text-align: left;
}
.news_block .news_thumb {
  padding-top: 42%;
  background-color: #fff;
}
.news_block .news_info {
  margin-top: 0.5em;
}
.news_block .news_info > dt {
}
.news_block .news_info > dd {
  font-size: 0.75em;
}
.news_block .news_info > dt .date {
  display: inline-block;
  font-weight: bold;
  font-size: 0.6875em;
  letter-spacing: 0.1em;
  line-height: 1;
  vertical-align: middle;
}
.news_block .news_info > dt .cate {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.25em;
  background-color: #000;
  color: #FFF;
  font-size: 0.625em;
  line-height: 1;
  vertical-align: middle;
}



.cate_block {
  font-size: 1em;
}
.cate_block .cate_head {
  margin-bottom: 1rem;
  text-align: center;
}
.cate_block .cate_head .cate_title {
  font-size: 1.25em;
}
.cate_block .cate_visual {
  margin: 1rem auto;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.cate_block .cate_visual > img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-width: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media print, (min-width:720px) {
  .cate_block {
    font-size: 0.8em;
  }
  .cate_block .cate_head {
    margin-bottom: 1.5rem;
  }
  .cate_block .cate_visual {
    margin: 1.5rem auto;
    padding-top: 32%;
  }
}
@media print, (min-width:1250px) {
  .cate_block .cate_visual {
    padding-top: 20rem;
  }
}

.subcate_menu .subcate_sect {
  margin-bottom: 1.5rem;
}
.subcate_sect .menu_title {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 0.1rem #BBD3D8;
  font-size: 1.125em;
}
.subcate_sect .menu_list {
  font-size: 0.875em;
}
section.no_data{
	text-align:center;
	width: 100%;
}
section.no_data p{
	display: inline-block;
	padding: 1em;
	border: 1px dotted #fff;
	background: rgba(255,255,255,0.3);
	color: #666;
}

@media print, (min-width:720px) {
  .subcate_menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .subcate_menu .subcate_sect {
    margin-bottom: 3rem;
    width: 30%;
  }
  .cate_block .cate_head .cate_title {
    font-size: 1.5em;
  }
}

#bookmark .bnr > span {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 0.75em 0.25em;
  width: 100%;
  min-height: 3em;
  font-size: 10px;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border: solid 2px #4a8e9c;
  background-color: #8abec8;
  text-shadow: 0 0 1px #4a8e9c;
  -webkit-box-shadow: 0 0 1px 1px #fffbdd inset;
  box-shadow: 0 0 1px 1px #fffbdd inset;
}
#bookmark .bnr > span::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: 
    url(../images/bookmark_bnr-bg_tr.png), 
    url(../images/bookmark_bnr-bg_bl.png);
  background-position: top right, bottom left;
  -webkit-background-size: 1.8em auto, 1.5em;
  background-size: 1.8em auto, 1.5em;
}
@media print, (min-width:720px) {
  #bookmark .bnr > span {
    border-width: 4px;
    font-size: 14px;
  }
}