@charset "utf-8";

/*------------------------------*/
/* メインタイトル */
.main_header_frame {
	background-size: cover;
	background-position: center;
}

/*------------------------------*/
/* 装備枠 */
.equipment_image_frame {
	position: relative;
}

/* 背景画像 */
.equipment_image_box {
	background-size: cover;
	background-position: center;
	height:300px;
	transform: translateY(25px);
	-webkit-transform: translateY(25px);
}

/* 装備名 */
.equipment_title_frame {
	background-color: #2e3225;
	color:#ffffff;
	width:80%;
	margin-left:auto;
	margin-right:auto;
	z-index: 1;
	position: relative;
	padding:20px 10px;
	cursor:pointer;
	transition: 0.3s;
}
.equipment_title_frame:hover {
	transform:scale(1.05);
	-webkit-transform:scale(1.05);
}

/* 黄色矢印アイコン */
.right_arrow_icon {
	height:30px;
}

/* 説明枠 */
.comment_box {
	background-color:#DCDCDC;
	padding:20px;
	border-radius:10px;
	transform: translateY(-25px);
	-webkit-transform: translateY(-25px);
}

/*------------------------------*/
/* 線 */
.border_top_2e3225_d {
	border:none;
	border-top:1px solid #2e3225;
}

/*------------------------------*/
/* 開閉ボックス */
.js_equipment_hidden_box { display:none; }
