/* ========================================================================================================================
	全体　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
======================================================================================================================== */
	/* ====================================================================================================
		全体レイアウト　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */
.beginner {
	display: none ;
}


		/* ================================================================================
			mainコンテンツ　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

#main {
    width: 100% ;
    max-width: 1200px ;
    margin: 0 auto;
    padding-top: 90px ;
    flex: 1 1 auto; /* Flex 使ってる場合にも広がるように */
}

/* スマホ用 */
@media (max-width: 768px) {
    #main {
        padding-top: 75px;
    }
}

		/* ================================================================================
			mainコンテンツ広告バー分 高さ自動調整　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

body.single-champ.has-ad-hide-bar #main {
    padding-top: calc(
        var(--shachi-header-height-pc)
        + var(--ad-hide-bar-height)
    );
}

/* スマホ */
@media (max-width: 768px) {
    body.single-champ.has-ad-hide-bar #main {
        padding-top: calc(
            var(--shachi-header-height-sp)
            + var(--ad-hide-bar-height)
        );
    }
}


		/* ================================================================================
			サイドバー　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

.no-champ-sidebar #sidebar,
.no-champ-sidebar .sidebar {
  display: none;
}

		/* ================================================================================
			デフォルトCocoonフッター　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

.mobile-footer-menu-buttons {
    display: none;
}


	/* ====================================================================================================
		全体レイアウト End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎    
	==================================================================================================== */

/* PCのみ適用（画面幅768px以上） */
@media screen and (min-width: 768px) {
    /* 全てのアンカーリンクのターゲット要素に適用 */
    [id] {
        scroll-margin-top: 16px ;
    }
}

/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
		フォントサイズ　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */


	/* ====================================================================================================
		フォントサイズ　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
		見出し Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

h1{
	line-height: 1.2 ;
}

h2 {
	background: #f0f8ff;
	padding: 12px 24px;
	margin: 28px 0 16px;
	border-left: 16px solid #8abfe6;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
}

h3 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    padding: 0.4em 0.6em;
    border-left: 6px solid #ffcc00;
    background: #fff9e6;
    font-size: 1.1em;
    font-weight: bold;
}


	/* ====================================================================================================
  		見出し End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
  		告知・バナーなど　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

.red-info {
	background-color: #fff0f5;
	padding: 6px 4% ;
	margin: 10px 0 ;
	border-top: 1px solid red ;
	border-bottom: 1px solid red ;
	border-radius: 0;
	line-height: 1.5 ;
}

	/* ====================================================================================================
  		告知・バナーなど　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ========================================================================================================================
   全体　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
======================================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
/* ========================================================================================================================
   ヘッダー　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
======================================================================================================================== */
	/* ====================================================================================================
		広告非表示バー（ad-hide-bar）　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

/* 高さを変数で管理（将来変更しやすく） */
:root {
    --ad-hide-bar-height: 26px;
}

/* 広告非表示バー本体 */
.ad-hide-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--ad-hide-bar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    font-size: 12px;
    z-index: 10000;
}

		/* ================================================================================
			広告バー表示中のヘッダー位置調整
		================================================================================ */

/*
  JSで body に .has-ad-hide-bar を付与したときだけ
  champヘッダーを下にずらす
*/
body.single-champ.has-ad-hide-bar .shachi-header {
    top: var(--ad-hide-bar-height);
}


	/* ====================================================================================================
		0. ヘッダーの高さ
	==================================================================================================== */

:root {
    /* ヘッダー高さ（PC / SP） */
    --shachi-header-height-pc: 84px;
    --shachi-header-height-sp: 70px;
}

	/* ====================================================================================================
		1. ページ全体レイアウト補正
	==================================================================================================== */

body.single-champ {
    padding-top: 24px ; /* 固定ヘッダー分の余白（別途管理） */
}

	/* ====================================================================================================
		2. ヘッダー本体
	==================================================================================================== */

.shachi-header_top-link {
  color: inherit;        /* 文字色を変えない */
  text-decoration: none; /* 下線を消す */
}

.shachi-header_top-link:hover,
.shachi-header_top-link:visited,
.shachi-header_top-link:active {
  color: inherit;
  text-decoration: none;
}


.shachi-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--shachi-header-height-pc);
    padding: 0 40px;
    z-index: 9998;

    background-color: #f0f8ff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    /* 和風＋サービス感の意匠 */
    border-top: 5px double #d4af37;
    border-bottom: 5px double #d4af37;
}

.shachi-header__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- ヘッダー（SP） --- */
@media (max-width: 768px) {
    .shachi-header {
        height: var(--shachi-header-height-sp);
        padding: 0 5px;
    }
}

	/* ====================================================================================================
		3. ブランディング領域（左）
	==================================================================================================== */

