@charset "utf-8";
/* =========================
   MEDIA COVERAGE 専用CSS
   ========================= */

/* タイトル周り */
#MEDIA {
  max-width: 1200px;
  width: 100%;
	margin:40px auto 0;
}

#MEDIA H1 {
    text-align: center;
    font-size: xx-large;
    font-weight: 300;
    padding: 30px;
    background-color: #F1F6EB;
}
#MEDIA .page-subtitle {
	text-align: center;
	color: #555;
	margin-bottom: 40px;
	font-size: 14px;
}
#MEDIA .intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 14px;
	line-height: 1.7;
	color: #444;
}
/* レイアウト */
#MEDIA .container {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 40px;
}
#MEDIA .item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	padding: 16px;
	flex: 1 1 calc(33.333% - 24px);
	box-sizing: border-box;
	transition: transform .3s ease, box-shadow .3s ease;
}

/* PCのみhover */
@media (hover:hover) {
#MEDIA .item:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
}

/* タブレット */
@media (max-width: 900px) {
#MEDIA .item {
	flex: 1 1 calc(50% - 24px);
}
}

/* スマホ */
@media (max-width: 640px) {
#MEDIA .item {
	flex: 1 1 100%;
}
/* Facebookレスポンシブ修正 */
#MEDIA .fb-post,  #MEDIA .fb-post > span,  #MEDIA .fb-post iframe {
	width: 100% !important;
	max-width: 100% !important;
}
}
/* ラベル */
#MEDIA .label {
	font-size: 16px;
	font-weight: bold;
	color: #444;
	margin-bottom: 4px;
}
#MEDIA .label .date {
	display: block;
	font-size: 12px;
	font-weight: normal;
	color: #777;
	margin-top: 4px;
}
/* テキスト */
#MEDIA .news-title {
	margin: 0 0 6px;
	font-size: 16px;
}
#MEDIA .subtitle {
	font-size: 13px;
	color: #666;
	margin-bottom: 10px;
}
#MEDIA .news-text {
	font-size: 13px;
	line-height: 1.6;
	color: #444;
}
/* 画像 */
#MEDIA .news-photo {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 10px;
}
/* YouTube */
#MEDIA iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
	border-radius: 8px;
}
/* Xの余白リセット */
#MEDIA .twitter-tweet {
	margin: 0 !important;
}
/* リンクカード */
#MEDIA .link-card {
	display: block;
	padding: 18px;
	text-decoration: none;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	color: #333;
	background: #fafafa;
	transition: background .2s ease;
}
#MEDIA .link-card:hover {
	background: #f0f0f0;
}
#MEDIA .link-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
}
#MEDIA .link-card span {
	display: inline-block;
	margin-top: 10px;
	color: #0366d6;
	font-weight: bold;
}
