@charset "UTF-8";

/* 全体設定 */
:root {
	--main-color: #AB71FF;
	--sub-color: #ebc0d6;
	--bg-color: #fefefe;
	--text-main-color: #444;
	--text-sub-color: #b3b3b3;
	font-size: 14px;
}
html {
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	background-color: #f1e9f2;
	color: var(--text-main-color);
	text-align: justify;
	text-justify: inter-ideograph;
}
body {
	display: none;
}
a {
	text-decoration: none;
	transition : 0.3s;
	color: var(--main-color);
}
img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}
main {
	width: 100%;
	margin: 0 auto;
}
strong {
	font-family: "Noto Sans JP", serif;
	font-weight: 600;
}
b {
	background: linear-gradient(transparent 70%, var(--sub-color) 70%);
	font-weight: normal;
}
::selection {
  color: var(--bg-color);
  background-color: var(--main-color);
}
/* スクロール・ロードインアニメ */
.scroll-fade {
	opacity: 0; 
	transition: all 2s;
}
.scroll-up {
	opacity: 0; 
	transform: translateY(-50px); 
	transition: ease 1.5s;
}
.scroll-yoko {
	opacity: 0; 
	transform: translateX(-50px); 
	transition: ease 1s;
}
.scroll-up.done, 
.scroll-fade.done,
.scroll-yoko.done {
	opacity : 1; 
	transform : translate(0, 0);
}
.load-fade {
	opacity : 0; 
	transition : all 2s;
}
.load-up {
	opacity: 0; 
	transform: translateY(-100px); 
	transition: ease 1.5s;
}
.load-yoko {
	opacity: 0; 
	transform: translateX(-150px); 
	transition: ease 1s;
}
.load-up.done, 
.load-fade.done,
.load-yoko.done {
	opacity : 1; 
	transform : translate(0, 0);
}
/* フレーム */
html:before,
html:after,
body:before,
body:after {
	content: "";
	background: var(--main-color);
	position: fixed;
	display: block;
	z-index: 100;
}
/* 上 */
html:before {
	height: 6px; 
	width: 100dvw;
	left: 0;
	top: 0;
}
/* 右 */
html:after {
	width: 6px;
	height: 100dvh;
	right: 0;
	top: 0;
}
/* 下 */
body:before {
	height: 6px;
	width: 100dvw;
	bottom: 0;
	left: 0;
}
/* 左 */
body:after {
	width: 6px;
	height: 100dvh;
	top: 0;
	left: 0;
}
/* ▼ヘッダー */
header {
	width: 100%;
	display: flex;
	background-color: var(--bg-color);
	padding: 26px 60px 20px 60px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	z-index: 99;
}
.top-vis h1 {
	font-weight: normal;
}
.h-logo {
	display: inline-block;
	font-size: 1.2em;
	font-family: "Saira Semi Condensed", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	letter-spacing: 0.3em;
	color: var(--text-main-color);
}
.h-logo:hover {
	transform: translateY(-2px);
}
/* ▼ナビ */
nav ul {
	display: flex;
}
nav li {
	margin-left: 20px;
}
nav a {
	color: var(--main-color);
	text-align: center;
	padding: 5px 15px;
	border-radius: 20px;
}
nav a:hover {
	background-color: var(--main-color);
	color: #fff;
}
.nav-hidden { /* スマホ用クラス非表示 */
	display: none;
}
/* ▼indexデザイン */
.index-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin: 50px;
}
.index-g-c {
	background-color: var(--bg-color);
	padding: 50px;
	border-radius: 20px;
}
.index-g-c h2 {
	font-size: 1.2em;
	margin-bottom: 30px;
	padding-left: 8px;
	border-left: 5px solid;
}
.index-g-c p {
	margin: 0 20px 40px 20px;
}
.index-g-c a {
	display: block;
	margin: 0 auto;
	width: fit-content; 
	background-color: var(--main-color);
	color: var(--bg-color);
	padding: 10px 40px;
	border-radius: 10px;
	border: var(--main-color) solid 1px;
}
.index-g-c a:hover {
	background-color: var(--bg-color);
	color: var(--main-color);
	border: var(--main-color) dotted 1px;
	transition : 0.3s;
}
/* ▼子ページ */
.child-page {
	max-width: 1200px;
	margin: 0 auto;
}
.child-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	margin: 0 50px;
}
.child-grid section {
	background-color: var(--bg-color);
	padding: 50px;
	margin-bottom: 30px;
	border-radius: 20px;
}
.child-page h2 {
	display: inline-block;
	font-weight: 700;
	font-size: 3em;
	letter-spacing: 0.1em;
	color: var(--main-color);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 2.5em;
	margin-top: 1em;
}
.child-page h2::before {
	content: '';
	position: absolute;
	background-color: var(--main-color);
	width: 2em;
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -70%;
}
.child-grid h3 {
	font-size: 1.3em;
	margin-bottom: 2.5em;
	padding-left: 8px;
	border-left: solid 5px var(--main-color);
}
.child-page h4 {
	font-size: 1.2em;
	line-height: 1em;
	margin-top: 2.5em;
	margin-bottom: 2em;
	padding-left: 8px;
	border-left: dotted 3px var(--main-color);
}
.child-page h4:first-child {
	margin-top: 0;
}
.child-page h5 {
	display: inline-block;
	font-size: 1em;
	position: relative;
	top: 0.7em;
}
.child-page aside {
	font-size: 0.9em;
	margin-bottom: 1em;
	padding: 1.5em 1.5em;
	background-color: #f6f6f6;
}
.child-page aside:last-child {
	margin-bottom: 0;
}
.child-grid section ul {
	line-height: 1.5em;
	margin-bottom: 1.5em;
}
.child-grid section ul:last-of-type {
	margin-bottom: 2.5em;
}
.child-grid section ul li {
	font-size: 0.8em;
}
.child-grid section ul li:before {
	content: '';
	width: 3px;
	height: 3px;
	display: inline-block;
	border-radius: 100%;
	background-color: var(--text-sub-color);
	margin-right: 5px;
	position: relative;
	top: -2px;
}
.child-page p {
	line-height: 1.8em;
	margin-bottom: 1em;
}
.child-page p:last-child {
	margin-bottom: 0;
}
.child-grid a {
	color: var(--main-color);
	border-bottom: dotted 1px;
}
.child-grid a:hover {
	color: var(--bg-color);
	background: var(--main-color);
	border-bottom: dotted 1px transparent;
}
.prof-link {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.prof-link li {
	margin-right: 10px;
	margin-bottom: 5px;
}
.prof-link li:last-child {
	margin-bottom: 0;
}
.prof-link a {
	font-size: 0.8em;
	display: inline-block;
	width: fit-content; 
	background-color: var(--main-color);
	color: var(--bg-color);
	padding: 5px 10px;
	border-radius: 10px;
	border: var(--main-color) solid 1px;
}
.prof-link a:hover {
	background-color: var(--bg-color);
	color: var(--main-color);
	border: var(--main-color) dotted 1px;
	transition : 0.3s;
}
.modal { /* モーダルウィンドウ */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(254,254,254,0.6);
}
.modal:target {
	display: flex;
}
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	color: black;
	text-decoration: none;
	cursor: pointer;
	transform: translate(50%, -50%);
}
.modal-wrapper {
	position: relative;
	width: 90%;
	max-width: 50vw;
	max-height: 70%;
	padding: 40px;
	margin: auto;
	overflow: scroll;
	background-color: var(--bg-color);
	border-radius: 5px;
	border: var(--main-color) 1px solid;
}
.modal-content h1 {
	margin: 0 0 1em 0;
	font-size: 2em;
}
.modal-content p {
	line-height: 2.2em;
}
/* ▼探索者一覧 - 全体ページ */
.seacher-grid-wrapper {
	margin: 0 auto;
}
.seacher-grid {
	display: grid;
	grid-template-columns: repeat(6, 170px);
	row-gap: 30px;
	column-gap: 10px;
	place-content: center;
	margin-bottom: 30px;
}
.seacher-grid a {
	background-color: var(--bg-color);
	border-radius: 10px;
	border: 1px solid var(--main-color);
	position: relative;
}
.seacher-grid a:hover {
	transition: 0.3s;
	transform: translateY(-4px);
	box-shadow: 0px 7px var(--main-color);
}
.seacher-grid img { /* アイコン */
	width: 170px;
	height: 200px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}
