#xmas_tree {
	width: 100%;
	max-width: 900px;
	margin: auto;
}
#xmas_tree * {
	line-height: 1.8;
	box-sizing: border-box;
	font-size: 1rem;
}
.contents_box {
	margin: 4rem auto !important;
	width: 100% !important;
	max-width: 800px!important;
}
#xmas_tree h4 {
	font-size: 1.2rem;
	font-weight: bold;
}
#c_consal {
	background: #F5DDDE;
}
.c_btn {
	width: 95%;
	max-width: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem auto 0;
	background: #C01A20;
	border-radius: 10px;
	color: #fff !important;
	padding: 1.5rem 3rem 1.5rem 2rem;
	font-weight: bold;
	position: relative;
	transition: .3s;
	text-decoration: none;
}
.c_btn::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.c_btn:hover {
	text-decoration: none;
	background: #D54E52;
}
.c_btn:hover::after {
	right: 1rem;
}
.com_step_no {
	background: #C01A20;
	font-size: 2rem !important;
}
.c_item_title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.c_item_tag {
	display: flex;
	align-items: center;
}
.c_item_tag > div {
	background: #C01A20;
	padding: 0.3rem 0.8rem;
	font-weight: bold;
	color: #fff;
}
.c_item_tag > span {
	padding: 0.5rem;
}
.c_item_tree {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 2.5rem 1fr;
}
.c_item_tree > img {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}
.c_item_tree > div {
	grid-column: 2 /3;
	grid-row: 1 / 2;
	background: green;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.3rem 0.8rem;
}
.c_item_tree > span {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	text-align: left;
	padding: 0.5rem;
}
.c_item_title_box p {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 2rem auto;
	text-align: left;
}
.item_btn {
	width: fit-content;
	margin: .5rem auto;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.item_btn img {
	width: 100%;
	display: block;
	max-width: 300px;
}
.item_name_box {
	width: fit-content;
	display: block;
	text-align: left;
}
.item_name_box span {
	color: #333;
}
.item_name_box div {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #C01A20;
	border-radius: 10px;
	padding: 1.5rem 3rem 1.5rem 2rem;
	color: #fff;
	margin-top: 1.5rem;
	width: fit-content;
	position: relative;
	transition: .3s;
}
.item_name_box div::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.item_btn:hover .item_name_box div {
	text-decoration: none;
	background: #D54E52;
}
.item_btn:hover .item_name_box div::after {
	right: 1rem;
}
.c_btn_back {
	width: 95%;
	max-width: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem auto 0;
	background: #555;
	border-radius: 10px;
	color: #fff !important;
	padding: 1.5rem 2rem 1.5rem 3rem;
	font-weight: bold;
	position: relative;
	transition: .3s;
	text-decoration: none;
}
.c_btn_back::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0d9";
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.c_btn_back:hover {
	text-decoration: none;
	background: #777;
}
.c_btn_back:hover::after {
	left: 1rem;
}
@media screen and (max-width: 600px) {
	.c_item_title {
		padding: 0 0.5rem;
	}
	.c_item_tag {
		flex-direction: column;
		align-items: flex-start;
	}
	.c_item_tag > span {
		padding: 0.5rem 0;
	}
	.c_item_tree {
		grid-template-columns: .55fr 1fr;
	}
	.c_item_title_box p {
		padding: 0 0.5rem;
	}
	.item_btn {
		flex-direction: column;
	}
	.item_name_box span {
		display: block;
		padding: 1rem 0;
	}
	.item_name_box div {
		margin: 0 auto;
	}
}