@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;
    }
}
/*エントリー一覧表示ボタン*/
.btn-entry {
    width:300px;
    height:40px;
    line-height:40px;
	margin: auto;
}
.btn-entry a{
    display:block;
    width:100%;
    height:100%;
    text-decoration: none;
    background:#FFFFFF;
    text-align:center;
    border:5px solid #FF52DE;
    color:#FF52DE;
    font-size:20px;
    font-weight:bold;
    border-radius:35px;
    -webkit-border-radius:35px;
    -moz-border-radius:35px;
    transition: all 0.5s ease;
}
.btn-entry a:hover{
    background:#FF52DE;
    color:#FFFFFF;
    margin-left:0px;
    margin-top:0px;
    border:5px solid #FFFFFF;
    box-shadow:none;
}

/**タイトル文字背景色**/
.box{
    background-image: linear-gradient(to right,#66B9E4 20%,#008AD2 50%,#66B9E4 80%);
    width:100%;
    height:100%;
}
/**ライブ予約ボタン**/
.btn-live{
    width:280px;
    height:50px;
    line-height:60px;
		margin: auto;
}
.btn-live a{
    display:block;
    width:100%;
    height:100%;
    text-decoration: none;
    background:#FF00FF;
    text-align:center;
    color:#FFFFFF;
    font-size:22px;
    font-weight:bold;
    border-radius:35px;
    -webkit-border-radius:35px;
    -moz-border-radius:35px;
    box-shadow:4px 4px 4px 0px #AB00AB ;
    transition: all 0.5s ease;
}
.btn-live a:hover{
    background:#FCA8FF;
    color:#FF00FF;
    margin-left:0px;
    margin-top:0px;
    box-shadow:4px 4px 4px 0px #AB00AB ;
}
/**FAQ　開く閉じる**/
p.question {
        cursor: pointer;
}
p.question:hover {
        text-decoration: underline;
}
p.answer {
        display: none;
        background: #f2f2f2;
        margin-left: 1em;
        padding: 10px;
}
/**テキストエリアを中央寄せ**/

.centered-box {
  max-width: 1000px;
  margin: 0 auto;         /* 横中央に配置 */
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  text-align: left;       /* テキストを左寄せ */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .centered-box {
    padding: 15px;
    margin: 10px;
  }
}
/**テーブル**/
able{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: #ff7bac;
  color: #fff;
  
}
@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}
/* ✅ ULのデザイン */
ul.responsive {
    width: 80%;  /* 画面幅の80% */
    max-width: 600px; /* PCでは最大500px */
    background: #ffffff; /* 背景色 */
    padding: 15px;
    border-radius: 10px; /* 角丸 */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.0); /* 影 */
    list-style: none; /* マーカーを消す */

    margin: 20px auto; /* 中央寄せ */
    position: relative;
}

/* ✅ 段落風デザイン（左寄せ＋先頭を飛び出す） */
ul.responsive li {
    padding: 5px;
    margin: 5px 0;
    background-color: #fff;
    text-align: left; /* 左寄せ */
    font-size: 18px;
/*    position: relative;*/
    padding-left: 30px; /* 通常のテキスト位置 */
}

/* ✅ 先頭の文字を左に飛び出させる */
/*ul.responsive li::first-letter {
    font-size: 22px;  /* 先頭の文字を大きく */
/*    font-weight: bold;
/*    margin-left: -25px; /* 左にはみ出させる */
/*    color: #000000; /* 目立つ色 */
/* }

/* ✅ スマホ向けのレスポンシブ対応 */
@media screen and (max-width: 600px) {
    ul.responsive {
        width: 95%; /* スマホではほぼ全幅 */
        padding: 5px;
    }

    ul.responsive li {
        font-size: 16px; /* 文字サイズを少し小さく */
    }

    ul.responsive li::first-letter {
        font-size: 20px; /* スマホでは少し小さめ */
        margin-left: -20px; /* 飛び出し具合を調整 */
    }
}
/**font設定**/
.font_black {
    font-size: 30px;   /* 文字サイズ指定 */
    color: #000000;     /* 文字色指定 */
	font-weight: bold;
}
/**横線**/
.horizontal-line {
  width: 80vw; /* 画面幅の80% */
  margin: 5px auto; /* 上下のマージンは20px、左右のマージンをautoにして中央寄せ */
  border: 2px solid #000; /* 線の太さと色（必要に応じて調整） */
}
/**ツイキャスボタン**/
.btn-twc{
    width:380px;
    height:60px;
    line-height:60px;
	margin: auto;
}
.btn-twc a{
    display:block;
    width:100%;
    height:100%;
    text-decoration: none;
    background:#3185FF;
    text-align:center;
    color:#FFFFFF;
    font-size:20px;
    font-weight:bold;
    border-radius:35px;
    -webkit-border-radius:35px;
    -moz-border-radius:35px;
    box-shadow:5px 5px 4px 0px #1638FF ;
    transition: all 0.5s ease;
}
.btn-twc a:hover{
    background:#8FBEFF;
    color:#FFFFFF;
    margin-left:0px;
    margin-top:0px;
    box-shadow:none;
}