/*****************************************/
/*ボディ背景*/
:root {
    --all_bg_color: #eeeeee;
}
/*コンテンツ背景*/
:root {
    --container_bg_color: #ffffff;
}
/*テキストカラー*/
:root {
    --container_txt_color: #111111;
}
/*リンクカラー*/
:root {
    --link_txt_color: #6da4ac;
}
/*名前テキストカラー*/
:root {
    --name_txt_color: #333333;
}
/*メインカラー*/
:root {
    --user_main_color: #6da4ac;
}
/*****************************************/
html,
body {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'メイリオ', Meiryo, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'ＭＳ Ｐゴシック', 'MS PGothic''MS UI Gothic', 'Helvetica', 'Arial', sans-serif;
    font-size: 1em;
    background: var(--all_bg_color);
}
a {
    cursor: pointer;
    color: var(--link_txt_color);
    text-decoration: none;
}
a:link,
a:visited {
    color: var(--link_txt_color);
}
a:hover,
a:active {
    color: var(--link_txt_color);
    opacity: 0.7;
}
.container {
    width: 1000px;
    margin: 0 auto;
    background: var(--container_bg_color);
    color: var(--container_txt_color);
}
/* header ************************************/
header {
    overflow: hidden;
}
.name_area {
    background: url(../img/bg_eyecatch.jpg) no-repeat center 130px;
    height: 400px;
    position: relative;
}
h1 {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    height: 130px;
    padding: 45px 0;
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.3em;
    background: #ffffff;
    color: var(--name_txt_color);
}
h1 span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: #999999;
    margin-top: ;
}
.prof_area {
    float: left;
    width: 800px;
    padding: 100px 100px 60px;
    text-align: center;
}
.user_overview {
    width: 300px;
    top: 0.5em;
    float: right;
    position: relative;
    text-align: left;
}
.user_ico {
    width: 120px;
    height: 120px;
    border: solid 2px #ffffff;
    position: absolute;
    top: -168px;
    left: -160px;
}
.detail_area span {
    display: block;
    margin-bottom: 1em;
    font-size: 12px;
}
.detail_area span i {
    margin-right: 0.5em;
}
.detail_area span.mail_address i {
    color: var(--link_txt_color);
    margin-top: 2em;
}
.user_pr {
    width: 470px;
    float: left;
    line-height: 2.0;
    text-align: left;
    font-size: 14px;
}
.user_pr span {
    margin-top: 1em;
    display: block;
    text-align: left;
    color: var(--link_txt_color);
}
.user_pr span a {
    font-size: 12px;
    color: var(--link_txt_color);
}
.user_pr span a:hover {
    opacity: 0.7;
}
.user_pr span a img {
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.sns_list{
	list-style: none;
	display: flex;
	/*justify-content: center;*/
}

.sns_list .sns_list-item{
	width:20px;
	height: 20px;
	margin: 0 10px 0 0;
}

.sns_list .sns_list-item a{
	display: block;
	width:20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
}

.sns_list .sns_list-item a.twitter{
	background-image: url("../../../../assets/img/mypage/basic/icon-twitter.png");
}
.sns_list .sns_list-item a.facebook{
	background-image: url("../../../../assets/img/mypage/basic/icon-facebook.png");
}
.sns_list .sns_list-item a.instagram{
	background-image: url("../../../../assets/img/mypage/basic/icon-instagram.png");
}
.sns_list .sns_list-item a.web{
	background-image: url("../../../../assets/img/mypage/basic/icon-web.png");
}

/* footer ************************************/
footer {
    padding: 60px 0;
    text-align: center;
    font-size: 12px;
}
footer img {
    width: 80px;
    margin-left: 0.5em;
    vertical-align: bottom;
}


@media screen and (max-width:480px) {
	
header{
	padding: 0 0 30px;
}	
	
.container{
	width: 100%;
}	
	
.container header .name_area{
	width: 100%;
	height: 250px;
	padding: 0 3% ;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
}	
	
h1{
	font-size: 20px;
	line-height: 1.3em;
	padding: 20px 0;
	height: auto;
}	
	
h1 span {
    font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
}
	
.prof_area{
	float: none;
	width: 100%;
	height: auto;
	padding: 70px 5% 0;
	box-sizing: border-box;
}	
	
.user_pr{
	float: none;
	width: 100%;
	height: auto;
}	
	
.user_pr .url{
	margin: 15px 0 20px;
	font-size: 10px;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
}
	
.user_pr .url a{
	font-size: 8px;
}	
	
.user_overview{
	float: none;
	width: 100%;
	height: auto;
	position: static;
}	
	
.user_ico{
	position: absolute;
	top:200px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
}	
	
.detail_area{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}	
	
.detail_area span{
	width: 50%;
	height: auto;
}	
	
.detail_area span.mail_address{

}
	
.detail_area span.mail_address i{
	margin: 0 5px 0 0;
}	

	
	
}