.namae { /* 名前 */
	font-size: 0.9em;
	line-height: 1.5em;
	text-align: center;
	margin-top: 20px;
}
.namae span {
	color: var(--main-color);
	padding: 1px 5px;
}
.s-g-title { /* 出身シナリオ */
	display: block;
	font-size: 0.7em;
	padding: 10px 10px;
	margin: 10px 0 20px 0;
	text-align: center;
	color: var(--text-main-color);
}
.pagination { /* ページネーション */
	text-align: center;
	margin-top: -130px;
	margin-bottom: 50px;
}
.pagination .nav-links {
	width: 80%;
	margin: 0 auto;
}
.pagination .current {
	padding: 5px 15px;
	color: var(--main-color);
}
.s-tag-cloud { /* タグクラウド */
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 5%;
	padding: 20px;
	background-color: var(--bg-color);
}
.s-tag-cloud a {
	display: inline-block;
	color: var(--main-color);
	padding: 2px 10px;
	border-radius: 2em;
	border: var(--main-color) 1px solid;
}
.s-tag-cloud a:hover {
	background-color: var(--main-color);
	color: var(--bg-color);
}
.random-PC-wrap { /* ランダムガチャ */
	position: fixed;
	width: 60px;
	height: 60px;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 99;
	font-size: 0.9em;
	font-family: "Saira Semi Condensed", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	transform: rotate(135deg);
}
.random-PC {
	position: relative;
	width: 0;
	height: 0;
	right: 30px;
	bottom: 25px;
	border-style: solid;
	border-right: 60px solid transparent;
	border-left: 60px solid transparent;
	border-bottom: 60px solid var(--main-color);
	border-top: 0;
	color: var(--bg-color);
	letter-spacing: 0.1em;
}
.random-PC:hover {
	transition: 0.3s;
	border-bottom: 60px solid var(--sub-color);
	color: var(--main-color);
	letter-spacing: 0.3em;
}
.random-PC span {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 5px;
	right: -30px;
	transform: rotate(-180deg);
}
.Tag-itiran { /* タグ一覧 */
	max-width: 70%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 60px;
}
.T-i-title {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--bg-color);
	background-color: var(--sub-color);
	padding: 5px 10px;
}
/* ▼探索者一覧 - 個別ページ */
.child-page-seacher-wrapper {
	background-color: var(--bg-color);
	width: 100%;
}
.child-page-seacher {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
.child-page-seacher >:first-child {
	flex-basis: 100%;
}
.child-page-seacher p {
	line-height: 2em;
}
.PC-return a { /* 前のページに戻るリンク */
	display: inline-block;
	margin-left: 5em;
	margin-top: 50px;
	margin-bottom: 5em;
	padding: 0.1em 0.5em 0.1em 1.8em;
	color: var(--main-color);
	line-height: 1.5em;
	border-radius: 0.5em;
	position: relative;
	z-index: 80;
}
.PC-return a:before {
	content: '◀';
	position: absolute;
	left: 0.6em;
}
.PC-return a:hover {
	background-color: var(--sub-color);
	color: var(--bg-color);
}
.PC-tatie-wrapper {/* 立ち絵表示エリア全体 */
	max-width: 500px;
	max-height: 1000px;
	position: relative;
}
.PC-tatie { /* 立ち絵表示設定 */
	width: 550px;
	height: 1000px;
	margin: 50px 0;
	margin-left: 20px;
	padding: 0;
	position: relative;
	z-index: 5;
}
.PC-tatie img {
	width: 100%;
	object-fit: contain;
	vertical-align: top;
}
.PC-tatie-sabun { /* 立ち絵差分表示エリア */
	position: absolute;
	z-index: 10;
	width: 40px;
	top: 50px;
	left: 0;
}
li.tatie-sabun-current { 
	border: 1px solid var(--main-color);
	transition: border 0.3s;
	border-radius: 10%;
}
.PC-tatie-sabun li {
	width: 40px;
	height: 40px;
	border-radius: 10%;
	overflow: hidden;
	margin-bottom: 0.5em;
}
.PC-tatie-sabun li:last-child {
	margin-bottom: 0;
}
.PC-tatie-sabun li img {
	border: 1px solid transparent;
	transition: border 0.3s;
	border-radius: 10%;
}
.PC-tatie-sabun img {
	cursor: pointer;
	width: 100%;
}
.PC-serif { /* 立ち絵-セリフエリア */
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.7em;
	writing-mode: vertical-rl;
	line-height: 1.2em;
	position: absolute;
	z-index: 2;
	top: 2.2em;
	left: 2.5em;
	color: var(--bg-color);
}
.PC-cont-wrap { /* 文字エリア全体 */
	width: 600px;
	z-index: 5;
	padding: 50px 50px 50px 20px;
	position: relative;
	background: linear-gradient(to left, var(--bg-color) 87%, transparent);
}
.PC-header-wrap {
	display: flex;
	justify-content: space-between;
}
.PC-header-right { /* 文字エリア右側 */
	text-align: right;
}
.PC-no { /* ナンバリング */
	font-size: 2em;
	color: var(--text-sub-color);
	line-height: 0.4em;
	margin-bottom: 0.9em;
	font-family: "Saira Semi Condensed", sans-serif;
  	font-weight: 200;
  	font-style: normal;
}
.PC-cs { /* CS */
	color: var(--main-color);
	line-height: 1.4em;
}
.CS-symbol { /*CSボタンアイコン */
	transition: 0.3s;
	display: inline-block;
	box-sizing: border-box;
	width: 1.6em;
	height: 1.8em;
	border: var(--main-color) solid 1px;
	position: relative;
	border-radius: 0.2em;
}
.CS-symbol:before,
.CS-symbol:after {
	content: '';
	position: absolute;
	border-top: var(--main-color) solid 1px;
	width: 1em;
}
.CS-symbol:before {
	top: 0.8em;
	left: 0.2em;
}
.CS-symbol:after {
	top: 1.2em;
	left: 0.2em;
}
.CS-symbol:hover {
	transition: 0.3s;
	transform: scale(1.2);
}
.PC-color { /* パーソナルカラー */
	margin-top: 0.4em;
}
.PC-copy { /* キャッチコピー設定 */
	display: inline-block;
	font-size: 1em;
	line-height: 1.3em;
	letter-spacing: 0.1em;
	padding-left: 0.1em;
	color: var(--bg-color);
	margin-bottom: 1em;
}
.child-page-seacher h2 { /* 名前表示設定 */
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
	font-size: 2.5em;
	line-height: 1em;
	text-align: left;
	word-break: break-all;
	line-break: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
	margin-left: -2px;
}
.hurigana {
	font-size: 0.8em;
	letter-spacing: 0.1em;
	margin-top: 0.5em;
	font-weight: 100;
}
.PC-from { /* 出身シナリオ設定 */
	text-align: right;
	padding: 0.5em 0;
	margin: 1em 0;
	color: var(--text-sub-color);
	border-top: 1px dotted var(--text-sub-color);
	border-bottom: 1px dotted var(--text-sub-color);
}
.PC-status { /* ステータス */
	text-align: left;
	line-break: strict;
}
.status-title { /* ステータスタイトル */
	font-size: 0.9em;
	color: var(--text-sub-color);
	padding: 3px 0;
	margin-right: 10px;
}
.status-cont { /* ステータスコンテンツ */
	font-size: 0.9em;
	margin-right: 20px;
}
.status-cont:last-child {
	margin-right: 0;
}
.PC-prof { /* プロフ文設定 */
	padding: 3em 0;
}
.PC-more,
.PC-netabare,
.PC-log,
.PC-tag,
.PC-relation,
.relation-Sessionlog,
.relation-Illust { /* section設定 */
	padding-bottom: 20px;
}
.PC-more p,
.PC-netabare p,
.PC-log p,
.PC-relation p { /* もっと＋バレ＋ログ 段落設定 */
	font-size: 0.8em;
	padding-left: 13px;
}
.PC-cont-wrap h3 { /* 小見出し設定 */
	font-size: 0.9em;
	margin: 30px 0 20px 0;
	padding-left: 10px;
	border-left: 3px solid var(--text-sub-color);
	line-height: 1.5em;
}
.PC-netabare details { /* ネタバレエリア表示 */
	max-width: 500px;
	margin: 0 1em 0.5em 1em;
}
.PC-netabare summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 1em 1em 0;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.8em;
	border-bottom: 1px dotted var(--text-sub-color);
}
.PC-netabare summary::-webkit-details-marker {
	display: none;
}
.PC-netabare summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #444444b3;
	border-right: 3px solid #444444b3;
	content: '';
	transition: transform 0.3s;
}
.PC-netabare details[open] summary::after {
	transform: rotate(225deg);
}
.PC-netabare p {
	transform: translateY(-10px);
	opacity: 0;
	padding: 1em;
	transition: transform 0.5s, opacity 0.5s;
}
.PC-netabare details[open] p {
	transform: none;
	opacity: 1;
}
.PC-tag ul { /* 属性タグエリア */
	display: flex;
	flex-wrap: wrap;
}
.PC-tag li {
	margin-right: 0.5em;
}
.PC-tag li:last-child {
	margin-right: 0;
}
.PC-tag a::before {
	content: '#';
}
.PC-tag a {
	font-size: 0.8em;
	color: var(--main-color);
	text-align: center;
	padding: 0.3em 0.7em;
	border-radius: 1em;
}
.PC-tag a:hover {
	background-color: var(--main-color);
	color: #fff;
}
.relation-wrapper { /* 関連コンテンツエリア */
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
}
.relation-list { /* 関連PC */
	width: 80px;
	margin-right: 10px;
	text-align: center;
}
.relation-list:last-child {
	margin-right: 0;
}
.relation-list img {
	border: solid 1px var(--main-color);
	border-radius: 10%;
	overflow: hidden;
	margin-bottom: 3px;
}
.relation-list a {
	font-size: 0.7em;
}
.relation-list img:hover {
	background: var(--sub-color);
	transition: 0.3s;
}
.relation-Sessionlog { /* 関連卓ログ */
	display: flex;
	flex-wrap: wrap;
	row-gap: 5px;
}
.relation-Sessionlog a {
	width: 70px;
	height: 70px;
	overflow: hidden;
	margin-right: 5px;
	border: var(--main-color) 1px solid;
	border-radius: 10px;
}
.relation-Sessionlog a:last-child {
	margin-right: 0;
}
.relation-Sessionlog img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}
.relation-Sessionlog img:hover {
	scale: 1.1;
	transition: 0.3s;
}
.s-pre-btn,
.s-next-btn { /* 前後記事のボタン設定 */
	position: fixed;
	bottom: 3%;
	z-index: 100;
}
.s-next-btn {
	left: 20px;
}
.s-pre-btn {
	right:20px;
}
.s-pre-btn a,
.s-next-btn a {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 1.2em;
	background-color: var(--main-color);
	color: var(--bg-color);
	border-radius: 100%;
	text-align: center;
}
.s-next-btn a {
	padding-right: 2px;
}
.s-pre-btn a {
	padding-left: 2px;
}
.s-pre-btn a:hover,
.s-next-btn a:hover {
	background-color: var(--sub-color);
	color: var(--bg-color);
}

