
@charset "UTF-8";

:root {
	--bg-color: #000;
	--text-color: #fff;
	--accent-color:#C84706;
	--sub-accent-color:#AEA04F;
	--point-color:#EAD978;
	--button-bg-color:#fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,form,input,button,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

/***************************************
ベース
***************************************/
body {
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	color: var(--text-color);
	background: url(../img/kachicomi/back_body.webp) repeat-y left top/100%;
}
@media screen and (max-width:767px) {
	body {
		font-size: 14px;
	}
}

h1, h2, h3, h4, h5, h6 {
}
a {
	color: var(--accent-color);
	word-break: break-all;
	text-decoration: none;
}

a:hover {
	color: var(--accent-color);
	text-decoration:underline;
}
strong{
	font-weight: 700;
}

img {
	width: 100%;
	vertical-align: middle;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
small{
	font-size: 0.9rem;
}
p small{
	line-height: 1.4em;
    display: inline-block;
	font-weight: normal;
}
.t_a_c {
	text-align: center;
}
.f_w_b {
	font-weight: bold;
}
.sp_only {
	display: none;
}
.pc_only {
	display: block;
}
.sp_tb_only {
	display: none;
}

a[href^="tel:"]{
	color: var(--text-color);
}
@media screen and (max-width:767px) {
	.sp_only {
		display: inline-block;
	}
	br.sp_only {
		display: inline;
	}
	.pc_only {
		display: none!important;
	}
}


/*------------ヘッダー-（ナビゲーション・ロゴ）----------------*/

header {
	position: fixed;
	width: 100%;
	top: 0;
  	left: 0;
	background: transparent;
	transition: 0.5s;
	z-index: 100;
	height: 80px;
	display: flex;
	align-items: center;
}
header.scroll-nav {
	background:rgba(0 0 0/0.7);
	background-image: url(../img/kachicomi/logo_back.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 20%;
	/*background: url(../img/kachicomi/nav-back.webp) no-repeat left top/100%;*/
	/*background: rgb(255,255,255,0.7);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 40%);*/
}

.header-inner{
	display: flex;
	justify-content:space-between;
	width: 92%;
	/*max-width: 1160px;*/
	margin: auto;
}
header .logo{
	width: 35%;
	display: flex;
	align-items: center;
}
header a.head-logo{
	display: flex;
	align-items: center;
}
header a.head-logo:hover{
	text-decoration: none;
}
header a.head-logo h1{
	width: 113px;
	height: 40px;
	background: url(../img/kachicomi/logo_c.svg) no-repeat center center/100%;
	text-indent: -9999px;
}
header a.head-logo span{
	font-size: 14px;
	color: var(--text-color);
	display: inline-block;
	margin-left: 5em;
}

header nav {
	display: flex;
	justify-content: space-between;
	width: 54%;
	align-items: center;
	z-index: 10;
	background: var(--gr-color);
	position: relative;
	height: 60px;
}
header nav ul{
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
header nav ul.header-nav-list{
	width: 85%;
	padding-right: 20px;
}
header nav ul.sns{
	/*width: 10%;*/
	max-width: 90px;
	justify-content:flex-end;
	margin-right: 20px;
}
header nav ul.sns li{
	padding: 0 12px;
}
header nav div.search{
	width: 55%;
	position: relative;
}
header nav div.search input[type="text"]{
	background: white;
	padding: 3px 10px;
	border-radius: 40px;
	width: 100%;
	box-sizing: border-box;
}
header nav div.search input[type="submit"]{
	background: url(../img/kachicomi/search.svg) no-repeat center center/100%;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	text-indent: -9999px;
}
header nav ul a {
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	color: var(--text-color);
	border-bottom: 2px solid rgba(255 255 255/0);
	padding-bottom: 3px;
}
header nav ul li.toggle{
	position: relative;
}
header nav ul li.toggle a{
	position: relative;
	padding-right: 20px;
}

header nav ul li.toggle > a::after{
	content: "";
	width: 10px;
	height: 10px;
	border-top: solid 1px var(--text-color);
	border-right: solid 1px var(--text-color);
	position: absolute;
	right: 0px;
	top: 2px;
	transform: rotate(135deg);
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
}
header nav ul li > ul.sub{
	position: absolute;
	left: 0;
	top: 2em;
	display: none;
	width: 12em;
	z-index: 3;
	background: white;
	padding: 10px 20px;
	border-radius: 10px;
}
header nav ul li > ul.sub li{
	padding: 10px 0;
}
header nav ul li > ul.sub li a{
	color: var(--accent-color);
}
.header-nav > ul > li a.active,
.header-nav > ul > li a:hover{
	/*color: var(--text-color);*/
	border-bottom: 2px solid var(--sub-accent-color);
}
header nav ul li.toggle a:hover{
	border-bottom: 2px solid rgba(255 255 255/0);
}
/*header nav ul li > ul.sub li a:hover{
	opacity: 0.7;
}*/
header nav ul a:hover {
	text-decoration: none;
	color: var(--sub-accent-color);
}
header nav ul li.toggle a:hover::after,
header nav ul li.toggle.active a::after{
	transform: rotate(-45deg);
	top: 10px;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
}
#nav_toggle{
	display: none;
}

/*ナビゲーション*/
@media screen and (min-width:1500px) {
	header#top-head.scroll-nav {
		background-image: url(../img/kachicomi/logo_back.png);
		background-repeat: no-repeat;
		background-position:left top;
		background-size: 300px;
	}
}
@media screen and (max-width:1280px) {
	.header-inner{
		width: 96%;
	}
}
@media screen and (max-width:1024px) {
	header{
		display: block!important;
		height: 70px;
	}
	#top-head {
		position: fixed;
		display: block!important;
		z-index: 100;
		height: 70px;
	}

	header#top-head.scroll-nav {
		background-image: url(../img/kachicomi/logo_back_sp.png);
		background-repeat: no-repeat;
		background-position: -20px top;
		background-size: 28%;
		height: 70px;
	}
	.header-info, .header-nav-list a span {
		display: none;
	}
	.header-inner {
		width: 100%;
		padding: 15px;
		z-index: 100;
		position: absolute;
		right: 0;
		justify-content: space-between;
	}
	header .logo {
		width: 80%;
		z-index: 500;
		padding-left: 10px;
	}
	header .logo a:hover{
		text-decoration: none;
	}
	header a.head-logo span{
		margin-left: 5em;
	}
	.header-nav {
		width: 100%;
		margin: 0 auto;
		padding-top: 50px;
		background: url(../img/kachicomi/back.jpg) no-repeat left top/cover;
	}
	.header-nav-list {
		display: block;
	}
	header nav ul.header-nav-list {
		width: 65%;
		padding: 0;
	}

	header nav{
		display: none;
		position: fixed;
		top:0px;
		width: 100%;
		left: 0;
		height: 100%;
	}

	.header-nav {
		background: url(../img/kachicomi/logo_back_sp.png) no-repeat -20px top / 28%, 
		url(../img/kachicomi/back_sp.webp) no-repeat left top/100%;
	}
	header nav ul {
		padding: 0;
		display: block;
		margin: 0 auto;
		width: 100%;
	}
	.header-nav > ul > li{
		border-bottom: 1px solid var(--sub-accent-color);
	}
	.header-nav > ul > li a.active,
	.header-nav > ul > li a:hover{
		border-bottom:none;
	}
	header nav ul li.toggle a:hover{
		border-bottom: none;
	}
	.header-nav > ul > li a {
		display: block;
		text-align: left;
		padding: 25px 10px 15px;
		font-size: 18px;
		font-weight: 500;
	}

	header nav ul li.toggle a:hover::after,
	header nav ul li.toggle > a::after{
		right: 0px;
		top:auto;
		bottom: 20px;
		transform: rotate(135deg);
	}
	header nav ul li.toggle.active a::after{
		top: auto;
		bottom: 20px;
		transform: rotate(-45deg);
	}
	.header-nav > ul > li.toggle.active a{
		border-bottom: none;
	}
	.header-nav > ul > li a:hover{
		/*color: var(--text-color);*/
	}
	header nav ul li > ul.sub{
		position: relative;
		left: auto;
		top: auto;
		width: 100%;
		background: transparent;
		padding: 0px 5px 10px 5px;
		border-radius: 0px;
	}
	header nav ul li > ul.sub li a{
		border: none;
		color: var(--text-color);
		font-size: 16px;
		padding: 0px 0;
	}
	header nav ul.sns{
		width: 100%;
		display: flex;
		justify-content: center;
		padding-top: 30px;
		margin: auto;
	}
	header nav ul.sns li{
		padding: 0 20px;
		border: none;
	}
	header nav ul.sns li a{
		display: block;
		padding: 0;
		width: 30px;
		height: 30px;
	}
	header nav div.search {
		width: 65%;
		position: relative;
		margin: 40px auto 0 auto;
	}
	header nav div.search input[type="text"]{
		padding: 5px 10px;
	}
	header nav div.search input[type="submit"]{
		width: 18px;
		height: 18px;
	}

    /*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 32px;
		height: 24px;
		position: relative;
		z-index: 100;
		top: 5px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: var(--point-color);
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}
@media screen and (max-width:900px) {
	.header-nav {
		background: url(../img/kachicomi/logo_back_sp.png) no-repeat -10px top / 30%, 
		url(../img/kachicomi/back_sp.webp) no-repeat left top/100%;
	}
	header#top-head.scroll-nav {
		background-image: url(../img/kachicomi/logo_back_sp.png);
		background-repeat: no-repeat;
		background-position: -10px top;
		background-size: 33%;
	}
}
@media screen and (max-width:767px) {
	#top-head{
		height: 50px;
	}
	.header-inner {
		padding: 6px 8px;
	}
	header .logo {
		padding-left: 0;
	}
	header a.head-logo h1 {
		width: 98px;
        height: 36px;
		margin-left: 5px;
	}
	header a.head-logo span{
		margin-left: 3.5em;
		font-size: 12px;
	}
	header nav {
		display: none;
		position: fixed;
		top: 0px;
		width: 100%;
		height: 100%;
		left: 0;
	}
	.header-nav {
		background: url(../img/kachicomi/logo_back_sp.png) no-repeat left top/36%,
		url(../img/kachicomi/back_sp.webp) no-repeat left top/100%;
	}

	header#top-head.scroll-nav {
		background:rgba(0 0 0/0.7);
		background-image: url(../img/kachicomi/logo_back_sp.png);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: 46%;
		height: 50px;
	}
	#nav_toggle{
		display: block;
		width: 24px;
		height: 16px;
		position: relative;
		z-index: 100;
		top: 5px;
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:8px;
	}
	#nav_toggle span:nth-child(3){
		top:16px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}
@media screen and (max-width:480px) {
	header#top-head.scroll-nav {
		background:rgba(0 0 0/0.7);
		background-image: url(../img/kachicomi/logo_back_sp.png);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: 44%;
		height: 50px;
	}
}
@media screen and (max-width:429px) {
	header a.head-logo h1 {
		width: 96px;
	}
}
@media screen and (max-width:390px) {
	header a.head-logo h1 {
		width: 90px;
		margin-left: 0;
	}
}

/*------------フッター-----------------*/
#foot-banner{
	background:url(../img/kachicomi/footlink-back.jpg) no-repeat center center/cover;
	padding: 40px 0;
}
#foot-banner .flex{
	display: flex;
	justify-content: space-between;
	max-width: 782px;
	margin: auto;
	flex-wrap: wrap;
}
#foot-banner .flex a{
	display: block;
	width: 48%;
}