.shachi-header__branding {
    display: flex;
    align-items: center;
}

/* --- アイコン --- */
.shachi-header__icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}


/* --- サイト名 --- */
.shachi-header__site-name {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    line-height: 1.1;
    white-space: nowrap;
    margin-right: 12px;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.champ-x {
    font-size: 26px;
}

/* --- Champions ロゴ --- */
.shachi-header__champions {
    margin-left: 12px;
    display: flex;
    align-items: center;
}

.shachi-header__champions img {
    height: 70px;
    width: auto;
    display: block;
}

/* --- ブランディング（SP） --- */
@media (max-width: 768px) {

	.shachi-header__icon {
		display: none ;
		margin-right: 0 ;
	}

    .shachi-header__site-name {
        font-size: 1rem;
        margin: 0 0 0 10px ;
    }

    .pc-only {
        display: none;
    }
	
    .champ-x {
        font-size: 16px ;
		margin: 0 2px 0 4px ;
    }

    .shachi-header__champions {
        margin-left: 2px;
    }

    .shachi-header__champions img {
        height: 56px;
    }
}

	/* ====================================================================================================
		4. 右側操作エリア
	==================================================================================================== */

.shachi-header__menu {
    display: flex;
    align-items: center;
}

.shachi-header__hamburger {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
}

	/* ====================================================================================================
		5. シングル｜ダブル 切替トグル
	==================================================================================================== */

.rule-toggle {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 140px;
    height: 36px;
    padding: 0;

    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
    overflow: hidden;

    cursor: pointer;
}

/* --- ラベル共通 --- */
.rule-toggle__label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    line-height: 1;
    color: #888;

    z-index: 2;
    border-radius: 3px;
    transition: all .2s ease;
}

/* --- 選択中背景 --- */
.rule-toggle__thumb {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    border-radius: 3px;
    z-index: 1;
    transition: all .25s ease;
}

/* シングル選択 */
.rule-toggle[data-rule="0"] .rule-toggle__thumb {
    left: 0;
    background: #00AEEF;
}

.rule-toggle[data-rule="0"] .rule-toggle__label--s {
    color: #fff;
    font-weight: bold;
}

/* ダブル選択 */
.rule-toggle[data-rule="1"] .rule-toggle__thumb {
    left: 50%;
    background: #f44336;
}

.rule-toggle[data-rule="1"] .rule-toggle__label--w {
    color: #fff;
    font-weight: bold;
}

/* hover 演出（SPでは実質無効） */
.rule-toggle[data-rule="0"]:hover .rule-toggle__label--w {
    background: rgba(244, 67, 54, 0.08);
}

.rule-toggle[data-rule="1"]:hover .rule-toggle__label--s {
    background: rgba(3, 169, 244, 0.08);
}

/* --- トグル（SP：縦型） --- */
@media (max-width: 768px) {
    .rule-toggle {
        width: 60px;
        height: 45px;
        flex-direction: column;
    }

    .rule-toggle__label {
        width: 100%;
        height: 50%;
        font-size: 12px;
    }

    .rule-toggle__thumb {
        width: 100%;
        height: 50%;
        left: 0;
        top: 0;
    }

    .rule-toggle[data-rule="0"] .rule-toggle__thumb {
        top: 0;
        background: #00AEEF;
    }

    .rule-toggle[data-rule="1"] .rule-toggle__thumb {
        top: 50%;
        left: auto;
        background: #f44336;
    }
}

	/* ====================================================================================================
		6. ハンバーガーメニュー
	==================================================================================================== */

.shachi-header__hamburger {
    width: 50px;
    height: 43px;
    margin: 7px 20px 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 4px;
    transition: background 0.15s ease;
}

/* --- 3本線 --- */
.shachi-header__hamburger .hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --- 状態 --- */
.shachi-header__hamburger:hover {
    background: rgba(0, 0, 0, 0.06);
}

.shachi-header__hamburger:active {
    background: rgba(0, 0, 0, 0.1);
}

.shachi-header__hamburger:focus-visible {
    outline: 2px solid #00AEEF;
    outline-offset: 2px;
}

/* --- × 変形 --- */
.shachi-header__hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.shachi-header__hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.shachi-header__hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.shachi-header__hamburger .header-menu-text {
    font-size: 12px;
    color: #666;
    letter-spacing: .05em;
    margin-top: -3px ;
}

