@charset "UTF-8";
/* CSS Document */

/* viewブラウザ */




/* ヘッダー画像 */
.header-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.header-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.user-info h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.user-info p {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

.user-info strong {
    color: #333;
}

/* クラブ履歴セクション */
h3 {
    margin-top: 40px;
    font-size: 22px;
    color: #333;
    text-align: center;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}







@media (min-width: 1020px) {
	
	div.profile-container{
		
		width:100%;
		height:auto;
		float:left;
		
	}
	
	
/* ユーザー情報 */
.user-info {
    margin-top: 180px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

	

}


@media (max-width: 1020px) and (min-width: 768px) {
	/* headerの関係*/
	
	div.profile-container{
		
		width:100%;
		height:auto;
		float:left;
		
	}
	
/* ユーザー情報 */
.user-info {
    margin-top: 180px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

	
	
	
}




/* レスポンシブ対応 */
@media (max-width: 768px) {

	
	div.profile-container{
		width:100%;
		height:auto;
		float:left;
	}
	
	
    .header-container {
		width:100%;
        height: 230px;
		border-top: none;
		border-bottom: none;
    }

/* プロフィール画像 */
.profile-picture {
    position: absolute;
    bottom: 0px;
    left: 12px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    z-index: 1;
}
.header-picture {
    width: 100%;
    height: 160px;  /* 必要に応じて調整 */
    object-fit: cover;
    border-radius: 0px; /* 角を少し丸める */
}

    .user-info {
		width:100%;
		height: auto;
		float: left;
        margin-top: 0px;
		padding: 15px;
		background: none;
    }
	

    h3 {
        font-size: 18px;
    }

    table th, table td {
        font-size: 14px;
        padding: 8px 10px;
    }
	
	
	
}
