@charset "UTF-8";

/* ---- colors ---- 
white:#ffffff
gray:#F4F4F4
middleGray:A1ADB5
darkBule:#77809E
skyblue:#C0D4D7
alink_blue:#7299fc
opactiy:0.5
---------------- */

/* ---- z-index ----
-2：kv_bg:after
-1：nav li a::before , kv_bg:before
 1：nav li a
 5:kv_bg:after
10: menu_bg
20：header
30：menu_bar
50：browseBg
51：.browse_head_close
---------------- */

/* common
---------------------------------------------------*/
html,body {
	height: 100%;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	/*background-color: #C0D4D7;*/
	background-image: linear-gradient(90deg, #b2cbec, #c0d4d7);
	color: #77809E;
	font-size: 16px;
	position: relative;
}
a {
	transition: 0.5s;
}
main {
	box-sizing: border-box;
}
section {
	padding-top: 80px;
}
.hide {
	display: none;
}
.hidden {
	visibility: hidden
}
.pc_only {	display: block;	}
.sp_only {	display: none;	}
.noHover{
	pointer-events: none;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	box-shadow: 0 0 3px  rgba(0, 0, 0, .1);
}
nav {
	background-color: #ffffff;
	display: flex;
	padding: 10px 20px;
	justify-content: space-between;
	align-items: center;
}
h1 .logo_img{
	max-width: 25px;
}
h1 a{
	display: block;
}
@media screen and (min-width:751px) { 
	h1 a:hover{
		opacity: 0.5;
	}
}
nav ul {
	display: flex;
	justify-content: flex-end;
	margin-left: 50px;
	font-size: 16px;
}
nav li + li {
	margin-left: 10px;
}
nav li a {
	color: #77809E;
	padding: 4px 8px;
	border-radius: 5px;
	position: relative;
  z-index: 1;
}
nav li .menu_ls::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #77809E;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
@media screen and (min-width:751px) { 
	nav li .menu_ls:hover {
		background-color: #77809E;
		color: #ffffff;
	}
	nav li .menu_ls:hover::before  {
		transform-origin: 0% 50%;
		transform: scaleX(1);
		border-radius: 5px;
	}
}
.formIco {
	position: relative;
}
.formIco:before{
  font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	position: absolute;
	top: 2px;
	left: 0;
	z-index: 10;
	font-size: 1.1rem;
	font-weight: 900;
	background-color: #77809E;
	color: #fff;
	padding: 4px 8px 3px;
	border-radius: 50%;
}
@media screen and (min-width:751px) { 
	.formIco:hover:before{
		content: "\f1d8";
		background-color: #A1ADB5;
	}
}

/* footer */
footer {
	background-color: #ffffff;
	font-size: 10px;
	color: #77809E;
	padding: 10px 20px;
	text-align: center;
}

/* title */
h2 {
	width: 100%;
	max-width: 200px;
	background-color: #ffffff;
	color: #77809E;
	font-size: 24px;
	font-weight: bold;
	padding: 6px 8px 4px;
	margin: auto;
	text-align: center;
	position: relative;
	border-radius: 10px;
	line-height: 1.5;
}
h2:before{
	content: "";
  display: inline-block;
  position: absolute;
  bottom: -19px; 
  right: 20px;
  border: 8px solid transparent;
  border-top: 18px solid #ffffff;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
	z-index: 2;
}
h2 span {
	position: relative;
	display: inline-block;
	padding-left: 20px;
}
h2 span:before {
	font-family: "Font Awesome 5 Free";
  content: "\23";
	position: absolute;
	left: 0;
	top: calc(50% + 2px);
	transform: translateY(-55%);
}

/* button */
.primaryBtn {
	background-color: #77809E;
	background-image: linear-gradient(90deg, #77809e, #556ba3);
	border: solid 3px #ffffff;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	max-width: 250px;
	margin: auto;
	display: block;
	position: relative;
	padding: 10px 16px;
	font-size: 18px;
	border-radius: 50px;
	box-shadow: 0 0 3px rgba(0,0,0,.2);
	letter-spacing: 1px;
}
.primaryBtn:before {
	content: '';
	background-image: url(../img/common/arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	height: 20px;
	width: 12px;
	top: 50%;
	right: 20px;
	position: absolute;
	transform: translateY(-50%);
}
.extLink {
	display: inline-block;
	padding-right: 24px;
	position: relative;
}
.extLink:before {
	font-family: "Font Awesome 5 Free";
  content: "\f35d";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	right: 0;
	font-size: 14px;
	transform: translateY(-55%);
}
@media screen and (min-width:751px) { 
	.primaryBtn:hover {
		background-image: linear-gradient(90deg, #ffffff);
		background-color: #ffffff;
		box-shadow: 0 0 0 rgba(0,0,0,0);
		color: #77809E;
		border: solid 3px #77809E;
	}
	.primaryBtn:hover::before {
		background-image: url(../img/common/arrow_hover.png);
	}
}

/* home
---------------------------------------------------*/

/* kv */
#kv {
	padding: 80px 0 60px;
	background-image: url(../img/home/comicBg.png);
	background-size: cover;
	background-position: center center;
	z-index: 1;
}
.kv_bg {
	position: relative;
}
.kv_bg:before {
	content: '';
	position: absolute;
	border: 2px solid #ffffff;
	height: calc(100% - 40px);
	width: 90%;
	max-width: 700px;
	left: 50%;
	top: 40px;
	transform: translateX(-50%);
	z-index: 2;
}
.kv_bg:after {
	content: 'Nil水槽';
	padding: 10px 40px;
	position: absolute;
	top: 45%;
	left: 0;
	z-index: 5;
	background-color: #ffffff;
	font-size: 4rem;
	font-family: MS PMincho,Yu Mincho;
}
.kv_img {
	z-index: 2;
	position: relative;
}
.kv_img_wrap {
	max-width: 1200px;
	width: 100%;
	margin: auto;
	position: relative;
}
.kv_img_wrap::before {
	content: '';
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}
.kv_img_wrap::after {
	position: absolute;
	content: '';
	background-image: url(../img/home/air.png);
	top: 10px;
  left:0;
  display: block;
  width: 100%;
  height: 1000px;
	background-size: contain;
  background-repeat: no-repeat;
	/* 動き */
	animation-name:yuragi;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@keyframes yuragi{
	0%{
	transform: translateY(0);
	}
	100%{
	transform: translateY(-50px);
	}
}
.kv_txt p {
 background-color: #77809E;
 display: inline-block;
 padding: 0 5px;
 margin-top: 5px;
}
.kv_txt_wrap {
	max-width: 700px;
	margin: 0 auto;
	padding: 14px 40px 60px;
	text-align: center;
	color: #ffffff;
}
.kv_ttl {
	font-size: 70px;
	font-family: MS PMincho,Yu Mincho;
}
.kv_memo {
	margin-top: 40px;
	color: #77809E;
	font-size: 12px;
}
.kv_memo_inner + .kv_memo_inner {
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
}
.kv_memo_inner:before {
	position: absolute;
	content: '/';
	top: -1px;
	left: -5px;
}
.kv_memo_inner:first-child::before {
	position: static;
	content: none;
}

/* intro */
.intro {
	background-color: #fff;
	text-align: center;
	letter-spacing: 0.5em;
	padding: 10px;
	line-height: 1;
	font-size: 1rem;
}
.intro p {
	padding-left: 0.5em;
}

/* news */
#news {
	margin: 0 20px;
	padding-bottom: 100px;
}
.news_bg {
	margin: 40px auto 0;
	max-width: 1000px;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	max-height: 160px;
	overflow-y: scroll;
	padding: 10px 20px;
	background-color: #f4f4f4;
	/*
	background: linear-gradient(45deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .1));
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba( 255, 255, 255, .1 );
	*/
}
.news_bg::-webkit-scrollbar {
	width: 15px;
	border: solid 2px #ffffff;
}
.news_bg::-webkit-scrollbar-track{
	background-color: #ffffff;
}
.news_bg::-webkit-scrollbar-thumb{
	background-color: #C0D4D7;
	border-radius: 10px;
	border: 2px solid #ffffff;
	border-left: 3px solid #ffffff;
}
.news_list_wrap a {
	color:#7299fc;
	text-decoration: underline;
}
@media screen and (min-width:751px) { 
	.news_list_wrap a:hover {
		text-decoration: none;
	}
}
.news_list {
	display: flex;
	padding: 8px 4px;
	align-items: start;
}
.news_list_ttl {
	width: 15%;
	font-size: 14px;
	padding-top: 2px;
	font-weight: bold;
	min-width: 110px;
}
.news_list_txt {
	margin-left: 20px;	
	width: 85%;
}

/* artwork */
#artwork {
	padding-top: 0;
}
.artwork_wrap {
	background-image: url(../img/home/bg.png);
	background-size: 100% auto;
	background-repeat:  repeat-y;
	background-position: center center;
}
.artwork_bg {
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	background: linear-gradient(45deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .1));
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba( 255, 255, 255, .1 );
	padding: 80px 20px;
}
.artwork_list_wrap {
	max-width: 1000px;
	margin: 40px auto;
	display: flex;
	justify-content: space-between;
}
.artwork_list a {
	display: block;
}
.artwork_list {
	width: 22%;
	border: 2px solid #fff;
	overflow: hidden;
	position: relative;
	transition: 0.2s;
}
.artwork_list:after{
	position: absolute;
	top: 50%;
	left: 50%;
	font-weight: bold;
	font-size: 3rem;
	transform: translate(-50%,-50%);
	color: #fff;
	text-shadow: 0px 0px 20px #0e1429;
	pointer-events: none;
}
.artwork_list_illust:after {
	content: 'illust';
}
.artwork_list_comic:after {
	content: 'comic';
}
.artwork_list_TRPG:after {
	content: 'TRPG';
}
.artwork_list_others:after {
	content: 'COMING SOON';
}
.artwork_img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
@media screen and (min-width:751px) { 
	.artwork_list:hover{
		transform: translateY(-3px);
		box-shadow: 0 1px 3px  rgba(0, 0, 0, .1);
	}
}
/* links */
#links {
	padding: 80px 0;
	max-width: 700px;
	margin: auto;
}
.links_wrap {
	background-color: rgba( 255, 255, 255, .7 );
	padding: 0 20px;
}
.links_ttl {
	border: 3px solid #C0D4D7;
}
.links_ttl:after{
  content: "";
	display: inline-block;
	position: absolute;
	bottom: -23px;
	right: 19px;
	border: 10px solid transparent;
	border-top: 18px solid #C0D4D7;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}
.links_list_wrap {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.links_list{
	margin-top: 20px;
}
.links_list_a {
	padding: 10px 20px;
	background-color: #ffffff;
	border: solid 2px #77809E;
	border-radius: 5px;
	display: block;
	width: 320px;
	position: relative;
	color: #77809E;
}
.links_list_a:before {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
  width: 40px;
  height: 20px;
  background-image: url(../img/common/arrow_hover.png);
  background-size: contain;
  vertical-align: middle;
	background-repeat: no-repeat;
}
.links_list_label {
	padding-left: 60px;
	font-size: 22px;
	position: relative;
}
.links_list_label:before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  vertical-align: middle;
	background-repeat: no-repeat;
}
.links_list_label-x:before {
  background-image: url(../img/common/icon1.png);
}
.links_list_label-pixiv:before {
  background-image: url(../img/common/icon2.png);
}
.links_list_label-niconico:before {
  background-image: url(../img/common/icon3.png);
}
.links_list_label-skima:before {
  background-image: url(../img/common/icon4.png);
}
@media screen and (min-width:751px) { 
	.links_list_a:hover {
		background-color: #77809E;
		background-image: linear-gradient(90deg, #77809e, #556ba3);
		border: solid 2px #ffffff;
		color: #ffffff;
	}
	.links_list_a:hover::before {
		background-image: url(../img/common/arrow.png);
	}
}

/* blog */
#blog {
	margin: 0 20px;
	padding-bottom: 90px;
}
.blog_bg {
	margin: 25px auto 0;
	max-width: 1000px;
	border: 2px solid #fff;
	padding: 40px 0;
	background-image: linear-gradient(90deg, #b2cbec, #c0d4d7);
	background-color: #C0D4D7;
	position: relative;
}
.blog_bg::before {
	position: absolute;
	content: '';
	background-image: url(../img/home/obj.png);
	background-size: contain;
	width: 150px;
	height: 150px;
	bottom: -50px;
	right: 0;
}
.blog_ttl {
	transform: translateY(-65px);
}
.blog_list_wrap {
	margin: 0 20px 60px;
	display: flex;
	justify-content: center;
}
.blog_list {
	width: 100%;
	max-width: 300px;
}
.blog_list a{
	display: block;
	border-radius: 0 0 10px 10px;
	color:#77809E;
}
.blog_list a:visited{
	color:#77809E;
}
@media screen and (min-width:751px) { 
	.blog_list a:hover{
		transform: translateY(-3px);
		box-shadow: 0 1px 3px  rgba(0, 0, 0, .1);
	}
}
.blog_list + .blog_list {
	margin-left: 40px;
}
.blog_list_pick {
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	line-height: 1;
}
.blog_list_pick span {
	display: inline-block;
	position: relative;
}
.blog_list_pick span::before,
.blog_list_pick span::after {
	position: absolute;
	content: '';
	width: 2px;
	height: 20px;
}
.blog_list_pick span::before {
	border-left: 2px solid #77809E;
	left: -1em;
	rotate: 135deg;
	bottom: -5px;
}
.blog_list_pick span::after {
	border-right: 2px solid #77809E;
	right: -0.8em;
	rotate: 45deg;
	bottom: -3px;
}
.blog_card {
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	padding: 10px 15px;
}
.blog_card_ttl {
	font-size: 18px;
	font-weight: bold;
}
.blog_card_tag {
	font-size: 14px;
	color: #A1ADB5;
}
.blog_card span {
	padding-left: 0.8em;
	position: relative;
	display: inline-block;
}
.blog_card span::before {
	position: absolute;
	content: '#';
	top: auto;
	left: 0;
}
.blog_card span + span {
	margin-left: 5px;
}
.blog_card_date {
	font-size: 12px;
	text-align: right;
}
.blog_btn_wrap {
	padding: 0 20px;
}

/* info
---------------------------------------------------*/

/* infoKv */
#infoKv {
	position: relative;
	text-align: right;
	max-width: 1000px;
	margin: auto;
}
.infoKv_ttl {
	margin: 100px 20% auto auto;
}
.infoKv_bg {
	position: absolute;
	top: -50px;
	left: -20px;
	font-size: 80px;
	letter-spacing: 0.25em;
	color: #ffffff;
	opacity: 0.3;
	text-align: left;
	line-height: 1.5;
	z-index: -1;
}
.infoKv_bg span {
	display: block;
}
.infoKv_ico {
	max-width: 300px;
	margin-left: 70%;
}

/* profile */
#profile {
	margin: 0 20px;
}
.profile_ttl {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 10px;
}
.profile_content + .profile_content {
	padding-top: 50px;
}
#who, #canDo, #toDo {
	max-width: 1000px;
	margin: auto;
}
.who_content {
	display: flex;
}
.who_intoro,
.who_icon {
	width: 50%;
}
.who_icon {
	text-align: center;
	padding-left: 50px;
}
.who_icon_img {
	background-color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	margin: auto;
	max-width: 200px;
	height: auto;
	padding: 5%;
	box-sizing: border-box;
}
.who_intoro_txt {
	padding: 10px 0;
}
.myName,
.canDo_intoro_ttl,
.toDo_list_ttl {
	font-weight: bold;
	font-size: 18px;
	padding-bottom: 10px;
}
.myName_label {
	background-color: #77809E;
	color: #ffffff;
	font-size: 10px;
	font-weight: normal;
	margin-left: 1rem;
	padding: 0 5px;
	display: inline-block;
	transform: translateY(-2px);
}
.canDo_intoro,
.toDo_intoro {
	padding-top: 10px;
}
.canDo_intoro{
	display: flex;
	column-gap: 40px;
}
.canDo_intoro_work,
.canDo_intoro_hobby {
	width: 50%;
}
.canDo_intoro_list_wrap {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 10px 15px;
}
.canDo_intoro_list_wrap li {
	list-style-type: disc;
	margin-left: 1.5em;
}
.toDo_list_wrap {
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
}
.toDo_list {
	width: 30%;
	text-align: center;
}
.toDo_list_icon {
	background-color: rgba( 255, 255, 255, .2);
	border: 1px solid #ffffff;
	border-radius: 50%;
	display: inline-block;
	margin: auto;
	max-width: 200px;
	height: auto;
	padding: 25px;
	box-sizing: border-box;
	overflow: hidden;
}
.toDo_list_ttl_no {
	display: inline-block;
	color: rgba( 255, 255, 255, 1);
	font-size: 2em;
	padding-right: 1rem;
}
.toDo_list_txt {
	text-align: left;
}

