/* -----------------------------------
  comic.kousakits.com
----------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&family=Shippori+Antique+B1&family=Zen+Antique+Soft&display=swap');

*, ::before, ::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
	line-height: 1;
	margin: 0;
	padding: 0;
}

html {
	font-size: 12px;
	overflow-y: scroll;
	height: -webkit-fill-available;
}

@media only screen and (max-width: 767px) {
	html {
		font-size: 10px;
		scroll-padding-top: 16vw;
	}
}

body {
	/* font-family: 'Noto Sans Japanese', serif; */
	font-family: "Shippori Antique B1", sans-serif !important;
	font-weight: 400;
	font-style: normal;
	/* font-size: 10px; */
	/* font-size: 62.5%; */
	color: #333;
	/* support  iOS  */
	min-height: 100vh;
	min-height: -webkit-fill-available;
}

.ZenAntique {
	font-family: "Zen Antique Soft", serif;
}

.SawarabiGothic {
	font-family: "Sawarabi Gothic", sans-serif !important;
}

/* html_setting */
h1, h2, h3, h4 {
	overflow: hidden;
	margin: 0;
	padding: 0;
	line-height: 1.2;
}

a:link,
a:visited,
a:hover,
a:active {
	color: #1c4acf;
	text-decoration: none;
	font-size: 1.4rem;
}

a:hover {
	color: #666666;
}

ul,
dl {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

ul,
dl,
ol {
	list-style: none;
}

img {
	width: 100%;
}

article {
	width: 100%;
	margin: 0 auto;
}

section {
	padding: 30px 0;
	width: 100%;
}

small {
	font-size: 75%;
}

strong {
	font-size: 140%;
}

@media only screen and (max-width: 767px) {
	section {
		padding: 5vh 0;
	}
}

/* 強制文字揃え変更 */

.txt-c {
	text-align: center !important;
}

.txt-l {
	text-align: left !important;
}

.txt-r {
	text-align: right !important;
}


/* ブレイクポイント切り替え用 */

.pc_block {
	display: block;
}

.pc_flex {
	/* itemsの揃え用　レイアウトを組むときはclassで指定する */
	display: flex;
}

.pc_inline {
	/* <br>で使用するときは必ずこれを使用する */
	display: inline;
}

.pc_inblock {
	display: inline-block;
}

.sp_block,
.sp_flex,
.sp_inline,
.sp_inblock {
	display: none;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 1.2rem;
	}

	main {
		width: 100%;
		font-size: 1.2rem;
		padding-top: 30vw;
	}

	.boxcenter {
		margin: 0 auto;
		max-width: none;
	}

	/* ブレイクポイント切り替え用 */
	.sp_block {
		display: block;
	}

	.sp_flex {
		/* itemsの揃え用　レイアウトを組むときはclassで指定する */
		display: flex;
	}

	.sp_inline {
		/* <br>で使用するときは必ずこれを使用する */
		display: inline;
	}

	.sp_inblock {
		display: inline-block;
	}

	.pc_block,
	.pc_flex,
	.pc_inline,
	.pc_inblock {
		display: none;
	}
}

/* header,footer */
header {
	background-image: linear-gradient(-90deg, #c3c5ff, #87ceeb 31%, #1c4acf);
	padding: 10px;
	font-size: 100%;
	text-align: left;
	line-height: 1.5;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: end;
}

header h1 {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1;
	color: #fff !important;
	margin: 10px 0;
}

header a:link {
	font-size: 14px;
	color: #fff;
}

header a:hover {
	color: #1c4acf;
}

header a small {
	font-size: 80%;
}

@media only screen and (max-width: 767px) {
	header {
		flex-wrap: wrap;
	}

	header a {
		width: 100%;
		text-align: right;
	}

	header h1 {
		font-size: calc(100vw / 17);
	}
}

footer {
	padding: 20px 0;
	font-family: "Shippori Antique B1", sans-serif !important;
	font-size: 1rem;
	line-height: 1.6;
	text-align: center;
	border-top: 1px dashed #ccc;
	border-bottom: 12px solid skyblue;
}

footer p {
	margin-bottom: 5px;
	font-size: 1rem;
	line-height: 1.6;
}

footer .copyright {
	color: #666666;
	line-height: 1.2;
}

footer .copyright a {
	color: #666666;
	font-size: 1rem;
}

/* orgin_class */
.container {
	margin: auto;
	padding: 0;
	max-width: 1200px;
	width: 100%;
	overflow: hidden;
}

.effect-fade {
	opacity: 0;
	transform: translate(0, 45px);
	transition: all 500ms;
}

.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}

.effect-fade2 {
	opacity: 0;
	transform: translate(0, 200px);
	transition: all 1500ms;
}

.effect-fade2.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}