@charset "utf-8";

/*android用font-family: 'Noto Serif JP', serif;*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

body {
	/*ゴシック*/font-family: "Noto Sans TC";/*,"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	/*明朝font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Noto Serif JP", serif;*/
	color: #333;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5;
}

#kankouPopBox {
	width: 100%;
	max-width: 1000px;
	padding: 5%;
	margin: auto;
}
#kankouPopBox img {
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: auto;
}

#photo {
	border: solid 10px #fff;
	box-shadow: 0 0 10px #999;
}


.fkdsBox {
	box-sizing: border-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	text-shadow: none;
	margin-top: 5%;
}
.fkdsBox .icon {
	width: 25%;
}
.fkdsBox .icon img {
	max-width: 282px;
}
.fkdsBox .serif {
	box-sizing: border-box;
	width: 75%;
	padding-left: 10px;
}
.fkdsLeft {
	position: relative;
	display: inline-block;
	padding: 3%;
	width: 100%;
	border-radius: 15px;
	background: #b6e8fc;
}
.fkdsLeft:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #b6e8fc;
}
.fkdsLeft p {
	margin: 0;
	padding: 0;
}




/* ウィンドウ幅が0-767pxの場合に適用するCSS */
@media screen and (max-width:767px){
	
	body {
		font-size: 14px;
	}
	


	.fkdsBox {
		flex-direction: column-reverse;
	}
	.fkdsBox .icon {
		width: 100%;
	}
	.fkdsBox .serif {
		width: 100%;
		padding-bottom: 10px;
		padding-left: 0;
	}
	.fkdsLeft {
	}
	.fkdsLeft:before {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-top: 0;
		margin-left: -15px;
		border: 15px solid transparent;
		border-top: 15px solid #b6e8fc;
		border-right: 15px solid transparent;
	}
	
	
	
}