@charset "utf-8";
.none {
	display: none;
}
.select {
	display: block;
}
.download-title {
	font-size: 116%;
	font-weight: 500;
	color: #fff;
	background-color: #00ba48;
	text-align: center;
	width: 96%;
	padding-top: 8px;
	padding-right: 2%;
	padding-bottom: 8px;
	padding-left: 2%;
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
.download-title {
 font-size: 93%;
}
}
.tabs2 {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	margin-top: 20px;
	margin-bottom: 50px;
	padding-bottom: 5px;
}
.tabs2 > div {
	width: 16%;
	text-align: center;
	height: 61px;
	line-height: 150%;
	margin-right: 0.5%;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #00ba48;
	background-color: #FFF;
	position:relative;
}
.tabs2 > div:last-child {
	margin-right: 0%;
}
.tabs2 > div .link {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin-top: auto;
	margin-bottom: auto;
	vertical-align: middle;
	display: flex;
	align-items: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}
.tabs2 > div a {
	text-decoration: none;
	color: #00ba48;
	font-weight: 500;
}
.tabs2 > div:hover, .tabs2 > div.active {
	background-image: url(../../images/tabMenu_bg.png);
	background-repeat: repeat-x;
	background-position: center bottom;
}
 @media print, screen and (min-width: 768px) {
.tabs2 > div a {
 position: absolute;
}
}
 @media only screen and (max-width: 767px) {
.tabs2 > div {
 width: 48%;
 height: 50px;
 margin-bottom: 15px;
 margin-right: 4%;
}
 .tabs2 > div:nth-child(2n) {
 margin-right: 0%;
}
}
/* ---------------------------------------------------------
	リスト
--------------------------------------------------------- */

.dl_list {
	width: 100%;
}
.col-1, .col-2, .col-3 {
	display: inline-block;
}
 @media print, screen and (min-width: 768px) {
.col-1 {
 width: 6em;
}
.col-2 {
 width: 1em;
}
}
.dl_list {
	margin-top: 30px;
}

.dl_list.acd {
	margin-top: 10px;
	margin-bottom: 30px;
}

.dl_list img {
  Max-width: 500px;
	padding-top: 3px;
	padding-right: 5px;
}
.dl_list dl {
	width:100%;
	font-size: 17px;
	display: flex;
}
.dl_list dt {
	width:70%;
	padding:18px 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	font-weight: 500;
	padding-left:1.6em;
	text-indent:-1.6em;
}
.dl_list dd {
	width:30%;
	padding:20px 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	text-align: left;
	font-weight: 200;
	font-size: 16px;
}
.dl_list a {
	color:#0054a7;
	padding:5px 1px;
	text-decoration:none;
}
.dl_list a:hover {
	color:#00a0e9;
	text-decoration:none;
}
@media only screen and (max-width: 767px) {
.dl_list img {
 padding-top: 0px;
}
.dl_list dl {
 width:100%;
 font-size: 15px;
 display: block;
}
.dl_list dt {
 width:100%;
 padding-left:2.0em;
 text-indent:-2.0em;
}
.dl_list dd {
 width:100%;
 padding:22px 5px;
 font-size: 13px;
}
}
.box-subsidy {
	max-width:720px;
	width:100%;
	padding: 20px;
	border: 2px solid #d2d2d2;
	margin-top: 80px;
	box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
.box-subsidy {
 padding: 15px;
 margin-top: 40px;
}
}


/* ---------------------------------------------------------
	アコーディオン
--------------------------------------------------------- */

#accordion, #accordion-etc {
  margin-top: 50px;
}

.accordion-container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;

  margin-top: 500px;
}

.accordion-container .accordion-title {
	display: block;
	position: relative;
	margin: 0;
	margin-top: 14px;
	padding: 0;
	cursor: pointer;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.accordion-decoration {
	color: #0054a7;
	font-size: 1.2em;
	font-weight: 500;
	background: #eeeeee;
	cursor: pointer;
	border: 7px solid #FFF;
	height: 58px;
	margin-top: auto;
	margin-bottom: auto;
	vertical-align: middle;
	display: flex;
	align-items: center;
	padding-left: 24px;
}


.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title,
.accordion-decoration:hover {
  background-color: #eeeeee;
}

.accordion-title{
  position: relative;
}

.accordion-title:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 4px #0054a7;
  border-right: solid 4px #0054a7;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
}

/* CSS for CodePen */
.accordion-container {
  width: 100%;
  margin: 1.875em auto;
}

@media only screen and (max-width: 767px) {
#accordion, #accordion-etc {
  margin-top: 30px;
}
.accordion-decoration {
	font-size: 1.0em;
	font-weight: 500;
	height: 48px;
	padding-left: 15px;
}
}

/* ---------------------------------------------------------
	動画用パーツ
--------------------------------------------------------- */
p.movie_title{
 font-size: 20px;
 font-weight: bold;
}
p.movie_timestamp{
 font-size: 12px;
 padding-bottom: 30px;
}
p.movie_timestamp::before{
content:"掲載日:";
}

p.movie_abstract{
 font-size: 16px;
 color:block;
}

/* ---------------------------------------------------------
	画像download
--------------------------------------------------------- */


.col_dl {
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
    text-align: left;
    margin-right: auto;
    justify-content: left;
}
.col_dl > div {
	width: 33.3333%;
	text-align: center;
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #9f9f9f;
	box-sizing: border-box;
	margin-top: 50px;
}


.col_dl > div:last-child {
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #9f9f9f;
	box-sizing: border-box;
}

.col_dl > div img {
	max-width: 146px;
	padding-bottom: 7px;
}


.col_dl_link a {
	text-decoration: none;
}

.dl_tet {
	font-size: 108%;
}



.capacity {
	font-size: 93%;
	position:relative;
	line-height:1.4em;
	padding-top: 2px;
}
p.capacity:before{
	content:"";
	display:inline-block;
	width:1.4em;
	height:1.4em;
	background-size:contain;
	background-image: url(../images/icon_image.png);
	background-repeat: no-repeat;
	vertical-align: bottom;
	padding-right:5px;
}

.kakomi-box {
 margin: 4em auto 0;
 padding: 1em;
 width: 42em;
 background-color: #fff;
 border: 1px solid #ccc;
 box-sizing: border-box;
}



@media print , screen and (min-width: 768px) {
.col_dl > div:nth-child(3n) {
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #9f9f9f;
	box-sizing: border-box;
}
}
@media only screen and (max-width: 767px) {
 .col_dl > div {
 width: 50%;
 	margin-top: 40px;
}

.col_dl > div:nth-child(2n) {
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #9f9f9f;
	box-sizing: border-box;
}
.col_dl > div img {
	max-width: 120px;
}

.dl_tet {
	font-size: 93%;
}
.capacity {
	font-size: 85%;
}
.kakomi-box {
 margin: 30px 0 0;
 padding: 5$;
 width: 100%;
}

