.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width:768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}



a {
  transition: all .2s ease-out;
  text-decoration: none;
    
}


html._hidden,
body._hidden{
	overflow: hidden;
}

main._modalOpen {
  z-index: 999;
}

.Modal-btn-area a {
	display: block;
	border-radius: 60px;
	padding: 10px 0px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	max-width: 540px;
	letter-spacing: -0.02em;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.2);
	width: fit-content;
}


.Modal-btn-area a:hover {
	text-decoration: none;
	transform: scale(1.08);
	opacity: 1;
}

.Modal-btn-area a._blue {
	color: #fff;
	background-image: linear-gradient(to right, #1045e1 0%, #40a8dd 100%);
}

.Top-btn-area a._blue span{
	display: block;
	background-image: url(../img/icon-arrow-white.webp);
	background-repeat: no-repeat;
	background-size: 24px 26px;
	background-position: right 43px center;
	
}


.Modal-btn-area a._blue span {
	display: block;
	background-image: url(../img/icon-arrow-white.webp);
	background-repeat: no-repeat;
	background-size: 12px 13px;
	background-position: right 13px center;
	padding: 0 50px;
}



._none {
	display: none !important;
}
.mapModal {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.1);
	opacity: 0;
	pointer-events: none;
	transition: all .5s ease-out;
	z-index: -1;
}
.mapModal._active {
	opacity: 1;
	pointer-events: auto;
	z-index: 999;
}
.mapModal-mask {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	/* background-color: rgba(0, 0, 0, 0.1); */
}
.mapModal-container {
	width: 540px;
	height: auto;
	/* inset: 0; */
	margin: auto;
	position: absolute;
	height: fit-content;
	/* z-index: 999; */
}
.mapModal-content {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	border-radius: 24px;
	overflow: hidden;
	background-color: #fff;
}
.mapModal-contentLeft {
	width: 220px;
}
.mapModal-contentLeft img {
  max-width: none;
}
.mapModal-contentRight {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mapModal-contentLeft > img {
	width: 220px;
	height: 100%;
	aspect-ratio: 220/211;
	object-fit: cover;
}
.mapModal-contentLeft img._isLeft {
  object-position: left;
}
.mapModal-contentRightTitle {
	font-size: 1.8rem;
	font-weight: bold;
}
.mapModal-contentRightText {
	font-size: 1.4rem;
	font-weight: 400;
}

.mapModal-close {
	position: absolute;
    top: -50px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "verdana", sans-serif;
	font-weight: 100;
}
.js-hoverItem {
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.svgWrapper {
		overflow-x: scroll;
		margin: 0 -6.5vw;
		white-space: nowrap;
	}
	#svgContainer {
		width: 200vw;
	}
	.mapModal-content {
		align-items: stretch;
		border-radius: 10px;
	}
	
	.mapModal-container {
		width: 90%;
		/* inset: 0; */
		top: 50%;
		left: 0;
		right: 0;
		margin: auto;
	}
	.mapModal-contentLeft {
		width: 41%;
		flex-shrink: 0;
	}
	.mapModal-contentLeft > img {
		/* width: 41%; */
		/* aspect-ratio: 280/348; */
		object-fit: cover;
		width: 100%;
        height: 100%;
	}
	.mapModal-contentRightTitle {
		font-size: 1.4rem;
	}
	.mapModal-contentRightText {
		font-size: 1.2rem;
	}
	.mapModal-contentRight {
		gap: 5px;
		padding: 10px;
	}
	.Modal-btn-area a._blue span {
		padding: 0 40px;
	}
	.Modal-btn-area a {
		font-size: 1.2rem;
		padding: 10px 0px;
		box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2);

	}
	.scroll_guide {
		text-align: center;
		padding-bottom: 3px;
		font-weight: var(--font-bold);
		font-size: var(--text-xl-2);
		line-height: 2.5;
	}
  .mapModal-contentLeft img._isLeft {
    object-position: 30% 20%;
  }
	
}