@charset "utf-8";
header {
	position: fixed;
	width: 100%;
	height: 50px;
	background: #FFFFFF;
	top: 0;
	left: 0;
	text-align: center;
	color: #649fd9;
	font-size: 18px;
	line-height: 50px;
	z-index: 9999;
}

a.nav-back-btn {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	height: 100%;
	font-size: 18px;
	color: #649fd9;
	line-height: 50px;
	display: block;
	padding-left: 33px;
}

.nav-back-btn::after {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 4.5px;
	top: 10px;
	background: url(img/back-icon.png) center center no-repeat, #ffffff;
	background-size: 7px 12px;
	border-radius: 30px;
}

.nav-back-btn:active {
	color: #FC0D57;
}

.nav-back-btn:active::after {
	position: absolute;
	width: 30px;
	height: 30px;
	left: 4.5px;
	top: 10px;
	background: url(img/back-icon.png) center center no-repeat, #E6E6E6;
	background-size: 7px 12px;
	border-radius: 30px;
}

a.content-menu-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
}

.content-menu-btn::after {
	position: absolute;
	top: 10px;
	right: 9px;
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: url(img/subnav-menu-icon.png) center center no-repeat, #ffffff;
	background-size: 16px 16px;
	border-radius: 30px;
}

.content-menu-btn:active::after {
	position: absolute;
	top: 10px;
	right: 9px;
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: url(img/subnav-menu-icon.png) center center no-repeat, #E6E6E6;
	background-size: 16px 16px;
	border-radius: 30px;
}

img.banner {
	width: 100%;
	height: auto;
	border: none;
	margin-top: 50px;
	display: block;
}

.wrapper {
	padding-left: 16px;
	padding-right: 16px;
	margin-top: 20px;
}

.wrapper p {
	font-size: 16px;
	color: #4a4a4a;
	text-indent: 2em;
	margin: 0;
	line-height: 24px;
}

.create-section {
	background: url(img/create-area-bg.jpg) center bottom no-repeat;
	background-size: 100%;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	margin-top: 20px;
}

.content-section {
	padding: 26px;
	border: 1px solid #e6e6e6;
	border-bottom: none;
	background: #FFFFFF;
	min-height: 320px;
}

.input-item {
	width: 100%;
	border-bottom: 1px dashed #acacac;
	font-size: 18px;
	color: #4A4A4A;
	height: 55px;
	padding-top: 16px;
	padding-bottom: 16px;
	position: relative;
}

.input-item label {
	position: absolute;
	left: 0;
	top: 16px;
}

.text-item {
	height: auto;
	min-height: 55px;
}

.text-item label {
	position: relative;
	left: 0;
	top: 0;
}

.msg-input {
	width: 100%;
	padding-left: 110px;
}

.msg-input,
.msg-text {
	color: #5e9edc;
	font-size: 18px;
}

.msg-text {
	width: 100%;
	border: none;
}

.msg-btn {
	display: block;
	width: 100%;
	background: url(img/msg-send-btn.png) center center no-repeat;
	background-size: 100%;
	height: auto;
	min-height: 90px;
}

#togglebar {
	width: 100%;
	height: 28px;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 28px;
	background: #E34033;
	margin-top: 35px;
}

#togglebar span.showarea {
	width: 84px;
	display: block;
	margin: auto;
	background: url(img/uptri-icon.png) center right no-repeat;
	background-size: 10px 5px;
}

#togglebar span.wraparea {
	width: 54px;
	display: block;
	margin: auto;
	background: url(img/tri-icon.png) center right no-repeat;
	background-size: 10px 5px;
}

.wish-wall {
	margin-top: 20px;
}

.wallpic {
	width: 100%;
	height: auto;
	display: block;
}

.wish-list {
	padding-left: 16px;
	padding-right: 16px;
	background: #e34033;
	padding-top: 10px;
	padding-bottom: 60px;
}

.wish-item {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	background: #bc0322;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 24px;
	margin-top: 25px;
}

.wish-item:first-child {
	margin-top: 0;
}

.wish-item span {
	display: block;
	text-align: right;
	color: #FFF993;
}

.relative-item {
	color: #BC0322;
	background: #fff993;
}

.relative-item span {
	color: #BC0322;
}
#bgm {
	width: 1px;
	height: 1px;
	position: absolute;
	top: -1px;
}
.bgm-btn {
	width: 30px;
	height: 30px;
	position: fixed;
	top: 70px;
	right: 16px;
	background: url(img/btn.svg) center center no-repeat;
	background-size: contain;
	z-index: 200;
}

.rotate {
	-webkit-animation: rotating 1.2s linear infinite;
	-moz-animation: rotating 1.2s linear infinite;
	-o-animation: rotating 1.2s linear infinite;
	animation: rotating 1.2s linear infinite
}

@-webkit-keyframes rotating {
	from {
		-webkit-transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes rotating {
	from {
		transform: rotate(0deg)
	}
	to {
		transform: rotate(360deg)
	}
}

@-moz-keyframes rotating {
	from {
		-moz-transform: rotate(0deg)
	}
	to {
		-moz-transform: rotate(360deg)
	}
}