@media screen and (max-width:767px) {
	#foot-banner{
		padding: 20px 0 10px 0;
	}
	#foot-banner .flex a{
		width: 90%;
		margin: auto;
		margin-bottom: 10px;
	}
}
footer {
	/*background: rgb(155,185,255);
	background: linear-gradient(132deg, rgba(155,185,255,1) 0%, rgba(151,175,251,1) 35%, rgba(137,137,238,1) 100%);*/
	background: var(--bg-color);
	padding: 40px 0 40px 0;
	position: relative;
	z-index: 10;
	color: white;
}
footer .inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
footer .inner a{
	color: white;
}
footer .inner .foot-logo{
	/*width: 15%;*/
	width: 160px;
	font-size: 12px;
}
footer .inner .foot-logo img{
	max-width: 124px;
}
footer .inner .foot-logo a.logo p{
	padding-top: 10px;
}
footer .inner .foot-logo ul.sns{
	display: flex;
	justify-content: flex-start;
	margin-top: 30px;
}
footer .inner .foot-logo ul.sns li{
	width: 30px;
	margin-right: 10%;
}
footer .inner .foot-link{
	width: calc(100% - 220px);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	font-size: 14px;
}
footer .inner .foot-link div.link-wrap{
	width: 40%;
	display: flex;
	justify-content: space-between;
}
footer .inner .foot-link .otherlink{
	width: 20%;
}
footer .inner .foot-link div.link-wrap ul{
	width: 48%;
}
footer .inner .foot-link ul li{
	padding-bottom: 20px;
}
footer .inner .foot-link ul li a[target="_blank"]::after{
	content: "";
	width: 12px;
	height: 12px;
	background: url(../img/kachicomi/ic_link.svg) no-repeat center center/100%;
	display: inline-block;
	margin-left: 0.5em;
	margin-top: 0.3em;
}
footer .inner .foot-link .abj{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 11px;
	padding-top: 30px;
}
footer .inner .foot-link .abj img{
	width: 8%;
	margin-right: 2%;
}
footer .inner .foot-link .abj p{
	line-height: 1.8em;
	padding-left: 10px;
}
div.copyright{
	width: 100%;
	text-align: center;
	font-size: 12px;
	padding-top: 40px;
}
@media screen and (max-width:1116px) {
	footer .inner .foot-link div.link-wrap{
		width: 30%;
		flex-wrap: wrap;
	}
	footer .inner .foot-link div.other-link{
		width: 50%;
	}
	footer .inner .foot-link div.link-wrap ul{
		width: 100%;
	}
	footer .inner .foot-link .otherlink{
		width: 30%;
	}
	footer .inner .foot-logo ul.sns.pc_only{
		display: none;
	}
}