/* --- ハンバーガー（SP） --- */
@media (max-width: 768px) {
	
	.shachi-header__hamburger {
	    width: 40px;
    	height: 33px;
        margin: 7px 4px 0 8px;
	    gap: 5px;
	}

	/* --- 3本線 --- */
	.shachi-header__hamburger .hamburger-line {
    	width: 20px;
	}

}

	/* ====================================================================================================
		7. ログインアイコン
	==================================================================================================== */

.shachi-header__login {
    width: 64px ;
    height: 64px ;                
    display: grid ;
    place-items: center ;
	border-radius: 50% ;
    background: #fff ;
    text-decoration: none;
    font-style: normal;
	overflow: hidden;
    border: 3px double #27AE60; /* 丸の線 */
}

.shachi-header__login .header-menu-text {
    font-size: 12px;
    color: #666;
    line-height: 1;
	margin-top: -12px ;
}

.shachi-header__login svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* --- （SP） --- */
@media (max-width: 768px) {
	
	.shachi-header__login {
	    width: 50px ;
    	height: 50px ;                
	}
	
	.shachi-header__login svg {
	    width: 24px ;
    	height: 24px ;
	}

}



	/* ====================================================================================================
		8. スライドメニュー
	==================================================================================================== */

.shachi-menu {
    position: fixed;
    top: var(--shachi-header-height-pc);
    right: 0;
    width: 300px;

    background: #fff;
    box-shadow: -4px 0 12px rgba(0,0,0,.15);

    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 9999;
}

.shachi-menu ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.shachi-menu li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
}

.shachi-menu li a:hover {
    background: #f5f5f5;
}

.shachi-menu.is-open {
    transform: translateX(0);
}

	/* ====================================================================================================
		9. オーバーレイ
	==================================================================================================== */

.shachi-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.3);

    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;

    z-index: 9998;
}

.shachi-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}


/* ========================================================================================================================
   ヘッダー　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
======================================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
/* ========================================================================================================================
   フッター　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
======================================================================================================================== */

.site-name-text {
	text-align: center ;
	font-size: 18px ;
}

.site-name-text a {
    color: inherit;          /* 親要素の文字色をそのまま使う */
    text-decoration: none;   /* 下線を消す */
}

	/* ====================================================================================================
		ポケモンページフッターメニュー　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

/* Cocoon標準モバイルメニュー非表示 */
.mobile-menu-buttons {
  height: 0;
}

.champ-poke-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f0f8ff;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    border-top: 1px solid #ddd;
    z-index: 9999;
}

.champ-poke-footer-item {
  padding: 8px 0 5px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #444;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  line-height: 1.2;
}

.champ-poke-footer-item i {
  font-size: 20px;
  margin-bottom: 3px;
}

	/* ====================================================================================================
		ポケモンページフッターメニュー　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
		champ特典(200円)ページフッターメニュー　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

.champ-tokuten-footer {
    position: fixed;
    bottom: 8px ;
    left: 50%;            /* 親の左端ではなく画面中央を基準に */
    transform: translateX(-50%); /* 自身の幅の半分分左にずらして中央揃え */
    width: 99%;           /* 横幅を90%に */    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 ;
    padding: 16px 4px;
    background: #fff;
    color: #333;
    border: 3px solid #32d74b;
    box-sizing: border-box;
    border-radius: 6px; /* 角を少し丸めたい場合 */
}

/* テキスト（初月無料！） */
.champ-tokuten-trial-text {
    font-weight: bold;
    color: #ff7f00;
	line-height: 1 ;
    white-space: nowrap;
}

