@charset "utf-8";

/* 全体のフォント指定 */
    body {
	background-color: rgb(48, 48, 48);
	}
	.comic-image {
		user-select: none;
		text-align: center;
		position: relative;
		-webkit-touch-callout: none;
		-webkit-user-drag: none;
		-webkit-user-select: none;
		max-width: 690px;
		margin: 0 auto;
		font-size:0
	}
	.comic-image .comic-image__image {
		width: 100%;
		max-width: 690px;
		margin: 0 auto;
		z-index: 1;
		pointer-events: none;
		user-select: none;
		-webkit-touch-callout: none;
		-webkit-user-drag: none;
		-webkit-user-select:none
	}

    /* ローディング画面 */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		background-color: rgb(48, 48, 48);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
	}

	.loaded {
		opacity: 0;
		visibility: hidden;
	  }