@media screen and (max-width:851px) {
	footer{
		padding-top: 30px;
	}
	footer .inner a{
		display: flex;
	}
	footer .inner .foot-logo a.logo{
		padding-bottom: 20px;
	}
	footer .inner .foot-logo a.logo p{
		padding-left: 1em;
	}
	footer .inner .foot-logo{
		width: 100%;
	}
	footer .inner .foot-link{
		width: 100%;
	}
	footer .inner .foot-link div.link-wrap{
		width: 48%;
		flex-wrap: wrap;
	}
	footer .inner .foot-link div.other-link{
		width: 100%;
	}
	footer .inner .foot-link div.link-wrap ul{
		width: 100%;
	}
	footer .inner .foot-link .otherlink{
		width: 100%;
		display: flex;
		justify-content: flex-start;
	}
	footer .inner .foot-link .otherlink li{
		margin-right: 30px;
	}
	footer .inner ul.sns.sp_only{
		display: flex;
		justify-content: center;
		margin-top: 10px;
		width: 100%;
	}
	footer .inner ul.sns li{
		width: 30px;
		margin: 0 2%;
	}
	footer .inner ul.sns li a[target="_blank"]::after{
		display: none;
	}
	footer .inner .foot-link .abj{
		padding-top: 20px;
		margin-top: 10px;
		border-top: 1px solid white;
	}
	footer .inner .foot-link .abj img{
		width: 20%;
	}
	footer .inner .foot-link .abj p{
		line-height: 1.2em;
	}
	footer .inner .foot-link .abj p br{
		display: none;
	}
	footer .inner .foot-link .abj p a{
		display: inline;
	}
}
@media screen and (max-width:480px) {
	footer .inner .foot-link .otherlink{
		justify-content: space-between;
		font-size: 12px;
	}
	footer .inner .foot-link .otherlink li{
		margin-right: 0px;
	}
	footer .inner ul.sns li{
		margin: 0 5%;
	}
}

/*------------共通-----------------*/
.contents {
	position: relative;
	background: 
	url(../img/kachicomi/logo_back.png) no-repeat left top/20%,
	url(../img/kachicomi/back.webp) no-repeat left top/100%;
	padding-top: 100px;
}

@media screen and (min-width:1500px) {
	.contents{
		background: 
		url(../img/kachicomi/logo_back.png) no-repeat left top/300px,
		url(../img/kachicomi/back.webp) no-repeat left top/100%;
		background-color: #19191b;
	}
}
@media screen and (max-width:1024px) {
	.contents{
		padding-top: 80px;
		background: 
		url(../img/kachicomi/logo_back_sp.png) no-repeat -20px top/28%,
		url(../img/kachicomi/back.webp) no-repeat left top/100%;
	}
}
@media screen and (max-width:900px) {
	.contents {
		background: url(../img/kachicomi/logo_back_sp.png) no-repeat -10px top / 33%, 
		url(../img/kachicomi/back.webp) no-repeat left top/100%;
	}
}
@media screen and (max-width:767px) {
	.contents{
		background: 
		url(../img/kachicomi/logo_back_sp.png) no-repeat left top/30%,
		url(../img/kachicomi/back_sp.webp) no-repeat left top/100%;
		background-color: #1c1c1f;
		padding-top: 50px;
	}
	#about .contents::before{
		width: 60%;
		height: 30%;
	}
	#about .contents::after{
		width: 30%;
		height: 40%;
	}
}
@media screen and (max-width:480px) {
	.contents{
		background: 
		url(../img/kachicomi/logo_back_sp.png) no-repeat left top/44%,
		url(../img/kachicomi/back_sp.webp) no-repeat left top/100%;
		background-color: #1c1c1f;
		padding-top: 50px;
	}
}
@media screen and (max-width:420px) {
	.contents{
		background: 
		url(../img/kachicomi/logo_back_sp.png) no-repeat left top/46%,
		url(../img/kachicomi/back_sp.webp) no-repeat left top/100%;
		background-color: #1c1c1f;
		padding-top: 50px;
	}
}

/*セクション*/
section {
	padding: 0 0 60px 0;
	position: relative;
	overflow-y:visible;
}
.inner{
	width: 100%;
	margin: 0 auto;
	max-width: 1160px;
	padding: 0 50px;
}
.inner.white-back{
	/*background: rgba(255 255 255/0.8);
	background: #FEFBFB;*/
	background: url(../img/kachicomi/wrap-back.jpg) repeat center center/100% auto;
	padding: 50px;
	position: relative;
	z-index: 1;
	color: var(--bg-color);
}
#top .inner.white-back{
	filter: drop-shadow(15px 15px 0px rgba(0,0,0,1));
}
#author .inner.white-back{
	padding: 50px 50px 20px 50px;
}

.second .inner.white-back{
	margin-top: 40px;
}
@media screen and (max-width:1059px) {
	section{
		padding-bottom: 30px;
	}
	.inner.white-back{
		padding: 30px;
		filter: none;
	}
	.second .inner.white-back{
		margin-top: 10px;
		border-radius: 0;
	}
}
@media screen and (max-width:820px) {
	.inner.white-back{
		padding: 20px;
		border-radius: 0;
	}
	#author .inner.white-back{
		padding-top: 40px;
	}
}

@media screen and (max-width:767px) {
	section{
		padding: 0 0 30px 0;
	}
	.inner.white-back{
		padding: 30px 20px 20px 20px;
		border-radius: 0;
	}
	.second .inner.white-back {
		margin-top: 20px;
	}
	.inner{
		padding: 0 20px;
	}
	#author .inner.white-back{
		padding-top: 20px;
	}
}


