.mypage_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 50px;
	-webkit-box-shadow: 0 0.2rem 0.3rem -0.3rem rgba(0, 0, 0, 0.15);
	box-shadow: 0 0.2rem 0.3rem -0.3rem rgba(0, 0, 0, 0.15);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: fixed;
	top: 0;
	left: 0;
	background: #FFF;
	z-index: 10;
}

.mypage_header .header_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.mypage_header .header_container .logo {
	width: 145px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 1%;
}

.mypage_header .header_container .logo svg {
	width: 60px;
	fill: #f17074;
}

.mypage_header .header_container .logo .logoTxt {
	display: block;
	width: 70px;
	line-height: 12px;
	white-space: nowrap;
	margin-left: 2%;
	padding: 2% 3%;
	border-radius: 0.5vh;
	border: 1px solid #f17074;
	font-size: 12px;
	color: #f17074;
	font-weight: bold;
}

.mypage_header .header_container .header_icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40%;
	max-width: 300px;
}

.mypage_header .header_container .header_icons .list_item {
	text-align: center;
	width: 80%;
	height: 50px;
	border-left: 1px solid #EDEDED;
}

.mypage_header .header_container .header_icons .list_item a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 2%;
}

.mypage_header .header_container .header_icons .list_item a img {
	display: block;
	margin: 4px auto;
    height: 69%;	
}

.mypage_header .header_container .header_icons .list_item a p {
	font-size: 9px;
}

.mypage_header .header_container .header_icons .list_item a .count {
	position: absolute;
	top: 0;
	right: 5%;
	min-width: 22px;
	line-height: 16px;
	border-radius: 2rem;
	padding: 2%;
	background-color: #F06065;
	color: #FFF;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #FFF;
	white-space: nowrap;
}

.mypage_header .header_container .header_icons .list_item.current_page {
	background-color: #F17074;
	color: #FFF;
	pointer-events: none;
}

.mypage_header .header_container .header_icons .list_item:last-child {
	border-right: 1px solid #EDEDED;
}

.mypage_header .header_container .top-link {
	font-size: 13px;
	color: #608bc7;
	text-decoration: underline;
	margin-top: 4px;
	margin-right: 7px;
}

@media screen and (max-width: 480px) {
	.mypage_header .header_container .top-link {
		font-size: 1.1rem;
	}
}
