@charset "utf-8";
/* CSS Document */


/* 2018/03/06 追記*/

.topics {
	border:1px solid #ddd;
	padding: 5px; border-radius: 10px;
}

.topics h2 {
	border-bottom:1px solid #d93f38;
}

.topics dd {
	border-bottom: 1px solid #c1c1c1;
}




/* トピックのカテゴリ表示 */

p[class*="category"] {
	display:inline-block;
	float:right;
	margin:0 0 0 auto;
	padding:5px 10px;
	font-size:0.8em;
	text-align:center;
	border-radius:5px;
}

.category-broad {
	background:#007bff;
}

.category-lecture {
	background:#dc3545;
}

.category-event {
	background:#28a745;
}

.category-sports {
	background:#fd7e14;
}

.category-medical {
	background:#fd7e14;
}



/* font-awsome */
i {
	padding:0 5px;
}
}




/* share-contents */

.share_space {
	display:inline-block;
	background: url(http://www.dartfish.co.jp/cases/common/sns_sharebg.png) no-repeat center;
	margin:10px auto;
	height:200px;
	width:100%;
	text-align:center!important;
}

.share_wrap {
	display: table!important;
	margin: 15px auto!important;
}

.share_space > * {
	vertical-align: bottom;
}


.recommend_share {
	color:#fff;
	text-shadow:1px 1px 3px #000;
	font-size:1.5em;
	font-weight:bold;
	text-align: center;
	margin:8vh auto 0;
}

.fb-like,
.line-it-button,
.twitter-share-button {
	display: inline-block!important;
	margin:0 5px!important;
}



/*--NEW--*/
/*new!*/
.new_content {
	color:red;
	font-weight:bold;
	display:inline-block;
	animation-iteration-count: infinite;
	animation-duration: 1s;
	animation-name: pulse;
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50%{
    transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/*--news--*/

.news_list ul {
	padding:0;
}

.news_list li {
	list-style: none;
	box-sizing: border-box;
	margin: 25px 0
}

.news_list li p {
	font-size: 1.4rem;



}

.news_list li a {
	color:#ce2c13;
	text-decoration:none;
}


.news_list h4 {
	font-weight: bold;

}

.news_year {
	text-align: center;
}

.news_list .news_day {
	font-weight: bold;
	font-size:1.3rem;
	padding:0 0 0 10px;
}

.news_link {
	text-align: center;
}


.category_all,
.category_info,
.category_cases,
.category_support,
.category_event,
.category_year {
	padding: 3px 30px;
	font-size: 1.3rem;
	text-align: center;
	color:#fff;
	width:100%;
}

.sort_category {
	padding: 5px;
	background:#eaeaea;
	border-radius: 5px;
	margin:10px 0;
	box-shadow: 2px 2px 1px 1px #e0e0e0;
}

.sort_category ul{
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin:0;
}

.sort_category ul li {
	width: calc(100%/3);
}

.sort_category ul li .category_all,
.sort_category ul li .category_info,
.sort_category ul li .category_cases,
.sort_category ul li .category_support,
.sort_category ul li .category_event,
.sort_category ul li .category_year {
	padding: 15px 10px;

}



.category_all{
	background:#6f6f6f;
}

.category_info {
	background:#6088C6;
}

.category_cases {
	background:#8CD790;
}

.category_support {
	background:#EE817B;
}

.category_event {
	background:#F17816;
}

.category_year,
.category_year:hover {
	background:#000;
	text-decoration:none!important;
}

/* news responsive PARTS */

@media screen and (min-width:0px) and ( max-width:640px) {
.news_list h4 {
	display: block;
	margin:10px 0;
}
}

@media screen and (min-width:641px) and ( max-width:1024px) {
.news_list h4 {
	display: block;
	margin: 10px 0;
}
}

@media screen and (min-width:1025px) {

.news_list h4 {
	display: inline;
	margin: 0 0 0 10px;
}

.news_content {
	padding-left: 225px;
	  animation-duration: 3s;
}

}



/* fadein関連
------------------------*/
/* 画面外にいる状態 */
.fadein {
    opacity : 0.1;
    transform : translate(0px, 50px);
    transition : all 500ms;
    }

.fadein_right {
    opacity : 0.1;
    transform : translate(50px, 0px);
    transition : all 500ms;
    }

 .fadein_left {
    opacity : 0.1;
    transform : translate(-50px, 0px);
    transition : all 500ms;
    }


/* 画面内に入った状態 */
.fadein.scrollin,
.fadein_right.scrollin,
.fadein_left.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }
