/*****************************************/
/*ボディ背景*/

:root {
    --all_bg_color: #eeeeee;
}
/*コンテンツ背景*/
:root {
    --container_bg_color: #ffffff;
}
/*テキストカラー*/
:root {
    --container_txt_color: #111111;
}
/*リンクカラー*/
:root {
    --link_txt_color: #2482c7;
}
/*名前テキストカラー*/
:root {
    --name_txt_color: #ffffff;
}
/*メインカラー*/
:root {
    --user_main_color: #8730a7;
}

/*****************************************/

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(/templates/eyecatch/1/img/bg_eyecatch.jpg) no-repeat;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--name_txt_color);
}

h1 span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
}

.prof_area {
    float: left;
    padding: 45px 60px;
    text-align: center;
}

.user_overview {
    width: 260px;
    float: left;
    position: relative;
    top: -90px;
    margin-bottom: -90px;
    text-align: center;
}

.user_ico {
    margin-bottom: 10px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: solid 4px #ffffff;
    border: solid 4px var(--user_main_color);
}

.contact_area {
    margin-bottom: 18px;
    overflow: hidden;
    padding: 0 84px;
}

.contact_area a {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin: 0 5px;
    background: var(--user_main_color);
}

.contact_area a:hover {
    opacity: 0.7;
}

.contact_area a img {
    vertical-align: middle;
}

.detail_area span {
    display: block;
    margin-bottom: 1em;
    font-size: 12px;
}

.user_pr {
    width: 620px;
    float: right;
    line-height: 2.0;
    text-align: left;
    font-size: 14px;
}

.user_pr span {
    margin-top: 1em;
    display: block;
    text-align: right;
}

.user_pr span a {
    display: inline-block;
    padding: 0 2em;
    font-size: 12px;
    border-radius: 50px;
    color: #ffffff;
    background: var(--user_main_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: 26px;
	line-height: 1.3em;
}	
	
h1 span {
    font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
}
	
.prof_area{
	float: none;
	padding: 0 0;
}

.user_overview{
	float: none;
	width:90%;
	margin: 0 auto;
	top:-60px;
}	

.user_ico{
	width: 100px;
	height: 100px;
	border-width: 4px;
}	

.contact_area{
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 35%;
	height: auto;
	margin: 0 auto 20px;
	padding: 0;
}	
	
.contact_area a{
	width: 40px;
	height: 40px;
	display: inline-block;
	position: relative;
}	
	
.contact_area a img{
	width:45%;
	position: absolute;
	top:50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
	
.detail_area{
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 15px ;
}	
	
.detail_area span{
	font-size: 12px;
	margin: 0 3px;
	/*border: #808080 1px solid;
	border-radius: 40px;*/
	padding: 10px 15px;
	box-sizing: border-box;
}	

.user_pr{
	float: none;
	width: 100%;
	height: auto;
	margin: -50px auto 0;
	padding: 0 5%;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.6em;
}	
	
.user_pr .url{
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
}	
	
.user_pr .url a{
	font-size: 8px;
}

}