.media {/* ___sp___ */
	display: flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
	transition: color .3s;
    align-items: flex-start;
}
.media__thumb {
	display: flex;
    position: relative;
    transition: .3s;
	width: 135px;
    height: 135px;
    margin-right: 20px;
	flex-shrink: 0;
    background-color: #007BCE;
}
.media__thumb img{
	width: 135px;
    height: auto;
    object-fit: contain;
    align-items: center;
}
.media__body {
	flex-grow: 1;
    padding-right: 10px;
}
.media__catch {
	display: block;
    border-left: 4px solid #F4D03F;
    padding-left: 3px;
    font-size: 1.0rem;
    font-weight: 550;
    line-height: 1.25;
    text-align: left;
}
.media__txt {
	margin-top: 10px;
	font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}
/*hover*/
.media:hover {
	color: #007BCE;
}
.media:hover .card__thumb {
	opacity: 0.7;
}

/* ____　PC　____ */
@media screen and (min-width: 768px) {
.media {/* ___PC___ */
	display: flex;
	align-items: center;
	padding: 15px 0;
	color: inherit;
	text-decoration: none;
	transition: color .3s;
    align-items: flex-start;
}
.media__thumb {
	display: flex;
    position: relative;
    transition: .3s;
	width: 150px;
    height: 150px;
    margin-right: 13px;
	flex-shrink: 0;
    background-color: #007BCE;
}
.media__thumb img{
	width: 150px;
    height: auto;
    object-fit: contain;
    align-items: center;
}
.media__body {
	flex-grow: 1;
	font-size: 14px;
}
.media__catch {
	display: block;
    border-left: 4px solid #F4D03F;
    padding-left: 3px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}
.media__txt {
	margin-top: 10px;
	font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}
/*hover*/
.media:hover {
	color: #007BCE;
}
.media:hover .card__thumb {
	opacity: 0.7;
}
}