@charset "UTF-8";
/************************************
** 共通定義
************************************/
:root {
	/* バッチの定義 */
	--badge-color-completed: #006e54;
	--badge-color-media-mix: #ff6b6b;
	--badge-color-original-work-novel: #1e3799;
	--badge-color-amazon-novel: #f08300;
	
	/* アフィリエイトリンクの定義 */
	--aff-color-amazon: #ff9900;
	--aff-color-amazon-transparent: rgba(255, 153, 0, 0.8);
	--aff-color-amazon-audible: #232f3e;
	--aff-color-amazon-audible-transparent: rgba(35, 47, 62, 0.8);
	--aff-color-ebookjapan: #4285f4;
	--aff-color-ebookjapan-transparent: rgba(66, 133, 244, 0.8);
	--aff-color-booklive: #ff6d00;
	--aff-color-booklive-transparent: rgba(255, 109, 0, 0.8);
	--aff-color-rakuten: #bf0000;
	--aff-color-rakuten-transparent: rgba(191, 0, 0, 0.8);
    
    /* シャドウの定義 */
    --aff-shadow-normal: 0 2px 4px rgba(0,0,0,0.1);
    --aff-shadow-hover: 0 4px 8px rgba(0,0,0,0.15);
}

/************************************
** 全体共通スタイル
************************************/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/************************************
** テーブル共通スタイル
************************************/
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

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

/************************************
** 本のギャラリーグリッド
************************************/
.bks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
    gap: 20px;
	margin-top: 30px;
}

