.spaceBetween {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.btn.input,
.spaceBetween .text p{
	margin: 0;
}

.box .box{
	border: none;
	position: relative;
}
.box .box:not(:first-child) {
	margin: 0;
	border-top: 4px solid #DEF4FA;
}

.box .box:not(:first-child):before{
	content: "";
	width: 52px;
	height: 26px;
	position: absolute;
	top: -4px;
	left: 50%;
	margin-left: -26px;
	background: url(/about/data/access/images/icon_down.svg);
	background-size: 54px 26px;
}
@media screen and (max-width: 768px){
	.box .box:not(:first-child):before{
		width: 30px;
		height: 15px;
		margin-left: -15px;
		background-size: 30px 15px;
	}
}


.map-wrap {
  max-width:  576px; /* ここに横幅を指定 */
}
 
/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 67%;
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}