@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
	font-size:62.5%; /*ベースを10pxにしています*/
}
* {
	box-sizing:border-box;
}
/*================================================
 *  フロート回避
 ================================================*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*================================================
 *  ヘッダー
 ================================================*/
header {
	position:relative;
	color:#161823;
	background:#FFF;
	text-align:center;
	line-height:4.4rem;
	font-size:1.6rem;
	font-weight:900;
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
	display:flex;
	height:4.4rem;
	padding:0 1.8rem;
}
header::after {
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:rgba(22,24,35,0.2);
    height:1px;
    -webkit-transform:scaleY(0.5);
    -ms-transform:scaleY(0.5);
    transform:scaleY(0.5);
}
header h1 {
	flex:1;
	font-size:1.6rem;
	padding:0 1.2rem;
	height:100%;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellispis;
}
header h1 span {
	color:#F00;
}
.header-left {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	width:24px;
}
.header-right {
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    width:24px;
}
/*================================================
 *  メイン
 ================================================*/
#user-page {
    background:#fff;
	height:calc(100% - 93px);
    overflow:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
}
#user-page .user-profile {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    padding:1.2rem 26px;
    width:100%;
}
#user-page .user-profile .user-profile-avatar {
    width:96px;
	height:96px;
    border-radius:50%;
    overflow: hidden;
}
#user-page .user-profile .user-profile-avatar img {
	width:100%;
	line-height:0;
}
#user-page .user-profile .user-profile-nickname {
	text-align:center;
    color:rgba(22,24,35,0.5);
	font-size:2.9vw;
	padding-top:60%;
}
#user-page .user-profile .user-profile-nickname  span {
	color: #161823;
	font-size:150%;
	font-weight:900;
}
.btn {
	text-align:center;
	padding-bottom:10px;
	border-bottom:solid 1px rgba(22,24,35,0.2);
	margin-bottom:10px;
}
.btn a {
	width:50%;
	display:block;
	font-size:3.864vw;
	text-decoration:none;
	color:#FFF;
	font-weight:900;
	line-height:1;
	background:#F00;
	padding:1rem 0 0.8rem;
    border-radius:5px;
	margin:0 auto;
}
/*================================================
 *  切り替え
 ================================================*/
.tabnav{
	text-align:center;
	margin:0;
    padding:0;
}
.tabnav li{
    display: inline;
}
.tabnav li label{
    display: inline-block;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
	cursor: pointer;
	color:#bcb8c1;
	font-size:3.382vw;
}
input[name=tabinput]{
  display: none;
}
#tab01:checked ~ .tabnav .tabnav01,
#tab02:checked ~ .tabnav .tabnav02 {
	border-bottom:solid 2px #333;
    color: #000;
}

/* tabcontent */
.tabcontent{
    padding:20px 0;
}
.tabcontent div{
  display: none;
}
#tab01:checked ~ .tabcontent #tabcontent01,
#tab02:checked ~ .tabcontent #tabcontent02 {
  display: block;
}
.contribution {
    display:flex;
    flex-wrap:wrap;
    -webkit-box-pack:start;
    justify-content:flex-start;
    align-items:flex-start;
    margin:0px;
    padding:0px 12px;
}
.img_box {
    display: block;
    position: relative;
    height: 0px;
    width: calc((100% - 12px) / 3);
    padding-bottom: calc((100% - 12px) / 3);
    min-width: 0px;
    margin-bottom: 6px;
    border-radius: 8px;
}
.img_box:nth-of-type(3n+2) {
    margin: 0px 6px;
}
.contribution a {
    color: inherit;
    touch-action: manipulation;
    text-decoration: none;
}
.thumbnail {
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    display:block;
    border-radius:8px;
}
.user-profile_detailed {
	text-align:center;
	font-size:2.9vw;
	line-height:2;
	padding-bottom:3rem;
}
.user-profile_spec {
	font-size:2.9vw;
	line-height:2;
    padding:0px 12px;
}
.user-profile_spec li{
	display: inline-block;
	width: calc((100% - 12px) / 2);
}
.user-profile_spec li.end {
	width: calc((100% - 12px) / 1);
}

/*================================================
 *  フッター
 ================================================*/
footer {
    position:relative;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    background-color:#FFF;
    height:4.9rem;
    padding:0 1.6rem;
}
footer::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    background:rgba(22,24,35,0.2);
    height:1px;
    -webkit-transform:scaleY(0.5);
    -ms-transform:scaleY(0.5);
    transform:scaleY(0.5);
}
footer .link-icon-container {
    display:block;
    position:relative;
}
footer a {
    color:inherit;
    -webkit-text-decoration:none;
    text-decoration:none;
}
footer a:-webkit-any-link {
    color:-webkit-link;
    cursor:pointer;
    text-decoration:underline;
}
footer div:nth-child(3) {
    width:75px;
}
footer .link-icon {
    width:49px;
    height:49px;
    position:relative;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:100% 100%;
}