@charset "utf-8";
/* CSS Document */

/* RESET */
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, sub, sup, tt, var,
b, u, i, center,
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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	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;
}
/* //RESET */

body {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: #313131;
	line-height: 1.6;
	overflow-x: hidden;
}
body::before {
	content: "";
	display: block;
	width: 100%;
	height: 70vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
}
img { 
	max-width: 100%;
	height: auto;
}

.w1200 {
	width: 1200px;
	margin: 0 auto;
}
header { 
	padding: 0.5rem 0;
	box-sizing: border-box;
	height: auto;
}
header .logo img {
	height: 70px;
	width: auto;
	display: block;
}

/*.top-content {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 3.3rem;
	position: relative;
	padding: 3.3rem 0;
	margin-bottom: 5.6rem;
	z-index: 1;
}*/
.top-content {
	width: 100%;
	display: grid;
	/*grid-template-columns: 1fr 1fr;*/
	/*grid-template-rows: 3.3rem 1fr;*/
	grid-template-areas:
	"cover head"
	"cover txt";
	gap: 1.5rem 3.3rem;
	position: relative;
	padding: 3.3rem 0;
	margin-bottom: 5.6rem;
}
.top-txt { 
	grid-area: head;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.top-content::after {
	content: "";
	display: block;
	width: calc(50vw + 30%);
	height: 100%;
	position: absolute;
	right: calc(-50vw + 50%);
	top: 0;
	border-radius: 0 0 0 1rem;
	z-index: -1;
}
.top-content .cover { 
	width: 500px;
	grid-area: cover;
}
.top-content .cover img {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	border: 4px solid #FFF;
	box-shadow: 0px 0px 15px -5px #bbb;
}
.content-txt { 
	grid-area: txt;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.midashi img {
	height: 2rem;
	width: auto;
	margin-bottom: 0.5rem;
}
.release { margin-bottom: 1rem;}
.release span {
	padding: 0.5rem 0.8rem;
	font-weight: bold;
	font-size: 0.9rem;
	border-radius: 3rem;
}
.content-logo img {
	height: 5.3rem;
	width: auto;
}
.catch-txt { margin-bottom: 3rem;}
.catch-txt strong {
	font-weight: bold;
	font-size: 1.5rem;
	display: block;
	margin-bottom: 1rem;
}
.catch-txt small {
	font-size: 0.8em;
	display: block;
	padding-left: 1em;
	text-indent: -1em;
}

.common-btns {
	margin-bottom: 1.7rem;
	padding-bottom: 1.7rem;
	border-bottom: dashed 1px #000;
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
}
.common-btns li,
.original-btns li {
	width: calc(50% - 0.5rem);
}
.common-btns li img,
.original-btns li img {
	display: block;
	width: 100%;
}

.original-btns {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
}

.comic-sakuhin {
	display: flex;
	justify-content: space-between;
	gap: 2.8rem;
}
.comic-sakuhin .comic,
.comic-sakuhin .sakuhin {
	width: calc(50% - 1.4rem);
}
.comic-sakuhin .comic ul,
.comic-sakuhin .sakuhin ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.comic-sakuhin .sakuhin ul:first-of-type { margin-bottom: 0.5rem;}

.comic-sakuhin .comic ul li { width: calc(100% / 3 - 0.5rem); }
.comic-sakuhin .sakuhin ul li { width: calc(100% / 2 - 0.5rem); }

.comic-sakuhin .comic ul a,
.comic-sakuhin .sakuhin ul a { 
	display: block;
	width: 100%;
}

.comic-sakuhin .comic ul img,
.comic-sakuhin .sakuhin ul img { 
	display: block;
	width: 100%;
	height: auto;
}

.content-title {
	position: relative;
	display: inline-block;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	font-size: 1.7rem;
	font-weight: bold;
	margin-bottom: 3rem;
}
.content-title span { position: relative;}
.content-title span::before,
.content-title span::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 5px);
}

.content-title::before,
.content-title::after {
	position: absolute;
	top: calc(50% - 1.5px);
	height: 2px;
	content: '';
}
.comic .content-title::before,
.comic .content-title::after { width: calc(50% - 7rem); }
.sakuhin .content-title::before,
.sakuhin .content-title::after{ width: calc(50% - 5rem); }

.comic .content-title span::before { left: calc(50% - 7rem); }
.comic .content-title span::after { right: calc(50% - 7rem); }
.sakuhin .content-title span::before { left: calc(50% - 5rem); }
.sakuhin .content-title span::after { right: calc(50% - 5rem); }

.content-title:before {	left: 0;}
.content-title:after { right: 0;}

