
/*

全体として下記の構造

<表示全体の親>
	<個別ブロックの親>
		<個別ブロック>
	</個別ブロックの親>
	<右に移動ボタン>
	<左に移動ボタン>
</表示全体の親>
*/


/*基本の設定*/

#news_text_block_outline {
  position: relative;
}


#news_text_block {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

#news_text_block ._text_block {
	box-sizing: border-box;
	max-width: 350px;
	width: 80%;
	height: 100%;
	margin: 0px;
	padding: 20px;
  border:1px solid #d7d7d7;
}

/*左右ボタン*/

._text_block_right {
  display: none;
  position: absolute;
  top: calc(50% - 20px);
  right: -20px;
  overflow: hidden;
  margin: 0;
  padding-top: 40px;
  height: 0 !important;
  line-height: 250%;
  width: 40px;
  background-color: #000000;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

._text_block_right::after {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  left: 11px;
  width: 10px;
  height: 10px;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  transform: rotate(45deg);
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

._text_block_right:hover::after {
	opacity: 0.8;
}


._text_block_left {
  display: none;
  position: absolute;
  top: calc(50% - 20px);
  left: -20px;
  overflow: hidden;
  margin: 0;
  padding-top: 40px;
  height: 0 !important;
  line-height: 250%;
  width: 40px;
  background-color: #000000;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

._text_block_left::after {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(-45deg);
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

._text_block_left:hover::after {
	opacity: 0.8;
}

/*消す*/




/*その都度変わる設定*/

#news_text_block h2 {
display: block;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}


.outbox{
position: relative;
margin: 0px auto;
padding: 0px 0px 0px 0px;
width: calc(100% - 30px);
max-width: 1100px;
}






