/* [ kojingaika - css ] */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');
/* font-family: "Hina Mincho", serif; */

/* custom property */
:root{
	--main_bg:	#212b31;
	--main_tx:	#94948c;
	--sub_tx: 	#dfb693;
	--sub_bg:	#5e1f1b;
	--aaaa_tx:	#efce1a;
}

*{
	margin: 0;
	padding: 0;
}

html{
	font-family: "Hina Mincho", serif;
	font-style: normal;
	font-size: 100%;
	background: var(--main_bg);
	color: var(--main_tx);
	width: 80%;
	max-width: 1100px;
	margin: 32px auto;
}


/* スクロールバー */
::-webkit-scrollbar {
  background: var(--main_tx);
  width:12px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--sub_bg);
  border-radius: 6px;
}


body{
	font-size: 1.0rem;
	line-height: 1.6rem;
}

header{
	margin-top: 1rem;
	margin-bottom: 6rem;
}

h1{
	color: var(--sub_bg);
	font-size: 1rem;
	margin-bottom: 2rem;
	text-align: center;
}

h2{
	color: var(--aaaa_tx);
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

h3{
	color: var(--aaaa_tx);
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}
h3::before{
	content: '> ';
}

h4{
	color: var(--aaaa_tx);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

article{
	margin-bottom: 6rem;
}

dt{
	font-weight: 700;
}
dd{
	margin-left: 1rem;
	margin-bottom: 1.6rem;
}

p{
	margin-bottom: 1.6rem;
}

main li{
	margin-left: 1.5rem;
}

a{
	color: var(--aaaa_tx);
	transition: 0.25s;
}
a:hover{
	color: var(--sub_bg);
}

ruby rt{
	font-size: 0.5rem;
}

img.icon{
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	transition: 0.25s;
}
img.icon:hover{
	width: 96px;
	height: 96px;
	border-radius: 8px;
}

img.icon_s{
	width: 32px;
	height: 32px;
	vertical-align: middle;
}

img.pinup{
	width: 320px;
	height: 320px;
}

img.title{
	width: 256px;
	height: 256px;
	filter: drop-shadow(0 0 0.2rem #000);
	margin: 128px auto;
}


.small{
	font-size: 0.9rem;
	line-height: 1.2rem;
}
.small dd, p{
	margin-bottom:0.8rem;
}

.big{
	font-size: 1.6rem;
}


/* 骨牌表示・テリトリー解説 */
.explanation{
	margin-top: 3rem;
	display: flex;
	justify-content: flex-start;
}
img.card{
	width: 64px;
	height: 128px;
	outline: 4px solid #fff;
	border-radius: 4px;
	margin: 0 3rem 0 2rem;
	transform: rotatez(8deg);
}
img.card_mini{
	width: 64px;
	height: 128px;
	outline: 4px solid #fff;
	border-radius: 4px;
	margin: 0 24px 0 0;
	transform: rotatez(-16deg);
	animation: animation-card 8s ease-in-out infinite alternate;
}
img.card_rotate{
	outline: 5px solid #fff;
	border-radius: 8px;
	margin: 0 4rem 0 2rem;
	transform: rotatez(-16deg);
	animation: animation-card 8s ease-in-out infinite alternate;
}
@keyframes animation-card{
	0% { transform: rotatex(0deg) rotatey(0deg) rotatez(-16deg); }
	100% { transform: rotatex(0deg) rotatey(360deg) rotatez(-16deg); }
}


/* form */
form{
	margin-bottom: 1rem;
}

input[type=text], input[type=password]{
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	background: var(--sub_bg);
	color: var(--aaaa_tx);
	padding: 0.25rem;
	width: 24rem;
	border: 0 none;
	border-radius: 2px;
    border-left: 2px dotted rgba(0,0,0,0.2);
    border-right: 2px dotted rgba(0,0,0,0.2);
	box-shadow: 0px 3px 3px rgba(0,0,0,0.25);
	/*background-image: url(./splash.png);
	background-repeat: no-repeat;
	background-position: right;*/
}

textarea{
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	background: var(--sub_bg);
	color: var(--aaaa_tx);
	padding: 0.25rem;
	width: 40rem;
	height: 8rem;
	border: 0 none;
	border-radius: 2px;
    border-left: 2px dotted rgba(0,0,0,0.2);
    border-right: 2px dotted rgba(0,0,0,0.2);
	box-shadow: 0px 3px 3px rgba(0,0,0,0.25);
	/*background-image: url(./splash.png);
	background-repeat: no-repeat;
	background-position: bottom left;*/
}

select{
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	background: var(--sub_bg);
	color: var(--aaaa_tx);
	padding: 0.25rem;
	border: 0 none;
	appearance: auto;
	border-radius: 2px;
    border-left: 2px dotted rgba(0,0,0,0.2);
    border-right: 2px dotted rgba(0,0,0,0.2);
	box-shadow: 0px 3px 3px rgba(0,0,0,0.25);
}

button{
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	min-width: 8rem;
	background: var(--aaaa_tx);
	color: var(--sub_bg);
	padding: 0.25rem;
	border: 0 none;
	border-radius: 24px;
	transition: 0.25s;
}
button:hover{
	background: var(--sub_bg);
	outline: 1px solid var(--aaaa_tx);
	color: var(--aaaa_tx);
}

input::placeholder, textarea::placeholder{
	color: var(--sub_tx);
}

@media screen and (max-width: 767px){
	input[type=text], input[type=password], textarea{
		width: stretch;
		width: -webkit-fill-available; /* Chrome, Safari */
		width: -moz-available;         /* Firefox */
	}
}

label{
	cursor: pointer;
}

nav.top li{
	display: inline;
}

nav li{
	list-style: none;
}

form li{
	list-style: none;
}

table{
	border-collapse: collapse;
}

table.chat_form{
	border-collapse: collapse;
	margin: 0 auto;
}
th,td{
	border-bottom: 1px solid var(--sub_bg);
	padding: 0.8rem 1.6rem;
	text-align: center;
}

/* チャットログ表示 */
article.form{
	/* フォーム */
	margin-bottom: 1rem;
}

.explanation{
	/* 全体 */
	width: stretch;
	width: -webkit-fill-available; /* Chrome, Safari */
	width: -moz-available;         /* Firefox */
	margin-bottom: 1.6rem;
}
.explanation .text{
	/* text部分 */
	margin: 0 2rem;
	padding:1.6rem;
	background: rgba(255,255,255,0.1);
	box-shadow: inset 0px 3px 7px 0px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(16px);
}
.explanation .text.lefty{
	border-radius: 0 16px 16px 16px;
}
.explanation .text.righty{
	border-radius: 16px 0 16px 16px;
}
.explanation .id.lefty{
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.explanation .id.righty{
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: right;
	margin-right:2rem;
}
.explanation li{
	list-style: none;
	margin-bottom: 1rem;
}

/* ダイモテープ風 */
div.tape {
    display: inline-block;
    position: relative;
    padding: 0.25rem 1rem;
    background-color: var(--sub_bg);
    color: var(--sub_tx);
    border-left: 2px dotted rgba(0,0,0,0.2);
    border-right: 2px dotted rgba(0,0,0,0.2);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.75);
}
div.tape::before {
    position: absolute;
    bottom: -1px;
    right: 9px;
    z-index: -1;
    transform: rotate(5deg);
    width: 70%;
    height: 50%;
    background-color: #000;
    content: "";
    filter: blur(4px);
}

div.stamp{
	font-size: 0.8rem;
	text-align: right;
}

.wisper{
	filter: hue-rotate(180deg);
}

.explanation.lefty{
	flex-direction: row;
}
.explanation.righty{
	flex-direction: row-reverse;
}

/* ページネーション */
.pagination{
	text-align: center;
}
.pagination li{
	list-style: none;
	display: inline;
}

article.page{
	text-align: center;
}

.list li{
	list-style: none;
}

.center{
	text-align: center;
}

.right{
	text-align: right;
}

.left{
	text-align: left;
}

i.las{
	font-size: 1.3rem;
}

i.la-book-open{
	font-size: 1.6rem;
	vertical-align: middle;
}

/* page_top */
#back{
	position: fixed;
	width: 64px;
	height: 64px;
	right: 0;
	bottom: 32px;
	background: var(--aaaa_tx);
	font-size: 2rem;
	text-align: center;
	line-height: 4rem;
	border-radius: 4px 0 0 4px;
	transition: 0.25s;
}
#back a{
	color: var(--sub_bg);
	font-weight: 700;
	text-decoration:none;
}
#back:hover{
	bottom: 36px;
}
.las.la-angle-double-up{
	font-size: 2rem;
}