/* ボタン */
.champ-tokuten-btn-200 {
    background: linear-gradient(to right, #ff7f00 0%, #f9d423 100%);
    box-shadow: 0 6px 12px rgba(255, 127, 0, 0.5);
	display: inline-block;
	color: white;
	text-shadow: 0 1px 2px rgba(0,0,0,0.8);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 40px 12px 40px ;
	margin: 0 12px ;
	border-radius: 28px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 6px 12px rgba(248, 54, 0, 0.6);
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
	user-select: none;
	text-align: center;
	line-height: 1;
}


.champ-tokuten-btn-200:hover {
	color: white;
	background: linear-gradient(to right, #f9d423 0%, #ff7f00 100%);
	box-shadow: none;
	transform: translateY(2px);
}


@media (max-width: 767px) {
	.champ-tokuten-btn-200 {
		padding: 14px 24px 12px 24px ;
		margin: 0 6px ;
	}
}

	/* ====================================================================================================
		champ特典(200円)ページフッターメニュー　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ========================================================================================================================
	フッター　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
======================================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
/* ========================================================================================================================
	多ページ共通項目　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
======================================================================================================================== */
	/* ====================================================================================================
		全ページ共通　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */
		/* ================================================================================
			リンク付きmsg-box表示　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */


.need-login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.need-login-box {
    background: #fff;
    padding: 24px 20px;
    max-width: 420px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    line-height: 1.7;
}

.need-login-close {
    margin-top: 16px;
    background: #eee;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

		/* ================================================================================
			リンク付きmsg-box表示　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
		================================================================================ */
	/* ====================================================================================================
		全ページ共通　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
		トップ・バトルデータ一括表示・ポケモン　共通　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */
		/* ================================================================================
			シーズンセレクトボタン　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

.season-select-wrapper {
	margin: 0 0 10px 0 ;
	background-color: #f0f8ff;
}

.season-select-wrapper select {
	background-color: transparent;
}
	/* ====================================================================================================
		トップ・バトルデータ一括表示・ポケモン　共通　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ========================================================================================================================
	多ページ共通項目　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
======================================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
/* ========================================================================================================================
	トップページ　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
======================================================================================================================== */

/* select + input を上部固定 */
.ranking-header {
    position: sticky;
    top: 90px;
    z-index: 10;
    background: #fff;
}

/* スマホ用 */
@media (max-width: 768px) {
    .ranking-header {
        top: 75px;
    }
}


/* グリッドコンテナのスタイル */
.r-c {
	grid-column: 1 / -1;
	width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    padding: 0px;
}


@media (max-width: 768px) {
	.r-c {
		grid-template-columns: repeat(2, 1fr);
	}
}


.top-type-select-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-type-select {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.top-type-select-img {
	width: 100px ;
	height: 25px ;
	margin-bottom: 4px ;
}

.top-type-popup {
    display: none; /* 最初は非表示 */
    position: fixed;          /* absolute → fixed に変更 */
    top: auto;
    left: 50%;                /* 画面中央基準 */
    transform: translateX(-50%);
    background: #f0f8ff;
    border: 1px solid #ccc;
    padding: 16px 8px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 8px;
    z-index: 100;
    width: 95vw;
    max-width: 480px;
}

/* ▼ スマホ時のみ中央基準に変更 */
@media (min-width: 767px) {
	
    .top-type-popup {
	    position: absolute;          /* absolute → fixed に変更 */
    	left: 0 ;                /* 画面中央基準 */
		transform: translateX(0);
	    grid-template-columns: repeat(4, 1fr);
    }

}

.top-type-popup img {
	width: 100px ;
}


	/* ====================================================================================================
		トップ・バトルデータ一括表示　共通　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

/*入力時、ページ拡大防止*/
input#search-box {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    margin: 0 0 10px 0 ;
}

/* リンクのスタイル設定 */
.bd-ranking-poke-box {
    display: block; /* aタグをブロック要素として扱う */
    text-decoration: none; /* デフォルトの下線を消す */
    color: black; /* テキストの色を黒に設定 */
}

/* グリッドアイテムのスタイル */
.bd-ranking-poke-name {
    background-color: #f3f3f3;
    padding: 4px 0px 4px 8px;
    margin: 2px 0;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bd-ranking-poke-name:hover {
    box-shadow: none; /* ボタンに影なし */
    background-color: #eaeaea;
    color: black; /* ホバー時も黒字に設定 */
    transform: translateY(1.5px); /* ホバー時にボタンが少し下に動く */
}

	/* ====================================================================================================
		トップ・バトルデータ一括表示　共通　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ========================================================================================================================
	トップページ　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
======================================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
/* ========================================================================================================================
	ポケモンページ　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
======================================================================================================================== */
	/* ====================================================================================================
		記事タイトル　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

.poke-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
	line-height: 1.2 ;
	margin-bottom: 20px ;
}

.poke-title-left {
    width: 90px;
    flex-shrink: 0;
}

.poke-title-right {
    flex: 1;
}

.poke-title-name {
    font-size: 26px ;
    font-weight: bold;
    margin: 20px 0 0 0  ;
}

.poke-title-poke-img {
	width: 90px ;
}


.poke-title-type-img {
	width: 100px ;
}

	/* ====================================================================================================
		記事タイトル　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
		バトルデータ　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

/* ブロック全体 */
.battle-data-block {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    padding: 0;
}

/* テーブル横並び */
.battle-data-tables {
    display: flex;
    width: 100%;
    align-items: flex-start;
}

/* 追加表示ボタン */
.battle-data-table-button {
    position: absolute ;
    top: -10px ;
    right: 2px ;
    padding: 1px 6px ;
    font-size: 20px ;
    cursor: pointer;
	background: #f0f8ff;
	border-color: #bcd3f2;
	color: #2e7d32;
	font-weight: 200;
    border-radius: 5px;
}


/* 各テーブル */
.battle-data-block table {
	margin: 0 ;
    width: 50%;
    border-collapse: collapse;
}

/* キャプション */
.battle-data-block caption {
    font-size: 0.8em;
    text-align: left;
    color: #333;
}

/* 行の高さを完全固定 */
.battle-data-block tr {
    height: 28px;
}

/* セル（行高に完全追従させる） */
.battle-data-block td {
    padding: 0 5px;
    background-color: #ECFDFE;
    border: none;
    vertical-align: middle;
}


/* 1列目右寄せ */
.battle-data-block td:nth-child(1) {
	padding-right: 0 ;
}


/* 2列目右寄せ */
.battle-data-block td:nth-child(2) {
    text-align: right;
	padding-left: 0 ;
}

/* 画像 */
.battle-data-img {
    width: 16px;
    margin-right: 2px;
}

@media screen and (max-width: 767px) {
	.bd-seikaku {
		font-size: 11px;
	}
}



    	/* ================================================================================
        	バトルデータ一括表示only　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

.flex-container {
    display: flex;
    justify-content: flex-end; /* 右側に配置 */
    margin-bottom: 5px;
}

/* グリッドコンテナのスタイル */
.bd-ranking-container {
	grid-column: 1 / -1;
	width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0px;
}

@media (max-width: 1024px) {
    .bd-ranking-container {
        grid-template-columns: 1fr;
    }
}



.battle-data-more-button {
    padding: 3px 6px;
    font-size: 14px;
    cursor: pointer;
    background: #f0f8ff;
    border: 2px solid #bcd3f2;
    color: #333;
    font-weight: 400;
    border-radius: 5px;
}

    	/* ================================================================================
        	バトルデータ一括表示only　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
		================================================================================ */
	/* ====================================================================================================
		バトルデータ　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
	/* ====================================================================================================
		覚える技　Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
	==================================================================================================== */

.waza-table-block {
  width: 100%;
  overflow-x: auto;
}

.waza-table {
  border-collapse: collapse;
  width: 100%;
}

.waza-table tr:nth-child(odd) td {
  background-color: #E0FFFF;
  padding: 5px 8px;
}

.waza-table tr:nth-child(even) td {
  padding: 5px 12px;
}

@media (max-width: 768px) {
  .waza-table {
    width: 600px;
  }
}

	/* ====================================================================================================
		タイプタブ
	==================================================================================================== */

.tab-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-list li {
  cursor: pointer;
  margin-bottom: 3px;
}

.tab-list li img {
  display: block;
  width: 35px;
  border: 1px solid #333;
  border-radius: 3px;
  padding: 1px;
}

.tab-list li.active img {
  border: none;
  padding: 0;
  opacity: 0.5;
}


/* =====================================================================
   レイアウト
===================================================================== */

@media (min-width: 768px) {
  .type18 {
    display: flex;
  }

  .type18 li {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .type18 {
    display: flex;
    flex-wrap: wrap;
  }

  .type18 li {
    width: calc(100% / 9);
  }
}



		/* ================================================================================
			技分類ボタンデザイン Start⚪︎⚪︎⚪︎⚪︎⚪︎⚪︎
		================================================================================ */

/* bunrui フィルタ全体 */
.bunrui-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* checkbox 非表示 */
.bunrui-filter input[type="checkbox"] {
  display: none;
}

/* フィルタチップ */
.bunrui-filter label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px 8px 26px; /* 左だけ記号分広げる */
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fafafa;
  color: #444;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

/* hover（主張しすぎない） */
.bunrui-filter label:hover {
  background: #f0f0f0;
}

/* 未選択：薄い ○ */
.bunrui-filter label::before {
  content: "○";
  position: absolute;
  left: 10px;
  font-size: 12px;
  color: #bbb;
}

/* ON状態 */
.bunrui-filter label:has(input[type="checkbox"]:checked) {
  background: #e8f5e9;
  border-color: #4caf50;
  color: #2e7d32;
  font-weight: 600;
}

/* 選択中：✓ に切り替え */
.bunrui-filter label:has(input[type="checkbox"]:checked)::before {
  content: "✓";
  color: #2e7d32;
}

		/* ================================================================================
			技分類ボタンデザイン End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
		================================================================================ */
	/* ====================================================================================================
		覚える技　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
	==================================================================================================== */
/* ========================================================================================================================
   ポケモンページ　End⚫︎⚫︎⚫︎⚫︎⚫︎⚫︎
======================================================================================================================== */
/* ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
