html {
	font-size: 14px;
}
@media screen and (max-width: 640px) {
	html {
		font-size: 16px;
	}
}

body {
	border-top: 8px solid #389c39;
}

h2 {
	position: relative;
	display: inline-block;
	padding: 0 5rem;
	margin: 1rem 0;
}

h2:before, h2:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 4rem;
	height: 2px;
	border-top: solid 1px black;
	border-bottom: solid 1px black;
}

h2:before {
	left:0;
}
h2:after {
	right: 0;
}

h2.catch1 {
	padding: 0.2rem 3rem;
	background-color:#61aa31;
	color:#ffffff;
}
h2.catch2 {
	padding: 0.2rem 3rem;
	background-color:#036eb8;
	color:#ffffff;
}

h2.catch1:before,
h2.catch1:after,
h2.catch2:before,
h2.catch2:after {
	content: none;
}



h3 {
	font-size: 1.4rem;
	padding: 0.25em 0.5em;/*上下 左右の余白*/
	background: transparent;/*背景透明に*/
	border-left: solid 5px #389c39;/*左線*/
}


.topnews dt{
	float: left;
}

.topnews dd{
	margin-left: 6rem;;
}

.text80 {
	font-size: 0.8rem;
}

.nav-item {
	border-left: 1px solid #cccccc;
	padding: 0.5em 0;
}
.nav-item:last-child {
	border-right: 1px solid #cccccc;
}

ul {
	width: 100%;
}

.multi-carousel {
	opacity: 0;
	padding: 0 25px;
}
.multi-carousel .carousel-control-next,
.multi-carousel .carousel-control-prev {
	width: 25px;
	background: gray;
}

.accordion>.card:last-of-type {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}
.accordion>.card:first-of-type {
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-bottom-right-radius: .25rem;
	border-bottom-left-radius: .25rem;
}

.accordion>.card {
	overflow: inherit;
}

.drop-hover:hover > .dropdown-menu {
	display: block !important;
}
.card-body {
	padding: 0.5rem;
}

.dropdown__lists {
	display: none;/*デフォルトでは非表示の状態にしておく*/
	width: 100%;
	position: absolute;
	top: 60px;
	left: 0;
	z-index:100;
}
.nav-item:hover .dropdown__lists {
	display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
	background-color: #004d80;
	height: 60px;
	transition: all .3s;
	position: relative;
}
.dropdown__list:not(:first-child)::before{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #3492d1;
	position: absolute;
	top: 0;
	left: 0;
}
.dropdown__list:hover {
	background-color: #003558;
}
.dropdown__list a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	position: relative;
}
.dropdown__list a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(135deg);
	position: absolute;
	right: 15px;
	top: calc(50% - 5px);
}


