/* フォント
  font-family: "Kaisei Tokumin", serif;
	font-weight: 400,500,700,800;

  font-family: "Kaisei HarunoUmi", serif;
	font-weight: 400,500,700;

  font-family: "Kiwi Maru", serif;
	font-weight: 300,400,500;
 */

/* 基礎 */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
a {
	color: #82b4ad;
	font-family: "Kaisei Tokumin", serif;
	font-weight: 800;
	text-decoration: none;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
a:hover {
	color: #fefc1f;
}
nav li {
	list-style: none;
}

/* ボディ */
html {
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 35px;
	font-family: "Kaisei HarunoUmi", serif;
	font-weight: 400;
	background-image: url("img/background.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
}
body {
	position: relative;
	width: 100%;
	height: 96vh;
	background-color: #fdfbfc;
	border: 10px solid #9a494c;
	border-radius: 10px;
	box-shadow: 0 0 10px 10px #fdfbfc;
	overflow: hidden;
	padding: 3px;
	margin: 2vh auto;
	z-index: 0; /* 擬似要素の重なり制御に必要 */
}
body:before {/* 擬似要素で内側影を上に重ねる */
	content: '';
	position: absolute;
	inset: 0; /* top:0; right:0; bottom:0; left:0; と同じ */
	box-shadow: inset 0 0 10px 10px #fdfbfc;
	z-index: 1; /* 子要素より上 */
	pointer-events: none; /* クリック操作をブロックしない */
}
body::-webkit-scrollbar {
	display: none;
}
@media screen and (min-width: 916px) {
	body {
		width: 916px;
		font-size: 1.1rem;
	}
}
i:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-style: normal;
	margin-right: 4px;
}

/* 全体ラップ */
div.wrap {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	scrollbar-width: none;
}

/* ヘッダー */
header {
	width: 100%;
	padding: 10px;
	text-align: center;
}
header a.logo {
	width: 70%;
	display: block;
	margin: 0 auto;
}
header a.logo:hover {
	transform: scale(1.05);
}
header a.logo img {
	width: 100%;
}
header a.logo img.icon {
	width: 20%;
}

/* グローバルナビ:PC */
header nav.global_nav {
	width: 100%;
	text-align: center;
	margin: 20px 0;
}
header nav.global_nav ul {
	display: flex;
	justify-content: center;
}
header nav.global_nav ul li {
	line-height: 1.4rem;
	text-align: center;
	padding: 0 15px;
}
header nav.global_nav ul li:not(:first-child) {
	border-left: 1px solid #ebbaf4;
}
header nav.global_nav ul li a {
	color: #9a494c;
  font-family: "Kaisei Tokumin", serif;
	font-weight: 800;
	display: block;
	border-radius: 3px;
	padding: 5px 10px;
}
header nav.global_nav span.ruby {
  font-family: "Kaisei HarunoUmi", serif;
	font-weight: 700;
	color: #4a8db8;
	display: block;
	font-size: .8rem;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
header nav.global_nav ul li.current > a {
	background-color: rgba(254,252,31,.5);
	box-shadow: 0 0 5px 3px rgba(254,252,31,.5);
}
header nav.global_nav ul li a:hover {
	background-color: rgba(130,180,173,.5);
	box-shadow: 0 0 5px 3px rgba(130,180,173,.5);
}

/* メイン */
div.content_flex {
	position: relative;
	width: 100%;
  min-height: 100%;
}
main {
	position: relative;
	width: 100%;
  min-height: 0;
}
.main_wrap {
	width: 100%;
	background-color: #e2e2e2;
	border-radius: 10px;
	box-shadow: 0 0 3px 10px #e2e2e2;
	padding: 15px;
}
article {
	width: 100%;
	margin-bottom: 50px;
}
section {
	width: 100%;
	margin-bottom: 80px;
}
div.spacer30px {
	width: 100%;
	height: 30px;
}
div.spacer50px {
	width: 100%;
	height: 50px;
}
div.spacer100px {
	width: 100%;
	height: 100px;
}
hr {
	width: 70%;
	border: none;
	border-top: dotted 3px rgba(23,58,126,.5);
	margin: 30px auto;
}
b {
	color: #4a8db8;
	font-family: "Kaisei Tokumin", serif;
	font-weight: 800;
}
i.fa-clock-rotate-left:before {
	content: '\f1da';
}
@media screen and (min-width: 916px) {
	.main_wrap {
		padding: 30px;
	}
	body.zasshue .main_wrap {
		padding: 20px 10px;
	}
	section {
		margin-bottom: 100px;
	}
	section.game_wrap {
		padding: 0 20px;
	}
}

/* アイコン */
i.my_icon {
	width: 30px;
	height: 30px;
	display: inline-block;
	background-image: url("img/icon.png");
	background-size: cover;
	font-size: 3rem;
	vertical-align: middle;
	margin-top: -4px;
}

/* 見出し */
h1, h2, h3, h4 {
	font-family: "Kaisei Tokumin", serif;
	font-weight: 800;
	color: #9a494c;
}
h2 i.my_icon, h3 i.my_icon, h4 i.my_icon {
	margin-right: 10px;
}

/* 見出し:h1 */
main h1:not(.scene-title) {
	position: relative;
	padding: 1.5rem;
	font-size: 1.6rem;
	border: 2px solid #9a494c;
	background: #fdfbfc;
	border-radius: 10px;
	text-align: center;
	margin: 40px 0;
}
main h1:not(.scene-title):before,
main h1:not(.scene-title):after {
	position: absolute;
	content: '';
}
main h1:not(.scene-title):before {
	top: -40px;
	left: calc(50% - 40px);
	width: 80px;
	height: 80px;
	border: 2px solid #9a494c;
	border-radius: 50%;
	background: #fdfbfc;
}
main h1:not(.scene-title):after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fdfbfc;
	border-radius: 10px;
}
main h1:not(.scene-title) i {
	position: absolute;
	z-index: 1;
	top: -16px;
	left: calc(50% - 13px);
	text-align: center;
}
main h1:not(.scene-title) span {
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 916px) {
	main h1:not(.scene-title) {
		font-size: 1.8rem;
	}
}

/* 見出し:h2 */
main h2:not(.post-title):not(.toc-header h2):not(.scene-title) {
	position: relative;
	padding: .6em;
	padding-left: 25px;
	margin-bottom: 30px;
}
main h2:not(.toc-header h2):not(.post-title):not(.scene-title) {
	position: relative;
	width: 100%;
	font-size: 1.5rem;
	background: -webkit-repeating-linear-gradient(-45deg, rgba(254,252,31,.5), rgba(254,252,31,.5) 4px,#e2e2e2 3px, #e2e2e2 8px);
	background: repeating-linear-gradient(-45deg, rgba(254,252,31,.5), rgba(254,252,31,.5) 4px,#e2e2e2 3px, #e2e2e2 8px);
	border-radius: 7px;
	padding: .6em;
	padding-left: 25px;
	margin-bottom: 30px;
}
main h2:not(.toc-header h2):not(.post-title):not(.scene-title):after {
	position: absolute;
	content: '';
	top: 100%;
	left: 30px;
	border: 15px solid transparent;
	border-top: 15px solid rgba(254,252,31,.5);
	width: 0;
	height: 0;
}
main h2:not(.scene-title) span {
	width: calc(100% - 45px);
	display: inline-block;
	margin-left: 45px;
}
main h2:not(.scene-title):not(.toc-header h2) i.my_icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
}
@media screen and (min-width: 916px) {
	main h2:not(.scene-title) {
		font-size: 1.6rem;
	}
}

/* 見出し:h3 */
main h3:not(.scene-title) {
	position: relative;
	color: #e2e2e2;
	display: inline-block;
	background-color: #4a8db8;
	border-radius: 50px 10px 10px 50px;
	padding: .5em .9em;
	padding-right: 1.1em;
	margin-bottom: 20px;
}

/* 見出し:h4 */
main h4:not(.scene-title):not(ul.post-list h4) {
	display: inline-block;
	position: relative;
	padding: 0 2.5em;
	margin-left: 5px;
	margin-bottom: 20px;
}
main h4:not(.scene-title):not(ul.post-list h4):before, main h4:not(.scene-title):not(ul.post-list h4):after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 30px;
	height: 3px;
	background-color: #82b4ad;
	border-radius: 5px;
}
main h4:not(.scene-title):not(ul.post-list h4):before {
	left: 0;
}
main h4:not(.scene-title):not(ul.post-list h4):after {
	right: 0;
}

/* 最終更新 */
div.update {
	width: 100%;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: bolder;
	font-size: 1.4rem;
	color: #82b4ad;
	text-align: center;
	padding: 20px;
	margin: 20px 0;
}
div.update span.update-title {
  font-family: "Kiwi Maru", serif;
	font-weight: 400;
	font-size: 1.2rem;
	color: #9a494c;
}

/* 目次 */
section.toc-section {/* 目次:セクション全体 */
	width: 90%;
  border: 2px solid rgba(23,58,126,.2);
  border-radius: 10px;
  padding: 1em;
  margin: 0 auto 80px;
  background-color: #fdfbfc;
  box-shadow: 0 4px 10px rgba(23,58,126,.1);
  transition: all 0.4s ease;
  overflow: hidden;
}
div.toc-header {/* 目次:ヘッダー部分(タイトル＋ボタン) */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
div.toc-header h2 {/* 目次:ヘッダータイトル */
  font-size: 1.2em;
  margin: 0;
}
div.toc-header button {/* 目次:ヘッダーボタン */
  background-color: #fefc1f;
  border: none;
  color: #9a494c;
  border-radius: 5px;
  padding: 0.3em 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 3px #fefc1f;
}
section.toc-section.open div.toc-header button {
  background-color: #4a8db8;
  box-shadow: 0 0 3px #4a8db8;
  color: #fdfbfc;
}
div.toc-header button:hover, section.toc-section.open div.toc-header button:hover {
  background-color: #82b4ad;
  box-shadow: 0 0 3px #82b4ad;
}
nav.toc-content {/* 目次:リスト(閉じた状態は非表示) */
  max-height: 0;
  opacity: 0;
  overflow: scroll;
  transition: all 0.6s ease;
  margin-top: 15px;
}
section.toc-section.open nav.toc-content {/* 目次:リスト開いた状態 */
  max-height: 1000px; /* 大きめにしてアニメーション表示 */
  opacity: 1;
}

/* 目次:リスト内デザイン */
nav.toc-content ul {/* 目次:リスト全体 */
  list-style: none;
  margin: 0;
  padding-left: 0.5em;
}
nav.toc-content li {/* 目次:リスト */
  margin: 0.2em 0;
}
nav.toc-content li a:before {
  content: '';
	width: 15px;
	height: 15px;
	display: inline-block;
	background-size: cover;
	vertical-align: middle;
	margin-right: 10px;
}
nav.toc-content a {
  text-decoration: none;
  transition: color 0.2s ease;
}
nav.toc-content li.h2 a {
  font-weight: bold;
  color: rgba(24,27,57,1);
}
nav.toc-content li.h3 a {
  padding-left: 1em;
  color: rgba(24,27,57,.8);
}
nav.toc-content li.h4 a {
  padding-left: 2em;
  color: rgba(24,27,57,.6);
}
nav.toc-content li.h2 a:before {
	background-image: url("img/ハイボアイコン.png");
}
nav.toc-content li.h3 a:before {
	background-image: url("img/スパボアイコン.png");
}
nav.toc-content li.h4 a:before {
	background-image: url("img/モンボアイコン.png");
}
nav.toc-content li a:hover {
  color: #9a494c;
}
@media screen and (min-width: 916px) {
	.toc-section {
		width: 80%;
	}
/* ヘッダー部分（タイトル＋ボタン） */
	.toc-header {
		width: 30%;
	}
}

/* 太字 */
main strong {
	font-family: "Kaisei Tokumin", serif;
	font-weight: 500;
	color: #9a494c;
}

/* 画像 */
img {
	width: 100%;
	border-radius: 10px;
}

/* リスト */
main ul.kijinai_list {
	width: 90%;
	background-color: rgba(23,58,126,.2);
	border: 2px dashed #fefc1f;
	border-radius: 10px;
	box-shadow: 0 0 10px 10px rgba(23,58,126,.2);
	padding: 10px 15px;
	margin: 50px auto;
}
main ul.kijinai_list li {
	list-style: none;
}
main ul.kijinai_list li:before {
	content: '';
	width: 15px;
	height: 15px;
	display: inline-block;
	background-image: url("img/マスボアイコン.png");
	background-size: cover;
	vertical-align: middle;
	margin-right: 10px;
}
i.my_icon {
	font-size: 3rem;
	margin-top: -4px;
}

/* 説明リスト */
main dl {
	width: 100%;
	margin: 15px 0;
}
main dl dt {
	float: left;
	text-align: right;
}

/* 記事 */
main figure {
	width: 100%;
	margin: 10px auto 30px;
}
main figure.illust:not(.no0112) img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: 50% 43%;
}
main div.meta {/* 記事:日付 */
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: bolder;
	font-size: 1.4rem;
	color: #82b4ad;
	text-align: right;
	padding: 20px;
}
main div.meta span.update {/* 記事:日付 */
	margin-left: 20px;
}
@media screen and (min-width: 916px) {
	main figure {
		width: 90%;
	}
}

/* 表 */
table {
	border: 2px solid #9a494c;
  border-collapse: collapse;
  margin: 0 auto;
}
table th, table td {
	background-color: #fdfbfc;
	border: 1px dashed #9a494c;
	text-align: center;
  padding: 10px 20px;
}
div.table-flex th, div.table-flex td {
  padding: 5px 10px;
}
table th {
	color: #e2e2e2;
	background-color: #9a494c;
	border: 1px dashed #fdfbfc;
}
table img {
	width: 30px;
}
div.table-flex table {
	width: 100%;
	margin-bottom: 10px;
}
@media screen and (min-width: 916px) {
	div.table-flex {
		display: flex;
		justify-content: center;
		gap: 10px;
	}
	div.table-flex table {
		width: 50%;
		margin: 0;
	}
	div.table-flex th {
		height: 76px;
	}
}

/* アコーディオン図鑑表示 */
main details.book {
  padding: 20px;
}
main summary {
	font-family: "Kaisei Tokumin", serif;
	font-weight: 800;
	color: #9a494c;
	display: grid; /* 初期値の display: list-item 以外を指定したので、デフォルトの三角形アイコンは非表示になる */
	grid-template-columns: 1fr 30px;
	gap: 6px;
	border: 2px solid #9a494c;
	border-radius: 10px;
	align-items: center;
	padding: 16px 24px;
}
main summary i.summary {
	width: 30px;
	height: 30px;
	background-image: url("img/summary.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
main details[open] i.summary {
  transform: rotate(225deg);
}
main details img {
  margin-top: 20px;
}

/* 絞り込み */
div.search-box {
	width: 100%;
	text-align: center;
}
div.search-box div.search-flex {
	color: #82b4ad;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
div.class-box {
	margin-bottom: 30px;
}
div.text-box {
	margin: 30px 0;
}
div.search-box input[type=checkbox] {
	display:none;
}
div.search-box label {
	cursor: pointer;
	position: relative;
	color: #181b39;
	display: block;
	padding-left: 30px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
div.search-box label:before, div.search-box label:after {
	content: '';
	position: absolute;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
div.search-box label:before {
	top: 0;
	left: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
  display: inline-block;
	border: 1px dashed #181b39;
	border-radius: 3px;
	line-height: 35px;
	margin: auto 0;
	margin-right: 5px;
}
div.search-box label:after {
	width: 8px;
	height: 16px;
	top: 4px;
	left: 5px;
	border-bottom: 5px solid #82b4ad;
	border-right: 7px solid #82b4ad;
	border-radius: 3px;
	transform: rotate(45deg);
	opacity: 0;
}
div.search-box input[type=checkbox]:checked + label {
	color: #9a494c;
}
div.search-box input[type=checkbox]:checked + label:before {
	border: 1px solid #9a494c;
	background-color: #fdfbfc;
}
div.search-box input[type=checkbox]:checked + label:after {
	opacity: 1;
}

/* キーワード検索 */
div.search-box input[type="text"] {
	width: 80%;
	color: #9a494c;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
  border: 1px dashed #9a494c;
	border-radius: 5px;
	background-color: #fdfbfc;
	padding: 5px 10px;
	margin: 30px auto;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
div.search-box input[type="text"]:focus {
  border: 1px solid #9a494c;
  outline:0;
	box-shadow: 0 0 3px #9a494c;
}
ul#suggest-list {
	width: 80%;
	list-style: none;
	margin: -30px auto 0;
}
ul#suggest-list li {
	color: #9a494c;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
  border: 1px solid #9a494c;
	border-radius: 5px;
	background-color: #fdfbfc;
	padding: 5px 10px;
}
ul#suggest-list li:not(:last-child) {
  border-bottom: none;
}

/* 絞り込みトグル */
ul.post-list input.toggle {
	cursor: pointer;
  --size:20px;
  appearance:none;-webkit-appearance:none;
  outline:none;
  display:inline-block;
	width:calc(var(--size)*1.75);
	height:var(--size);
  border-radius:calc(var(--size)*.5);
  vertical-align:middle;
  background-color: #82b4ad;
  transition:.1s;
	margin: auto 5px;
}
ul.post-list input.toggle:after {
   content:"";
   display:block;
	width:var(--size);
	height:var(--size);
   background-color:#fdfbfc;
   border-radius:50%;
   transform:scale(.85);
   transition:inherit;
}
ul.post-list input[type=checkbox]:checked.toggle {
   background-color:#9a494c;
}
ul.post-list input[type=checkbox]:checked.toggle:after {
   transform:translateX(calc(var(--size)*.74))scale(.85);
}
ul.post-list .toggle-label {
	cursor: pointer;
	width: calc(100% - 100px);
}

/* ページネーション */
#pagination {
	width: 100%;
	text-align: center;
  margin-top: 20px;
}
#pagination button {
  color: #9a494c;
  background-color: #fdfbfc;
	border: 1px solid #9a494c;
	border-radius: 5px;
  padding: 5px 10px;
  margin: 2px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#pagination button:hover {
  color: #e2e2e2;
  background-color: #82b4ad;
	border: 1px solid #82b4ad;
}
#pagination button:disabled {
  color: #181b39;
  background-color: #e2e2e2;
	border: 1px solid #181b39;
}
#pagination button.active {
  background-color: #9a494c;
  color: #e2e2e2;
}

