@charset "UTF-8";
/* CSS Document */

/*-----------------
  lyout
-----------------*/

/* background */
.bg_gray{
	background: #eee;
	padding: 30px 0;
}

/* text */
.txt_lead01{
	font-size: 26px;
	padding: 20px 0;
	color: #333;
}
.txt_lead02{
	font-size: 18px;
	padding: 20px 0;
	color: #333;
}
.note{
	font-size: small;
}

/* heading */
.heading02{
	font-size: 25px;
	text-align: center;
	margin: 30px 0;
}
.heading03{
	font-size: 24px;
	border-bottom: 1px solid #666;
	padding: 0 0 7px 5px;
	margin: 30px 0;
}
.heading03_2{
	font-size: 18px;
	padding: 10px 0 10px 5px;
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	margin: 20px 0 10px;
}
.heading04{
	font-size: 20px;
	border-left: 5px solid #666;
	padding: 0 0 0 10px;
	margin: 30px 0;
}
.heading05{
	font-size: 18px;
	margin: 20px 0;
}

.heading06{
	font-size: 16px;
	margin: 15px 0;
}

.heading_nag01 {
  color: #6594e0;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #6594e0;
}

.heading_nag02 {
  color: #6594e0;/*文字色*/
}


.cp_hr05 { /*見出し用横線*/
	position: relative;
	height: 1px;
	border-width: 0;
	background-color: #00bcd4;
	background-image: -webkit-linear-gradient(left,
	#00bcd4 0%,#283593 50%,#00bcd4 100%);
	background-image:         linear-gradient(90deg,
	#00bcd4 0%,#283593 50%,#00bcd4 100%);
}

/* button */
.btn_01{
	overflow: hidden;
    width: 250px;
    height: 54px;
    margin: 30px auto;
    padding: 0;
}
.btn_01 a{
	display: block;
    position: relative;
    text-align:center;
	border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    text-decoration:none;
}
.btn_01 a::after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left: 5px solid #fff;
}
.btn_02{
	overflow: hidden;
    width: 250px;
    height: 54px;
    margin: 30px auto;
    padding: 0;
}
.btn_02 a{
	display: block;
    position: relative;
    text-align:center;
	border: 2px solid #666;
    color: #666;
    font-size: 14px;
    line-height: 50px;
    text-decoration:none;
}
.btn_02 a::after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left: 5px solid #666;
}

.btn_03{
	overflow: hidden;
    width: 250px;
    height: 54px;
    margin: 30px auto;
    padding: 0;
}
.btn_03 a{
	display: block;
    position: relative;
    text-align:center;
	border: 2px solid #666;
    color: #666;
    font-size: 14px;
    line-height: 50px;
    text-decoration:none;
}
.btn_03 a::after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border: 5px solid transparent;
    border-right: 5px solid #666;
}

/* table */
.table01{
	border-collapse: collapse;
	border: 1px solid #666;
	margin: 50px 0;
}
.table01 th{
	display: block;
	background: #eee;
	padding: 10px;
	border: 1px solid #666;
}
.table01 td{
	display: block;
	padding: 10px;
	border: 1px solid #666;
	width: 400px;
}

.table02{
	table-layout:fixed;
	border: 1px solid #666;
	margin: 50px 0;
	height: 100%;
}
.table02 th{
	display: table-cell;
	background: #eee;
	width: 130px;
	height: 100%;
	padding: 10px;
	border: 1px solid #666;
}
.table02 td{
	display: table-cell;
	padding: 10px;
	border: 1px solid #666;
	width: 650px;
	height: 100%;
}

.table03{
	border-collapse: collapse;
	border: 1px solid #666;
}

/* link */
.iconlink01{
	list-style-type: none;
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.iconlink01::before,
.iconlink01::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: " ";
	vertical-align: middle;
}
.iconlink01:before{
	left: 4px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 4px solid transparent;
	border-left: 4px solid #aaa;
}

a.link_pdf{
    padding-right: 20px;
    background: url(../img/ico_pdf.png) no-repeat 100% 50%;
	background-size: 12px;
}
a.link_blank{
    padding-right: 20px;
    background: url(../img/ico_window.png) no-repeat 100% 50%;
	background-size: 12px;
}

/* tab */
.tab li{
	float: left;
	width: 33.3%;
	text-align: center;
}
.tab li a{
	display: block;
	width: 100%;
	padding: 15px 0;
	color: #fff;
	background: #ccc;
	border-right: 1px solid #fff;
}
.tab li a.current{
	position: relative;
	background: #666;
}
.tab li a.current::before{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
 	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 15px solid #666;
}
.content_wrap .hide,
.content_wrap .tabhide{
	display: none;
}