/*セクション-中身*/
section p{
	line-height: 1.7em;
}
section h2 {
	font-size: 32px;
	color: var(--text-color);
	font-weight: 500;
	text-align: center;
	position: relative;
	margin: 20px auto 20px auto;
	letter-spacing: 0.1rem;
}
section h2 small{
	font-size: 24px;
	letter-spacing: 0;
}
section h2.top-news{
	/*background: url(../img/kachicomi/top_news_title.png) no-repeat center center/100%;
	width: 140px;
	height: 42px;
	text-indent: -9999px;*/
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.03em;
}
section h2.top-comics{
	/*background: url(../img/kachicomi/top_comics_title.png) no-repeat center center/100%;
	width: 217px;
	height: 42px;
	text-indent: -9999px;*/
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.03em;
	padding-bottom: 20px;
}
section h2.top-magazine{
	/*background: url(../img/kachicomi/top_magazine_title.png) no-repeat center center/100%;
	width: 216px;
	height: 42px;
	text-indent: -9999px;*/
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--point-color);
}
.modal h3,
section h3{
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 10px;
	color: var(--bg-color);
}
.modal h3::before,
section h3::before{
	content: "";
	display: block;
	width: 220px;
	height: 102px;
	background: url(../img/kachicomi/h3_back.png) no-repeat center center/100%;
	position: absolute;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
	z-index: -1;
}
#top .series h3::before{
	display: none;
}
@media screen and (max-width:767px) {
	section h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	section h2 small{
		font-size: 14px;
	}
	.modal h3,
	section h3{
		margin-bottom: 20px;
		font-size: 20px;
	}
}

/*もっと見る*/
div.more-button,
div.more-news{
	padding: 30px 0 0 0;
	/*margin-top: -40px;*/
	text-align: center;
	position: relative;
	z-index: 10;
}
div.more-button.nogr::before{
	display: none;
}
p.more{
	display: inline-block;
	position: relative;
	text-align: center;
	color: var(--accent-color);
	z-index: 20;
}
p.more:after{
	content: "";
	display: inline-block;
	margin-left: 0.6em;
	width: 10px;
	height: 10px;
	border-top: solid 2px var(--accent-color);
	border-right: solid 2px var(--accent-color);
	position: absolute;
	right: -20px;
	top: 2px;
	transform: rotate(135deg);
}
.hidden{
	display: none;
}
p.more.close{
	display: none;
}


/*汎用ボタン*/
div.button{
	padding: 30px 0;
	text-align: center;
}
a.button{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px 10px 30px;
	border-radius: 50px;
	border: 1px solid var(--bg-color);
	background: var(--button-bg-color);
	color: var(--bg-color);
	position: relative;
	width: 300px;
	font-weight: 700;
	text-align: center;
	margin: auto;
	z-index: 10;
}
a.button:after{
	content: "";
	background: url(../img/kachicomi/bt-arrow.svg) no-repeat left center/22px;
	width: 30px;
	height: 12px;
	display: inline-block;
	margin-left: 0.5em;
	margin-top: 4px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a.button:hover{
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-decoration: none;
	opacity: 0.8;
}

a.button:hover::after{
	/*background: var(--button-bg-color);
	color: var(--accent-color);*/
	background-position: right center;
}
a.button.profile{
	display: inline-block;
	margin: 0 0 0 1em;
	width: auto;
	padding: 2px 20px 2px 30px;
	font-size: 14px;
}
a.button.profile:after{
	background-size: 16px;
	width: 20px;
	height: 10px;
}

@media screen and (max-width:767px) {
	div.button{
		padding:20px 0;
	}
	a.button{
		width: 230px;
	}
	a.button.profile{
		display: block;
		max-width: 150px;
		margin: 5px auto;
		padding: 4px 10px 2px 20px;
	}
	a.button.profile:after{
		background-size: 16px;
		width: 20px;
		height: 10px;
	}
}

/*汎用一覧1-4並び*/
ul.flex-list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 3%;
}
ul.flex-list.column4{
	justify-content: flex-start;
}
ul.flex-list li{
	width: 22.7%;
	margin-bottom: 20px;
}
ul.flex-list.column.onedata li{
	width: 33%;
}
ul.flex-list li a{
	color: var(--bg-color);
}

