@charset "UTF-8";

/**
* .sb-type-TYPE, .sb-type-TYPE > .sb-subtype-X:after
*
* コマ(アイコンと吹き出しをまとめたもの)部分
* frame(speaker icon and name, serief) part
* ★★わしが修正した！！！！！
*/

.sb-type-std {
	overflow: hidden;
	padding: 0px 0px;
	margin: 0;
	line-height: 1.5;
	color: #333333;
}

.sb-type-std > .sb-subtype-a:after,
.sb-type-std > .sb-subtype-b:after,
.sb-type-std > .sb-subtype-c:after,
.sb-type-std > .sb-subtype-d:after {
	display: block;
	clear: both;
	content: "";
}

/**
* .sb-type-TYPE > .sb-subtype-X > .sb-speaker
*
* 話者領域      
* Speaker Field 
*/

@media screen and (min-width:721px) {
.sb-type-std > .sb-subtype-a > .sb-speaker,
.sb-type-std > .sb-subtype-c > .sb-speaker {
	float: left;
	margin-right: -90px;
	width: 90px;
}
}


@media screen and (max-width:720px) {
.sb-type-std > .sb-subtype-a > .sb-speaker,
.sb-type-std > .sb-subtype-c > .sb-speaker {
	float: left;
	margin-right: -60px;
	width: 60px;
}
}






@media screen and (min-width:721px) {
.sb-type-std > .sb-subtype-b > .sb-speaker,
.sb-type-std > .sb-subtype-d > .sb-speaker {
	float: right;
	margin-left: -90px;
	width: 90px;
}
}


@media screen and (max-width:720px) {
.sb-type-std > .sb-subtype-b > .sb-speaker,
.sb-type-std > .sb-subtype-d > .sb-speaker {
	float: right;
	margin-left: -60px;
	width: 60px;
}
}











/**
* .sb-type-TYPE > .sb-subtype-X > .sb-speaker > .sb-icon
*
* 話者のアイコン部分
* Speaker Icon part 
*/






@media screen and (min-width:721px) {
.sb-type-std > .sb-subtype-a > .sb-speaker > .sb-icon,
.sb-type-std > .sb-subtype-b > .sb-speaker > .sb-icon,
.sb-type-std > .sb-subtype-c > .sb-speaker > .sb-icon,
.sb-type-std > .sb-subtype-d > .sb-speaker > .sb-icon  {
	text-align: center;
	height: 90px;
}
}


@media screen and (max-width:720px) {
.sb-type-std > .sb-subtype-a > .sb-speaker > .sb-icon,
.sb-type-std > .sb-subtype-b > .sb-speaker > .sb-icon,
.sb-type-std > .sb-subtype-c > .sb-speaker > .sb-icon,
.sb-type-std > .sb-subtype-d > .sb-speaker > .sb-icon  {
	text-align: center;
	height: 60px;
}
}



@media screen and (min-width:721px) {
.sb-type-std > .sb-subtype-a > .sb-speaker > .sb-icon > img.sb-icon,
.sb-type-std > .sb-subtype-b > .sb-speaker > .sb-icon > img.sb-icon,
.sb-type-std > .sb-subtype-c > .sb-speaker > .sb-icon > img.sb-icon,
.sb-type-std > .sb-subtype-d > .sb-speaker > .sb-icon > img.sb-icon {
	height: 90px;
	width: 90px;
	border-radius: 5px;
	}
}


@media screen and (max-width:720px) {
.sb-type-std > .sb-subtype-a > .sb-speaker > .sb-icon > img.sb-icon,
.sb-type-std > .sb-subtype-b > .sb-speaker > .sb-icon > img.sb-icon,
.sb-type-std > .sb-subtype-c > .sb-speaker > .sb-icon > img.sb-icon,
.sb-type-std > .sb-subtype-d > .sb-speaker > .sb-icon > img.sb-icon {
	height: 60px;
	width: 60px;
	border-radius: 5px;
	}
}








/**
* .sb-type-TYPE > .sb-subtype-X > .sb-speaker > .sb-name
*
* 話者の名称部分   
* Speaker name part
*/