/* メニュー */
#menu ul {
	margin: 0;
	padding-top: 32px;
	padding-left: 48px;
}
#menu ul li {
	list-style: square;
}
#menu ol li{
	list-style: none;
}
#menu {
	position: fixed;
	top: 8px;
	right: -180px; /* メニューのwidth + padding */
	width: 240px; /* メニューのwidth */
	padding: 32px;
	transition: left .5s, right .5s; /* アニメーション */
	background-color: var(--aaaa_tx);
	background-image: url(./splash.png);
	background-repeat: no-repeat;
	background-position: bottom -32px right -32px;
	color: var(--main_bg);
	font-weight:700;
	transform: rotate(-10deg);
	border-top: 3px dotted rgba(0,0,0,0.25);
	border-bottom: 3px dotted rgba(0,0,0,0.25);
	box-shadow: 0px 4px 4px rgba(0,0,0,0.5);
}
#menu a{
	color: var(--sub_bg);
}
#menu a:hover{
	color: var(--main_tx);
}
.toggle {
	color: var(--main_bg);
	padding:0px 0px 32px 0px;
	font-size:32px;
	font-weight:700;
	cursor: pointer;
}
.toggle:hover {
	text-decoration: underline;
}
#open {
	display: none;
}
/* :checked 擬似クラスを使って、#openがチェック状態になった時に、#menuが「right: 0;」になります。 */
#open:checked + #menu {
	right: 0;
}
#menu address{
	text-align:right;
	font-size: 0.8rem;
}