ul.flex-list li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
ul.flex-list li .img{
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
ul.flex-list li .img span.no{
	display: none;
}
ul.flex-list li .img img{
	display: block;
	position: relative;
	z-index: 1;
}
ul.flex-list li .title{
	font-weight: 700;
	padding-bottom: 10px;
}
ul.flex-list li span.new{
	display: inline-block;
	background: var(--accent-color);
	color: white;
	font-weight: 500;
	font-size: 12px;
	padding: 1px 15px;
	border-radius: 5px;
	margin-left: 0.8em;
}
ul.flex-list li span.new.release{
	display: block;
	border-radius: 0;
	margin-left: 0;
	z-index: 0;
	padding-bottom: 10px;
	margin-bottom: -8px;
	text-align: center;
	font-size: 16px;
}
ul.flex-list li span.new.sp_only{
	display: none;
}
ul.flex-list li .name{
	font-size: 14px;
	padding-bottom: 15px;
}
ul.flex-list li .copy{
	font-weight: 700;
	font-size: 14px;
}
@media screen and (max-width:937px) {
	ul.flex-list li{
		font-size: 14px;
	}
}
@media screen and (max-width:768px) {
	ul.flex-list{
		gap: 10px 2%;
	}
	ul.flex-list li {
		width: 23.5%;
	}
}

@media screen and (max-width:767px) {
	/*ul.flex-list{
		margin-bottom: 0;
	}*/	
	ul.flex-list.one-block{
		justify-content: space-between;
	}
	ul.flex-list.column.onedata li,
	ul.flex-list.column li,
	ul.flex-list.column4 li{
		width: 48.5%;
	}
	ul.flex-list.one-block li{
		width: 100%;
		margin-bottom: 20px;
	}
	ul.flex-list.one-block li:last-child{
		margin-bottom: 0;
	}
	ul.flex-list.one-block li a{
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	ul.flex-list.column li a{
		display: block;
	}
	ul.flex-list.one-block li .img{
		display: block;
		width: 30%;
		margin-bottom: 0;
	}
	ul.flex-list.one-block li .img img{
		border-radius: 2px 2px 0 0;
	}
	ul.flex-list.column li a img{
	}
	ul.flex-list.one-block li .title{
		padding-bottom: 5px;
		color: var(--accent-color);
		font-size: 18px;
	}
	ul.flex-list li .title{
		padding-bottom: 5px;
	}
	ul.flex-list.one-block li .title span.no{
		display: none;
	}
	ul.flex-list.one-block li span.new.pc_only{
		display: none;
	}
	ul.flex-list.one-block li .img span.new.sp_only{
		display: block;
		border-radius: 0 0 2px 2px;
		margin: 0;
		text-align: center;
	}
	ul.flex-list.one-block li div.exp{
		width: 67%;
	}
	ul.flex-list.one-block li .name{
		padding-bottom: 5px;
	}
	ul.flex-list.one-block li div.exp p{
		line-height: 1.4em;
	}
	ul.flex-list li .img span.no{
		display: block;
		text-align: center;
		font-weight: 700;
	}
	ul.flex-list.one-block li .copy{
		padding-bottom: 5px;
	}
}
/*エピソード一覧*/
ul.episode-list{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
ul.episode-list li{
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid var(--sub-accent-color);
	padding: 20px 0;
}
ul.episode-list li div.img{
	width: 20%;
}
ul.episode-list li div.img img{
	border-radius: 2px;
}
ul.episode-list li div.exp{
	width: 76%;
}
ul.episode-list li div.exp .title{
	font-weight: 700;
	padding-bottom: 10px;
}
ul.episode-list li .button-area{
	display: block;
	padding-top: 20px;
}
ul.episode-list li .button-area a{
	margin: 0;
	width: 208px;
}

@media screen and (max-width:767px) {
	ul.episode-list li{
		width: 100%;
	}
	ul.episode-list li:first-child{
		padding-top: 0;
	}
	ul.episode-list li div.img{
		width: 24%;
	}
	ul.episode-list li div.exp{
		width: 70%;
	}
}

/*汎用メイン紹介*/
.latest{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 60px;
	flex-wrap: wrap;
	color: var(--bg-color);
}
.latest .cover{
	width: 34%;
	position: relative;
}
.latest .cover::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background:var(--bg-color);
	opacity: 0.4;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: -1;
}
.latest .cover img{
	display: block;
	z-index: 1;
}
.latest .info{
	width: 60%;
}
.latest .info .title{
	font-size: 32px;
	font-weight: 700;
	padding-bottom: 10px;
	letter-spacing: 0.1em;
}
.latest .info .title small{
	font-size:24px;
}
.latest .info .date{
	font-weight: 700;
	padding-bottom: 20px;
}

.latest .info .author{
	font-weight: 700;
	padding-bottom: 20px;
}


.latest .info p{
	margin-bottom: 1em;
}

.latest .button-area{
	display: flex;
	justify-content: flex-start;
	padding-top: 20px;
	flex-wrap: wrap;
	gap: 0 12px;
}
.latest .button-area a{
	width: 32%;
	margin: 0;
}
a.sample{
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
	color: white;
	padding: 10px 20px;
}
a.sample::after{
	display: none;
}
a.sample:before{
	content: "";
	width: 22px;
	height: 14px;
	display: inline-block;
	margin-right: 0.5em;
	background:url(../img/kachicomi/book_ic.svg) no-repeat center center/100%;
	vertical-align: middle;
	margin-top: 3px;
}
a.sample:hover{
	background-color: var(--point-color);
	border-color: var(--point-color);
}

a.streaming{
	color: var(--point-color);
	border: 1px solid var(--bg-color);
	background: var(--bg-color);
}
a.streaming::after{
	background-image: url(../img/kachicomi/bt-arrow_w.svg);
	background-position: left center;
	background-size: 22px;
	width: 28px;
}
a.streaming:hover::after{
	/*background: var(--button-bg-color);
	color: var(--accent-color);*/
	background-position: right center;
}
a.streaming:hover::after{
	
}
@media screen and (max-width:1018px) {
	.latest .cover{
		width: 28%;
	}
	.latest .cover::before{
		top: 10px;
		left: 10px;
	}
	.latest .info{
		width: 67%;
	}
}
@media screen and (max-width:937px) {
	/*.latest .button-area{
		padding-top: 0;
		padding-bottom: 10px;
	}
	.latest .button-area a{
		width: 100%;
		margin: 0 0 10px 0;
	}*/
	.latest .button-area{
		padding-top: 10px;
	}
	.latest .button-area a {
		width: 49%;
		margin: 0 0 10px 0;
	}
}
@media screen and (max-width:767px) {
	.latest{
		margin-bottom: 20px;
	}
	.latest .cover{
		width: 80%;
		max-width: 500px;
		margin: auto;
	}
	.latest .cover::before{
		top: 10px;
		left: 10px;
	}
	.latest .info{
		width: 100%;
		padding-top: 30px;
	}
	.latest .info-area{
		display: flex;
		flex-direction: column-reverse;
	}
	.latest .title{
		letter-spacing: 0.04em;
		font-size: 26px;
		padding-bottom: 0px;
	}
	.latest .button-area{
		padding-top: 0;
		padding-bottom: 10px;
	}
	.latest .button-area a{
		width: 100%;
		margin: 0 0 10px 0;
	}
	.latest .author{
		text-align: center;
		padding-top: 10px;
		font-size: 16px;
		font-weight: 700;
	}
	.episode{
		padding-bottom: 20px;
	}
}

/*パンクズ*/
.breadcrumb{
	padding: 0 0 20px 0;
	max-width: 1160px;
	margin: auto;
	font-size: 14px;
	z-index: 10;
	position: relative;
}
.breadcrumb ul{
	display: flex;
}
.breadcrumb ul li{
	padding-right: 20px;
}
.breadcrumb ul li a{
	color: var(--text-color);
}
.breadcrumb ul li a::after{
	content: ">";
	display: inline-block;
	margin-left: 1em;
}
@media screen and (max-width:1159px) {
	.breadcrumb{
		padding: 20px;
	}
}
@media screen and (max-width:767px) {
	.breadcrumb{
		font-size: 11px;
		padding: 20px;
	}
	.breadcrumb ul li{
		padding-right: 10px;
	}
}

/*modal*/
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.modal__bg {
    background: #162328;
    opacity: 0.3;
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content {
    height:auto;
	max-height: 90vh;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
	max-width: 780px;
    box-sizing: border-box;
}

.modal__content .modal-inner {
    height: auto;
	max-height: 90vh;
    overflow-y: auto;
    /*background: #fff;*/
	background: url(../img/kachicomi/wrap-back.jpg) no-repeat center center / cover;
	color: var(--b-text-color);
	box-shadow: 0px 0px 20px 16px rgba(0, 0, 0, 0.1);
	border:none;
	overflow-y: scroll;
    padding: 40px;
}
.modal__content .modal-inner > div{
	padding-bottom: 20px;
}
#online ul,
.modal__content .modal-inner ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px 1%;
}
#online ul{
	gap: 10px 3%;
}

.modal__content .modal-inner ul li{
	width: 24.2%;
}
#online ul li{
	width:22.6%;
	margin-bottom: 40px;
}
#online ul li img,
.modal__content .modal-inner ul li img{
	width: 100%;
	display: block;
	/*border: 1px solid var(--sub-accent-color);
	border-radius: 5px;*/
	background: white;
	object-fit: contain;
	height: 80px;
}
#online ul li img{
	margin-bottom: 5px;
}
#online ul li a,
.modal__content .modal-inner ul li a{
	color: var(--bg-color);
	text-decoration: none;
}


/*バツボタン*/
.batsu {
    display: block;
    position: fixed;
    width: 46px;
    height: 46px;
	top: 5px;
	right: 5px;
	background: transparent;
    border-radius: 50%;
	border-radius: 0 0 0 20px;
	z-index: 100;
}
.batsu::before,
.batsu::after {
    /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    /* 棒の幅（太さ） */
	height: 20px;
    background:var(--accent-color);
}
.batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


