@charset "UTF-8";
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: "Noto Sans JP"; 
	letter-spacing: 0.05em/*サイト全体のフォント指定*/
}
p {
	passing: 0;
	margin: 0;
}
a {		/*リンクの飾り付け*/
	text-decoration: none;
	color: #0400FF;
}
a:hover {	/*リンクのマウスオーバー時の飾り付け*/
	text-decoration: underline;
}

/*背景*/
#bg {
	top: 2vh;
	left: 2%;
	width: 96%;
	position: fixed;
	z-index: -1;
	font-size: 15vw;	/*背景の文字サイズ*/
	line-height: 1.2em;		/*背景の行の高さ*/
	pointer-events: none;
	touch-action: none;
}

/*インタビューテキスト（スクロール可）*/
.text {
	width: 75%;
	overflow: auto;
	margin: 10% 0 10% 5%;
	font-size: 13px; /*フォントサイズ*/
	line-height: 2em; /*行の高さ*/
}

/*蛍光ペン*/
.keiko {
	background:linear-gradient(transparent 60%, #FFFF00 60%);
}




/*デバイスのスクリーン横幅が769px以下の場合の設定*/
@media screen and (max-width:770px) {

}