/* import */
@import "reset.css";
@import "swiper.css";
@import "caution-qa.css";

/* リセット */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #000;
}

:root{
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

/* 微調整用スタイル */
.mt-20{
	margin-top: 20px;
}

.mt-30{
	margin-top: 30px;
}

.mt-40{
	margin-top: 40px;
}

html {
	scroll-behavior: smooth;
}
/* bodyとhtmlの余白をリセットして高さを確保 */
html,
body {
	margin: 0;
	padding: 0;
	height: 100%; /* 後述の .background 固定配置との整合性を取りやすくするため */
}

h2 {
	font-size: 1.2em;
}

.bg-black-message {
	background-color: #000; /* 黒背景 */
	color: #fff; /* 白文字 */
	border: 2px solid #fff; /* 白枠 */
	padding: 10px;
	margin: 10px;
	text-align: center; /* センター寄せ */
}

@media (min-width: 450px) {
	.pc-background {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		z-index: -10;
		background-image: url("../images/pc_bg.jpg");
		background-repeat: no-repeat;
		/* ▼ 幅100%、高さ100% */
		background-size: 100% 100%;
	}

	/* 中央450pxの上にモバイル用画像を重ねる */
	.wrapper::before {
		content: "";
		position: fixed;
		max-width: 450px;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-image: url("../images/phone_bg.jpg");
		background-position: 50% 100%;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

/* スマホ幅に収めるラッパ */
.wrapper {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	min-height: 100dvh;
	position: relative;
	padding-top: env(safe-area-inset-top);
	z-index: 1;
}
@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: url("../images/phone_bg.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/* sectionタグは内部コンテンツ全て左右中央寄せ */
section {
	width: 100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 20px;
	padding-bottom: 24px;
	position: relative;
	z-index: 2;
}

#section2 {
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(61, 61, 61, 0.9);
	color: #fff;
}

#section8 {
	padding-bottom: 0;
}


.header-area{
  position: fixed;
  top: 18px;
  left: 50%; /* 画面の中央に配置 */
  transform: translateX(-50%); /* 中央揃え */
  width: 100%;
  max-width: 450px; /* スマホ表示の最大幅を指定 */
  z-index: 1001;
  margin-bottom: 0;   /* 負のマージンを撤去 */
  background: none;
}

/* ヘッダー */
.header-content{ 
	padding: 8px 16px; 
	display: flex;
	justify-content: flex-end; /* 右端に配置 */
	width: 100%;
	max-width: 450px;
}


/* ハンバーガーアイコン */
.hamburger {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.menu-icon {
	width: 65px; /* アイコンサイズを調整 */
	height: auto;
	object-fit: contain;
	border-radius: 100%;
}

/* メインビジュアル */
/* メインビジュアルを重ね位置の基準にする */
.main-visual {
	position: relative; /* ここを追加 */
	padding: 60px 16px 0 16px;
}
.main-visual-img {
	width: 100%; /* スマホ幅(375px)ラッパに対して画像の横幅を100%に */
	height: auto; /* 縦横比を維持 */
	display: block; /* 余白のずれ防止 */
	margin: auto;
}



.title-img {
	margin-bottom: 10px;
	margin-top: 20px;
	width: 70%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.title-img img {
	width: 100%;
	height: auto;
}


/* フッター */
.footer-area {
	width: 100%;
	text-align: center;
	margin-top: 24px;
	padding: 16px 0;
	font-size: 0.9rem;
}

.purchase-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0; /* 追加: 左右を均等にする */
	margin: 0 auto; /* 中央揃え */
	max-width: 450px; /* 中央寄せする最大幅 */
	width: 100%;
	padding: 12px 0;
	text-align: center;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.purchase-container img {
	width: 80%;
	height: auto;
	margin: 0 auto;
}

.purchase-container a {
	display: block;
}

/* 全画面メニュー(オーバーレイ) */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 50%; /* 画面の中央に配置 */
	transform: translateX(-50%); /* 中央揃え */
	width: 100%;
	max-width: 450px; /* スマホ表示の最大幅を指定 */
	height: 100dvh;
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.menu-overlay.active {
	display: flex;
}
.close-btn {
	position: absolute;
	top: -2px;
	right: 28px;
	background: none;
	border: none;
	font-size: 4rem;
	color: #ffffff;
	cursor: pointer;
}
.menu-nav ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin-bottom: 16px; /* リスト下に少し余白を確保 */
}

.menu-nav li {
	margin: 16px 0;
}

/* メニュー部分のリストリンクを黒文字＆下線なし */
.menu-nav a {
	color: #ffffff; /* 黒文字に変更 */
	font-size: 1.3rem;
	text-decoration: none; /* 下線を消す */
}

/* ▼ 仕切り線スタイルを追加 ▼ */
.menu-divider {
	width: 80%; /* 線の長さは適宜調整 */
	margin: 0 auto; /* 中央寄せ */
	border: none; /* デフォルト線を消す */
	height: 1px;
	background-color: #aaa; /* 線の色 */
	margin-bottom: 16px; /* 下に余白 */
}

/* ▼ 下部リンク用のスタイル ▼ */
.menu-bottom-links {
	text-align: center; /* リンクを中央寄せ */
}

.menu-bottom-links a {
	display: block; /* 下に縦並びにする(横並びなら inline-block等) */
	color: #ffffff;
	font-size: 1rem; /* メニュー部分より少し小さめにする例 */
	text-decoration: none;
	margin: 8px 0; /* リンク同士の間隔 */
}

.menu-bottom-links a:hover {
	text-decoration: underline; /* ホバー演出など */
}




/* コンテンツを中央寄せ */
.container {
	margin-top: 20px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
}

/* イベントロゴボタン */
.event-logo {
	max-width: 200px; /* サイズはお好みで */
	height: auto;
}

/* リンク類 */
.links {
	margin: 16px 0;
	color: #007bff; /* お好みで変更 */
}
.links a {
	display: block; /* 縦並びにする */
	margin: 8px 0;
	text-decoration: none;
	color: #007bff;
	font-size: 1em;
}
.links a:hover {
	text-decoration: underline;
}

/* powered by 表示 */
.powered {
	margin-top: 8px;
	font-size: 0.8em;
	color: #666;
	margin-bottom: 100px;
}

.service {
	padding-bottom: 12px;
}


/* トップに戻るボタン */
.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;
}


/* フェードインの初期状態 */
.fade-in {
	opacity: 0; /* 初期は非表示 */
	transform: translateY(30px); /* 少し下から現れる */
	transition: opacity 1s ease-out, transform 1s ease-out;
}

/* アニメーションが発動する状態 */
.fade-in.active {
	opacity: 1;
	transform: translateY(0); /* 元の位置に戻る */
}


.top-message-img {
	width: 100%;
	height: auto;
	margin: auto;
}

.top-message-img img {
	width: 100%;
	height: auto;
	margin-top: 30px;
}

.bg-white-RR {
	background-color: rgba(255, 255, 255, 0.85);
	padding: 20px;
	margin : 20px 16px;
	border-radius: 20px;
}

.character-title-img{
	width: 60%;
	height: auto;
	margin: auto;
	margin-top: 40px;
}

.character-img{
	width: 80%;
	height: auto;
	margin: auto;
	margin-top: 40px;
}
.character-img-daizen{
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 40px;
}

.play-format-text{
	margin-top: 30px;
}

/* ※ マークつきのぶら下がりインデント */
.notes {
  margin: .5em 0 0;
  padding: 0;
  list-style: none;            /* 既定の丸ポチを消す */
}
.notes li {
  position: relative;
  padding-left: 1.6em;         /* マーカーぶんの余白 */
  line-height: 1.4;            /* 読みやすさ */
	font-size: 0.8rem;
}
.notes li::before {
  content: "※";
  position: absolute;
  left: 0;                     /* マーカーの位置 */
  top: 0;                      /* 行頭に揃える（複数行でもOK） */
}

.bg-pink{
	background-color: #000000;
	padding: 3px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

/* 価格文字列・価格は大きく。税込は小さくして下揃え */
.sell-info span{
	font-size: 2.5rem;
	font-weight: bold;
	display: flex;
	align-items: flex-end;
	text-align: center;
	justify-content: center;
}
.sell-info span p{
	font-size: 0.8rem;
	font-weight: normal;
	text-align: center;
	align-self: flex-end;
	margin-bottom: 0.5rem;
}

.sell-site-message{
	margin-top: 40px;
}

.experience-spot{
	background-color: #ffffffb2;
	padding: 30px 16px;
}

.experience-spot h3{
	text-align: center;
}


/* アイコンリストのスタイル */
.icon-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 20px 0;
}

.icon-list > div {
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-list-paraworld img {
	width: auto;
	height: 100px;
}

.icon-list-app-store {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.icon-list-app-store img {
	width: 100%;
	height: auto;
}

.item-heading img {
	height: 50px;
	width: auto;
}
.item-heading {
	position: relative;
	top: -36px;
}


.event-logo-container {
	width: 100%;
	display: flex;
	justify-content: center;
}


/* 体験地点リストコンテナ */
.experience-spot-list-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin: 8px 0;
	padding: 0 4px;
	width: 100%;
}

/* 体験地点の背景 */
.experience-spot-bg {
	/* background-image: url("../images/bg_white_RR.png"); */
	background-color: #000000;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 1; /* 正方形にする */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4px;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.6);
	min-width: 0; /* グリッドアイテムの縮小を許可 */
	/* 白縁線 */
	border: 2px solid #ffffff;
}

/* 主催・企画制作の横並びレイアウト */
.company-info {
	margin: 20px 0;
	text-align: center;
}

.company-item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
	gap: 20px;
}

.company-label {
	font-weight: bold;
	color: #000000;
}

.company-name {
	color: #000000;
}

/* 都道府県名 */
.spot-prefecture {
	font-size: 0.8rem;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 1px;
	line-height: 1.2;
}

/* エリア名 */
.spot-area {
	font-size: 0.6rem;
	font-weight: bold;
	color: #000000;
	margin-bottom: 1px;
	line-height: 1.2;
}

/* エリア詳細 */
.spot-area-detail {
	font-size: 0.5rem;
	color: #eeeeee;
	margin: 0;
	line-height: 1.2;
}

/* 主催・企画制作の横並びレイアウト */
.qa-item > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.qa-item > div > div:first-child {
	font-weight: bold;
	color: #007bff;
}

.qa-item > div > div:last-child {
	color: #000000;
}

/* スポット詳細リンク */
.spot-link-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}

.spot-link-wrapper:hover {
	transform: translateY(-2px);
}

.caution-text{
	font-size: 0.8rem;
}

.story-description-text{
	text-align: center;
	font-weight: bold;
}