@media screen and (max-width:767px) {
	.modal__content .modal-inner {
		padding: 20px;
	}
	#online ul,
	.modal__content .modal-inner ul{
		justify-content: space-between;
	}
	#online ul{
		gap: 10px 0;
	}	
	#online ul li,
	.modal__content .modal-inner ul li{
		width: 48%;
	}
	#online ul li{
		width: 48%;
		margin-bottom: 10px;
	}
	#online ul li img{
		height: auto;
	}
}



/***************************************
メインビジュアル
***************************************/
.mv {
	
}
.mv .mv-img{
	
}
.slick-slide{
}
ul.mv-slide li{
	margin: 0 20px 40px 20px;
}
ul.mv-slide li img{
	display: block;
	filter: drop-shadow(0px 10px 30px rgba(87,115,218,0.08));
}
ul.slick-dots{
	bottom: 0px;
}
ul.slick-dots li{
	margin: 0 5px;
	width: 24px;
    height: 5px;
}
.slick-dots li button:before{
	content: "";
	background:white;
	opacity: 1;
	width: 24px;
	height: 5px;
	border-radius: 20px;
}
.slick-dots li.slick-active button:before{
	background: var(--accent-color);
}

@media screen and (max-width:767px) {
	ul.mv-slide li{
		margin: 0;
	}
	ul.mv-slide li img{
		border-radius: 0px;
		filter: drop-shadow(0px 10px 30px rgba(87,115,218,0.08));
	}
	ul.slick-dots{
		bottom: -25px;
	}
	ul.slick-dots li{
		margin: 0 5px;
	}
}

/*top*/
section#news {
	padding-top: 0px;
	padding-bottom: 0;
	position: relative;
}
section#news::before{
	content: "";
	background: url(../img/kachicomi/back_logo.png) no-repeat center center/100%;
	width: 550px;
	height: 255px;
	bottom: -80px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	display: block;
}
.second section#news::before{
	display: none;
}
section#news .inner{
	max-width: 800px;
	padding: 0;
}
#news ul.news li a{
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid var(--sub-accent-color);
	color: var(--text-color);
}
#news ul.news li a:hover{
	text-decoration: none;
	background: rgba(255 255 255/0.4);
}
.second #news ul.news li a{
	border-bottom: 1px solid var(--accent-color);
	padding: 14px 0;
	color: var(--bg-color);
}

#news.news-article time,
#news ul.news li a time{
	font-size: 16px;
}
#news.news-article span.tag,
#news ul.news li a span.tag{
	display: inline-block;
	color: var(--accent-color);
	margin-left: 1em;
}
#top #news span.tag{
	color: var(--point-color);
}
#news.news-article span.tag::before,
#news ul.news li a span.tag::before{
	content: "#";
}
#news ul.news li a p.title{
	padding: 8px 0 0 0;
}
#news.news-list{
	padding-bottom: 60px;
}
#news.news-list .inner{
	padding: 50px;
	max-width: 1160px;
}

#news.news-article .inner{
	max-width: 840px;
	margin-top: 40px;
	color: var(--bg-color);
}
#news.news-list ul{
	z-index: 1;
	position: relative;
}
#news.news-list ul li a:hover{
	opacity: 0.7;
}

#news.news-article .title{
	font-size: 32px;
	font-weight: 700;
	padding-bottom: 10px;
}
#news.news-article .time{
	padding-bottom: 30px;
}
#news.news-article img{
	width: 100%;
	margin: 20px 0;
}
#news.news-article p{
	padding-bottom: 1em;
	line-height: 1.8em;
}
#news.news-article h3{
	text-align: left;
	margin-top: 20px;
	color: var(--accent-color);
}
#news.news-article h3:before{
	display: none;
}
#news.news-article h3:after{
    left: 0;
    bottom: 0;
    transform:none;
	display: none;
}
#news.news-article h4{
	font-size: 20px;
	font-weight: 700;
	padding-top: 20px;
	padding-bottom: 20px;
}
#news.news-article table{
	margin: 10px 0 30px 0;
	border-top: 1px solid var(--sub-accent-color);
}
#news.news-article table td,
#news.news-article table th{
	padding: 20px;
	border-bottom: 1px solid var(--sub-accent-color);
}
#news.news-article table th{
	text-align: center;
	background: var(--text-color);
	color: var(--bg-color);
	font-weight: 700;
	white-space: nowrap;
	vertical-align: middle;
}
@media screen and (max-width:1059px) {
	#news.news-article .inner{
		margin-top: 10px;
	}
}
@media screen and (max-width:840px) {
	#news.top-news {
		padding: 10px 20px 20px 20px;
	}
	#news.news-article .inner{
		border-radius: 0;
	}
}

@media screen and (max-width:767px) {
	#news.top-news {
		padding-top: 10px;
		padding-bottom: 20px;
		padding: 10px 20px 20px 20px;
	}
	#news.top-news h2{
		margin-top: 0;
		margin-bottom: 0;
	}
	#news.news-list {
		padding-bottom: 30px;
	}
	section#news::before{
		width: 235px;
		height: 100px;
		bottom: -50px;
	}
}

#top #comic{
	padding: 40px 0;
	color: var(--text-color);
}
#top #comic ul.flex-list li a{
	color: var(--text-color);
}
@media screen and (max-width:767px) {
	#top #comic{
		padding: 40px 0 0 0;
	}
}

/*タグ絞り込み*/
.tag-area{
	padding: 20px 0 0px 0;
	max-width: 1160px;
	margin: auto;
}
@media screen and (max-width:1159px) {
	.tag-area{
		padding: 20px 20px 0 20px;
	}
}
.tag-area h4{
	font-size: 18px;
	font-weight: 700;
	color: var(--point-color);
	padding-bottom: 10px;
	width: 100%;
	text-align: left;
}
.tag-area span.tag{
	display: inline-block;
	padding: 5px 20px;
	background: white;
	color: var(--bg-color);
	margin-right: 1em;
	border-radius: 30px;
	margin-bottom: 10px;
}
.tag-area span.tag.active,
.tag-area span.tag:hover{
	background: var(--bg-color);
	border: 1px solid var(--point-color);
	color: var(--point-color);
	cursor: pointer;
}
.tag-area span.tag::before{
	content: "#";
	display: inline-block;
	margin-right: 0.2em;
}
.tag-area.author{
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.tag-area.author span.tag{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 100px;
	font-size: 20px;
}
.tag-area.author span.tag.all{
	width: auto;
	padding: 0 20px;
}
.tag-area.author span.tag::before{
	content: "";
}
#top #magazine{
	padding-top: 0px;
}
#top #magazine h2{
	margin-bottom: 0px;
}
#magazine.backnumber h2{
	margin-top: 20px;
}
@media screen and (max-width:1059px) {
	#top #magazine h2{
	}
}

@media screen and (max-width:799px) {
	#news.top-news{
		padding: 10px 20px 20px 20px;
	}
}

