@charset "UTF-8";
@import url("grid.css");

img {
	max-width:100%;
	height: auto;
}

a {
    display:block;
    color: #3333ff;
    text-decoration-line: none;	
}

a:hover { 
    color: #999;
}
a img:hover {
	opacity: 0.8;
}

.center {
	text-align: center;
}

div { text-align : center ; }

/*ヘッダー*/
.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}

/*メイン画像*/
.mainimg img {
	width: 100vw;
}

/*キャッチタイトル*/
h2.catch {
	color: #666;
	font-size: clamp(25px, 3vw, 50px);
    font-weight: 900;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 30px;
}

/*フッター*/
footer {
    background-color: #fff;
    padding: 3rem 0;
}
footer h5 {
    border-bottom: 1px solid #ccc;
}

/*コピーライト*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #fff;
}
.copyright a {
    color: #000;
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #666;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: #999;
}

/*ランキングテーブル*/
table {
    white-space: nowrap;
    width: 90%;
    margin: auto;
    font-size: 2vw;
    border-collapse: collapse;
    border: solid 5px black;
}

table th {
    margin: auto;
    background-color: black;
    color: white;
    border: solid 1px white;
    border-bottom:solid 2px black;
}

table td {
    border: solid 1px black;
}

/*テーブルデータのスタイル*/
.ranking td:nth-of-type(1){
    width: 10%;
    color: rgb(158, 24, 24);
    font-weight: 900;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.ranking td:nth-of-type(2){
    width: 30%;
    text-align: left;
    padding-left: 12px;
    font-weight: 900;
}

.ranking td:nth-of-type(3){
    width: 30%;
    text-align: left;
    padding-left: 12px;
    font-weight: 600;
}

.ranking td:nth-of-type(4){
    width: 25%;
    text-align: right;
    color: rgb(0, 0, 0);
    font-weight: 900;
    padding-right: 12px;
}

.under100 {
    border-top: 4px solid #000000;
}


/*ランキング注釈*/
.table_caption {
    font-size: clamp(10px, 1.5vw, 20px);
    margin-top: 0%;
    text-align: right;
    margin-right: 5%;
}


/*エントリーのリンクと文言*/
.entry_link {
    font-weight: 800;
    font-size:clamp(20px, 2.3vw, 50px);
}

.entry_caption {
    font-size:clamp(15px, 1.5vw, 50px);
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0px;
}

/*スマートフォン閲覧時にエントリーの文言を改行*/
@media screen and (min-width:641px) {
    .sp {
        display: none;
    }
}