/* 文字コード */
@charset "UTF-8";

/* 表示設定 */
* {
	box-sizing: border-box;
}
*::before, *::after {
	box-sizing: border-box;
}
@media (max-width: 639px) {
	html {
		font-size: 0.8rem;
	}
	.wrapper {
		padding: 0 3rem;
	}
}
@media (min-width: 640px) {
	.wrapper {
		max-width: 640px;
		margin: 0 auto;
	}
}

/* 共通 */
html {
	background: #ffffff; /* 背景色 */
	font-size: 12px;
	font-weight: 400;
	font-family: Verdana, "Hiragino Kaku Gothic pro", "ヒラギノ角ゴ Pro W3", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
h1, h2, h3, p {
	margin: 0;
	padding: 0;
}
body {
	font-size: 1rem;
	/* = 12px */
	line-height: 2rem;
	letter-spacing: 0.03rem;
	margin: 0;
	color: #333; /* 文字色 */
	padding: 3rem 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}
a {
	color: #ff66b8; /* リンク色 */
}
a:hover {
	text-decoration: none;
}
h2 {
	text-align: center;
	color: #ff66b8;
}
.row-right { /* row-rightで囲った要素は並列＋右寄せ */
	display: flex;
	justify-content: flex-end;
}
.row { /* row-rightで囲った要素は並列 */
	display: flex;
}
p, img, ul, ol {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* skin-cover */
.cover-contents {
	margin: 3rem 0;
}
.cover-title {
	font-size: 1.3rem;
	font-weight: bold;
}
.cover-info {
	margin: 0.5rem 0;
}
.cover-notice {
	color: #666;
	margin: 0 1rem;
}
.depth1 {
	padding-inline-start: 0px;
}
.depth2 {
	display: none;
}
.cattree {
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.cattree li {
	display: inline-block;
}
.num {
	margin-right: 1rem;
}
.pager {
	text-align: center;
}
.footer {
	text-align: center;
	margin: 2rem 0;
}
.version {
	text-align: center;
	font-size: 0.7rem;
	margin: 2rem 0;
}

/* skin-onelog */
.onelog-title {
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	color: #ff66b8;
	margin-bottom: 2rem;
}
.onelog-notice {
	color: #666;
}
.round-table {
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 1rem;
	overflow: hidden;
	margin: 2rem auto; /* 中央寄せ */
	width: 100%;
	table-layout: fixed;
}
.single-cell {
	padding: 1rem 1rem;
	background: #f6f6f6;
}

/* Spotify埋め込みサイズ調整 */
.embeddedspotify {
	display: inline-block;
	width: 150px;
	height: 190px;
	overflow: hidden;
	vertical-align: top;
}
.embeddedspotify iframe {
	width: 300px !important;
	height: 380px !important;
	transform: scale(0.5);
	transform-origin: top left;
	max-width: none !important;
}

/* 汎用タグ */
p.decoration1 {
	text-align: center;
}