/*
 フレーム構造とは関係ないテキスト装飾オプション、
 Twinsなどの追加機能オプション。
 このまま別ファイルに再利用しても問題ない範囲
*/

/*INITIALIZE*/
* {
	margin: 0px;
	padding: 0px;
	border: none;
	box-sizing: border-box;
	letter-spacing: 0em;
	text-decoration: none;
	font-style: normal;
	font-size: 0.98em;
}


/*TEXTOPTION*/
a {
	color: black;
	font-weight: bold;
	text-decoration: underline;
	text-shadow: none;
	/*
	color: turquoise;
	color: #cf0;
	text-shadow: 2px 2px blueviolet;
	text-shadow: 0px 0px 4px rgba(255,255,255,0.1);
	background: linear-gradient(0deg, blueviolet 2px, transparent 2px);
	 */
	font-size: 1.1em;
	margin: 0px 0.1em;
}
a.secretlink{
	text-decoration: none;
	padding: 0px;
	margin: 0px;
	font-size: inherit;
}
.nourl{
	color: black;
	font-weight: bold;
	text-decoration: underline dotted;
	text-shadow: none;
	font-size: 1.1em;
	margin: 0px 0.1em;
	
}
a:hover {
	background: blueviolet;
}
a[target="_blank"]:after{
	content: "↗";
}
.captionimg{
	display: block;
	text-align: center;
	line-height: 1.2em;
	color: black;
	font-size: 0.9em;
	text-shadow: none;
	margin: 32px;
}
.captionimg img{
}
.imglink {
	text-decoration: none;
}
.imglink:hover {
	background: none;
}
a.imglink:after{
	content: none;
}
.bantext, .bantext32{
	display: inline-block;
	box-sizing: border-box;
	font-size: 0.9em;
	line-height: 1.1em;
	border: solid 1px;
	width: 200px;
	position: relative;
	vertical-align: top;
	height: 40px;
	margin: 1px 0px;
}
.bantext32{
	height: 32px;
	width: 162px;
}
.emoji {
	font-family: "Noto Emoji", sans-serif;
	font-style: normal;
	font-size: 1.2em;
	text-decoration: none;
	text-shadow: none;
}
.nodeco {
	text-decoration: none;
	border: none;
	box-shadow: none;
	text-transform: normal;
}
.flip {
		transform: scale(-1, 0);
}
u, .u, .underline{
	text-decoration: underline dotted 1px;
	margin: inherit 1px;
}
b, .b, .bold {
	font-weight: bold;
	margin: inherit 1px;
}
s, strike, .s, .strike {
	text-decoration: line-through solid 1px;
	margin: 0px 1px;
	opacity: 0.6;
}
i, italic, .i, .italic {
	font-style: italic;
	margin-right: 2px;
}
large, .large {
	font-size: 2em;
	line-height: 1em;
}
strong, .strong {
	font-size: 2.4em;
	font-weight: bold;
	font-style: italic;
	text-shadow: none;
	line-height: 1em;
	margin: 0px 1px;
}
.shout{
	font-size: 3.5em;
	font-weight: bold;
	text-shadow: none;
	line-height: 1em;
	margin: 0px 1px;
}
small, .small {
	font-size: 0.8em;
	line-height: 1.4em;
	margin: 0px 1px;
}

/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
 *インライン文字装飾
 ほぼネタ的配色
 */
.gore,.fatal{
	background-color: #633;
	color: #f66;
	padding: 2px;
}
.danger{
	background-color: #da3;
	color: black;
	padding: 2px;
}
.chocomint{
	color: #7fd;
	background-color: #410;
	padding: 2px;
	
}
.god{
	color: #da3;
	background: #333;
	padding: 2px;
}
.warn {
	text-decoration: underline solid 1px #f00;
}
.safe {
	text-decoration: underline solid 1px #0ff;
}
.undertone{
	font-size: 0.8em;
	opacity: 0.8;
}
/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/


.clear {
	clear: both;
	height: 0px;
	margin: 0px;
	padding: 0px;
}
hr {
	height: 0px;
	margin: 4.2em 0px;
	border: none;
	border-bottom: solid 1px ;
	opacity: 0.4;
}
hr[class="noline"] {
	border: none;
}
hr.point {
	width: 1em;
	height: 1em;
	background: #ccc;
	margin: 4em auto;
	border: none;
	transform: rotate(45deg);
}
hr.wide {
	margin: 5em auto;
}
.hr {
	margin-top: 2.8em;
}
.center {
	text-align: center;
	margin: inherit auto;
}
.framed {
	width: 90%;
	padding: 1.8em 2.4em;
	margin: 2.2em auto;
	color: black;
	text-shadow: none;
	border: dashed 1px ;
	border-radius: 3px;
	line-height: 1.2em;
	background: rgba(255,255,255,0.16);
	/*
	*/
	opacity: 0.95;
}
.framed p {
	margin: 1em ;
	line-height: inherit;
}
.indented{
	margin-left: 4em;
}
.floatleft{
	float: left;
	margin: 8px;
}
.floatright{
	float: right;
	margin: 8px;
}
ul { /* framedに気をつけろ*/
   /*色などのスタイルのみ。サイズやMarginはあっちのほうで*/
	list-style:  none;
	list-style-type: square;
}
ul.framed{
	border: solid 1px #333;
}
ul.number>li {
	list-style-type: decimal;
}
li:nth-of-type(odd) {
	/*
	background:rgba(255,255,255,0.15);
	*/
	}