/* faq */
#faq {
	margin-top: 80px;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
	background: linear-gradient(45deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .1));
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba( 255, 255, 255, .1 );
	padding: 60px 20px;
	position: relative;
}
.faq_wrap::before{
	content: '';
	position: absolute;
	background-image: url(../img/info/bubble.png);
	top: -80px;
	right: 0;
	width: 100px;
	height: 100px;
	background-size: contain;
	background-repeat: no-repeat;
}
.faq_wrap::after{
	content: '';
	position: absolute;
	background-image: url(../img/info/bubble.png);
	bottom: -110px;
	left: 0;
	width: 100px;
	height: 100px;
	background-size: contain;
	background-repeat: no-repeat;
}
.faq_wrap {
	max-width: 1000px;
	margin: auto;
	position: relative;
}
.faq_ttl {
	font-size: 30px;
	margin-bottom: 10px;
}
.faq_list_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.faq_list {
	width: 50%;
	padding: 10px 10px 20px;
}
.faq_list dl {
	background-color: #ffffff;
	border-radius: 10px ;
}
.faq_list dt {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	padding: 12px 20px;
}
.faq_list dd {
	display: none;
	padding: 0 20px 20px;
}
.faq_list_question {
	padding-right: 1em;
}
.faq_list_note {
	font-size: 14px;
	color: #b2cbec;
	padding-top: 10px;
}
.faq_btnWrap {
	min-width: 20px;
}
.faq_btn {
	display: inline-block;
	transition: transform 0.3s;
	max-width: 20px;
	transform: translateY(-2px);
}
.faqOpen {
	transform: rotate(180deg);
}