/* ▼絵ログ一覧 */
.elog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	column-gap: 20px;
	row-gap: 30px;
	place-content: center;
	margin-bottom: 30px;
}
.el-a-thum { /* サムネ */
	aspect-ratio: 4/3;
	overflow: hidden;
}
.el-a-thum img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}
.el-a-thum img:hover {
	scale: 1.2;
	rotate: 5deg;
	transition: 0.3s;
}

/* ▼絵ログ - 個別ページ */
.EL-left { /* 左コンテナ */
	width: 55%;
}
.EL-right { /* 右コンテナ */
	width: 45%;
	padding-left: 30px;
}
.EL-right h3 { /* 子見出し */
	font-size: 1.8em;
	margin-bottom: 10px;
	font-family: "Saira Semi Condensed", sans-serif;
	font-weight: 200;
	font-style: normal;
}
.EL-right section { /* 文章コンテンツ */
	margin-bottom: 50px;
}


/* ▼セッションログ一覧 */
.sessionlog-grid-wrapper {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}
.sessionlog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	column-gap: 20px;
	row-gap: 30px;
	place-content: center;
	margin-bottom: 30px;
}
.sl-a-card { /* 卓カード */
	padding: 10px;
	background-color: var(--bg-color);
}
.sl-a-thum { /* サムネ */
	aspect-ratio: 16/9;
	overflow: hidden;
}
.sl-a-thum img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}
.sl-a-thum img:hover {
	scale: 1.2;
	rotate: 5deg;
	transition: 0.3s;
}
.sl-a-title { /* シナリオタイトル */
	font-weight: normal;
	margin: 10px 0;
	text-align: left;
	color: var(--text-main-color);
}
.sl-a-tag ul { /* 卓タグ */
	display: flex;
	flex-wrap: wrap;
}
.sl-a-tag li {
	margin-right: 7px;
}
.sl-a-tag li:last-child {
	margin-right: 0;
}
.sl-a-tag a {
	font-size: 0.7em;
	color: var(--bg-color);
	background-color: var(--main-color);
	padding: 3px;
}
.sl-a-tag a:hover {
	color: var(--main-color);
	background-color: var(--sub-color);
}

