@charset "utf-8";
.container .way .way-bottom .cell .detail,
.container .way h2{
	font-size: 20px;
}
.container .way .way-bottom .cell .name{
	font-size: 18px;
}



.container {
	width: 100%;
}
.container .way {
	width: 100%;
	padding: 5vw;
	overflow: hidden;
}
/*.container .way .fnt_30 {
	font-size: 1.8vw;	
}*/
.container .way .title {
	color: #333;
	font-size: 30px;
	font-weight: bold;
}
.container .way .way-bottom {
	width: 100%;
	display: flex;
	margin-top: 1.8vw;
	justify-content: space-between;
	background: #f5f5f5;
	padding: 2vw 4vw;
	border-radius: 6px;
}
.container .way .way-bottom .cell {
	width: 26vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 1.2vw 0;
}
.container .way .way-bottom .cell .icon {
	font-size: 1.8vw;
	color: #F2221D;
}
.container .way .way-bottom .cell .icon i {
	font-size: 2vw;
	color: #F2221D;
}
.container .way .way-bottom .cell .name {
	/*font-size: 1.3vw;*/
	color: #707070;
	line-height: 30px;
}
/*.container .way .way-bottom .cell .detail {
	font-size: 1.6vw;
}*/
.container .way .map {
	width: 100%;
	height: 35.104vw;
	margin-top: 2.188vw;
	overflow: hidden;
	border-radius: 6px;
}
.container .way .map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*.container .way .phone_mb {
	display: none!important;
}*/
.nav-btn,
.overlay{
	display: none;
}

@media screen and (max-width: 960px) {
	.container {
		width: 100%;
		padding-top: 1.2rem;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	.container .way {
		width: 100%;
		padding: 1.4933rem 0.32rem 0.2rem 0.32rem;
	}
	.container .way .title {
		width: 100%;
		font-size: 0.64rem;
		color: #333;
		line-height: 0.64rem;
		margin-bottom: 0.2rem;
		font-weight: bold;
	}
	.container .way .way-bottom {
		width: 100%;
		flex-direction: column;
		margin-top: 20px;
		background: #ffffff;
		padding: 0;
	}
	.container .way .way-bottom .cell {
		width: 100%;
		/*height: 2.9333rem;*/
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 0.2rem;
		padding: 0.6133rem 0 0.6667rem;
		background: #f5f5f5;
		box-sizing: border-box;
	}
	.container .way .way-bottom .cell .icon {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.container .way .way-bottom .cell .icon i {
		font-size: 0.65rem;
		color: #F2221D;
	}
	.container .way .way-bottom .cell .name {
		font-size: 0.5rem;
		color: #333;
		margin-top: 0.2rem;
	}
	.container .way .way-bottom .cell .detail {
		font-size: 0.45rem;
		color: #888;
		padding: 0 1rem;
		display: flex;
		width: 85%;
		text-align: center;
		flex-direction: column;
		align-items: center;
	}
	.container .way .way-bottom .cell .detail a{
		color: #888;
	}
	.container .way .map {
		width: 100%;
		height: 8rem;
		margin: 0.2rem 0;
	}
	.container .way .map img {
		width: 100%;
		height: 100%;
	}
	.container .way .phone_pc {
		display: none!important;
	}	
	.nav-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40%;
		background: #ffffff;
		color: #F2221D;
		border-radius: 6px;
		padding: 6px 0;
		font-size: 16px;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		transition: opacity 0.2s, transform 0.1s;
		margin-top: 14px;
		border: 1px solid #F2221D;
	}
	.nav-btn a{
		color: #F2221D;
		display: block;
        width: 100%;
        text-align: center;
	}
	.nav-btn:active {
		opacity: 0.85;
		transform: scale(0.98);
		box-shadow: 0 4px 12px rgba(242, 34, 29, 0.3); 
	}
	.nav-btn svg {
		margin-right: 2px;
        stroke-width: 1.8;
	}

	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 1000;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		visibility: hidden;
		opacity: 0;
		transition: visibility 0.2s, opacity 0.2s;
	}
	.overlay.active {
		visibility: visible;
		opacity: 1;
	}
	.sheet {
		background: #fff;
		border-radius: 20px 20px 0 0;
		width: 100%;
		max-width: 500px;
		padding: 24px 16px calc(24px + env(safe-area-inset-bottom));
		transform: translateY(100%);
		transition: transform 0.25s ease-out;
	}
	.overlay.active .sheet { transform: translateY(0); }
	.sheet-title { font-size: 18px; font-weight: 600; text-align: center; margin-bottom: 20px; color: #1a1a1a; }
	.map-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
	.map-item { display: flex; flex-direction: column; align-items: center; cursor: pointer; }
	.map-item:active { transform: scale(0.92); }
	.map-icon {
	  width: 56px; height: 56px; border-radius: 16px;
	  background: #f5f7fa; display: flex; align-items: center; justify-content: center;
	  margin-bottom: 8px; font-size: 28px; color: #333;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	}
	.map-name { font-size: 14px; color: #333; font-weight: 500; text-align: center; }
	.cancel-btn {
	  width: 100%; background: #f5f5f5; border: none; border-radius: 14px;
	  padding: 14px 0; font-size: 16px; font-weight: 500; color: #333;
	  cursor: pointer; -webkit-tap-highlight-color: transparent;
	}
	.cancel-btn:active { background: #e8e8e8; }
	
	
	
	
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
/*  .container .way .way-bottom .cell .detail {
    font-size: 16px !important;*/
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  /*.container .way .way-bottom .cell .detail {
    font-size: 1.2vw !important;
  }*/
}