/* ファストトラベルカード */
div.place{
	text-align: center;
	margin: 64px auto;
}
.place img{
	outline: 6px solid #fff;
	border-radius: 4px;
	margin: 0 24px 32px;
}
img.place_1{
	transform-origin: bottom right;
	transform: rotate(-8deg);
}
img.place_2{
	margin-bottom: 36px;
}
img.place_3{
	transform-origin: bottom left;
	transform: rotate(8deg);
}
.place input[type=radio]{
	display: none;
}
.place input[type=radio]+label img{
	filter: brightness(30%);
	transition: 0.25s;
}
.place input[type=radio]:checked+label img{
	filter: brightness(100%);
	transition: 0.25s;
}


/* プロフカード配置 */
.container_prof{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center; /*baseline;*/
}

/* プロフカード */
.prof_card{
	position: relative;
	background-image: linear-gradient(160deg, rgba(128,128,100, 0.9) 49%, rgba(225,225,200, 0.7));
	backdrop-filter: blur(3px);
	color: #000000;
	width: 220px;
	max-width: 220px;
	height: 340px;
	max-height: 340px;
	padding: 1rem;
	border: 8px solid #ffffff;
	border-radius: 5px;
	margin: -3rem 1rem;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
	text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
	text-align: center;
	transition: 1s;
	transform: rotate(7deg);
	word-break: break-all;
}
.prof_card:hover{
	z-index: 999;
	box-shadow: 0 0 32px rgba(0, 0, 0, 0.8);
	transform: rotate(0deg);
}
.prof_icon{
	display: block;
	width: 96px;
	height: 96px;
	background: var(--main_bg);
	margin: 1rem auto;
}
.prof_name{
	font-weight: 700;
	font-size: 1.3rem;
	margin: 1rem auto 0;
	letter-spacing: 0.1rem;
}
.prof_id{
	font-size: 1.2rem;
}
.prof_life{
	position: absolute;
	font-size: 1.5rem;
	bottom: 48px;
	left: 50%;
	transform: translate(-50%,0%);
}
.prof_cit{
	position: absolute;
	bottom:8px;
	left: 50%;
	transform: translate(-50%,0%);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 700;
}
i.las.la-male{
	font-size: 1.6rem;
}