.col2_wrap .col img{
	width: 100%;
}


.cp_link {
	display: inline-block;
	perspective: 1000px;
	perspective-origin: 50% 50%;
	vertical-align: bottom;
	overflow: hidden;
}
.cp_link span {
	display: inline-block;
	position: relative;
	padding: 0.1em 0.3em;
	transition: .4s;
	transform-origin: 50% 0%;
	transform-style: preserve-3d;
}
.cp_link span:after {
	display: inline-block;
	position: absolute;
	padding: 0.1em 0.3em;
	left: 0;
	top: 0;
	content: attr(data-text);
	color: #fff;
	background-color: #00ACC1;
	transform-origin: 50% 0%;
	transform: translate3d(0, 105%, 0) rotateX(-90deg);
}
.cp_link:hover span {
	background-color: #00ACC1;
	transform: translate3d(0, 0, -30px) rotateX(90deg);
}

/*-----------------
header
-----------------*/
header{
	border-bottom: 1px solid #aaa;
}
header .inner{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.logo {
  font-weight: 900;
  padding: 5px 85px 10px 10px;
  margin: 0;
	box-sizing: border-box;
}
/*  4-1.nav  */
#toggle {
  display: block;
  color: #000;
  text-align: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.trigger,
.trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger {
  position: relative;
  width: 28px;
  height: 19px;
}
.trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
.trigger span:nth-of-type(1) {
  top: 0;
}
.trigger span:nth-of-type(2) {
  top: 8px;
}
.trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #000;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger span:nth-of-type(3) {
  bottom: 0;
}
.trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
.trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}

.toggleWrap {
  background: rgba(234, 234, 234, 0.95);
  padding: 50px 15px 10px 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	z-index: 9;
}
.mainNav li {
  list-style-type: none;
}
.navItem {
  display: block;
  text-decoration: none;
  color: #3e3e3e;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  text-align: center;
}
.navItem img{
	height: 15px;
}
.subNav{
	list-style-type: none;
	text-align: center;
	padding: 16px 0;
}
.subNav li{
	display: inline-block;
	margin-left: 10px;
	font-size: 14px;
}
.subNav .icon{
	width: 40px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
	text-align: center;
}
.subNav .button{
	padding: 10px 20px;
	border: 1px solid #666;
	color: #666;
	text-decoration: none;
	line-height: 50px;
	border-radius: 5px;
}
.hide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.animation {
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}
.no-scroll {
  overflow: hidden;
}


/*-----------------
  main
-----------------*/
.breadcrumb{
	display: none;
}

.mv_area{
	background: url(../img/mv.jpg) no-repeat center;
	background-size: cover;
	padding: 50px 0;
}
.mv_lead{
	font-size: 20px;
	padding: 20px 0;
	color: #fff;
}
.large_bnr{
	margin: 20px auto 0;
	padding: 0 10px;
	width: 100%;
	background: #fff;
}
.large_bnr img{
	width: 100%;
}

section{
	margin: 40px 0;
}
section .inner{
	padding: 0 10px;
}

#filter{
	list-style-type: none;
}
#filter li{
	float: left;
	width: 25%;
	text-align: center;
}
#filter li a{
	width: 100%;
    padding: 10px 0;
    display: block;
    text-align: center;
	font-size: 16px;
	color: #666;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
}
#filter li a:hover{
	text-decoration: none;
}
#filter #allitem a{
	color: #333;
	border-left: 1px solid #666;
}
#filter #allitem a.active{
	background: #333;
	color: #fff;
}
#filter #topics a{
	color: #38a1db;
}
#filter #topics a.active{
	background: #38a1db;
	color: #fff;
}
#filter #government a{
	color: #E6C229;
}
#filter #government a.active{
	background: #E6C229;
	color: #fff;
}
#filter #news a{
	color: #898989;
}
#filter #news a.active{
	background: #898989;
	color: #fff;
}
#filterlist{
	list-style-type: none;
}
#filterlist .link_news{
	padding-top: 10px;
}
#filterlist .date{
	display: inline-block;
	width: 7em;
	font-size: 14px;
	color: #666;
}
#filterlist .tag{
	display: inline-block;
	width: 7em;
	padding-left: 15px;
}
.tag.tag_topics span{
	display: inline-block;
	background: #38a1db;
	font-size: 12px;
	font-weight: bold;
	padding: 1px 0;
	width: 7em;
	color: #fff;
	text-align: center;
}
.tag.tag_government span{
	display: inline-block;
	background: #E6C229;
	font-size: 12px;
	font-weight: bold;
	padding: 1px 0;
	width: 7em;
	color: #fff;
	text-align: center;
}
.tag.tag_news span{
	display: inline-block;
	background: #898989;
	font-size: 12px;
	font-weight: bold;
	padding: 1px 0;
	width: 7em;
	color: #fff;
	text-align: center;
}
#filterlist .info{
	display: block;
	line-height: 1.8;
}

