@charset "utf-8";

.catcenter h3 {
	color: var(--color-org);
}

.catcenter p {
	font-weight: var(--fw-bold);
	padding-bottom: 40px;
}

.message_sec {
	background: var(--color-org);
	padding: 40px 0;
	margin-bottom: 80px;
}

.message_sec .whboard {
	background: var(--color-wh);
	padding: 40px;
	border-radius: 10px;
}

.message_sec .whboard figure {
	float: left;
	width: min(210px, 20vw);
	margin: 0 20px 10px 0;
}
.message_sec .whboard figure img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.message_sec .post {
	font-size: var(--fz-15);
	font-weight: var(--fw-bold);
	padding-bottom: 0;
}

.message_sec .name {
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	padding-bottom: 0;
	margin-bottom: 30px;
	line-height: 1.4;
}

.message_sec .content p {
	font-size: var(--fz-16);
	line-height: 2;
	text-align: justify;
}

.message_sec p:last-child {
	padding-bottom: 0;
}

.csection h3::before {
	background: var(--color-org);
}

.cbox h4 {
	color: var(--color-org);
}






.aniv-slider .splide__list {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.aniv-slider .voice-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.aniv-slider .voice-card figure {
	width: 100%;
	margin: 0;
}
.aniv-slider .voice-card figure img {
	border-radius: 10px;
}


.aniv-slider .voice-card .body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.aniv-slider .voice-card .name {
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	margin-bottom: 5px;
	padding-bottom: 0;
	text-align: center;
	margin-top: 10px;
}
.aniv-slider .voice-card .name.left {
	text-align: left;
}

.aniv-slider .voice-card .name span {
	font-size: var(--fz-14);
	font-weight: var(--fw-medium);
	display: block;
}


.aniv-slider .voice-card .comp {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
	margin-bottom: 15px;
	padding-bottom: 0;
}

/* 白いテキストボックス */
.aniv-slider .voice-card .biography {
	flex: 1;
	position: relative;
	border-top: 1px solid var(--color-org);
	border-bottom: 1px solid var(--color-org);
	padding: 10px 0;
}

.aniv-slider .voice-card .biography p {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
	line-height: 1.8;
	padding-bottom: 0;
}

.cbox .otherlink {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	text-align: center;
	padding: 40px 0 0 0;
}
.cbox .otherlink a {
	text-decoration: none;
}


.doneelist {
	background: var(--color-org);
	color: var(--color-wh);
	text-align: center;
	border-radius: 15px;
	padding: 60px;
	margin-top: 40px;
}

.doneelist .tit {
	font-size: var(--fz-24);
}

.doneelist p:last-child {
	padding-bottom: 0;
}




/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* スマホ用 */
@media (max-width:769px) {

.message_sec .whboard {
	padding: 0;
}

.message_sec .whboard figure {
	width: 50%; 
	margin: 0 15px 10px 0;
}
.message_sec .whboard figure img {
	border-radius: 10px 0 10px 0;
}

.message_sec .post {
	padding-top: 20px;
}
.message_sec .name {
	margin-bottom: 10px;
}
.message_sec .content {
	padding: 10px;
}
.message_sec .content p {
	line-height: 1.6;
}



.aniv-slider .splide__track {
	/* 水平スワイプを優先し、垂直方向の意図しないガタつきを抑える */
	touch-action: pan-y; 
	-webkit-overflow-scrolling: touch;
}

.aniv-slider {
	position: relative;
	overflow: hidden; /* 突き出した矢印による横スクロールもこれで防止 */
}

.aniv-slider.splide.is-initialized .splide__list {
	display: flex !important;
	gap: 0 !important;
}

.aniv-slider .splide__slide {
	width: 100% !important;
	padding: 0 10px; /* カード間の余白 */
	flex-shrink: 0;
}

.aniv-slider .splide__arrows {
	position: absolute;
	top: 140px; /* 垂直方向の中央 */
	left: 0;
	right: 0;
/*	transform: translateY(-50%);  自身の高さの半分戻して真ん中に */
	width: 100%;
	z-index: 10;
	pointer-events: none; /* 下のカードの操作を邪魔しない */
	display: block; /* 念のためdisplayを確保 */
}

.aniv-slider .splide__arrow {
	position: absolute;
	top: 0; /* 親の中央（top:50%）を起点にする */
	width: 40px;
	height: 40px;
	opacity: 1;
	border: none;
	pointer-events: auto; /* ボタンとしてのクリックを有効化 */
	transform: none; /* 余計な移動をリセット */
}

/* 矢印（Arrows）の画像を差し替え・位置調整 */
.aniv-slider .splide__arrow--prev {
	left: 10px;
	background: url('../../images/common/arrow_prev.svg') no-repeat center / contain !important;
}
.aniv-slider .splide__arrow--next {
	right: 10px;
	background: url('../../images/common/arrow_next.svg') no-repeat center / contain !important;
}

/* 標準の矢印（>）を消して画像のみにする */
.aniv-slider .splide__arrow svg {
	display: none;
}




}