@media screen and (max-width:767px) {
	#top #magazine h2{

	}
	#news .inner{
		padding: 0 20px;
	}
	#news.news-list .inner{
		padding: 20px;
		margin-top: 20px;
	}
	#news div.button{
		padding-top: 20px;
	}
	.tag-area{
		padding: 20px;
	}
	.tag-area h4{
		font-size: 16px;
	}
	.tag-area span.tag{
		padding: 5px 10px;
	}
	.tag-area.author{
		justify-content: flex-start;
	}
	.tag-area.author span.tag{
		width: 30px;
		height: 30px;
		border-radius: 100px;
		font-size: 16px;
	}
	.tag-area.author span.tag.all{
		width: auto;
		padding: 0 10px;
	}
	#news.news-article .title{
		font-size: 20px;
	}
	#news.news-article .time{
		padding-bottom: 20px;
	}
	#news.news-article h3{
		font-size: 20px;
	}
	#news.news-article h4{
		font-size: 18px;
	}
	#news.news-article table td,
	#news.news-article table th{
		display: block;
		width: 100%;
		padding: 10px;
	}
}

#other{
	padding-top: 0px;
}
#other a.about-banner{
	display: block;
	margin:auto;
	padding: 20px 0 20px 0;
	max-width: 640px;
}
#other a.about-banner img{
	display: block;
	filter: drop-shadow(0px 10px 30px rgba(87,115,218,0.08));
}
#other .x-twitter{
	max-width: 640px;
	margin: 40px auto;
	/*height: 400px;*/
	display: flex;
	justify-content: center;
}
#other .x-twitter > a{
	display: block;
	width: 48%;
}
#other .x-twitter > a picture{
	width: 100%;
}
#other .x-twitter > a picture img{
	display: inline-block;
	box-shadow: 2px 4px 4px 0px rgba(87, 115, 218, 0.1);
}

/*#other .x-twitter .twitter-timeline{
	margin: auto;
}*/
#other .fanletter{
	padding: 20px 0 20px 0;
	font-weight: 500;
	text-align: center;
}
#other .fanletter h4{
	/*font-size: 24px;
	font-weight: 500;
	color: var(--accent-color);
	padding-bottom: 20px;
	background: url(../img/kachicomi/top_fanletter_title.png) no-repeat center center/100%;
	width: 256px;
	height: 42px;
	text-indent: -9999px;
	margin:20px auto;*/
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--point-color);
}
#other .fanletter p{
	padding-bottom: 1em;
	letter-spacing: 0.04em;
}
#other .fanletter p small{
	font-size: 1em;
	font-weight: 300;
}

@media screen and (max-width:821px) {
	#other .x-twitter,
	#other a.about-banner{
		max-width: 500px;
	}
	#other .fanletter p small{
		font-size: 0.9em;
	}
	#other .fanletter p br.sp_only{
		display: inline;
	}
}
@media screen and (max-width:767px) {
	#other a.about-banner{
		margin: 0 auto;
	}
	#other .x-twitter{
		margin: 10px auto 30px auto;
	}
	#other .fanletter h4{
		font-size: 22px;
		padding-bottom: 10px;
	}
	#other .fanletter{
		padding: 0 0 0px 0;
	}
	#other .fanletter p{
		padding-bottom: 1.5em;
	}
	#other .fanletter p small{
		font-weight: 400;
	}
	#other .x-twitter > a{
		width: 80%;
	}
}

#backnumber{
	padding: 30px 0;
}
#backnumber div.button{
	padding-top: 20px;
}
#backnumber>.inner>h3,
#backnumber>.inner ul.flex-list li .title{
	color: white;
}
@media screen and (max-width:767px) {

}


#author .latest{
	max-width: 600px;
	margin: auto;
	margin-bottom: 50px;
	align-items: stretch;
}

#author .latest .cover,
#author .latest .info{
	width: 46%;
}
#author .latest .cover::before{
	top: 10px;
    left: 10px;
}

#author .latest .info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items:stretch;
}

#author .latest .profile-area .links{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 25%;
	max-width: 200px;
}
#author .latest .profile-area a:hover{
	opacity: 0.7;
}
#author .latest .profile-area a.icon{
	height: 20px;
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}
#author .latest .profile-area a.icon img{
	height: 100%;
	width: auto;
	position: relative;
}
#author .latest .profile-area a.banner{
	width: 100%;
}
#author .latest .profile-area a.banner img{
	border: 1px solid #C7C7C7;
}

#author .latest .button-area{
	max-width: 200px;
}
#author .latest .button-area a.button{
	width: 100%;
}

div.sp_title{
	display: none;
}

@media screen and (max-width:767px) {
	#author .latest {
		padding-top: 0px;
		margin-bottom: 20px;
	}
	div.pc_title{
		display: none;
	}
	div.sp_title{
		display: block;
		padding-bottom: 20px;
		width: 100%;
	}
	div.sp_title .title{
		display: block;
		width: 100%;
		font-size: 26px;
		font-weight: 700;
		text-align: center;
	}
	#author .latest .cover{
		width: 80%;
	}
	#author .latest .info{
		width: 100%;
		align-items: center;
		padding-top: 30px;
	}
	#author .latest .button-area {
		width:100%;
		padding-top: 20px;
	}
}

#about-cont .inner{
	background: url(../img/kachicomi/about_back.png) no-repeat center center/contain;
	text-align: center;
	font-family: "ten-mincho", serif;
	font-weight: 400;
	font-style: normal;
}
#about-cont h2{
	margin-bottom: 40px;
}
#about-cont .inner p.lead{
	font-size: 20px;
}
#about-cont .inner p.lead small{
	font-size: 24px;
}
#about-cont .inner p{
	padding-bottom: 2em;
	line-height: 2em;
}
#about-cont .inner p.onsale{
	color: var(--accent-color);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
}

@media screen and (max-width:767px) {
	#about-cont .inner{
		background: url(../img/kachicomi/about_back_sp.png) no-repeat center center/contain;
	}
	#online{
		padding-top: 0;
	}
}


