@charset "UTF-8";

/*画像の背景に四角*/

#left+section .inner_item_img,
#right+section .inner_item_img{
	position: relative;
}
#left+section .inner_item_img::before{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #f0f3f7;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
  bottom: -20px;
  left: -30px;
}
#right+section .inner_item_img::before{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #e3e8f0;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
  bottom: -20px;
  right: -30px;
}
@media screen and (max-width: 900px){
	#left+section .inner_item_img::before{
		bottom: -10px;
  		left: -15px;
	}
	#right+section .inner_item_img::before{
		bottom: -10px;
		right: -15px;
	}
}

/*SP時、文章左寄せに変更*/
@media screen and (max-width: 900px){
	#text_center+section .inner_item_txt p{
		text-align: left!important;
	}
}