/* ▼セッションログ - 個別ページ */
.child-page-sessionlog-wrapper {
	background-color: var(--bg-color);
	padding-top: 40px;
	padding-bottom: 40px;
}
.child-page-sessionlog {
	margin: 0 auto;
	display: flex;
	max-width: 1200px;
	padding: 0 40px;
}
.SL-left { /* 左コンテナ */
	width: 50%;
}
.SL-right { /* 右コンテナ */
	width: 50%;
	padding-left: 30px;
}
.session-img { /* 卓スクショ */
	width: 100%;
	margin-bottom: 20px;
}
.session-data { /* 卓の日 */
	font-family: "Saira Semi Condensed", sans-serif;
	font-weight: 200;
	font-style: normal;
	font-size: 1.3em;
	margin-bottom: 20px;
	line-height: 1.2em;
}
.session-tag ul { /* 卓タグ */
	display: flex;
	margin-bottom: 50px;
}
.session-tag li {
	margin-right: 10px;
}
.session-tag li:last-child {
	margin-right: 0;
}
.session-tag a {
	font-size: 0.9em;
	color: var(--bg-color);
	background-color: var(--main-color);
	line-height: 1.2em;
	padding: 3px 5px;
}
.session-tag a:hover {
	color: var(--main-color);
	background-color: var(--sub-color);
}
.session-tag a::before {
	content: "#";
}
.session-return a { /* 前のページに戻るリンク */
	display: inline-block;
	padding: 0.1em 0.5em 0.1em 1.8em;
	color: var(--main-color);
	line-height: 1.5em;
	border-radius: 0.5em;
	position: relative;
}
.session-return a:before {
	content: '◀';
	position: absolute;
	left: 0.6em;
}
.session-return a:hover {
	background-color: var(--sub-color);
	color: var(--bg-color);
}
.sl-title { /* シナリオ名 */
	font-size: 2.5em;
	font-weight: normal;
	margin-bottom: 50px;
	padding-bottom: 10px;
	border-bottom: 2px var(--text-main-color) solid;
	text-align: left;
	word-break: keep-all;
	line-break: strict;
	word-wrap: break-all;
	overflow-wrap: break-all;
}
.sl-gm-pl { /* GMPL囲み */
	display: flex;
}
.sl-gmkp { /* GMKP欄 */
	flex-grow: 1;
}
.sl-pl { /* PL欄 */
	flex-grow: 2;
	padding-left: 20px;
}
.SL-right h3 { /* 子見出し */
	font-size: 1.8em;
	margin-bottom: 10px;
	font-family: "Saira Semi Condensed", sans-serif;
	font-weight: 200;
	font-style: normal;
}
.SL-right section { /* 文章コンテンツ */
	margin-bottom: 50px;
}
.sl-text {
	padding: 20px 20px;
	background-color: #f6f6f6;
	line-height: 2em;
}
.session_netabare details { /* ネタバレエリア表示 */
	max-width: 500px;
	margin: 0 0 0.5em 0;
	border: 1px solid var(--text-sub-color);
	border-radius: 5px;
}
.session_netabare summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 1em;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.9em;
}
.session_netabare summary::-webkit-details-marker {
	display: none;
}
.session_netabare summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #444444b3;
	border-right: 3px solid #444444b3;
	content: '';
	transition: transform 0.3s;
}
.session_netabare details[open] summary::after {
	transform: rotate(225deg);
}
.session_netabare p {
	font-size: 0.9em;
	transform: translateY(-10px);
	opacity: 0;
	padding: 0.3em 2em 1.5em;
	transition: transform 0.5s, opacity 0.5s;
	line-height: 2em;
}
.session_netabare details[open] p {
	transform: none;
	opacity: 1;
}

