@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media only screen and (max-width: 768px) {
}

/***********************************************************************
select_tab
***********************************************************************/

.select_tab {
	display: flex;
}
.select_tab li {
	cursor: pointer;
	flex: 1;
	text-align: center;
	margin-left: 1%;
	padding: 5px 0px 5px 0px;
	transition: 0.5s;
    user-select: none;/*クリック時にテキストカーソルが出るのを防ぐ*/
}
.select_tab li:first-child {
	margin-left: 0%;
}
.select_tab li.active {
	color: #E6001E;
	background: linear-gradient(to bottom,  #ffe0e0 1%,#ffe0e0 49%,#ffd3d3 49%,#ffd3d3 50%,#ffd3d3 100%);
}
.topTab li,.bottomTab li {
	border: 1px solid #CCCCCC;
}
.topTab li {
	border-bottom: none;
    border-radius: 5px 5px 0px 0px;
}
.bottomTab {
	margin-bottom: 50px;
}
.bottomTab li {
	border-top: none;
    border-radius: 0px 0px 5px 5px;
}
.panel {
    border: 1px solid #CCCCCC;
	padding: 30px;
}

/***************************************************************************
topics
****************************************************************************/

.topics {
	margin-bottom: 30px; 
}
.topics li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 5px; 
}
.topics .icon {
	border-radius: 4px;
	background-color: #608303;
	color: #FFFFFF;
	padding: 4px 8px 5px 8px;
	text-align: center;
	line-height: 1;
	white-space: nowrap;
}
.topics .manga {
	background-color: #FF8400;
}
.topics .info {
	background-color: #E6001E;
}
.topics .date {
	padding: 0px 1em 0px 1em;
}
.topics .link_ttl {
	flex: 1;
}

@media only screen and (max-width: 768px) {
.topics li {
	flex-wrap: wrap;
}
.topics .link_ttl {
	width: 100%;
	flex: auto;
}
}

/***************************************************************************
rule
****************************************************************************/

.rule .check_rule {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}
.rule .check_rule .check_icon {
	width: 0.9em;
	height: 0.9em;
	margin-right: 0.3em;
	margin-top: 0.1em;
	background-image: url(../img/check_box_bg_check.svg);
	background-repeat: no-repeat;
    background-position: 0px 0px;
	background-size: cover;
}
.rule .check_rule .check_icon:before {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url(../img/check_box_bg.svg);
	background-repeat: no-repeat;
    background-position: 0px 0px;
	background-size: cover;
}
.rule .check_rule.check .check_icon:before {
	display: none;
}
.rule .next_page_btn {
	margin-top: 60px;
}

/***************************************************************************
next_page_btn
****************************************************************************/

.next_page_btn {
	max-width: 350px;
	margin: 0px auto 0px auto;
}
.next_page_btn a {
	display: block;
	padding: 0.4em 0px 0.4em 0px;
	background-color: #CCCCCC;
	color: #FFFFFF;
	border-radius: 10px;
	font-size: 29px;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	pointer-events: none;
}
.next_page_btn.check a {
	background-color: #01439A;
	color: #FFF301;
	pointer-events: auto;
}
.next_page_btn.check a:hover {
	opacity: 1 !important;
}
.next_page_btn a span {
	display: block;
	font-size: 15px;
}


/***************************************************************************
inline_flame
****************************************************************************/

#inline_flame {
    height: 500px;
    overflow-y: auto;
    padding: 10px 0px 10px 20px;
    border: 1px solid #E5E6E8;
    background-color: #FFFFFF;
    color: #310C0C;
    text-align: left;
    font-size: 15px;
    width: 90%;
    margin: 0px auto 5rem auto;
}
#inline_flame .ttl {
    margin-bottom: 8px;
}
#inline_flame ul,
#inline_flame p {
    margin-bottom: 15px;
    line-height: 1.3;
}
#inline_flame li {
    padding-left: 1em !important;        /* ブロック全体を 1em 右に */
    text-indent: -1em !important;        /* 先頭の1文字のみ 1em 左に */
    padding-bottom: 8px;
}
#inline_flame li ul {
    padding-top: 8px;
    margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
#inline_flame {
    height: 80vw;
    padding: 8vw 0px 3vw 5vw;
    font-size: 3.68vw;
    margin-bottom: 10vw;
}
#inline_flame ul,
#inline_flame p {
    margin-bottom: 2.5vw;
}
}

/***************************************************************************
popup
****************************************************************************/

ul.pop_up {
	display: flex;
    flex-wrap: wrap;
}
ul.pop_up li {
    margin-right: 10px;
    margin-bottom: 15px;
}
ul.pop_up li span {
	width: 50px;
    height: 50px;
    background-color: #EB788E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
}