/* ポラロイド */
img.pinup{
	width: 360px;
	height: 360px;
	background-image: linear-gradient(160deg, rgba(210, 190, 153, 1) 49%, rgba(64,64,64, 1));
}
.outline{
	width: 408px;
	height: 464px;
	background-image: repeating-linear-gradient(160deg, rgba(214, 210, 210, 1), rgba(225, 225, 225, 1) 80%);
	border-radius: 3px;
	box-shadow: 0px 5px 5px rgba(0,0,0,0.5);
	padding: 32px 24px 80px 24px;
}

/*ノート紙片*/
.info{
	width: 560px;
	background: #cccc99;
	color: var(--main_bg);
	margin: 64px auto 0;
	padding: 1.5rem;
	/* 罫線 */
	padding: 2rem;
	line-height: 2rem;
	background-image: linear-gradient(transparent 0, transparent 97%, #fff 100%);
	background-size: 100% 2rem;
	filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.5));
}
.info::before{
	position: absolute;
	width: 560px;
	height: 80px;
	background-image: url(./memo_bottom.png);
	bottom: -78px;
	left: 0px;
	content: '';
}

/* 探索ページ レイアウト */
.container_explore{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: top;
}

.explore_left{
	margin-right:4rem;
	margin-top: 3rem;
}
.explore_right{
	
}

td.explore{
	padding:1rem;
	border: 1px solid var(--aaaa_tx);
	width: 6rem;
	height: 6rem;
	max-width: 6rem;
	max-height: 6rem;
}

.carta{
	/* 骨牌 金 */
	background: rgba(255, 255, 0, 0.1);
}
.paper{
	/* 紙片 銀 */
	background: rgba(255, 255, 255, 0.1);
}
.frags{
	/* かけら 銅 */
	background: rgba(255, 128, 0, 0.1);
}

/* チェックボックス */
.checkboxItem {
  align-items: center;
  column-gap: 6px;
  width: fit-content;
  line-height: 1rem;
  cursor: pointer;
}
.checkboxItem:not(:last-of-type) {
  margin-bottom: 16px;
}
.itemck {
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height:16px;
  background-color: var(--main_tx);
  cursor: pointer;
}
.itemck:checked {
  background-color: var(--sub_bg);
}
.itemck:checked::after {
  content: "";
  position: absolute;
  top: -0.5px;
  left: 3px;
  width: 16px;
  height: 8px;
  border-bottom: 1px solid var(--aaaa_tx);
  border-left: 2px solid var(--aaaa_tx);
  transform: rotate(-45deg);
}

input.stake_id{
	width: 12rem;
}


/* 背景アニメーション */
.area{
	width: stretch;
	width: -webkit-fill-available; /* Chrome, Safari */
	width: -moz-available;         /* Firefox */
	height: 100vh;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	position: fixed;
    z-index: -2;
}
.area.reader_0{
	background: url('./back0_ss.jpg') no-repeat 50% 50% / cover;
}
.area.reader_1{
	background: url('./back1_ss.jpg') no-repeat 50% 50% / cover;
}
.area.reader_2{
	background: url('./back2_ss.jpg') no-repeat 50% 50% / cover;
}
.area.reader_3{
	background: url('./back3_ss.jpg') no-repeat 50% 50% / cover;
}
.area.reader_4{
	background: url('./prologue_back_ss.jpg') no-repeat 50% 50% / cover;
	filter: blur(3px);
}

