@charset "utf-8";
/*.culture {
	padding-top: var(--mg-gap);
}*/
.culture-grid {
	display: flex;
	flex-flow: column;
	gap: var(--mg-gap);
	column-gap: 0;
	margin-bottom: var(--mg);
}
.ci1,
.ci2,
.ci3,
.ci4,
.ci5 {
	height: auto;
	overflow: hidden;
}
.thumbnail {
    position: relative;
}

.photoFit img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
}
.culture-grid dl {
	position: absolute;
	bottom: 0.5rem;
	left: 0.5rem;
	width: calc(100% - 1rem);
}
.culture-grid dt,
.culture-grid dd {
	border: 2px solid #fff;
	padding: 0.25rem 0.5rem;
}
.culture-grid dt {
	display: inline-block;
	font-weight: bold;
	border-bottom: 0px solid var(--txt-col-bk1);
	font-size: 1.125rem;
	background: #000;
	color: #fff;
}
.culture-grid dd {
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	font-size: 0.875rem;
	background: #fff;
	color: var(--txt-col-bk1);
	font-weight: bold;
}
.article-content {
    padding: var(--mg-gap);
}

.article-content {
    display: none; /* 初期状態では非表示 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out; /* アニメーション */
}

.article-content.open {
    display: block;
    max-height: 1000px; /* 記事が完全に開かれる最大高さ */
}
button {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem; 
    margin-left: calc(50% - 60px);
    width: 120px;
    margin-top: 1rem;
}

h2 {
	font-weight: bold;
	font-size: 1.1rem;
	padding-bottom: 0.5rem;
}
h3 {
	font-weight: bold;
	padding: 0.5rem 0;
	font-size: 1rem;
}
strong {
	font-weight: bold;
	/*padding-right: 1rem;*/
}
.h2class {
	color: var(--txt-col-bk1);
	line-height: 1;
	font-size: 2rem;
	font-family: Century Gothic, Futura, Arial, Helvetica, sans-serif;
}