.list_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 94%;
	justify-content: flex-start;
	margin: 45px auto;
}

.list_inner {
	margin-top: 70px;
	box-shadow: 0 9px 11px 0 rgb(75 67 67 / 17%);
	margin: 0 auto;
	margin-bottom: 30px;
	display: flex;
}

a.list_inner div {
	width: 100%;
}

.ex_main_img {
	width: 45%;
}

p.date {
	font-size: 0.8em;
	color: #ccc;
	margin: 0;
	padding-left: 20px;
}

p.ex_ttl {
	font-weight: bold;
	padding: 4px 0;
	margin: 0px;
	padding-left: 1em;
	background-color: #FFBB00;
	color: #fff;
	width: 65%;
}

p.ex_area {
	padding-left: .5em;
}

/* detailページ */
h2.d_ttl {
	text-align: center;
}

.ba_bg img {
	width: 94%;
	margin: 35px auto 45px;
	display: flex;
}

.ba_bg {
	width: 100%;
	margin: 0 auto;
	padding: 0px;
	margin-top: 0px;
	position: relative;
}

.ba_bg::before {
	content: '';
	position: absolute;
	bottom: 48%;
	left: 50%;
	border: 50px solid transparent;
	border-top: 20px solid #FF5E5E;
	border-bottom: 0px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.detail_wrap {
	margin: 45px auto;
	width: 100%;
}

.d_date {
	color: #A3A3A3;
}

h1.d_ttl {
	text-align: center;
}

img.detail_img {
	text-align: center;
	display: flex;
	margin: 50px auto;
}

.detail_box {
	margin: 0 auto;
	width: 94%;
}

.d_flex {
	display: flex;
}

.d_flex:last-child {
	border: none;
}

p.d_list {
	margin-bottom: 1px;
	width: 50%;
	background-color: #FFBB00;
	color: #fff;
	margin: 0;
	height: 3em;
	display: flex;
	align-items: center;
	padding-left: 1em;
	font-weight: bold;
	border-bottom: solid 1px #eee;
}

p.d_item {
	width: 50%;
	margin: 0;
	height: 3em;
	display: flex;
	align-items: center;
	padding-left: 1em;
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
}

.d_flex:last-child p.d_item {
	border-bottom: 1px solid #ccc;
}

.d_flex:last-child p.d_list {
	border-bottom: solid 1px #FFBB00;
}

.comment_box {
	border: 2px solid #FFBB00;
	margin: 40px auto;
	padding: 0 15px;
	width: 84%;
}

p.cmt_ttl {
	width: 20%;
	background-color: #FFBB00;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 5px;
	color: #fff;
	font-weight: bold;
}

p.cmt_ttl img {
	padding-right: 14px;
	width: 8%;
}

h1.d_ttl {
	text-align: center;
	color: #000;
	padding-top: 55px;
}

p.cmt_ttl {
	width: 97%;
}

.list_btn {
	color: #fff;
	padding: 18px 55px;
	width: 180px;
	height: 32px;
	margin: 63px auto;
	font-size: 25px;
}

.detail_btn {
	margin-bottom: 45px;
}

/* ページネーション */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	list-style-type: none;
	padding: 0;
	margin: 0 auto;
}

li.prev {
	transform: rotate(180deg);
}

.pagination a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	border-radius: 25px;
	background-color: #f2f2f2;
	color: #ff8400;
}

.pagination a:not(:hover) {
	text-decoration: none;
}

.pagination .current a {
	background-color: #ff8400;
	color: #fff;
	pointer-events: none;
}