/*--------------------------------------------------------------
>>> 基本スタイル
---------------------------------------------------------------*/
body {
	background-color: #1a1a1a;
	color: #ddd;
}

.clear {
	clear: both;
}

/*-------------------------
  ヘッダー
-------------------------*/
header {
	margin: 0 auto;          /* 中央寄せ             */
	width: 95vw;             /* 横幅                 */
	max-width: 1000px;
	padding: 10px 0 10px 0;  /* 上下10pxのパディング */
}

/* ========================================
   丸っこいタブナビ（Combatant / Story / Update / About）
======================================== */
.slidemenu {
	width: 95vw;
	max-width: 640px;
	margin: 16px auto 20px;
	padding: 8px 20px;
	background: #121212;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

/* ラジオボタンは制御用なので隠す */
.slidemenu .slide-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* タブ本体（アイコン＋テキスト） */
.slidemenu label {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	border-radius: 999px;
	cursor: pointer;
	color: #e5e7eb;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition:
		color 0.18s ease,
		background 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.slidemenu label a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: inherit;
	text-decoration: none;
}

.slidemenu label .icon {
	font-size: 17px;
	margin: 0;
}

/* ホバー：ほんの少しだけ浮かせる */
.slidemenu label:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-1px);
}

/* 選択中タブ（内側のピルを強めに） */
#slide-item-1:checked + label,
#slide-item-2:checked + label,
#slide-item-3:checked + label,
#slide-item-4:checked + label {
	background: radial-gradient(circle at top, #2563eb 0%, #0f172a 60%);
	color: #ffffff;
	box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
	transform: translateY(-1px);
}

/* 下線はいったんオフにする（前の ::after を殺す用） */
.slidemenu label::after {
	content: none;
}

/* 旧 slider バーは非表示 */
.slidemenu .slider {
	display: none;
}

/*-------------------------
  ヒーロー（トップの説明カード）
-------------------------*/
.hero {
	width: 95vw;
	margin: 20px auto 16px;
	max-width: 1000px;
	padding: 18px 20px;
	background: radial-gradient(circle at top left, #1e293b 0, #020617 55%);
	border-radius: 14px;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}

.hero h1 {
	font-size: 20px;
	margin-bottom: 6px;
}

.hero_title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
}

.hero_lead {
	font-size: 13px;
	color: #cbd5f5;
	line-height: 1.8;
	margin: 0;
}

/*-------------------------
  戦闘員選択の外枠カード
-------------------------*/
.select_wrapper {
	max-width: 1000px;
	width: 95vw;
	margin: 0 auto 18px;
	padding: 14px 18px 18px;
	background: #050810;
	border-radius: 12px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
}

/*--------------------------------------------------------------
>>> Select Area 全体（暗色テーマ統一版）
---------------------------------------------------------------*/
.select_area {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 8px;
	padding: 20px 15px;
	background: #1b1b1b;
	border: 1px solid #2a2a2a;
	border-radius: 10px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	font-family: "nicokaku_v2", sans-serif;
	overflow: visible !important;
}

/* セレクトのタイトル・ヒントなど */
.select_title {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 10px;
}

.select_hint {
	margin: 6px 0 0;
	font-size: 11px;
	color: #9ca3af;
}

/* セレクトボタン最大幅 */
.dropdown-toggle {
	max-width: 1000px !important;
}

