/*
 * バス予約
 */

#page_title {
	font-size: 30px;
	line-height: 1.6em;
}

#bus_rsv {
	width: 100%;
display: flex; /* 横並びにする */
  list-style: none; /* 点を消す */
  padding: 0;
  margin: 0;
  justify-content: space-between; /* 均等に広げる場合 */
  /* justify-content: center; 中央寄せにしたい場合はこちら */
}

#bus_rsv h2{
	font-size: 24px;
	margin-bottom: 20px;
}

#bus_rsv li{
	text-align: center;
	width: 48%;
}

#bus_rsv .link{
	font-size: 24px;
	overflow-wrap: anywhere;
}

#bus_rsv img{
	width: 100%;
	max-width: 370px;
}

@media screen and (max-width: 780px) {
	#bus_rsv {
		display: grid;
	}
	
	#bus_rsv li{
		text-align: center;
		width: 100%;
	}
	
	#bus_rsv li:nth-of-type(1){
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-bottom: solid 1px #000;
	}
}