/* 火の粉エフェクト */
.circles{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.circles li{
	position: absolute;
	display: block;
	list-style: none;
	animation: fire_animate 5s linear infinite;
	left: -96px;
}
.circles li:nth-child(1){
	top: 0%;
	width: 64px;
	height: 64px;
	animation-delay: 9s;
	animation-duration: 13s;
}
.circles li:nth-child(2){
	top: 5%;
	width: 96px;
	height: 96px;
	animation-delay: 8s;
	animation-duration: 12s;
}
.circles li:nth-child(3){
	top: 15%;
	width: 40px;
	height: 40px;
	animation-delay: 7s;
	animation-duration: 11s;
}
.circles li:nth-child(4){
	top: 25%;
	width: 48px;
	height: 48px;
	animation-delay: 6s;
	animation-duration: 10s;
}
.circles li:nth-child(5){
	top: 35%;
	width: 56px;
	height: 56px;
	animation-delay: 5s;
	animation-duration: 9s;
}
.circles li:nth-child(6){
	top: 45%;
	width: 64px;
	height: 64px;
	animation-delay: 4s;
	animation-duration: 8s;
}
.circles li:nth-child(7){
	top: 55%;
	width: 72px;
	height: 72px;
	animation-delay: 3s;
	animation-duration: 7s;
}
.circles li:nth-child(8){
	top: 65%;
	width: 80px;
	height: 80px;
	animation-delay: 2s;
	animation-duration: 6s;
}
.circles li:nth-child(9){
	top: 75%;
	width: 88px;
	height: 88px;
	animation-delay: 1s;
	animation-duration: 5s;
}
.circles li:nth-child(10){
	top: 85%;
	width: 96px;
	height: 96px;
	animation-delay: 0s;
	animation-duration: 4s;
}
@keyframes fire_animate {
	0%{
		transform: translateX(0) rotate(0deg);
		filter:contrast(200%) brightness(200%) blur(10px);
		opacity: 1;
	}
	50%{
		filter: contrast(150%) brightness(100%) blur(0px);
		opacity: 1;
	}
	80%{
		filter: contrast(75%) brightness(10%);
		opacity: 0.5;
	}
	100%{
		transform: translateX(100vw) rotate(480deg);
		filter: contrast(0%) brightness(0%);
		opacity: 0;
	}
}

/* 業雨エフェクト */
.circles_rain{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.circles_rain li{
	position: absolute;
	display: block;
	list-style: none;
	animation: rain_animate 5s linear infinite;
	top: -64px;
}
.circles_rain li:nth-child(1){
	left: 5%;
	animation-delay: .9s;
	animation-duration: 5s;
}
.circles_rain li:nth-child(2){
	left: 15%;
	animation-delay: .8s;
	animation-duration: 2s;
}
.circles_rain li:nth-child(3){
	left: 25%;
	animation-delay: .7s;
	animation-duration: 4s;
}
.circles_rain li:nth-child(4){
	left: 35%;
	animation-delay: .6s;
	animation-duration: 1s;
}
.circles_rain li:nth-child(5){
	left: 45%;
	animation-delay: .5s;
	animation-duration: 3s;
}
.circles_rain li:nth-child(6){
	left: 55%;
	animation-delay: .4s;
	animation-duration: 1s;
}
.circles_rain li:nth-child(7){
	left: 65%;
	animation-delay: .3s;
	animation-duration: 2s;
}
.circles_rain li:nth-child(8){
	left: 75%;
	animation-delay: .2s;
	animation-duration: 6s;
}
.circles_rain li:nth-child(9){
	left: 85%;
	animation-delay: .1s;
	animation-duration: 3s;
}
.circles_rain li:nth-child(10){
	left: 95%;
	animation-delay: 0s;
	animation-duration: 1s;
}
@keyframes rain_animate {
	0%{
		transform: translateY(0) rotate(0deg);
		filter: sepia(100%) brightness(50%) blur(0px);
		opacity: 1;
	}
	75%{
		filter: sepia(100%) brightness(25%) blur(0px);
		opacity: 1;
	}
	100%{
		transform: translateY(100vh) rotate(240deg);
		filter: sepia(100%) brightness(0%) blur(5px);
		opacity: 0.5;
	}
}

/* プロローグ 砂嵐 */
.circles_dust{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.circles_dust li{
	position: absolute;
	display: block;
	list-style: none;
	animation: dust_animate 5s linear infinite;
	left: -480px;
	filter: brightness(25%) blur(8px);
}
.circles_dust li:nth-child(1){
	top: 70%;
	animation-delay: 1s;
	width: 320px;
	height: 320px;
}
.circles_dust li:nth-child(2){
	top: 75%;
	animation-delay: 4s;
	width: 560px;
	height: 560px;
}
.circles_dust li:nth-child(3){
	top: 80%;
	animation-delay: 2s;
	width: 640px;
	height: 640px;
}
@keyframes dust_animate {
	0%{
		transform: translateX(0) rotate(0deg);
		opacity: 0.3;
	}
	50%{
		opacity: 0.75;
	}
	100%{
		transform: translateX(100vw) rotate(128deg);
		opacity: 0;
	}
}

.prologue_html{
	color: #eee;
	text-shadow: 1px 1px 5px rgba(0,0,0,1);
}


/* ページ移動フェードイン */
body{
	animation: fadein 1s forwards;
}
@keyframes fadein{
	0%{ opacity: 0 }
	100%{ opacity: 1 }
}


/*モーダルウィンドウ*/
.modalArea{
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modalBg{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.modalWrapper{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 72%;
	max-width: 560px;
	padding: 2rem;
	background-color: #cccc99;
	color: var(--main_bg);
	transform-origin: center;
	transform: rotate(3deg) translate(-50%,-50%);
}
.modalWrapper::before{
	position: absolute;
	width: 560px;
	height: 80px;
	background: url(./memo_bottom.png);
	bottom: -78px;
	left: 0px;
	content: '';
}
.modalWrapper a{
	color: var(--sub_bg);
}
.modalWrapper a:hover{
	color: var(--sub_tx);
}
.closeModal{
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}


/* トーストメッセージ */
.toast{
	position: fixed;
	top: 8px;
	left: -4px;
	z-index: 998;
    cursor: pointer;
}


/* tips アコーディオン */
.tips{
	font-size: 0.9rem;
	line-height: 1.2rem;
	width: 30rem;
}
.tips summary{
	font-size: 1rem;
	color: var(--aaaa_tx);
    cursor: pointer;
}
.tips dl {
    transform: translateY(-10px);
    opacity: 0;
    margin-top: 1rem;
}
.tips[open] dl {
    transform: none;
    opacity: 1;
}
.tips dd{
	margin-bottom: 1rem;
}


/* 相克 リスト表示 */
div.conflict{
	display: inline-block;
	margin: 2rem auto;
}

div.conf_tape{
	background-color: rgba(255,255,255,0.1);
	color: var(--sub_tx);
	margin: 0 1rem;
	padding: 0.75rem;
	border-left: 2px dotted rgba(0,0,0,0.2);
	border-right: 2px dotted rgba(0,0,0,0.2);
	text-shadow: 2px 2px 4px rgba(0,0,0,0.75);
	box-shadow: 0 0 3px rgba(0,0,0,0.5);
	backdrop-filter: blur(8px);
	transition: 0.5s;
}
div.conf_tape:hover{
	background-color: var(--sub_bg);
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
	z-index: 997;
}

i.las.la-balance-scale-left{
	font-size: 2.0rem;
	color: var(--main_tx);
	vertical-align: middle;
	animation: libra 4s ease-in-out infinite alternate;
}
@keyframes libra {
	0% {transform: rotatey(0deg);}
	100% {transform: rotatey(360deg);}
}


/* 相克 リザルト画面 */
.result_container{
	width: 720px;
	height: 400px;
	margin: 160px auto 0 auto;
}
.wave1{
	width: 720px;
	height: 200px;
	position: absolute;
	opacity: 0.5;
	background: url("./result_back_ss.jpg") no-repeat 50% 30% / cover;
	filter: sepia(100%);
	transform: skewX(-32deg);
	animation: wave 1s;
	overflow: hidden;
}
.wave1 img{
	transform: skewX(32deg);
	width: 720px;
	height: 720px;
	opacity: 0.5;
	position: absolute;
	top: -160px;
}
.wave2{
	width: 720px;
	height: 200px;
	position: absolute;
	color: #000;
	filter: invert(100%) drop-shadow(0px 0px 4px rgba(256, 32, 0, 0.75));
	animation: catchFadein 2s;
}
.wave3{
	width: 360px;
	height: 360px;
	position: absolute;
	filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 1.0));
	animation: charSlider 1s ease-out forwards;
}
.wave3 img{
	width: 360px;
	height: 360px;
}
@keyframes wave{
	0%{ background-position: 160px 30%; }
	100%{ background-position: 0 30%; }
}
@keyframes catchFadein{
	0%{ opacity: 0; }
	100% { opacity: 1; }
}
@keyframes charSlider{
	0% {
		opacity: 0;
		transform: translateX(640px) translateY(-100px);
	}
	100% {
		opacity: 1;
		transform: translateX(400px) translateY(-100px);
	}
}
#conflict_html dl{
	line-height: 1rem;
}
#conflict_html dt{
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 1.0));
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--sub_bg);
}
#conflict_html dd{
	font-size: 1rem;
	margin-left: 10rem;
}