/*--------------------------------------------------------------
>>> 戦闘員選択時の上部バナー
---------------------------------------------------------------*/
.char_header {
	margin: 0 auto 20px;
	width: 95vw;
	max-width: 1000px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	background: radial-gradient(circle at top left, #1d4ed8 0, #020617 55%);
	border-radius: 14px;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
	color: #fff;
}

.char_header_icon_wrap {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	background: rgba(0, 0, 0, 0.35);
}

.char_header_icon_wrap img {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

.char_header_text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.char_header_name {
	font-size: 20px;
	display: inline-flex;
	align-items: flex-end;	/* 下端（ベースライン側）で揃える */
	gap: 8px;
	line-height: 1.3;
}

/* 名前テキスト（ruby 含む） */
.char_header_name_text {
	line-height: 1.1;
}

/* 名前の左のアイコン群 */
.char_header_name_icons {
	display: inline-flex;
	align-items: flex-end;
	gap: 4px;
}

.char_header_icon_small {
	height: 1em;	/* 旧ブラウザ用フォールバック */
	height: 1lh;	/* 対応ブラウザでは行の高さに連動 */
	max-height: 40px;	/* どれだけ大きくても 40px までに制限 */
	width: auto;
	object-fit: contain;
	align-self: flex-end;
}

.char_header_title {
	display: inline-block;
	line-height: 1.3;
}

.char_header_line1 {
	display: inline-block;
	padding-left: 2px;
}

.char_header_line2 {
	display: inline-block;
	padding-left: 2px;
}


/* ========================================
   メイン表示領域（キャラ情報全体）
======================================== */
#main {
	width: 95vw;
	max-width: 1000px;
	margin: 20px auto 40px;
	padding: 0;
	background: transparent;
	box-shadow: none;
	border: none;
}

.panel {
	margin: 0 auto 26px;
	padding: 20px 20px 24px;
	background: #0b0d11;
	border-radius: 14px;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

/* パネル内の上部の青帯見出しの余白調整 */
.panel > .combatant_name_p,
.panel > .information_p,
.panel > .star_select_p,
.panel > .skill_01_name_p,
.panel > .skill_02_name_p,
.panel > .skill_03_name_p,
.panel > .skill_04_name_p,
.panel > .convex_p,
.panel > .skill_sp_title {
	margin-top: -6px;
}

/* ========================================
   カードタイトル（例：「外観」「紹介」など）
======================================== */
.card_s,
.information_p,
.star_select_p,
.skill_name_p,
.skill_01_name_p,
.skill_02_name_p,
.skill_03_name_p,
.skill_04_name_p,
.convex_p {
	display: block;
	width: 100%;
	background: rgba(255, 255, 255, 0.05); /* 暗色背景に溶け込む */
	border-left: 4px solid #4da3ff;       /* 左に青いライン */
	color: #ffffff;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.05em;
	padding: 8px 12px 8px 16px;
	border-radius: 4px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 4px rgba(0, 0, 0, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	transition: all 0.25s ease;
}

/* 小サイズの見出しバリエーション（任意） */
.card_s.small {
	font-size: 15px;
	padding: 6px 10px 6px 14px;
	margin: 14px 0 8px 0;
	border-left-width: 3px;
}

/* ========================================
   外観切り替えリンク（card_s_p）
======================================== */
#card_s_p {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 18px 0;
	justify-content: flex-start;
}

#card_s_p a {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 10px;
	background: linear-gradient(180deg, #2b2b2b 0%, #1a1a1a 100%);
	border-color: #444;
	color: #ccc;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
	user-select: none;
}

#card_s_p a:hover {
	border-color: #4da3ff;
	color: #fff;
	background: linear-gradient(180deg, #2f2f2f 0%, #1e1e1e 100%);
	box-shadow: 0 4px 12px rgba(77, 163, 255, 0.35);
	transform: translateY(-1px);
}

/* 選択中の外観 */
#card_s_p a.active {
	background: linear-gradient(180deg, #4da3ff 0%, #1e8bff 100%);
	border-color: #61b8ff;
	color: #fff;
	box-shadow:
		0 0 10px rgba(77, 163, 255, 0.5),
		inset 0 0 8px rgba(255, 255, 255, 0.15);
}

/* クリック時 */
#card_s_p a:active {
	transform: scale(0.96);
	filter: brightness(0.9);
}

/* active（選択中）状態：別領域用 */
#card_s_area a.active,
.appearance_select a.active {
	background: linear-gradient(180deg, #4da3ff 0%, #1e8bff 100%);
	border-color: #61b8ff;
	color: #fff;
	box-shadow: 0 0 10px rgba(77, 163, 255, 0.6);
	transform: translateY(-1px);
}

/* クリック時の軽い押し込み */
#card_s_area a:active,
.appearance_select a:active {
	transform: scale(0.96);
	filter: brightness(0.9);
}

/*-------------------------
  カード画像
-------------------------*/
.card_img {
	max-width: 1000px;
	margin: 10px auto;
}

canvas {
	display: block;
	margin: 0 auto;
	/* border: 1px dashed white; */
	width: 90%;
	max-width: 1000px;
}

/* ========================================
   Swiper 全体
======================================== */
.swiper {
	width: 100%;
	max-width: 1000px;      /* main と同じ */
	margin: 20px auto;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
	box-shadow:
		0 0 16px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ========================================
   各スライド
======================================== */
.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 20px;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	scroll-behavior: smooth;
	width: 100%;            /* main 幅にフィット */
}

/* スクロールバーのデザイン（暗色UI向け） */
.swiper-slide::-webkit-scrollbar {
	width: 8px;
}

.swiper-slide::-webkit-scrollbar-thumb {
	background-color: rgba(77, 163, 255, 0.5);
	border-radius: 4px;
}

.swiper-slide::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Swiperナビゲーション（青アクセント）
======================================== */
.swiper-button-next,
.swiper-button-prev {
	color: #4da3ff !important;
	transition: all 0.25s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #fff !important;
	text-shadow: 0 0 10px rgba(77, 163, 255, 0.8);
	transform: scale(1.05);
}

.swiper-pagination-bullet {
	background: rgba(77, 163, 255, 0.4);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #4da3ff;
}

/*-------------------------
  基本情報表示領域設定
-------------------------*/
/* ========================================
   ステータス・情報テーブルデザイン
======================================== */
.information {
	width: 100%;
	border-collapse: collapse;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
	box-shadow:
		0 0 12px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 行スタイル */
.information tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease;
}

/* 偶数行に軽い色変化 */
.information tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.02);
}