#store-list .area h2{
	color: var(--bg-color);
	margin-top: 0;
}
#store-list .area h2::before {
    content: "";
    display: block;
    width: 220px;
    height: 102px;
    background: url(../img/kachicomi/h3_back.png) no-repeat center center / 100%;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    z-index: -1;
}
.tag-area.store{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.tag-area.store span.tag{
	border-radius: 60px;
	width: 15%;
	margin: 0;
	text-align: center;
}
.tag-area.store span.tag::before{
	display: none;
}
.area {
    display: none;
}
.area.show {
    display: block;
}
.area h3{
	text-align: left;
	margin-bottom: 20px;
	color: var(--accent-color);
}
.area h3::before{
	display: none;
}
.area h3.no{
	opacity: 0;
}
.area h3:after{
	left: 0;
	transform: none;
}
.area h3.no:after{
	display: none;
}
.area .flex{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-top: 30px;
}
.area .flex > div{
	width: 25%;
	padding-right: 30px;
	padding-bottom: 30px;
}
.area .flex > div ul li{
	margin-bottom: 1em;
	padding-left: 1em;
	position: relative;
}
.area .flex > div ul li a{
	text-decoration: underline;
}
.area .flex > div ul li:before{
	content: "";
	/*color: var(--accent-color);*/
	background: var(--accent-color);
	width: 2px;
	height: 1em;
	display: inline-block;
	/*margin-right: 0.3em;
	margin-left: -1em;*/
	position: absolute;
	top: 5px;
	left: 8px;
}
@media screen and (max-width:820px) {
	.area h3{
		font-size: 20px;
	}
	.tag-area.store{
		padding:20px;
	}
	.tag-area.store span.tag{
		font-size: 14px;
		padding: 5px 10px;
		width: 16%;
	}
	.area .flex > div{
		font-size: 14px;
	}
}
@media screen and (max-width:767px) {
	#store-list .area h2{
		margin-bottom: 10px;
	}
	.tag-area.store{
		margin: 0;
		padding: 0px 10px;
	}
	.tag-area.store span.tag{
		width: 32%;
		margin-bottom: 10px;
	}
	.area .flex > div{
		width: 100%;
	}
	.area .flex > div ul li br{
		display: none;
	}
	.area h3.no{
		display: none;
	}
	.area .flex > div.nomargin{
		padding-bottom: 0;
	}
	#purchase a.button{
		width: auto;
		max-width: none;
		margin: 0 40px;
	}
}

/*404*/
#notfound{
	padding: 100px 0;
	text-align: center;
}
#notfound .title-404{
	font-size: 20px;
	color: var(--accent-color);
	line-height: 1.2em;
	margin-bottom: 40px;
}
#notfound .title-404 strong{
	font-size: 72px;
}

/*追加*/


/*404*/
#notfound{
	padding: 100px 0;
	text-align: center;
}
#notfound .title-404{
	font-size: 20px;
	color: var(--accent-color);
	line-height: 1.2em;
	margin-bottom: 40px;
}
#notfound .title-404 strong{
	font-size: 72px;
}

/*追加*/
.breadcrumb ul{
	flex-wrap: wrap;
}
ul.flex-list li .img{
	position: relative;
}
ul.flex-list.newrelease{
	padding-top: 20px;
}
ul.flex-list li span.new.release {
    display: block;
    border-radius: 0;
    margin-left: 0;
    z-index: 0;
	position: absolute;
    top: -24px;
	left: 0;
    text-align: center;
    font-size: 16px;
	width: 100%;
}
ul.flex-list.comics-slide li span.new.release {
	padding: 10px;
    top: -32px;
	margin-bottom: 0;
}
.comics-slide{
	margin: 0 -12px;
}
.comics-slide li{
	padding: 20px 12px;
}
.detail-list{
	padding-top: 20px;
}

span.last{
	background: rgb(250,146,129);
	background: linear-gradient(90deg, rgba(250,146,129,1) 0%, rgba(241,99,84,1) 100%);
	border-radius: 0;
	position: absolute;
	bottom: 10px;
	right: -8px;
	padding: 5px 20px;
	color: white;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    background: var(--button-bg-color);
}

.slick-prev,
.slick-next{
	background: var(--button-bg-color);
	border: 1px solid var(--accent-color);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	z-index: 100;
	top: 42%;
}
.slick-next {
    right: -76px;
}
.slick-prev {
    left: -76px;
}
.slick-prev:before,
.slick-next:before {
	content: "";
    opacity: 1;
	display: block;
	background: url(../img/kachicomi/bt-arrow.svg) no-repeat center center/50%;
	width: 52px;
	height: 52px;
}
.slick-prev:before{
	transform: scale(-1, 1);
}
.slick-disabled{
	opacity: 0.5;
}
@media screen and (max-width:1239px) {
	.slick-next {
		right: -36px;
	}
	.slick-prev {
		left: -36px;
	}
}
@media screen and (max-width:1059px) {
	.slick-next {
		right: -16px;
	}
	.slick-prev {
		left: -16px;
	}
	.slick-prev,
	.slick-next{
		width: 38px;
		height:38px;
	}
	.slick-prev:before,
	.slick-next:before {
		width: 38px;
		height: 38px;
	}
}
@media screen and (max-width:767px) {
	.comics-slide{
		margin: 0 -6px;
	}
	.comics-slide li{
		padding: 20px 6px;
	}
	.slick-next {
		right: -10px;
	}
	.slick-prev {
		left: -10px;
	}
	.slick-prev,
	.slick-next{
		width: 28px;
		height: 28px;
		top: 38%;
	}
	.slick-prev:before,
	.slick-next:before {
		width: 28px;
		height: 28px;
	}
}
@media screen and (max-width:767px) {
	ul.episode-list li .button-area a.streaming{
		padding: 5px 20px 5px 30px;
	}
}
.info-area img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.info-area{
	text-align: left;
}
img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}
#comics .inner.white-back{
	padding-top: 60px;
}
@media screen and (max-width: 767px) {
	#comics .inner.white-back{
		padding-top: 50px;
	}
}
@media screen and (min-width: 1025px) {
	header nav ul.sns li img{
		width: 21px;
	}
}

.mv-slide{
	min-height: 600px;
}
@media screen and (max-width: 767px) {
	.mv-slide{
		min-height: 83vw;
	}
}
.mv-slide.slick-initialized{
	min-height: inherit;
}
ul.mv-slide li img{
	display: none;
}
ul.mv-slide.slick-initialized li img{
	display: block;
}


body#top .contents{
	overflow:hidden
}
body ul.slides>li>a>img{
	display: block;
	border-radius: 20px;
	filter: drop-shadow(0px 10px 30px rgba(87,115,218,0.08));
}
body .metaslider.ms-theme-clarity .flexslider{
	margin-bottom: 0;
}
body .metaslider.ms-theme-clarity .flexslider .slides li{
	margin-top: 0;
}
body .metaslider.ms-theme-clarity .flexslider .flex-control-paging li a {
    width: 24px;
    height: 5px;
    border-radius: 20px;
    box-shadow: none !important;
	opacity: 1;
}
body .metaslider.ms-theme-clarity .flexslider .flex-control-nav {
    bottom: 0px;
}
.flex-viewport{
	overflow: visible !important;
}
.flex-viewport ul li a{
	padding: 0 15px;
}

body#top .flex-viewport ul.slides{
	margin-left:calc((100% - 625px) / 2 );
}
@media screen and (max-width:767px) {
	body#top .flex-viewport ul.slides{
		margin-left:0;
	}	
	.flex-viewport ul li a{
		padding: 0;
	}
	body ul.slides>li>a>img{
		border-radius: 0;
	}
}