/* 記事一覧 */
ul.post-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
ul.post-list li.post {
	position: relative;
	width: calc(100% - 40px);
	list-style: none;
	background: #fdfbfc;
	border: 1px solid rgba(114,90,164,.2);
	border-radius: 5px;
	padding: 15px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
ul.post-list li.post:hover {
	box-shadow: 0 4px 20px rgba(114,90,164,.25);
	transform: translateY(-5px);
}
ul.post-list .thumbnail {
	width: 100%;
	margin-bottom: 10px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
ul.post-list .thumbnail:hover {
	transform: scale(1.1);
}
ul.post-list .thumbnail img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
ul.post-list h2 {/* 記事一覧:タイトル */
	font-size: 1.3rem;
	padding: 10px 13px 0;
	margin: 0px;
	margin-bottom: 20px;
}
ul.post-list h2 a {
	color: #4a8db8;
}
ul.post-list h2 a:hover {
	color: #9a494c;
}
ul.post-list div.meta {/* 記事一覧:日付 */
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: bolder;
	font-size: 1.3rem;
	color: #82b4ad;
	text-align: right;
	padding: 20px;
}
ul.post-list li span.btn { /* ポケモン図鑑:お気に入りボタン */
	cursor: pointer;
	position: absolute;
	width: 70px;
	height: 90px;
	display: block;
	background-color: #e2e2e2;
	border: 1px dashed #fdfbfc;
	border-bottom: 1px solid #9a494c;
	border-radius: 50px 50px 0 0;
	box-shadow: 0 0 2px 5px #e2e2e2;
	box-sizing: border-box;
	padding: 10px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
ul.post-list:not(.memo) li span.btn { /* ポケモン図鑑:お気に入りボタン */
	bottom: 0;
	left: 20px;
}
ul.post-list li span.btn-img { /* ポケモン図鑑:お気に入りボタン */
	width: 50px;
	aspect-ratio: 3 / 4;
	display: block;
  background-image: url("img/checker-on.png");
	background-size: cover;
}
ul.post-list li.checked span.btn-img {
  background-image: url("img/checker-off.png");
}
ul.post-list div.category {/* 記事一覧:日付 */
	position: absolute;
	top: 5px;
	left: 5px;
	font-family: "Kaisei Tokumin", serif;
	font-weight: 800;
	font-size: 1.2rem;
	line-height: 1.2rem;
	color: #fdfbfc;
	text-align: right;
	padding: 10px;
}
ul.post-list div.category span {/* 記事一覧:日付 */
	border-radius: 3px;
	padding: 0 10px;
}
ul.post-list span.class {/* 記事一覧:日付 */
	background-color: #82b4ad;
	margin-right: 5px;
}
ul.post-list span.type.beast {/* 記事一覧:日付 */
	background-color: #e68f4a;
}
ul.post-list span.type.dark {/* 記事一覧:日付 */
	background-color: #876aa2;
}
ul.post-list span.type.ghost {/* 記事一覧:日付 */
	background-color: #678baf;
}
ul.post-list span.type.ground {/* 記事一覧:日付 */
	background-color: #5d9767;
}
ul.post-list span.type.dragon {/* 記事一覧:日付 */
	background-color: #ae4957;
}
ul.post-list span.type.normal {/* 記事一覧:日付 */
	background-color: #8c8c8c;
}
@media screen and (min-width: 916px) {
	ul.post-list li.post {
		width: calc(50% - 20px);
	}
}

/* メモ */
#off-btn:checked ~ li.checked { /* 絞り込み表示 */
	display: none;
}
ul.post-list table img {/* 記事一覧:日付 */
	display: block;
	margin: 0 auto 10px;
}
ul.memo li span.btn { /* ポケモン図鑑:お気に入りボタン */
	top: 0;
	right: 0;
	height: 70px;
	border: 1px dashed #fdfbfc;
	border-top: 1px solid #9a494c;
	border-radius: 0 0 50px 50px;
}
ul.memo li span.btn-img { /* ポケモン図鑑:お気に入りボタン */
	height: 50px;
  background-image: url("img/list-on.png");
}
ul.memo li.checked span.btn-img {
  background-image: url("img/list-off.png");
}
ul.memo table th, ul.memo table td {
  padding: 5px 10px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
ul.memo table tr:hover th, ul.memo table tr:hover td {
	color: #181b39;
  background-color: #82b4ad;
}
ul.memo table tr:hover img {
  filter: drop-shadow(0 0 2px #fdfbfc);
}
ul.memo table td:last-child {
  font-size: .9rem;
}
ul.memo table img {
  width: 40px;
  margin-bottom: 0;
}

/* 広告 */
div.admax {
	text-align: center;
}
main > div.admax {
	width: 100%;
	background-color: #e2e2e2;
	border-radius: 10px;
	box-shadow: 0 0 10px 5px #e2e2e2;
	padding: 30px;
	margin-top: 30px;
}
div.admax.forPC {
	display: none;
}
div.admax.forPhone {
	display: block;
}
@media screen and (min-width: 916px) {
	div.admax.forPC {
		display: block;
	}
	div.admax.forPhone {
		display: none;
	}
}

/* フッター */
footer {
	position: relative;
	width: 100%;
	min-height: 10%;
	font-family: "Kiwi Maru", serif;
	font-weight: 300;
	background-color: #82b4ad;
	box-shadow: 0 -10px 10px 5px #82b4ad;
	padding: 10px 40px 30px;
}
footer nav ul {
	color: #4a8db8;
	padding: 10px 0;
	margin-bottom: 30px;
}
footer nav ul li {
	text-align: center;
	padding: 0 15px;
}
footer a {
	color: #4a8db8;
	font-family: "Kiwi Maru", serif;
	font-weight: 400;
}
footer div {
	width: 100%;
	text-align: center;
}
@media screen and (min-width: 916px) {
	footer nav ul {
		color: #4a8db8;
		display: flex;
		justify-content: center;
		padding: 10px 0;
		margin-bottom: 30px;
	}
	footer nav ul li:not(:first-child) {
		border-left: 1px solid #9a494c;
	}
}

/* ページトップボタン */
#page_top {
	width: 70px;
	height: 70px;
	position: fixed;
	right: 10px;
	bottom: 140px;
	background: radial-gradient(#9a494c, #4a8db8);
	border: 1px solid #fefc1f;
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); /* ← トランジションのキモ！ */
	z-index: 9999;
}
/* 表示状態 */
#page_top.show {
	opacity: 0.6;
	visibility: visible;
	transform: translateY(0);
}
#page_top:before {/* Font Awesome */
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 35px;
	color: #82b4ad;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
@media screen and (min-width: 916px) {
	#page_top {
		right: 775px;
		bottom: 45px;
	}
}