/* contact */
#contact {
	padding-bottom: 90px;
	margin: auto 20px;
}
.contact_ttl {
	transform: translateY(20px);
}
.contact_content {
	max-width: 1000px;
	margin: auto;
	border: 2px solid #ffffff;
	padding: 60px 30px 30px;
	text-align: center;
}
.contact_btn_wrap {
	margin-top: 30px;
}


/* artwork
---------------------------------------------------*/
#ARTWORK main {
	overflow: hidden;
}
.aw_intoro {
	background-image: url(../img/artwork/water_loop.png);
	background-size: auto 130px;
	background-position: left 100%;
	min-height: 200px;
	padding-top: 100px;
	background-repeat: repeat-x;
}
.aw_wrap{
	margin: auto 20px;
	transform: translateY(-40px);
}
.aw_subTtl {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 10px;
}
#illust, #comic, #TRPG, #others {
	max-width: 1000px;
	margin: auto;
}
#illust {
	position: relative;
	padding-top: 60px;
}
#illust::before {
	content: '';
	position: absolute;
	background-image: url(../img/artwork/bubble01.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	height: 100px;
	width: 100px;
	bottom: -80px;
	right: -50px;
}
.illust_list_clip {
	cursor: pointer;
}
.illust_list_clip img {
	object-fit: cover;
	height: 100%;
  width: 100%;
	transition: all .3s ease;
}
@media screen and (min-width:751px) { 
	.illust_list_clip:hover img {
		transform: scale(1.1);
	}
}
.illust_list_clip {
	max-width: 200px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	clip-path: inset(0px 0px round 10px);
}
.illust_list_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 1%;
	justify-content: start;
}
.illust_list {
	width: 19%;
	text-align: center;
	position: relative;
}
.illust_tag_wrap {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	background: linear-gradient(rgba(0,0,0,0),rgba(85, 107, 163,1));
	width: 100%;
	border-radius: 0 0 10px 10px;
	color: #ffffff;
	font-size: 10px;
	display: flex;
	padding: 10px;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0 5px;
	overflow: hidden;
	max-height: 80px;
	pointer-events: none;
}
.illust_tag {
	display: inline-block;
	padding-left: 0.6em;
	position: relative;
}
.illust_tag::before {
	content: '#';
	position: absolute;
	left: 0;
}
.comic_list_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 2%;
	justify-content: space-between;
}
#comic {
	position: relative;
}
#comic::before {
	content: '';
	position: absolute;
	background-image: url(../img/artwork/bubble02.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	height: 100px;
	width: 100px;
	bottom: -60px;
	left: -60px;
}
.comic_list {
	width: 48%;
	cursor: pointer;
	position: relative;
	z-index: 1;
}
.comic_topic::after {
	content:'9/15より連載開始！';
	position: absolute;
	padding: 5px 10px;
	top: -5px;
	left: -10px;
	background-color: #d15c5c;
	color: #ffffff;
	z-index: 2;
	font-weight: bold;
	height: 20px;
	line-height: 1.5;
	font-size: 14px;
}
.comic_topic::before {
	content: '';
	position: absolute;
	top: 25px;
	left: -10px;
	border: none;
	border-bottom: solid 10px transparent;
	border-right: solid 10px rgb(149, 158, 155);
	z-index: 2;
}
.comic_list_ttl {
	background-color: #ffffff;
	color: #77809E;
	padding: 5px 10px;
	font-weight: bold;
	border-radius: 0 0 10px 10px;
}
.comic_list_clip {
	overflow: hidden;
	clip-path: inset(0px 0px round 10px 10px 0 0);
}
.comic_list_ttl_label {
	background-color: #77809E;
	color: #ffffff;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5;
	display: inline-block;
	padding: 0 5px;
	margin-left: 10px;
}
.comic_list_clip img {
	object-fit: cover;
	transition: all .3s ease;
}
@media screen and (min-width:751px) { 
	.comic_list:hover img {
		transform: scale(1.1);
	}
}
#TRPG {
	position: relative;
}
#TRPG::before {
	content: '';
	position: absolute;
	background-image: url(../img/artwork/bubble03.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	height: 100px;
	width: 100px;
	bottom: -60px;
	right: -60px;
}
.TRPG_box {
	background-color: #ffffff;
	padding: 0;
	margin-bottom: 20px;
	border-radius: 5px;
}
#TRPG .illust_list_clip img {
	object-position: top center;
}
.TRPG_box_ttl {
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	padding: 10px 20px;
	cursor: pointer;
	align-items: center;
}
.TRPG_box_toggle_wrap {
	max-width: 20px;
	max-height: 20px;
	transform: translateY(-5px);
}
.TRPG_box_list_wrap {
	padding: 0 20px 10px;
}
.TRPG_box_list {
	font-size: 14px;
	padding-left: 1.5em;
	position: relative;
}
.TRPG_box_list::before {
	font-family: "Font Awesome 5 Free";
	content: "\f6d1";
	position: absolute;
	font-weight: 900;
	left: 0;
}
.TRPG_box_btn_toggle {
	display: inline-block;
	transition: transform 0.3s;
}
.TRPG_btn_open {
	transform: translateY(5px) rotate(180deg);
}