/* hover時に強調 */
.information tr:hover {
	background: rgba(77, 163, 255, 0.08);
}

/* セル共通 */
.information td {
	padding: 10px 14px;
	color: #e6e6e6;
	font-size: 15px;
	line-height: 1.6;
	vertical-align: middle;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* 右端の線を非表示 */
.information td:last-child {
	border-right: none;
}

/* 左列（ラベル部分） */
.information td:first-child {
	width: 32%;
	font-weight: 600;
	color: #a6b4c2;
	background: rgba(255, 255, 255, 0.03);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* 特殊要素：アイコン・フォント等 */
.information img {
	vertical-align: middle;
	margin-right: 6px;
}

.information font {
	color: #f0f0f0;
}

.information a {
	color: #4da3ff;
	text-decoration: none;
}

.information a:hover {
	color: #fff;
	text-shadow: 0 0 6px rgba(77, 163, 255, 0.9);
}

.information_status {
	width: 100%;
	border-collapse: collapse;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
	box-shadow:
		0 0 12px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 行スタイル */
.information_status tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease;
}

/* 偶数行に軽い色変化 */
.information_status tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.02);
}

/* hover時に強調 */
.information_status tr:hover {
	background: rgba(77, 163, 255, 0.08);
}

/* セル共通 */
.information_status td {
	padding: 10px 14px;
	color: #e6e6e6;
	font-size: 15px;
	line-height: 1.6;
	vertical-align: middle;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* 右端の線を非表示 */
.information_status td:last-child {
	border-right: none;
}

/* 左列（ラベル部分） */
.information_status td:first-child {
	width: 32%;
	font-weight: 600;
	color: #a6b4c2;
	background: rgba(255, 255, 255, 0.03);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* 特殊要素：アイコン・フォント等 */
.information_status img {
	vertical-align: middle;
	margin-right: 6px;
}

.information_status font {
	color: #f0f0f0;
}

.information_status a {
	color: #4da3ff;
	text-decoration: none;
}

.information_status a:hover {
	color: #fff;
	text-shadow: 0 0 6px rgba(77, 163, 255, 0.9);
}

/*-------------------------
  基本ステータス
-------------------------*/
.information_pm {
	width: 180px;
}

/*-------------------------
  実装日
-------------------------*/
.imp_date_d {
	height: 70px;
	display: flex;
	align-items: center;
}

/*-------------------------
  プロフィール
-------------------------*/
.information_pf {
	width: 110px;
}

/*-------------------------
  モットー
-------------------------*/
.motto_d {
	height: 120px;
	display: flex;
	align-items: center;
	overflow-y: scroll !important;
}

/*-------------------------
  紹介
-------------------------*/
.introduce_d {
	height: 170px;
	display: flex;
	align-items: center;
	overflow-y: scroll !important;
}

.introduce {
	height: 150px;
}

/*-------------------------
  他国実装情報
-------------------------*/
.world_d {
	height: 110px;
	display: flex;
	align-items: center;
	overflow-y: scroll !important;
}

.world {
	height: 110px;
	display: flex;
	align-items: center;
}

/*-------------------------
  備考
-------------------------*/
.remarks_d {
	height: 110px;
	display: flex;
	align-items: center;
	overflow-y: scroll !important;
}

.remarks {
	height: 90px;
}

/*-------------------------
  親縁
-------------------------*/
.information_pr {
	width: 80px;
}

/*-------------------------
  親縁画像
-------------------------*/
.cat_img {
	margin: 10px auto;
	width: 200px;
}

/*-------------------------
  親縁説明
-------------------------*/
.relation_explanation {
	height: 100px;
	overflow-y: scroll !important;
}

/*-------------------------
  エピソード #1〜#5
-------------------------*/
.episode1_content_d,
.episode2_content_d,
.episode3_content_d,
.episode4_content_d,
.episode5_content_d {
	height: 600px !important;
	overflow-y: scroll !important;
}

/*-------------------------
  凸ボタンエリア star_p
-------------------------*/
/* ========================================
   star_p（凸選択ボタンエリア）
======================================== */
.star_p {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
	margin: 15px 0;
	flex-wrap: wrap;
}

/* ========================================
   通常状態のaタグ（未選択）
======================================== */
.star_p a {
	display: inline-block;
	padding: 6px 10px;
	border: 1px solid #3a3a3a;
	border-radius: 6px;
	background: linear-gradient(180deg, #262626 0%, #1a1a1a 100%);
	color: #ddd;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
	user-select: none;
}

/* hover時：軽く光る */
.star_p a:hover {
	background: linear-gradient(180deg, #2f2f2f 0%, #1e1e1e 100%);
	border-color: #4da3ff;
	color: #fff;
	box-shadow: 0 0 6px rgba(77, 163, 255, 0.4);
	transform: translateY(-1px);
}

/* ========================================
   選択中（active）状態
   JSで class="active" を付与する前提
======================================== */
.star_p a.active {
	background: linear-gradient(180deg, #4da3ff 0%, #1e8bff 100%);
	border-color: #61b8ff;
	color: #fff;
	box-shadow: 0 0 10px rgba(77, 163, 255, 0.6);
	transform: translateY(-1px);
}

/* クリック時に軽く沈むアニメ */
.star_p a:active {
	transform: scale(0.96);
	filter: brightness(0.9);
}

/*-------------------------
  スキル配置
-------------------------*/
.skill_fix::after {
	content: "";
	display: block;
	clear: both;
}

.skill_left {
	float: left;
}

/*-------------------------
  スキル共通
-------------------------*/
.skill_genre_p {
	margin: 20px 0 20px 0;
	font-size: 14px;
}

.skill_p {
	font-size: 16px;
	margin: 20px 0 20px 110px;
}

/* スキル1〜4 */
.skill_01_genre_p,
.skill_02_genre_p,
.skill_03_genre_p {
	margin: 20px 0 20px 0;
	font-size: 14px;
}

.skill_01_p,
.skill_02_p,
.skill_03_p,
.skill_04_p {
	font-size: 16px;
	margin: 20px 0 20px 110px;
}

/* ========================================
   スキルジャンル（例：単体攻撃、デバフなど）
======================================== */
.genre {
	display: inline-block;
	padding: 3px 10px 4px;
	margin: 2px 6px 2px 0;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	background: linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.1),
		0 0 4px rgba(0, 0, 0, 0.4);
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
	user-select: none;
	cursor: default;
	transition: all 0.25s ease;
}

/*-------------------------
  凸効果
-------------------------*/
.convex_text_p {
	font-size: 16px;
	margin: 20px 0 20px 0;
}

#skill2_click_a,
#skill3_click_a {
	color: #fff;
}

/*-------------------------
  情報表示領域共通 a
-------------------------*/
a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: none;
}

#cv_a {
	color: #ffb6c1 !important;
	text-decoration: none;
}

#cv_a:hover {
	color: #fff !important;
	text-decoration: none;
}

