/* -----------------------------------
  comic.kousakits.com
----------------------------------- */

/*---- TOP design ----*/
/* .content01 */
.content01 {
	background-image: linear-gradient(35deg, #ffffff, #B8CCEA 100%);
}

.content01 .container {
	min-height: 800px;
	height: 80vh;
	position: relative;
}

.content01 .container picture {
	display: block;
}

.content01 .container picture img {
	width: 100%;
	height: 800px;
	object-fit: contain;
	object-position: left;
}

.cnts01_copy {
	text-align: left;
	text-shadow:
		2px 2px 5px #FFF, -2px -2px 5px #FFF,
		-2px 2px 5px #FFF, 2px -2px 5px #FFF,
		0px 2px 5px #FFF, 0 -2px 5px #FFF,
		-2px 0 5px #FFF, 2px 0 5px #FFF;
	position: absolute;
	top: 36vh;
	left: 5vw;
	z-index: 1;
}

.cnts01_copy h2 {
	font-size: 3.6rem;
	margin: 0 auto 15px;
}

.cnts01_copy p {
	font-size: 2rem;
	line-height: 1.4;
}

/* .cnts01_newpost */
.content01 {
	padding: 0;
}

.content01 .cnts01_newpost {
	max-width: 400px;
	width: 45%;
	position: absolute;
	right: 3vw;
	bottom: 10vh;
}

.content01 .cnts01_newpost_h {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #0a7aff;
}

@media only screen and (min-width: 809px) and (max-width: 1024px) {
	.content01 .container {
		min-height: 640px;
		height: 56vh;
		position: relative;
	}

	.content01 .container picture {
		display: block;
	}

	.content01 .container picture img {
		width: 100%;
		height: 640px;
		object-fit: contain;
	}

	.cnts01_copy h2 {
		font-size: 3rem;
		margin: 0 auto 15px;
	}

	.cnts01_copy {
		line-height: 1.2;
		position: absolute;
		top: 26vh;
		left: 5vw;
		z-index: 1;
	}
}

@media only screen and (max-width: 810px) {
	.content01 {
		background-image: linear-gradient(165deg, #ffffff, #B8CCEA 100%);
	}

	.content01 .container {
		min-height: auto;
		height: auto;
	}

	.content01 .container picture img {
		width: 100%;
		height: auto;
		object-fit: fill;
	}


	.cnts01_copy {
		text-align: center;
		position: static;
	}

	.cnts01_copy h2 {
		font-size: 2.6rem;
		margin: 10px auto;
	}

	.cnts01_copy p {
		font-size: 1.6rem;
		line-height: 1.4;
	}

	.content01 .cnts01_newpost {
		width: 80%;
		margin: 5vh auto;
		position: static;
	}
}

@media only screen and (max-width: 376px) {
	.content01 .cnts01_newpost_h {
		font-size: calc(100vw / 22);
	}
}

/* .content02 */
.content02 h3 {
	font-size: 2.4rem;
	font-weight: normal;
}

.content02 div {
	text-align: center;
}

.content02 img {
	max-width: 680px;
	width: 100%;
}

@media only screen and (max-width: 856px) {
	.content02 {
		padding: 20px;
	}
}

/* .content03 */
.content03 {
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.6;
}

.content03 .container {
	max-width: 780px;
	border-top: 5px double #ccc;
	padding: 30px 0;
}

.content03 h3 {
	font-size: 2.4rem;
	font-weight: normal;
	margin-bottom: 10px;
}

.content03 .sns_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	max-width: 640px;
	margin: 60px auto 30px;
	padding: 5px;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	overflow: visible;
}

.content03 .sns_list li {
	width: fit-content;
}

.content03 .sns_list li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border-radius: 16%;
	background-image: linear-gradient(-45deg, #c3f7ff, #87ceeb 31%, #1c4acf);
	color: #fff;
	font-size: 1.2rem;
	text-shadow: 0 1px 3px #1c4acf;
	box-shadow: 0 1px 6px #999;
	transition: 0.5s;
	position: relative;
}

.content03 .sns_list li a:hover {
	opacity: 0.8;
	transition: 0.5s;
}

.content03 .sns_list li a::before {
	content: "公式SNS";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	min-height: 20px;
	padding: 5px;
	background: #1c4acfaa;
	color: #fff;
	text-align: center;
	opacity: 0;
	position: absolute;
	top: -26px;
	left: 6px;
	transition: 0.5s;
}

.content03 .sns_list li:nth-of-type(1) a:before {
	content: "お知らせ用アカウント";
}

.content03 .sns_list li:nth-of-type(2) a:before {
	content: "漫画の公開アカウント";
}

.content03 .sns_list li:nth-of-type(3) a:before {
	content: "漫画の公開アカウント";
}

.content03 .sns_list li:nth-of-type(4) a:before {
	content: "工事中";
}

.content03 .sns_list li:nth-of-type(5) a:before {
	content: "何かあれば";
}

.content03 .sns_list li a:hover::before {
	opacity: 1;
	top: -46px;
	transition: 0.5s;
}

@media only screen and (max-width: 767px) {
	.content03 {
		padding: 0;
	}

	.content03 .sns_list {
		width: 100%;
		max-width: none;
		margin: 10vw auto 8vw;
		font-size: 1.2rem;
	}

	.content03 .sns_list li {
		width: calc((100vw / 5) - 4vw);
	}

	.content03 .sns_list li a {
		width: 100%;
		height: 16vw;
		font-size: 1.2rem;
	}

	.content03 .sns_list li a::before {
		width: calc((100vw / 3) + 10px);
		min-width: fit-content;
	}

	.content03 .sns_list li:nth-of-type(5) a:before {
		right: 6px;
		left: auto;
	}

}

.topbtn a {
	display: inline-table;
	margin-bottom: 15px;
	font-size: 1rem;
}