@import "style.css";

.info {
	/* 背面の要素より上に表示したい場合は position と z-index を指定 */
	position: relative;
	z-index: 10;
	/* 必要に応じて内側の余白を確保 */
	padding: 16px;
	padding-bottom: 200px;
}

/* 全ての画面幅で真っ白な背景を適用 */
.wrapper::before {
	content: "";
	position: fixed;
	max-width: 450px;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #fff;
}

@media (min-width: 450px) {
	/* 中央450pxの上に真っ白な背景を重ねる */
	.wrapper::before {
		content: "";
		position: fixed;
		max-width: 450px;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-image: none;
		background-color: #fff;
	}
}
@media (max-width: 449px) {
	.wrapper::before {
		content: "";
		position: fixed;
		max-width: 450px;

		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		z-index: -1;
		background-image: none;
		background-color: #fff;
	}
}

#section0 {
	margin-bottom: -30px;
	padding: 0 20px;
	margin-top: 10px;
}

#section0  h2{
	text-align: center;
}

section h2 {
	padding: 5px;
	margin-bottom: 10px;
	margin-top: 20px;
	color: #000;
	font-size: 1.2em;
	font-weight: bold;
}

.spot-container {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.spot-container h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	padding: 10px 10px 10px 22px; /* 左に余白を追加（バー＋隙間分） */
	box-sizing: border-box;
}

.spot-container h3::before {
	content: "";
	display: block;
	position: absolute;
	left: 0px; /* 白枠の外側に配置 */
	top: 6px; /* 枠の上端と同じ */
	bottom: 6px; /* 枠の下端と同じ */
	width: 4px; /* 黒バーの幅 */
	background: #000;
	border-radius: 0; /* 角丸無し */
}

.map {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}
.map iframe {
	width: 100%;
}

.note {
	display: flex;
	flex-direction: column;
	margin-top: 16px;
	margin-bottom: 40px;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #ffffffb7;
	padding: 30px;
}

.note-title {
	font-weight: bold;
	color: #fff;
	background-color: #000;
	padding: 5px 15px;
	width: 70%;
	text-align: center;
	margin-bottom: 20px;
}

.contact-link {
	margin-top: 10px;
	margin-bottom: 10px;
}

.contact-link a {
	color: rgb(4, 0, 255);
}

.how-to-experience {
	display: block;
	width: 80%;
	margin: 28px auto 20px auto;
	padding: 12px;
	background: linear-gradient(to right, #e95513, #facb7a);
	border: 1px solid #ffffff;
	border-radius: 9999px;
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
}

/* トップに戻るボタン */
.back-to-top {
	position: fixed;
	bottom: 120px; /* 画面下からの距離 */
	right: 20px; /* 画面右からの距離 */
	width: 50px;
	height: 50px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	opacity: 0; /* 初期状態は非表示 */
	visibility: hidden; /* 初期状態で隠す */
	transition: opacity 0.3s, visibility 0.3s;
}

/* スクロール時に表示 */
.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.header-logo-content {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 70px;
	background-color: #000000;
}

.header-logo-content img {
	height: 100%;
	object-fit: contain;
	padding: 10px;
	margin-left: 30px;
}