/*個別用*/
#areaImg {
	/* width:900px; */
	height: 700px;
}

#keyWd1 {
	font-size: 20px;
	font-weight: bold;
}

#keyWd2 {
	font-size: 20px;
	font-weight: bold;
}

#btn1 {
	width: 48%;
	font-size: 16px;
	height: 32px;
}

#btnStory {
	width: 48%;
	font-size: 16px;
	height: 32px;
}

#btn2 {
	width: 200px;
	font-size: 16px;
	height: 32px;
}

#btn3 {
	width: 200px;
	font-size: 16px;
	height: 32px;
}

#btn4 {
	width: 300px;
	font-size: 16px;
	height: 32px;
}

#btnJudgeClose {
	font-size: 16px;
	height: 32px;
}

#act3Text {
	font-size: 16px;
	height: 32px;
}


#hint2 {
	color: #ffffff;
	font-size: 15px;
}

/*汎用クラス*/
.center {
	text-align: center;
}

.dispNone {
	display: none;
}

.point {
	cursor: pointer;
}

.relative {
	position: relative;
	cursor: not-allowed;
}

.absolute {
	position: absolute;
	left: 0px;
	top: 0px;
}

/*モーダル画面用*/
#modal-content {
	z-index: 9999;
	display: none;
	position: fixed;
	width: 50%;
	margin: 10px auto 0;
	padding: 10px 20px;
	border: 2px solid #aaa;
	background: #000;
	color: #fff;
	max-height: calc(100vh - 10vh);
}

#modal-overlay {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.75);

}



#modal-close {
	float: right;
}

#modalInfo {
	font-size: 20px;
	font-weight: bold;
}

#modalMsg {
	font-size: 15px;
}

#modalImg {
	border: 1px solid #aaa;
	margin: 10px auto 0;
}

.button-link:hover {
	cursor: pointer;
	font-weight: bold;
}

.title {
	font-size: 40px;
	font-weight: bold;
}

.subTitle {
	font-size: 20px;
}

/* Center the div horizontally */
.centered-div {
	display: flex;
	justify-content: center;
	align-items: center;
	/* height: 100vh; */
	/* Adjust the height as needed */
}

/* Align the text inside the div to the left */
.text-left {
	text-align: left;
}

.table-main {
	width: 100%;
}

.table-action {
	position: relative;
	/* width: 100%;
	height: 100%; */
	z-index: 1;
}	

.judgement-panel {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	color: white;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	z-index: 2;
}

#areaPlay {
	width: 35%;
	margin-right: 0;
	margin-left: auto;
}

#opArea {
	padding-top: 10px;
}

.center-span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.red {
	color: red;
}

#bodyOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 1;
	z-index: 9999; /* Ensure it covers everything */
  }