/*
li:first-line{
	font-weight: bold;
}
*/
li:before{
}
li:first-letter {
}
code { /*コードブロック用*/
	display: block;
	font-family: monospace;
	line-height: 1.25em;
	border-color: #999;
	border-style: solid;
	border-width: 2px 2px 2px 12px;
	border-radius: 12px;
	padding: 1.8em 1em 1.8em 0.4em;
	margin: 1.2em 0em;
	background: rgba(0,16,24,0.8);
	color: white;
	text-shadow: 0px 0px 6px black;
}
code.raw{
	white-space: pre;
}
.code { /*インライン用*/
	padding: 2px 6px;
	font-family: monospace;
	font-size: 1.1em;
	background: rgba(0,16,24,0.8);
	border-radius: 5px;

}
img[class*="float"] {
	margin: 4px;
}
img.small {
	max-width: 20%;
}
img.medium {
	/* It shifted to common settings
	 * Past: medium size is optional, Fullwidth is default
	 * Now:  medium size for default, Fullwidth is optional
	max-width: 45%;
	*/
}
img.large{
	width: 100%;
}
img.center{
	display: block;
	margin: auto;
}

.invert{
	filter: invert(100%);
}


/* BOX EFFECT */
.verticalcenter {
	display: grid;
	height: 100%;
	width: 100%;
	grid-template-columns: 1fr ;
	grid-template-rows: 100%;
	place-items: center;
	place-content: center;
}
.twins{
	display: grid;
	gap: 8%;
	width: 100%;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
}
.sidepaned{
	display: grid;
	gap: 5%;
	width: 100%;
	grid-template-columns: 1fr 4fr;
	grid-template-rows: auto;
}
.sidepaned div:nth-of-type(1){
	min-width: 200px;
}
.twins>div{
}

/* //////////////画像クリックで拡大////////////////*/
.viewable {
	cursor: pointer;
}
.x05window {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: rgba(0,0,0,0.8);
	transition-duration: 0.2s;
	opacity: 0;
	z-index: 100;
}
.x05image {
	margin: 40px 0px 0px 0px;
	max-width: 90vw;
	max-height: 80vh;
	border: solid 10px white;
	position: relative;
}
.x05closebutton {
	display: block;
	position: relative;
	max-width: 90%;
	line-height: 1.2em;
	margin: 0px auto;
	text-align: center;
	color: white;
	text-shadow: 0px 0px 2px 0px black;
	z-index: 120;

	/* 閉じるボタンではなくただの閉じ勧告テキストに（以下ボタンだったときのやつ）
	display: block;
	width: 180px;
	margin: 1% auto 1% auto;
	padding: 6px 0px;
	font-family: sans-serif;
	font-size: large;
	color: black;
	background: white;
	text-align: center;
	z-index: 120;
	cursor: pointer;
*/
}
.letterpack{
	color: #c00;
	background: white;
	font-size: 0.9em;
	font-weight: bold;
	text-shadow: 0px 0px 0.8px #c00;
	letter-spacing: -0.06em;
	padding: 2px 4px;
	border: solid 1px rgba(0,0,0,0.08);
	}
.youkoso {
	color: white;
	font-weight: bold;
	font-style: italic;
	font-size: 0.9em;
	text-shadow: 1px 1px 1px #45e;
	box-shadow: 1px 1px 3px black;
	letter-spacing: -0.2em;
	/*
	background: linear-gradient(0deg, #45e 10%, orange 11%, #9ae 12%, #9ae 90%, #45e 90%);
	*/
	background: radial-gradient(circle at 20% 0%, #bbe 0%, #78e 40%);
	border-top: solid 2px #11d;
	border-bottom: solid 2px #11d;
	padding: 4px 8px 4px 3px;
	}

/* %%%%%%%%%%%%%特別カラーテーマ%%%%%%%%%%%%%%%%%%%%*/
html.photo{
		background-color: #333 ;
}
	html.photo *{
		color: white;
	}
	html.photo header .backbutton{
	}
html.bf{
		background-color: #aaaf99 ;
		color: #210;
}
	html.bf a:hover{
		background: #785;
	}
	html.bf h2{
	}

html[class*="ink"]{
	background-color: #dddad6 ;
	color: black;
}
	html[class*="ink"] a:hover{
		background: white;
	}
	html[class*="ink"] main a{
		color: #339;
	}
	html[class*="ink"] .thumbanchor {
		}
	html[class*="ink"] h1 {
		font-family: serif;
	}
	html[class*="ink"] .work_category_title {
		color: #003;
		font-family: serif;
	}