/* 準備中 */
.others_soon{
	margin: 20px 10px 100px;
	text-align: center;
	border: 2px solid #ffffff;
	padding: 40px 20px;
}
.others_soon span{
	font-size: 20px;
	padding: 10px 20px;
	background-color: #77809E;
	color: #ffffff;
	display: inline-block;
}

/* モーダル
---------------------------------------------------*/
.browseBg {
	top: 0;
	left: 0;
	position: fixed;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(192, 212, 215, .5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	z-index: 50;
}
.browse_modal {
	position: fixed;
	content: '';
	width: calc(100% - 20px);
	height: calc(100vh - 20px);
	margin: 10px;
	z-index: 55;
}
/* log */
#modal_log {
	position: relative;
}
#modal_log .browse_body {
	height: 100%;
	clip-path: inset(0px 0px round 10px 10px 10px 10px);
}
#modal_log_listWrap li {
	max-width: 600px; 
	margin: auto;
	text-align: center;
	display:flex;
  flex-flow: column;
}
#modal_log_listWrap li p {
	background-color: #C0D4D7;
	margin-bottom: 10px;
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 12px;
	position: relative;
	display: inline-block;
	text-align: left;
}
#modal_log_listWrap li p:before {
	content: '';
	position: absolute;
	display: inline-block;
	bottom: -15px;
	left: 20px;
	border: 5px solid transparent;
	border-top: 10px solid #C0D4D7;
}
#modal_log_listWrap li + li {
	margin-top: 20px;
}
#modal_log .browse_head_close {
	right: 20px;
}

