@charset "UTF-8";

.chat-text a{
	color: #FC4242;
	text-decoration: underline;
}


/*チャプターメニューのスタイル*/
.chapterMenu{
	width:400px;
	margin-left: auto;
	margin-right: auto;
	border:2px solid var(--buttonColor);
	border-left:10px solid var(--buttonColor);
	margin-bottom: 5px;
	color: #000000;
	line-height: 35px;
	font-size: 18px;
}

.chapterMenu li{
	text-decoration: none;
	color: #000000;
	padding-left: 80px;
	text-align: left;
}


/*各人物のチャット画面のスタイル*/
/*——————–吹き出しを作る——————–*/
/* 全体のスタイル */
.chat{
  margin-bottom: 25px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* 左画像 */
.chat-img-left {
  margin: 0;
  float: left;
  width: 60px;
  height: 60px;
  margin-right: -70px;
}
/* 右画像 */
.chat-img-right {
  margin: 0;
  float: right;
  width: 60px;
  height: 60px;
  margin-left: -70px;
}
.chat figure img {
  width: 100%;
  height: 100%;
}
/* 画像の下のテキスト */
.chat-name {
  margin-top: 7px;
  padding: 5px 0 0;
  font-size: 10px;
  text-align: center;
  position: relative;
  bottom: 15px;
}
/* 左からの吹き出しテキスト */
.chat-text-right {
  position: relative;
  margin-left: 80px;
  padding: 10px;
  border-radius: 10px;
  background: #eee;
  margin-right: 12%;
  float: left;
}
/* 右からの吹き出しテキスト */
.chat-text-left {
  position: relative;
  margin-right: 80px;
  padding: 10px;
  border-radius: 10px;
  background-color: #9cd6e7;
  margin-left: 12%;
  float: right;
}
p.chat-text {
  margin: 0 0 20px;
}
p.chat-text:last-child {
  margin-bottom: 0;
}
/* 左の三角形を作る */
.chat-text-right:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  left: -20px;
}
.chat-text-right:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #eee;
  top: 15px;
  left: -19px;
}
/* 右の三角形を作る */
.chat-text-left:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  right: -20px;
}
.chat-text-left:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-left: 10px solid #9cd6e7;
  top: 15px;
  right: -19px;
}
/* 回り込み解除 */
.chat:after,.chat:before {
  clear: both;
  content: "";
  display: block;
}



@media screen and (max-width:1000px){
	.chapterMenu{
		width:270px;
	}
	
	.chapterMenu li{
		padding-left: 20px;
	}
	
	.chat{
		margin-bottom: 25px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	/* 左画像 */
	.chat-img-left {
		width: 15%;
		max-width: 60px;
		height: 15%;
		max-height: 60px;
	}
	/* 右画像 */
	.chat-img-right {
		width: 15%;
		max-width: 60px;
		height: 15%;
		max-height: 60px;
	}
	
}
