.newspost_acv{}







.newspost{
	padding: 8% 0;
	max-width: 900px;
	margin: 0 auto 5em
}


.newspost_header{
	padding: 2em 0;
	text-align: center;
/* 	margin:0 auto clamp(40px, 5vw, 60px); */
	font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2rem);
	font-weight: 700;
	position: relative
}


.newspost_header h1{
	position: relative;
	z-index: 100;
	font-size: clamp(1.5rem, 4vw, 2rem);
	letter-spacing: 0.08em
}

.newspost_header span{
	font-size: .8em;
	color: var(--color-main);
	position: relative;
	display: block;
	z-index: 100;
	margin-bottom: 1em
}


h2.tagtitle{
	text-align: center;
}


.newspost_acv ul.newslist{
	margin: 0 auto 5em;
	max-width: 900px;
	
}


ul.newslist li{
	display: flex;
	gap:20px;
	border-top: solid 1px #ccc;
	padding: 1.5em 0;
}

ul.newslist li figure{
	flex:1
}

ul.newslist li figure img{
	border-radius: 5px;
	position: relative;
	box-shadow: 1px 1px 6px #ccc;
}

ul.newslist li div{
	flex: 2.5
}

@media screen and (max-width: 767px) {}	

@media print, screen and (min-width: 768px) {
	ul.newslist li{padding: 2em 1em;}
}	

@media print, screen and (min-width: 1024px) {}	

.back{margin: 0 auto;
	max-width: 400px;
}

.back a{
	background: #000;
	color: #fff;
	display: block;
	text-align: center;
	padding: .5em;
	border-radius: 5px;
	position: relative;
	
}

.interview{
	text-align: center;
	background-color: var(--bg-color-main);
	padding: clamp(40px, 5vw, 80px) 0;
}

.interview h2{
	margin: 0 0 1.5em
}

.iv_wrap {
    display: flex;       /* 横並びにする */
    flex-wrap: wrap;     /* 画面幅が狭い時に折り返す */
    gap: 20px;          /* 動画間の隙間（お好みで調整） */
    justify-content: center; /* 中央寄せ（お好みで） */
}

.mvbox {
    flex: 1;             /* 幅を均等にする */
    min-width: 300px;    /* スマホなどで小さくなりすぎないための最小幅 */
    max-width: 640px;    /* 元の動画サイズ以上に広げない設定 */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9のアスペクト比を維持 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