/* comic */
.browse_content {
	background-color: #f4f4f4;
	max-width: 1200px;
	height: calc(100vh - 20px);
	margin: auto;
	box-shadow: 0px 0px 10px #C0D4D7;
	border-radius: 10px;
}
@supports (height: 100svh) {
  .browse_content {
    height: calc(100svh - 20px);
  }
}
.browse_body {
	overflow-y: scroll;
	height: calc(100% - 150px);
	clip-path: inset(0px 0px round 0 0 10px 10px);
}
.browse_body::-webkit-scrollbar {
	width: 15px;
	border: solid 2px #77809E;
}
.browse_body::-webkit-scrollbar-track{
	background-color: #77809E;
}
.browse_body::-webkit-scrollbar-thumb{
	background-color: #ffffff;
	border-radius: 10px;
	border: 3px solid #77809E;
	border-left: 3px solid #77809E;
}
.browse_head_clip{
	height: 150px;
	width: 100%;
	overflow: hidden;
	clip-path: inset(0px 0px round 10px 10px 0 0);
	position: relative;
}
.browse_head_clip_img {
	object-fit: cover;
	height: 100%;
  width: 100%;
}
#modal_btbn .browse_head_clip_img {
	object-position: center 35%;
}
#modal_yrsr .browse_head_clip_img {
	object-position: center 70%;
}
#modal_ishk .browse_head_clip_img {
	object-position: center 30%;
}
.browse_head_close {
	position: absolute;
	top: 10px;
	right: 10px;
	max-width: 50px;
	cursor: pointer;
	z-index: 51;
}
@media screen and (min-width:751px) { 
	.browse_head_close:hover img{
		opacity: 0.8;
	}
}
.browse_caption {
	background-color: #ffffff;
	padding: 20px 20px 25px;
	min-height: 50px;
}
.browse_captionBox {
	max-width: 1000px;
	margin: 0 auto;
}
.browse_caption_ttl {
	font-size: 24px;
}
.browse_caption_ttl_label {
	font-weight: normal;
	font-size: 10px;
	margin-left: 1em;
	background-color: #C0D4D7;
	display: inline-block;
	padding: 0 10px;
	color: #ffffff;
	letter-spacing: 0.2em;
	transform: translateY(-3px);
}
.browse_caption_txt {
	margin-top: 10px;
}
.browse_caption_txt_note {
	padding-top: 5px;
	font-size: 12px;
	color: #C0D4D7;
}
.browse_caption_linkIco {
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}
.browse_caption_linkIco a{
	display: block;
	max-width: 30px;
}
@media screen and (min-width:751px) { 
	.browse_caption_linkIco a:hover{
		opacity: 0.5;
	}
}
.browse_box {
	padding: 20px 20px 30px;
}
.browse_box a {
	color: #7299fc;
	text-decoration: underline;
}
@media screen and (min-width:751px) { 
	.browse_box a:hover {
		text-decoration: none;
	}
}
.browse_box_log,
.browse_box_char {
	max-width: 1000px;
	margin: auto;
	padding-top: 10px;
}
.browse_box section + section {
	padding-top: 40px;
}
.browse_box_log_ttl,
.browse_box_char_ttl {
	font-size: 20px;
}
.browse_box_log_listWrap {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
}
.browse_box_log_list a{
	font-size: 14px;
	background-color: #b2cbec;
	color: #ffffff;
	padding: 2px 10px;
	border-radius: 5px;
	text-shadow: #77809E 0px 0px 3px;
	box-shadow: #77809E 0px 0px 1px;
	cursor: pointer;
	display: block;
	text-decoration: none;
}
@media screen and (min-width:751px) { 
	.browse_box_log_list a:hover{
		background-color: #556ba3;
	}
}
.browse_box_charBg {
	background-color: #ffffff;
	margin-top: 10px;
	padding: 20px;
}
.browse_box_charIco_listWrap {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.browse_box_charIco_list {
	background-color: #ffffff;
	border: #77809E 2px solid;
	border-radius: 100%;
	max-width: 80px;
	cursor: pointer;
	transition: all .2s ease;
	overflow: hidden;
}
@media screen and (min-width:751px) { 
	.browse_box_charIco_list:hover{
		background-color: #77809E;
	}
}
.browse_box_charStnd {
	display: flex;
}
.browse_box_charStnd_txt {
	padding-top: 40px;
	padding-left: 10px;
	margin: 0 auto;
	max-width: 500px;
	width: 70%;
}
.charCur {
	background-color: #C0D4D7;
}
#charStnd_img {
	width: 30%;
}
#charStnd_name {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}
#charStnd_name span {
	font-size: 10px;
	font-weight: normal;
	background-color: #77809E;
	color: #ffffff;
	display: inline-block;
	padding: 0 4px;
	margin-left: 1em;
	letter-spacing: 0.2em;
	line-height: 1.5;
}
#charStnd_plof {
	margin-top: 10px;
}
.browse_box_suknz {
	max-width: 800px;
	margin: 10px auto;
}