@media screen and (min-width:721px) {
.sb-type-std > .sb-subtype-a > .sb-speaker > .sb-name,
.sb-type-std > .sb-subtype-b > .sb-speaker > .sb-name,
.sb-type-std > .sb-subtype-c > .sb-speaker > .sb-name,
.sb-type-std > .sb-subtype-d > .sb-speaker > .sb-name {
	overflow: hidden;
	text-align: center;
	font-size: 0.65em;
	margin-top: 5px;
}
}


@media screen and (max-width:720px) {
.sb-type-std > .sb-subtype-a > .sb-speaker > .sb-name,
.sb-type-std > .sb-subtype-b > .sb-speaker > .sb-name,
.sb-type-std > .sb-subtype-c > .sb-speaker > .sb-name,
.sb-type-std > .sb-subtype-d > .sb-speaker > .sb-name {
	overflow: hidden;
	text-align: center;
	font-size: 0.65em;
	margin-top: 5px;
}
}






/*----------------------------------------------------------------------------------*/
/* stdタイプの吹き出し                                                              */
/* std Type   (For a,b)                                                             */
/*----------------------------------------------------------------------------------*/

/**
* .sb-type-TYPE > .sb-subtype-X > .sb-content
* .sb-type-TYPE > .sb-subtype-X > .sb-content:befor, :after
*
* セリフ + 引き出し 部分 
* Serief& Tail part    
*/



@media screen and (min-width:721px) {
	.sb-type-std > .sb-subtype-a > .sb-content {
		float: left;
		position: relative;
		margin-left: 100px;
		margin-right: 10px;
	}
}
@media screen and (max-width:720px) {
	.sb-type-std > .sb-subtype-a > .sb-content {
		float: left;
		position: relative;
		margin-left: 65px;
	}
}






.sb-type-std > .sb-subtype-a > .sb-content:before {
	position: absolute;
	top: 19px;
	left: -7px;
	z-index: 1;
	height: 0;
	width: 0;
	border-style: solid solid solid none;
	border-width: 7px;
	border-color: transparent #528e31;
	content: "";
}

.sb-type-std > .sb-subtype-a > .sb-content:after {
	position: absolute;
	top: 20px;
	left: -3px;
	z-index: 3;
	height: 0;
	width: 0;
	border-style: solid solid solid none;
	border-width: 6px;
	border-color: transparent #528e31;
	content: "";
}






@media screen and (min-width:721px) {
	.sb-type-std > .sb-subtype-b > .sb-content {
		float: right;
		position: relative;
		margin-right: 100px;
		margin-left:  10px;
	}
}
@media screen and (max-width:720px) {
	.sb-type-std > .sb-subtype-b > .sb-content {
		float: right;
		position: relative;
		margin-right: 65px;
	}
}





.sb-type-std > .sb-subtype-b > .sb-content:before {
	position: absolute;
	top: 19px;
	right: -7px;
	z-index: 1;
	height: 0;
	width: 0;
	border-style: solid none solid solid;
	border-width: 7px;
	border-color: transparent #528e31;
	content: "";
}

.sb-type-std > .sb-subtype-b > .sb-content:after {
	position: absolute;
	top: 20px;
	right: -3px;
	z-index: 3;
	width: 0;
	height: 0;
	border-style: solid none solid solid;
	border-width: 6px;
	border-color: transparent #528e31;
	content: "";
}





/**
* .sb-type-TYPE > .sb-subtype-X > .sb-content > .sb-speech-bubble
*
* 吹き出しの本体部分      
* Speach bubble' body part
*/



@media screen and (min-width:721px) {
.sb-type-std > .sb-subtype-a > .sb-content > .sb-speech-bubble,
.sb-type-std > .sb-subtype-b > .sb-content > .sb-speech-bubble {
	position: relative;
	padding: 18px 23px;
	z-index: 2;
	background-color: #528e31;
	border-style: solid;
	border-width: 3px;
	border-color: #528e31;
	border-radius: 10px;
	color: #fff;
}
}
@media screen and (max-width:720px) {
.sb-type-std > .sb-subtype-a > .sb-content > .sb-speech-bubble,
.sb-type-std > .sb-subtype-b > .sb-content > .sb-speech-bubble {
	position: relative;
	padding: 10px 15px;
	z-index: 2;
	background-color: #528e31;
	border-style: solid;
	border-width: 3px;
	border-color: #528e31;
	border-radius: 10px;
	color: #fff;
}
}




