.content {
	margin-top: 35px;
}

.point-balance {
    font-size: 24px;
    border-bottom: solid 1px #BCBCBC;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.year-select {
/*
	width: 120px;
	height: 44px;
	padding: 10px;
*/
    display: inline-flex;
    align-items: center;
    position: relative;
}

.year-select::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.year-select select {
    appearance: none;
    min-width: 148px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
}

/** ポイントテーブル */
table {
	border:none;
}
.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background-color: #BCBCBC;
    color: black;
    padding: 10px;
    text-align: left;
	font-size:18px;
}

.history-table td {
    padding: 10px;
	font-size:18px;
   /* border-bottom: 1px solid #eee;*/
}

table th, table td {
	border: none;
	border-bottom: solid 2px #fff;
}

/* 偶数行の背景色 */
.history-table tr:nth-child(even) {
    background-color: #EFEFEF;
}

.history-table tr:nth-child(odd) {
    background-color: #FAFAFA;
}

/* 各列の幅設定 */
.history-table th:nth-child(1),
.history-table td:nth-child(1) {
    width: 200px;
}

.history-table th:nth-child(2),
.history-table td:nth-child(2) {
    width: 100px;
}

.history-table th:nth-child(3),
.history-table td:nth-child(3) {
    width: auto;
}

@media screen and (max-width: 768px) {
	.history-table th:nth-child(1),
	.history-table td:nth-child(1) {
    	width: 33%;
	}

	.history-table th:nth-child(2),
	.history-table td:nth-child(2) {
	    width: 24%;
	}
}

/** ページャ */
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.pager-button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

.pager-button:disabled {
    opacity: 0.9;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 8px;
}


.page-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    background: white;
}

.page-number:disabled {
    opacity: 0.9;
    cursor: not-allowed;
}

.page-number.active {
    background: #333;
    color: white;
    border-color: #333;
}

.page-dots {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2em;
    z-index: 1000;
}