/*------------------------------------*/
/* ブログカード */
/*------------------------------------*/
.cp_card04 {
  width: 200px;
	overflow: hidden;
	border-radius: 3px;
	margin-top: 0rem;
	margin-bottom: 0rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
					transition: all 0.25s ease-in;
				  border-bottom: 5px solid transparent;
}
.cp_card04 .photo {
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  user-select: none;
}
.cp_card04:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: none;
  border-bottom: 5px solid #00BCD4;
}
.cp_card04 .details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  /*padding: 1em 1em 0 1em;*/
	padding: 5px;
	font-size: 0.8em;
}
.cp_card04 .date {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: right;
}
.cp_card04 .category {
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
}
.cp_card04 .category p {
	font-size: 0.8em;
	padding: 3px 8px;
	cursor: pointer;
	width: 8em;
	margin: 0;
	border-radius: 10px;
	background: #00BCD4;
	text-align: center;
	color: #ffffff;
	user-select: none;
}
.cp_card04 .description {
  /*padding: 0 1em;*/
	padding: 5px;
	user-select: none;
}

.cp_card04 .description .text p {
	margin: 0;
  /*font-size: 4px;*/
  font-size: 12px;
  user-select: none;
}
.cp_card04 .description .text .text_right p.text_plus {
	color: green;
}
.cp_card04 .description .text .text_right p.text_minus {
	color: red;
}



.text_right, .text_left {
  float: left;
  width: 50%;  /** 横幅50% **/
}

.cp_card04 a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100%;
  display: flex;
}

.cp_card04_more {
	height:100%;
  	justify-content: center;
  	align-items: center;
	color: #d7d7d7;
}

.cp_card04_more:hover {
	color: #7a7a7a;
  }

.cp_card04_more_text {
	font-weight: bold;
}

.border {
	width: calc(100% - 10px) ;
	height: calc(100% - 10px + 5px) ;	/* +5pxはホバー時の余白部を計算している */
	margin: 5px 5px 5px 5px;
	border: 1px solid #e4e4e4;
	display: flex;
  	justify-content: center;
  	align-items: center;
	border-radius: 10px;
}

/*------------------------------------*/
/* 横スクロール*/
/*------------------------------------*/

ul.horizontal_scroll  {
  list-style: none;
}
.horizontal_scroll {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 12px 8px;
  display: -ms-flexbox;
  display: flex; }

.horizontal_scroll > li {
  width: 100%;
  min-width: 200px; }

.horizontal_scroll > li:not(:last-child) {
  margin-right: 5px; }

.horizontal_scroll > li:last-child {
  padding-right: 5px; }

.horizontal_scroll img {
  vertical-align: bottom; }

/*------------------------------------*/
/* 広告*/
/*------------------------------------*/
.div_pc {
    display: block;
}
.div_mobile {
    display: none;
}
@media screen and (max-width: 480px) {
    .div_pc {
        display: none;
    }
    .div_mobile {
        display: block;
    }
}