@charset "utf-8";

#mv {
	margin-top: 30px;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	/*background: url("../images/mv_bk.png") 0 40px no-repeat #fff;*/
	background: #fff;
}
#mv > div:first-child {
	width: 58%;
}
#mv > div:first-child > img {
	width: 100%;
}
#mv > div:nth-child(2) {
	padding: 30px;
	flex: 1;
}
#mv > div:nth-child(2) p {
	margin-bottom: 22px;
}
#mv > div:nth-child(2) p img {
	width: 100%;
}
#mv > div:nth-child(2) p:last-child {
	margin-bottom: 0;
}
@media only screen and (max-width : 768px) {
	#mv {
		margin-top: 0;
		display: block;
		background-image: none;
	}
	#mv > div:first-child {
		width: 100%;
		padding: 10px 0;
		background: var(--point-color2);
	}
	#mv > div:nth-child(2) {
		padding: 25px;
	}
	#mv > div:nth-child(2) p {
		margin-bottom: 15px;
	}
}

#top_wrap {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}
#top_wrap > figure {
	margin-right: 30px;
}
#top_wrap > figure img {
  height: 70px;
}
#top_wrap > p {
	width: 30%;
}
#top_wrap > p a {
	height: 70px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: #d92f2f;
	transition: 0.5s;
}
#top_wrap > p a:hover {
	background: var(--point-color2);
}
#top_wrap > ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
#top_wrap > ul li {
	width: 50%;
  margin-left: 2%;
}
#top_wrap > ul li a {
	height: 70px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: #d92f2f;
	transition: 0.5s;
}
#top_wrap > ul li a:hover {
	background: var(--point-color2);
}
#top_wrap > ul li:nth-child(2) a {
	height: 70px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: #4d94da;
	transition: 0.5s;
}
#top_wrap > ul li:nth-child(2) a:hover {
	background: #90bdea;
}
@media only screen and (max-width : 768px) {
	#top_wrap {
		margin: 0;
		display: block;
	}
	#top_wrap > figure {
		margin: 15px;
	}
	#top_wrap > figure img {
		width: 100%;
	}
	#top_wrap > p {
		width: auto;
		margin: 20px 30px 0;
	}
	#top_wrap > p a {
		height: 50px;
		font-size: 1.6rem;
	}
  #top_wrap > ul {
    width: auto;
    margin: 20px 15px 0;
    display: block;
  }
  #top_wrap > ul li {
    width: 100%;
    margin: 0 0 10px;
  }
  #top_wrap > ul li a,
  #top_wrap > ul li:nth-child(2) a {
		height: 50px;
		font-size: 1.6rem;
  }
}

#news {
	margin-top: 20px;
}
#news h3 {
	margin-bottom: 20px;
	padding-bottom: 15px;
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--base-color);
	border-bottom: var(--base-color) 2px solid;
}
#news dl {
	height: 150px;
	overflow: auto;
}
#news dl dt {
	width: 7em;
	float: left;
	clear: left;
}
#news dl dd {
	margin-bottom: 15px;
	padding: 0 0 15px 7em;
	border-bottom: var(--point-color2) 1px solid;
}
@media only screen and (max-width : 768px) {
	#news {
		margin-top: 0;
		padding: 20px 30px 15px;
	}
	#news h3 {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 2.2rem;
		font-weight: 500;
		letter-spacing: 0.1em;
		color: var(--base-color);
		border-bottom: var(--base-color) 2px solid;
	}
	#news dl dt {
		width: 100%;
		margin-bottom: 5px;
		float: none;
	}
	#news dl dd {
		margin-bottom: 10px;
		padding: 0 0 10px 0;
	}
}