.content-title i {
	font-family: "Tangerine", cursive;
	font-weight: 700;
	font-style: normal;
	font-size: 5.2rem;
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	top: -50%;
	opacity: 0.3;
}

.digital-bnr { 
	padding: 5.2rem 0;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.digital-bnr li { width: calc(100% / 4 - 0.25rem); }
.digital-bnr li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: #FFF;
	border: 1px solid #e7e7e7;
}
.digital-bnr li a img { 
	display: block;
	max-height: 3.8rem;
	width: auto;
}

#lovesilky .lovesilky { display: none;}
#lovejossie .lovejossie { display: none;}
#horrorsilky .horrorsilky { display: none;}
#kuromitsu .kuromitsu { display: none;}

@media screen and (max-width:1200px) {
	.w1200 { width: 90%;}
	.top-content .cover { width: 40vw;}
}
@media screen and (max-width:1000px) {
	.top-content {
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto;
	grid-template-areas:
	  "head"
	  "cover"
	  "txt";
	}
	.top-content::after {
		width: 100vw;
		right: -5%;
	}
	.top-txt,
	.top-content .cover,
	.catch-txt { 
		text-align: center;
	}
	.top-content .cover { width: 60%; margin: 0 auto;}
	.top-content .cover img { max-width: 100%;}
	
	.comic-sakuhin { flex-direction: column;}
	.comic-sakuhin .comic, .comic-sakuhin .sakuhin { width: 100%;}
	
	.digital-bnr li {width: calc(100% / 3 - 0.5rem);}
}

@media screen and (max-width:675px) {
	body { font-size: 16px;}
	header .logo img { height: 1.6rem;}
	.top-content .cover { width: 100%;}
}

@media screen and (max-width:460px) {
	.common-btns { flex-direction: column;}
	.common-btns li, .original-btns li { width: 100%;}
	.comic-sakuhin .comic ul li { width: calc(100% / 2 - 0.25rem);}
}



/*個別ページ*/
.pankuzu {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1rem 0.5rem;
	font-size: 0.8rem;
	padding: 1rem 0;
}
.pankuzu li:not(:last-child)::after {
	content: ">";
	padding: 0 0.5rem;
}

.name {
	padding: 1rem 2rem;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.7rem;
	font-weight: bold;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: #FFF;
}
.name::before {
	font-family: "Material Symbols Outlined";
	content: "\f365";
	font-size: 3.5rem;
	line-height: 1;
}
.name::after {
	content: "";
	display: block;
	border-radius: 3rem 0 0 3rem;
	width: calc(100% + ((100vw - 1200px) / 2) );
	height: 100%;
	position: absolute;
	top: 0;
	right: calc( ((100vw - 1200px) / 2) * -1);
	z-index: -1;
}

.cover-btn-txtarea {
	display: flex;
	justify-content: flex-start;
	gap: 1.7rem;
}
.cover-btn { width: 30%;}

.cover-btn .original-btns { 
	gap: 0.5rem;
	padding-top: 1rem;
}

.txtarea { 
	width: calc(70% - 1.7rem);
	padding: 2rem;
	position: relative;
	box-sizing: border-box;
}
.txtarea::after {
	content: "";
	display: block;
	width: calc(100% + ((100vw - 1200px) / 2) );
	height: calc(100% + 10.1rem);
	position: absolute;
	right: calc( ((100vw - 1200px) / 2) * -1);
	top: -10.1rem;
	border-radius: 0 0 0 1rem;
	z-index: -2;
}

.txtarea-title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	padding-top: 2rem;
	gap: 0.5rem;
}

@media screen and (max-width:1200px) {
	.name::after {
		width: calc(100% + ((100vw - 88%) / 3));
        right: calc(((100vw - 90%) / 2) * -0.5);
	}
	.txtarea::after {
		width: calc(100% + ((100vw - 90%) / 2) );
		right: calc( ((100vw - 90%) / 2) * -1);
	}
}

@media screen and (max-width:1000px) {
	.pankuzu { display: none;}
	.name { margin-top: 1.7rem;}
	.cover-btn { display: none;}
	.txtarea { 
		width: 100%;
		padding: 1.7rem 1.7rem 3rem;
	}
	.txtarea::after {
		width: 100vw;
		top: -8.9rem;
		right: -5%;
	}
}

@media screen and (max-width:675px) {
	.name { 
		padding: 0.5rem 1rem;
		font-size: 1.4rem;
	}
	.name::before { font-size: 2.8rem;}
	.txtarea { padding: 0 0 2rem;}
	.txtarea::after { top: -6.9rem;}
}

