/* **************************
   Column一覧
************************** */

.columnList {
	max-width: 960px;
	margin: 0 auto;
	/* いろんなところで使っているので、.columnListにmarginやpaddingを設定する時は注意すること */
}

.columnList_item {
	border-top: 1px solid #707070;
}

/* MoreArticleで追加で読み込むと、first-childが増えるので、直下のfirst-childに絞る */
.columnList > .columnList_item:first-child {
	border-top: none;
}

.columnList_link {
	text-decoration: none;
	position: relative;/* hoverのbeforeの起点 */
	display: block;
	padding: 31px 60px;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
			align-items: center;
	color: inherit;
	/*transition: color 0.3s ease;*/
	-webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.columnList_link:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #111;
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.columnList_link img {
	opacity: .6;
}

.column_textBlock {
	padding: 0 0 7px;/* デザインで、textBlockは垂直中央より若干上なので調整 */
}

.column_imageBlock {
	width: 180px;
	margin-right: 70px;
	-webkit-box-flex:0;
        -ms-flex:none;
            flex:none;
}

.column_tagList {
	font-size: 13px;
}

.column_title {
	font-weight: normal;
	font-size: 18px;
	margin-top: 16px;
	line-height: 1.3;
	-webkit-font-feature-settings : "pwid";
			font-feature-settings : "pwid";
	letter-spacing: .1em;
}

.column-section-link {
	/*margin-top: 40px;*/
	margin-top: 14px;/* トップページのニュース一覧での値 */
}

@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, .column_imageBlock .circleImage {
		display: block;
	}
}

/* hover */

body:not(.isTouch) .columnList_link:hover:before {
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

body:not(.isTouch) .columnList_link:hover {
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}

body:not(.isTouch) .columnList_link:hover img{
	opacity: 1;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* in view animation */

.columnList_item {
	opacity: 0;
	transform: translateY(10px);
	transition-property: all;
	transition-duration: .4s;
	/*easeInOutCubic*/
	-webkit-transition-timing-function : cubic-bezier(0.645, 0.045, 0.355, 1);
         -o-transition-timing-function : cubic-bezier(0.645, 0.045, 0.355, 1);
            transition-timing-function : cubic-bezier(0.645, 0.045, 0.355, 1);
}

.columnList_item.inView {
	opacity: 1;
	transform: translateY(0);
}

/* スマホ */
@media (max-width: 767px) {

	.columnList_link {
		text-decoration: none;
		position: relative;/* hoverのbeforeの起点 */
		display: block;
		padding: 5% 1%;
		display: flex;
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
				align-items: center;
		color: inherit;
	}

	.column_textBlock {
		width:70%;
		padding: 0 0 7px;/* デザインで、textBlockは垂直中央より若干上なので調整 */
	}

	.column_imageBlock {
		width: 25%;
		margin-right: 5%;
	}


}

/* より小さいスマホ */
@media (max-width: 480px) {

	.columnList_link {
		padding: 25px 0;
	}

	.column_tagList {
		font-size: 9px;
	}

	.column_title {
		font-weight: normal;
		font-size: 13px;
		margin-top: 6px;
		line-height: 1.6;
	}
}
