@charset "utf-8";

/* **************************************************

  specialmovie
	
************************************************** */

/* ==============================
	カードグリッド
============================== */
.card-grid {
	display: grid;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}

/* ==============================
	カード本体
============================== */
.card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ==============================
	バナー部分（上部画像エリア）
============================== */
.card__banner {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ==============================
	テキスト部分
============================== */
.card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.card__title {
	font-size: 15px;
	font-weight: 700;
	color: #012b7c;
	line-height: 1.5;
	margin-bottom: 8px;
}

.card__company {
	font-size: 13px;
	color: #333;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
}

.card__desc {
	font-size: 13px;
	color: #7385ad;
	line-height: 1.75;
}

/* ==============================
	レスポンシブ（モバイルファースト）
============================== */
/* デフォルト: 2カラム（〜1023px） */
.card-grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* PC: 4カラム（1024px〜） */
@media screen and (min-width: 1024px) {
	.card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


@media screen and (min-width:768px) {
#about .title { font-size: 28px; }
#about .txt1 { font-size: 14px; }
}