/* ▼パスワードページ */
.login-page {
	display: flex;
	flex-flow: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	grid-gap: 30px;
	padding: 100px 40px;
}
.login-page input {
	display: block;
	width: 300px;
	padding: 5px;
}
.lp-password {
	margin-bottom: 10px;
}

/* ▼404ページ */
.child-page-404 h2 {
	display: inline-block;
	font-weight: 700;
	font-size: 3em;
	letter-spacing: 0.1em;
	color: var(--main-color);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 2.5em;
	margin-top: 1em;
}
.child-page-404 h2::before {
	content: '';
	position: absolute;
	background-color: var(--main-color);
	width: 2em;
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -70%;
}
.notfound-page{
	background-color: var(--bg-color);
	width: 100%;
	display: flex;
	flex-flow: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	grid-gap: 30px;
	padding: 100px 40px;
}

/* ▼フッター */
footer {
	font-size: 0.7em;
	background-color: var(--bg-color);
	margin-top: 30px;
	padding: 30px 0 50px 0;
	text-align: center;
}
@media screen and (max-width: 1024px) { /* スマホ向け */
	:root {
		font-size: 12px;
	}
	main {
		max-width: 1000px;
		margin: 0 auto;
		padding-top: 100px;
	}
	/* ▼ヘッダー */
	header {
		position: fixed;
	}
	.h-logo { /* ヘッダーロゴ */
		margin-left: -20px;
	}
	/* ▼子ページ設定 */
	.index-grid , .child-grid {
		grid-template-columns: 1fr;
		grid-gap: 30px;
		margin: 0 30px;
	}
	.child-grid section {
		padding: 30px;
		margin-bottom: 10px;
	}
	.modal-wrapper {
		max-width: 95vw;
	}
	/* ▼ナビ設定 */
	nav {
		position: relative;
	}
	.nav-menu {
		font-size: 1.5em;
		transition: 0.5s;
		z-index: 9990;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: translateX(105%);
		display: inline-block;
		padding-top: 8em;
		margin-left: 0;
		text-align: center;
	}
	.nav-menu li {
		margin-bottom: 1em;
	}
	.nav-menu li:last-child {
		margin-bottom: 0;
	}
	#hmbg-inpt:checked ~ #hmbg-bg { /* ナビボタン-チェックボックス */
		display: block;
	}
	#hmbg-inpt:checked ~ .nav-menu {
		transform: translateX(0%);
	}
	.hmbg-btn {
		display: block;
		position: fixed;
		top: 30px;
		right: 35px;
		width: 30px;
		height: 22px;
		z-index: 9995;
}
	.hmbg-btn span, .hmbg-btn span:before, .hmbg-btn span:after {
		position: absolute;
		height: 3px;
		width: 30px;
		border-radius: 3px;
		background: var(--main-color);
		display: block;
		content: '';
		cursor: pointer;
	}
	.hmbg-btn span:before {
		bottom: -9px;
	}
	.hmbg-btn span:after {
		bottom: -18px;
	}
	#hmbg-bg {
		display: none;
		position: fixed;
		z-index: 9980;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: var(--bg-color);
		opacity: 0.9;
		transition: 0.5s ease-in-out;
	}
	/* ▼子ページ */
	.prof-link {
		display: inline;
	}
	/* ▼探索者一覧 - 全体ページ */
	.seacher-grid {
		grid-template-columns: repeat(3, 150px);
		row-gap: 10px;
		column-gap: 5px;
	}
	.seacher-grid img {
		width: 150px;
		height: 150px;
	}
	.s-tag-cloud { /* タグクラウド */
		width: 80%;
		gap: 5px;
	}
	/* ▼探索者一覧 - 個別ページ */
	.child-page-seacher {
		max-width: 100%;
		flex-wrap: wrap;
	}
	.PC-tatie-wrapper {
		display: flex;
		min-width: 370px;
		max-width: 95vw;
		min-height: 450px;
		justify-content: center;
	}
	.PC-return a {
		margin-left: 2.5em;
	}
	.PC-tatie {
		min-width: 370px;
		max-width: 95vw;
		height: 450px;
		margin-left: 0;
		margin: 20px 0;
	}
	.PC-tatie img {
		object-fit: cover;
	}
	.PC-tatie-sabun {
		top: auto;
		left: auto;
		bottom: 0;
		right: 1.3em;
	}
	.PC-tatie-sabun li {
		width: 30px;
		height: 30px;
	}
	.child-page-seacher h2 { /* 名前表示設定 */
		width: 70svw;
	}
	.PC-serif {
		font-size: 1.5em;
		top: 2.2em;
		left: 1.3em;
	}
	.PC-from {
		text-align: center;
		color: var(--text-main-color);
		padding: 5px 0;
		font-weight: bold;
		border: none;
		border-left: var(--text-sub-color) 1px solid;
		border-right: var(--text-sub-color) 1px solid;
	}
	.status-title {
		padding: 0 2px;
		margin-right: 4px;
		background-color: var(--text-sub-color);
		color: var(--bg-color);
		border-radius: 10%;
	}
	.PC-cont-wrap {
		position: relative;
		width: 98vw;
		max-width: 98vw;
		padding: 2.5em;
		background: linear-gradient(to top, var(--bg-color) 75%, transparent 100%);
	}
	.PC-cont-wrap::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		mask-image: linear-gradient(to top, #000 90%, transparent 100%);
		background-image: radial-gradient(circle, var(--bg-color) 1px, transparent 1px);
    	background-size: 2px 2px;
    	opacity: 0.5;
    	pointer-events: none; 
		z-index: -1;
	}
	/* ▼絵ログ一覧 */
	.elog-grid {
		grid-template-columns: repeat(2,1fr);
		gap: 10px;
	}
	/* ▼絵ログ個別 */
	.EL-left { /* 左コンテナ */
		display: grid;
		grid: "img img img img"
			"data tag tag tag"
			"return return return return";
		width: 100%;
		margin-bottom: 50px;
	}
	.EL-right { /* 右コンテナ */
		width: 100%;
		padding-left: 0;
	}
	/* ▼セッションログ一覧 */
	.sessionlog-grid-wrapper {
		width: 100%;
	}
	.sessionlog-grid {
		grid-template-columns: repeat(2,1fr);
		gap: 10px;
	}
	.sl-a-title {
		font-size: 0.8em;
	}
	.sl-a-tag li {
		margin-right: 4px;
	}
	.sl-a-tag a {
		font-size: 0.6em;
	}
	/* ▼セッションログ - 個別ページ */
	.child-page-sessionlog {
		display: block;
		max-width: 100%;
		padding: 0 20px;
	}
	.SL-left { /* 左コンテナ */
		display: grid;
		grid: "img img img img"
			"data tag tag tag"
			"return return return return";
		width: 100%;
		margin-bottom: 50px;
	}
	.s-grid-img {
		grid-area: img;
	}
	.s-grid-data {
		grid-area: data;
	}
	.s-grid-tag {
		grid-area: tag;
	}
	.s-grid-return {
		grid-area: return;
	}
	.SL-right { /* 右コンテナ */
		width: 100%;
		padding-left: 0;
	}
	.session-tag ul { /* 卓タグ */
		margin-bottom: 30px;
		flex-wrap: wrap;
		row-gap: 5px;
		justify-content: flex-end;
	}
}
@media screen and (max-width: 500px) { /* スマホ向け */
	.seacher-grid {
		grid-template-columns: repeat(2, 150px);
	}
}