.event_bnr{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.event_bnr li{
	width: 49%;
	max-width: 400px;
	list-style-type: none;
	padding-bottom: 10px;
}
.event_bnr li img{
	width: 100%;
}
.ad_bnr{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.ad_bnr li{
	width: 49%;
	max-width: 400px;
	list-style-type: none;
	padding-bottom: 10px;
}
.ad_bnr li img{
	width: 100%;
}
.bnr{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.bnr li{
	width: 49%;
	max-width: 400px;
	list-style-type: none;
	padding-bottom: 10px;
}
.bnr li img{
	width: 100%;
}

.map_area{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.map_area iframe,
.map_area object,
.map_area embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pagination_wrap{
	padding: 60px 0 0;
	text-align: center;
	position: relative;
}
.pagination {
	position: absolute;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
    font-size: 80%;
}
.pagination a {
    text-decoration: none;
	border: solid 1px #666;
	color: #666;
}
.pagination a, .pagination span {
    display: block;
    float: left;
    padding: 0.3em 0.7em;
    margin-right: 5px;
	margin-bottom: 5px;
}
.pagination .current {
    background: #666;
    color: #fff;
	border: solid 1px #666;
}
.pagination .current.prev, .pagination .current.next{
	color:#666;
	border-color:#666;
	background:#fff;
}

/*-----------------
  footer
-----------------*/
footer{
	background: #ddd;
	padding: 30px 0 20px;
	margin-top: 80px;
}
footer .inner{
	padding: 0 10px 20px;
	margin-bottom: 20px !important;
	border-bottom: 1px solid #666;
}
.copyright{
	text-align: center;
	font-size: 12px;
}
.pagetop{
    position: fixed;
	right: 20px;
	bottom: 20px !important;
}

  .footer_01 {
    padding: 2.5em 15px;
    background: #f9f9f9; }
    @media screen and (max-width: 767px) {
      .footer_01 {
        padding: 1em 15px; } }
    .footer_01 .bnr {
      text-align: center;
      margin: auto;
      display: inline-block; }
  .footer_02 {
    padding: 2.5em 0;
    background: #3f3f3f;
    text-align: center;
    margin: auto; }
    .footer_02 address {
      padding: 2.5em 0; }
      .footer_02 address a {
        color: white;
        text-decoration: none; }
        .footer_02 address a :hover {
          text-decoration: underline;
          opacity: .8; }
      @media screen and (max-width: 767px) {
        .footer_02 address {
          padding: 1em 0; } }
  .footer .copyright {
    width: auto;
    display: block;
    overflow: hidden;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 200;
    padding: 1em; }
  @media screen and (max-width: 767px) {
    .footer .copyright {
      text-align: center; } }


@media screen and (min-width: 768px) {
	/*-----------------
	  lyout
	-----------------*/
	/* table */
	.table01{
		display: table;
	}
	.table01 th,
	.table01 td{
		display: table-cell;
	}
	
	/* column */
	.col2_wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	
	.col3_wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.col3_wrap .col{
		width: 300px;
	}
	
	
	#id_item_33　table, th, td {
  border:1px solid #333;font-size: 10px; padding: 2px;
   }

   #id_item_33 table{border-collapse:collapse; }
   #id_item_33 tr th{background-color: #1E2C50; color: #FFFFFF; text-align: center;}
   #id_item_33　table, th, {100px;}
   #id_item_33  td{background: #dfe9f3;}
   #id_item_33 th{background-color: #1E2C50; color: #FFFFFF;}
   #id_item_33　table, th, {100px;}
   #id_item_33{width: 800px;height:900px;margin-left: -150px}
   #id_item_33 td{text-align: left;}
   #id_item_33 td[rowspan] {background-color:#FFF;}
   #id_item_33 table tr:nth-child(odd) td {background: #fff;}
   .item_center{text-align: center;}

	
	/*-----------------
	  header
	-----------------*/
	header{
		position: relative;
	}
	.logo{
		padding-left: 0;
		padding-top: 10px;
		padding-bottom: 15px;
	}
	.logo img{
		height: 49px;
	}
	/*  nav  */
	#toggle {
	  display: none;
	}
	.toggleWrap {
	  background: none;
	  height: auto;
	  position: static;
	  padding: 0;
	  margin-bottom: 15px;
	}
	.mainNav {
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: justify;
	  -webkit-justify-content: space-around;
	     -ms-flex-pack: justify;
	          justify-content: space-around;
	  max-width: 980px;
	  margin: 0 auto;
		border-left: 1px solid #aaa;
	}
	.mainNav li{
		width: 20%;
		border-right: 1px solid #aaa;
	}
	.mainNav li:first-child{

	}
	.mainNav li .navItem {
		position: relative;
		border-bottom: none;
		text-decoration: none;
		text-align: center;
		font-size: 15px;
		padding: 5px 0;
	}
	.mainNav .navItem:hover{
		opacity: 1.0;
	}
	.mainNav .navItem:hover::after {
	  transform: scale(1, 1) !important;
	  -moz-transform: scale(1, 1) !important;
	  -webkit-transform: scale(1, 1) !important;
	}
	.subNav{
		position: absolute;
		top: 5px;
		right: 0;
		padding: 0;
	}
	.subNav .icon{
		width: 34px;
		height: 34px;
		border-radius: 17px 17px;
		vertical-align: middle;
		padding-top: 7px;
	}
	.subNav img{
		vertical-align: top;
		padding-top: 1px;
	}
	#index .subNav .icon{
		padding-top: 7px;
	}
	.animation {
	-webkit-transition: none;
	        transition: none;
	}
	.hide {
	  opacity: 1;
	  visibility: visible;
	}

	.breadcrumb{
		display: block;
		padding: 5px 0;
	}
	.breadcrumb .inner{
		max-width: 960px;
		margin: 0 auto;
	}
	.breadcrumb li{
		display: inline-block;
		font-size: 12px;
	}

	
	/*-----------------
	  main
	-----------------*/
	.mv_area{
		padding: 70px 0 100px;
	}
	.mv_lead{
		font-size: 30px;
	}
	.large_bnr{
		margin-top: -75px;
		width: 574px;
		padding: 0;
	}
	section .inner{
		width: 960px;
		margin: 0 auto;
		padding: 0;
	}
	
	section .left_area{
		float: left;
		width: 720px;
		padding-right: 20px;
	}
	section .right_area{
		float: right;
		width: 220px;
	}
	
	#filterlist .link_news{
		display: table;
		width: 100% !important;
	}
	#filterlist .date{
		display: table-cell;
	}
	#filterlist .tag{
		display: table-cell;
	}
	#filterlist .info{
		display: table-cell;
		padding-left: 15px;
	}
		
	.event_bnr{
		display: block;
	}
	.event_bnr li{
		width: 100%;
	}
	.ad_bnr li{
		width: 305px;
	}
	.bnr li{
		width: 220px;
	}
	
	/*-----------------
	  footer
	-----------------*/
	footer .inner{
		width: 960px;
		margin: 0 auto;
	}
	.footer_item{
		display: table;
	}
	.footer_item div{
		display: table-cell;
		vertical-align: middle;
	}
}


/* -------------------------------------------------------------
   [7] Private 追加分 2024*/


#id_item_3　table, th, td {
  border:0.7px solid #1d2b4c;font-size: 10.5px; padding: 3px 4px
}

#id_item_33 table{border-collapse:collapse; }
#id_item_33 tr th{background-color: #1E2C50; color: #FFFFFF; text-align: center;}
#id_item_33　table, th, {200px;}
#id_item_33  td{background: #dfe9f3;}
#id_item_33 th{background-color: #FFE2C5; color: #FFFFFF;}
#id_item_33　table, th, {150px;}
#id_item_33{margin-left: -222px}
#id_item_33 td{text-align: left;}
#id_item_33 td[rowspan] {background-color:#fff;}

.item_center{text-align: center;}

#id_item_33 table tr:nth-child(odd) td {
  background: #AFCBEB;
}
#id_item_33 table tr:nth-child(even) td {
  background: #EEF7FF;
}

.tr_color tr:nth-child(odd) td {
  background: #000;
}
#id_item_33 a {color:#000; text-decoration:none;font-weight: normal;transition: color .3s;}
#id_item_33 a:hover{
  color: #77B0E4;
}