@charset "UTF-8";

/* タグ全般 */
a {
	color: #0088FF;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
}

/* 汎用 */
.text-important {
	color: #FF0000;
	font-weight: bold;
}
.text-after {
	color: #0000FF;
	font-weight: bold;
}
.text-exchanged {
	background-color: #004400;
	color: #00FF00;
	font-weight: bold;
}

/* クラス固有 */
.container {
    background-color: rgba(255, 255, 255, 0.75);
	border-radius: 10px 10px 10px 10px;
	padding: 10px;
	position: relative;
    display: table;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
    text-decoration: none;
    color: #000;
	float: left;
	font-size: 1.6em;
}
.container_title {
    text-align: center;
}
.container_base { 
    width:100%;
    display: flex;
}

/* コンテナ上のセレクトメニュー */
.container select {
	font-size: 1.6em;	
}

/* 汎用リストベース */
.list_base {
	width: 100%;
	display: grid;
}

/* 共通ステージボタン */
.stageButton {
	background-color: #CBFFFF;
	border: 1px solid #000000;
	border-radius: 10px 10px 10px 10px;
	width: 90%;
	height: 70px;
	max-width: 300px;
	font-size: 20px;
	cursor: pointer;
	white-space: normal;
}
.stageButton:hover {
	background-color: #EEFFFF;
}
.stageLevel {
	width: 100%;
	display: flex;
	justify-content: center;
}
.stageLevel > div {
	width: 100%;
	float: left;
	display: table-cell;
	justify-content: center;
}
.stageLevel button {
	display: inline-flex;
	width: 40vw;
	border: 1px solid #000000;
	margin: 0px;
	padding: 0px;
	white-space: normal;
}
.stageLevel button > img {
	width: 100%;
}
.stageLevel button > img:hover {
	opacity: 0.5;
}
.stageLevelLink {
	cursor: pointer;
}
.stageLevelNull {
	cursor: default;
	opacity: 0.0;
}

/* フォーム関連 */
.form-group {
	display: table;
	border-collapse: collapse;
}
.form-group > div {
    display: table-row;
}
.form-group > div > div {
    display: table-cell;
	padding: 3px;
}
.is-invalid {
	background: #FFBBBB;
}
.invalid-feedback {
	color: #FF0000;
}

/* フェードイン・フェードアウト */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% { 
		opacity: 0;
	}
}