.bk-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bk-image {
    height: auto;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

.bk-image:hover {
	opacity:0.5;
	transition:0.3s;
}

.bk-image:has(> img.no-image):hover {
	opacity: 1;
    pointer-events: none;
}

.bk-image a {
    display: block;
    width: 100%;
}

.bk-image img:last-child {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.bk-card:hover .manga-image img:last-child {
    transform: scale(1.05);
}

.bk-info {
    padding: 15px;
    background: white;
}

p.award-round, p.bk-series {
	color: #223a70;
	font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.3;
}

p.bk-ti {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.3;
}

p.bk-ti a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s;
}

p.bk-ti a:hover {
    color: #ff6b6b;
}

p.bk-au {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.bk-btn {
    display: block;
    background: #4a69bd;
    color: white;
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.bk-btn:hover {
    background: #1e3799;
}

/************************************
** バッジスタイル（完結済み・メディアミックスなど）
************************************/
.bk-badges-container {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 5px;
	z-index: 10;
}

.bk-badge {
	background: #16160e;
	color: white;
	padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
	text-align: center;
}

.completed-badge {
	background: var(--badge-color-completed);
}

.media-mix-badge {
    background: var(--badge-color-media-mix);
}

.original-work-novel-badge {
    background: var(--badge-color-original-work-novel);
}

.kindle-unlimited-badge, .amazon-audible-badge, .e-book-badge {
    background: var(--badge-color-amazon-novel);
}

/* 詳細ページ用バッジ */
.book-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.book-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.completed-badge { background-color: #28a745; }
.media-mix-badge { background-color: #dc3545; }
.original-work-novel-badge { background-color: #6f42c1; }
.amazon-audible-badge { background-color: #ff9500; }
.e-book-badge { background-color: #17a2b8; }
.kindle-unlimited-badge { background-color: #232f3e; }
.default-badge { background-color: #6c757d; }

/************************************
** アフィリエイトリンクボタン
************************************/
.buy-btn {
	width: 100%;
    background-color: white;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: var(--aff-shadow-normal);
    overflow: hidden;
    position: relative;
}

.buy-btn:hover {
	transform: translateY(-2px);
    box-shadow: var(--aff-shadow-hover);
}

.buy-btn a {
	display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    padding-left: 60px;
}

.buy-btn > a:before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
}

/* Amazon Kindle */
.buy-btn.amazon > a {
	color: var(--aff-color-amazon);
}
.buy-btn.amazon:hover > a:before {
    background-color: var(--aff-color-amazon-transparent);
}
.buy-btn.amazon > a:before {
	background-color: var(--aff-color-amazon);
    background-image: url("/wp-content/uploads/2023/12/215a485daf5be48a4b6bb586047c0d34.webp");
}

/* Amazon Audible */
.buy-btn.amazon-audible > a {
	color: var(--aff-color-amazon-audible);
}
.buy-btn.amazon-audible:hover > a:before {
    background-color: var(--aff-color-amazon-audible-transparent);
}
.buy-btn.amazon-audible > a:before {
	background-color: var(--aff-color-amazon-audible);
    background-image: url("/wp-content/uploads/2025/07/Audible.png");
}

/* ebookjapan */
.buy-btn.ebookjapan > a {
	color: var(--aff-color-ebookjapan);
}
.buy-btn.ebookjapan:hover > a:before {
    background-color: var(--aff-color-ebookjapan-transparent);
}
.buy-btn.ebookjapan > a:before {
	background-color: var(--aff-color-ebookjapan);
    background-image: url("/wp-content/uploads/2023/12/c60dac48c93c15bf1b1043696b83e7d6.png");
}

/* ブックライブ */
.buy-btn.booklive > a {
	color: var(--aff-color-booklive);
}
.buy-btn.booklive:hover > a:before {
    background-color: var(--aff-color-booklive-transparent);
}
.buy-btn.booklive > a:before {
	background-color: var(--aff-color-booklive);
    background-image: url("/wp-content/uploads/2023/12/6365ffac68aebfbae4833b4c52ed9aaa.png");
}

/* 楽天 */
.buy-btn.rakuten > a {
	color: var(--aff-color-rakuten);
}
.buy-btn.rakuten:hover > a:before {
    background-color: var(--aff-color-rakuten-transparent);
}
.buy-btn.rakuten > a:before {
	background-color: var(--aff-color-rakuten);
    background-image: url("/wp-content/uploads/2023/12/e82f5c0fa9d958d0c49e3ddb2a7abbe3.png");
}

/* 詳細ページ用購入リンク */
.book-purchase-links {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.purchase-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.amazon-link {
    background-color: #ff9900;
    color: white;
}

.amazon-link:hover {
    background-color: #e88900;
}

.rakuten-link {
    background-color: #bf0000;
    color: white;
}

.rakuten-link:hover {
    background-color: #a00000;
}

/************************************
** 書籍詳細情報エリア
************************************/
.book-info {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background-color: #f5f7fa;
	border-radius: 8px;
}

.book-cover {
	flex: 1;
	text-align: center;
}

.book-cover a img {
	max-width: 100%;
	height: auto;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.book-cover a img:hover {
	opacity: 0.7;
}

.book-cover img {
	max-width: 100%;
	height: auto;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.book-cover .image-wrapper {
	position: relative;
	display: inline-block;
	max-width: 100%;
	min-height: 240px;
	background-color: #f8f9fa;
	vertical-align: middle;
}

.book-details {
	flex: 2;
}

h3.book-title {
	font-size: 1.4rem;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #1a1a1a;
	border-left: none;
	font-weight: bold;
	padding: 0px;
}

p.book-title {
	font-size: 1.4rem;
	margin-top: -6px;
	margin-bottom: 5px;
	color: #1a1a1a;
	border-left: none;
	padding: 0px;
	font-weight: bold;
}

.book-meta p {
	margin: 5px 0;
}

/* 詳細ページ用書籍情報 */
.book-main-info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.book-image {
    flex-shrink: 0;
}

.no-image {
    width: 200px;
    height: 280px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
}

.book-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.book-author,
.book-publisher,
.book-isbn,
.book-caption {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

/************************************
** 書籍概要・おすすめポイント
************************************/
.book-synopsis,
.book-recommended-points {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* .book-synopsis h3,
.book-recommended-points h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #007bff;
} */

div.synopsis-content p,
div.recommended-points-content p {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    margin-bottom: 0;
}

/************************************
** 関連コンテンツエリア
************************************/
.related-content {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.author-info {
    margin-bottom: 30px;
}

.author-info h3 {
    color: #495057;
    margin-bottom: 10px;
}

.back-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.back-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.back-link:hover {
    background-color: #545b62;
}

/************************************
** 他作品おすすめエリア
************************************/
.recommend-box {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
}

.recommend-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
	color: #333;
}

.recommend-list {
	display: flex;
	overflow-x: auto;
	gap: 15px;
	padding-bottom: 15px;
}

.recommend-item {
	min-width: 140px;
	text-align: center;
	position: relative;
}

.recommend-item p {
	font-size: 0.9rem;
	margin: 5px 0;
}

.recommend-item-image-wrapper {
    position: relative;
    display: inline-block;
}

.recommend-item-image-wrapper:hover {
	opacity: 0.7;
}

.store-badge {
    position: absolute;
    top: 2px;
    left: 2px;
    padding: 3px 6px;
    font-size: 0.7rem;
    color: #fff;
    z-index: 2;
    pointer-events: none;
}

.rakuten-badge {
    background-color: rgba(191, 0, 0, 0.7);
}

.recommend-item-title-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.store-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    flex-shrink: 0;
}

.amazon-icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/wp-content/uploads/2023/12/215a485daf5be48a4b6bb586047c0d34.webp");
}

.recommend-item-title {
	text-decoration: underline;
    color: #0066c0;
}

.recommend-item-title:hover {
    color: #b32d2e;
}

.scroll-arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.7);
	color: white;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	z-index: 10;
	animation: pulse 2s infinite;
}

.scroll-arrow:hover {
	background: rgba(0,0,0,0.9);
	transform: translateY(-50%) scale(1.1);
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
	70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/************************************
** 文学賞カレンダー
************************************/
.awards-calendar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.calendar-month {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calendar-month h3 {
    text-align: center;
    margin: 0 0 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
}

.calendar-section {
    margin-bottom: 20px;
}

.calendar-section:last-child {
    margin-bottom: 0;
}

.calendar-section h4 {
    margin: 0 0 10px 0;
    padding: 8px 12px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
}

/* 応募締切のスタイル */
.calendar-section h4:first-of-type,
.calendar-section:first-of-type h4 {
    background-color: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

/* 受賞作発表のスタイル */
.calendar-section:last-of-type h4 {
    background-color: #f3e5f5;
    color: #7b1fa2;
    border-left: 4px solid #9c27b0;
}

.award-item {
    margin-bottom: 8px;
    padding: 8px 10px;
    background-color: #fafafa;
    border-radius: 4px;
    border-left: 3px solid #ddd;
    transition: all 0.2s ease;
}

.award-item:hover {
    background-color: #f0f0f0;
    border-left-color: #666;
}

.award-link {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 0.9em;
    line-height: 1.4;
}

.award-link:hover {
    color: #0066cc;
}

.schedule-note {
    display: block;
    color: #666;
    font-size: 0.85em;
    margin-top: 2px;
}

.no-awards {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/************************************
** 受賞作一覧画面
************************************/
/* テーブルスタイル強化 */
.awards-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.awards-list-table thead {
    background-color: #f8f9fa;
}

.awards-list-table th {
    /* background-color: #343a40; */
    background-color: #fef263;
    /* color: white; */
    /* padding: 15px 12px; */
    padding: 10px;
    /* text-align: left; */
    text-align: center;
    font-weight: 600;
    /* font-size: 14px; */
}

.awards-list-table tbody tr:hover {
    background-color: #f8f9fa;
}

.awards-list-table td {
    /* padding: 12px; */
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

/* 賞名列のリンクスタイル */
.awards-list-table td:first-child a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.awards-list-table td:first-child a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 公募列の○×を中央寄せ */
.awards-list-table td:nth-child(2) {
    text-align: center;
    font-weight: bold;
}

/* 設立年列を中央寄せ */
.awards-list-table td:nth-child(3) {
    text-align: center;
}

.awards-list-table tr:hover {
    background-color: #f8f9fa;
}

.awards-list-table tr:nth-child(even) {
    background-color: #fafbfc;
}

.awards-list-table a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.awards-list-table a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.text-center {
    text-align: center;
}

.badge-public {
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.badge-nomination {
    background-color: #6c757d;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.no-awards {
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 2px dashed #dee2e6;
}


.intro-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* 統計情報 */
.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
}

/* 目次 */
.toc-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.toc-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.toc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
}

.toc-item:hover {
    background-color: #e9ecef;
    border-color: #007bff;
    transform: translateY(-2px);
}

.toc-name {
    font-weight: 500;
}

.toc-count {
    background-color: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

/* カテゴリーセクション */
.category-section {
    margin-bottom: 50px;
    scroll-margin-top: 20px; /* スムーススクロール用 */
}

.no-awards {
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.back-to-top {
    text-align: right;
    margin-top: 20px;
}

.back-to-top a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9em;
}

.back-to-top a:hover {
    color: #007bff;
}

.recommend-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #495057;
}

.recommend-section ul {
    margin: 0;
    padding-left: 20px;
}

.recommend-section li {
    margin-bottom: 5px;
    color: #666;
}

.notice-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #e7f3ff;
    border-left: 4px solid #007bff;
}

.notice-section p {
    margin: 0;
    color: #0056b3;
}

.bottom-links {
    margin-top: 50px;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.calendar-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.calendar-link:hover {
    background-color: #0056b3;
}

.admin-link {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.admin-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}

.admin-button:hover {
    background-color: #545b62;
}

h2 {
    margin-top: 50px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
}

h2:first-of-type {
    margin-top: 30px;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
} 

/************************************
** レスポンシブ対応
************************************/
/* タブレット・モバイル共通 */
@media (max-width: 768px) {
    /* 書籍詳細ページ */
    .book-main-info {
        flex-direction: column;
        text-align: center;
    }
    
    .book-cover,
    .no-image {
        width: 150px;
        height: 210px;
        margin: 0 auto;
    }
    
    .purchase-link {
        min-width: 100px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .back-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* 文学賞カレンダー */
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .awards-calendar {
        padding: 10px;
    }
    
    .calendar-month {
        padding: 12px;
    }
    
    .calendar-month h3 {
        font-size: 1.1em;
        padding: 8px;
    }
    
    .award-link {
        font-size: 0.85em;
    }
    
    /* 文学賞一覧テーブル */
    .awards-list-table th,
    .awards-list-table td {
        padding: 8px 4px;
        font-size: 1.2em;
    }
    
    /* 設立年列を非表示 */
    .awards-list-table th:nth-child(3),
    .awards-list-table td:nth-child(3) {
        display: none;
    }

    /* 文学賞一覧 */
    .stats-section {
        flex-direction: column;
        gap: 15px;
    }
    .toc-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 1.5em;
    }
}

/* モバイル専用 */
@media (max-width: 480px) {
    /* 文学賞カレンダー */
    .calendar-month h3 {
        font-size: 1em;
    }
    
    .award-item {
        padding: 6px 8px;
    }
    
    .award-link {
        font-size: 0.8em;
    }
    
    /* 文学賞一覧テーブル */
    .awards-list-table {
        font-size: 11px;
    }
    
    /* 運営団体列も非表示 */
    .awards-list-table th:nth-child(5),
    .awards-list-table td:nth-child(5) {
        display: none;
    }
}