/********************
* ポケモン詳細画面CSS
*********************/
body {
	background-image: url("../../img/common/background.png");
}
/** メインフレーム */
.mainFrame {
	max-width: 95%;						/*横幅最大*/
	margin: 50px auto;					/*マージン*/
	padding:20px;						/*パディング*/
	border: solid 1px #3aaacc;			/*枠線*/
	border-radius: 10px;				/*角の丸み*/
	background:rgb(255 255 255 / 90%);	/*背景色透過*/
}
.titleMain {
	position: relative;
	background: linear-gradient(to right, #0082ff, #aed0ff);
	padding: 8px 5px 8px 30px;
	font-size: 20px;
	font-weight:bold;
	color: white;
	border-radius: 0 5px 5px 0;
}
.titleMain:before {
	font-family: "Font Awesome 5 Free";
	content: "\f05a";
	display: inline-block;
	line-height: 40px;
	position: absolute;
	padding: 0em;
	color: white;
	background: #0082ff;
	font-weight: 900;
	font-size: 48px;
	width: 53px;
	text-align: center;
	height: 53px;
	line-height: 50px;
	left: -30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
	border-bottom: solid 2px #4967b4;
}
.infoBox {
	padding: 4px;
	margin-top: 10px;
	color: #2c2c2f;
	border-bottom: solid 1px #eaeaea;
}
.infoBox p {
	margin: 0; 
}
.dataField {
	white-space: nowrap;
	margin: 0px;
	padding: 0px;
}
/** タイトル */
.titleName {
	max-width: 100%;					/*横幅最大*/
	margin-bottom: 5px;					/*マージン*/
	white-space: nowrap;				/*折り返し禁止*/
	font-size: 22px;					/*文字サイズ*/
	font-weight: bold;					/*文字装飾*/
	padding: 4.7px 0px 1px 7px;			/*文字周りの余白*/
	border-left: solid 3px #80d0ff;		/*左線（実線 太さ 色）*/
	border-bottom: solid 0.5px #80d0ff;	/*下線（実線 太さ 色）*/
	background: linear-gradient(to right, #dcf3ff, #FFF);	/*背景色*/
}