#remarks_a {
	color: #ffb6c1 !important;
	text-decoration: none;
}

#remarks_a:hover {
	color: #fff !important;
	text-decoration: none;
}

.world_p {
	padding: 0;
	margin: 0 !important;
	letter-spacing: 2px;
}

.world_f {
	margin: 0;
}

/* 使い方セクション */
.howto_title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
}

.howto_list {
	margin: 0 0 0 1.2em;
	padding: 0;
	font-size: 13px;
	line-height: 1.8;
}

.howto_list li {
	margin-bottom: 4px;
}

/*-------------------------
  フッター
-------------------------*/
footer {
	margin: 0 auto;
	width: 95vw;
	max-width: 1000px;
	padding: 10px 0 10px 0;
	text-align: center;
}

footer p {
	margin: 10px 0 20px 0;
	width: 95vw;
	max-width: 1000px;
	text-align: center;
}

/*-------------------------
  画像保存禁止設定
-------------------------*/
img {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	user-select: none;
}

/*--------------------------------------------------------------
>>> スマホ用スタイル
---------------------------------------------------------------*/
@media (max-width: 480px) {
	.slidemenu {
		max-width: 90vw;
		padding: 6px 10px;
		gap: 4px;
	}
	.slidemenu label {
		padding: 6px 8px;
		font-size: 11px;
	}
	.slidemenu label .icon {
		font-size: 16px;
	}
	.hero {
		padding: 14px 14px;
	}
	.hero_title {
		font-size: 18px;
	}
	.hero_lead {
		font-size: 12px;
	}
	.char_header_icon_small {
		height: 24px;	/* スマホでは固定高さ 24px */
		max-height: 24px;
	}
	.char_header {
		padding: 10px 14px;
		gap: 10px;
	}
	.char_header_icon_wrap {
		width: 56px;
		height: 56px;
	}
	.char_header_name {
		font-size: 17px;
	}
	.char_header_title {
		font-size: 12px;
	}
	.card_img {
		text-align: center;
		margin: 10px auto;
		width: auto;
	}
	.card_img canvas {
		display: inline-block;
		max-width: 90vw;
		height: auto;
	}
	.information td {
		font-size: 10px;
		padding: 8px 10px;
	}
	.information td:first-child {
		width: 30%;
	}
	.information_status td {
		font-size: 10px;
		padding: 8px 10px;
	}
	.information_status td:first-child {
		width: 50%;
	}
	/* 基本ステータス */
	.information_pm {
		width: 170px;
	}
	/* 実装日 */
	.imp_date_d {
		height: 50px;
		display: flex;
		overflow-y: scroll !important;
	}
	/* 親縁 */
	.relation_name {
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	/* プロフィール */
	.information_pf {
		width: 100px;
	}
	/* 名前 */
	.name_f {
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	/* CV */
	.character_voice {
		height: 50px;
		overflow-y: scroll !important;
	}
	/* 性格 */
	.personality {
		height: 50px;
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	/* 象徴 */
	.symbol {
		height: 50px;
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	/* モットー */
	.motto_d {
		height: 50px;
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	/* 紹介 */
	.introduce_d {
		height: 100px;
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	.introduce {
		height: 80px;
	}
	/* 他国実装情報 */
	.world_d {
		height: 70px;
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	.world {
		height: 50px;
	}
	/* 親縁 */
	.information_pr {
		width: 60px;
	}
	/* 親縁画像 */
	.cat_img {
		height: 100px;
		margin: 10px auto;
	}
	#myCanvas2 {
		height: 100px;
		width: 100px;
	}
	/* 親縁説明 */
	.relation_explanation {
		height: 80px;
		display: flex;
		align-items: center;
		overflow-y: scroll !important;
	}
	.relation_ex {
		height: 60px;
		overflow-y: scroll !important;
	}
	/* エピソード #1〜#5（スマホ時高さ変更） */
	.episode1_content_d,
	.episode2_content_d,
	.episode3_content_d,
	.episode4_content_d,
	.episode5_content_d {
		height: 440px !important;
		overflow-y: scroll !important;
	}
}