@charset "UTF-8";
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
@media screen and (max-width: 767px) {
	.heading_ja_2 {
		font-size: 1.75rem;
	}

	.subpage .heading_en_1 {
		font-size: 1.9rem;
	}
}


/*--------------------------------------------------
  一覧ページ
--------------------------------------------------*/
.term_name { /* タクソノミー一覧ページでのタームネーム */
	margin-top: 50px;
	font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
	.term_name {
		margin-top: 30px;
	}
}

.archive > li {
	display: flex;
	gap: 60px;
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	.archive > li {
		position: relative;
		flex-direction: column-reverse;
		gap: 30px;
		margin-top: 20px;
		padding-bottom: 40px;
	}

	.archive > li::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		display: block;
		width: 100%;
		height: 1px;
		background-color: #A9A9A9;
	}
}

.archive > li .thumb,
.archive > li .text {
	width: 570px;
}
@media screen and (max-width: 767px) {
	.archive > li .thumb,
	.archive > li .text {
		width: 100%;
	}
}

.archive > li .thumb img {
	width: 570px;
	height: auto;
}
@media screen and (max-width: 767px) {
	.archive > li .thumb img {
		width: 100%;
	}
}

.archive > li .text .date {
	padding: 15px 0 15px 60px;
	background: url(../imgs/activity/icon_takeda.png) no-repeat left center / 50px;
}
@media screen and (max-width: 767px) {
	.archive > li .text .date {
		font-size: 1.15rem;
	}
}

.archive > li .text .title {
	margin-top: 15px;
	font-size: 1.25rem;
	font-weight: 500;
}

.archive > li .text .lead {
	margin-top: 5px;
}

.archive > li .text .category {
	margin-top: 15px;
}

.archive > li .text .category span {
	display: inline-block;
	margin-right: 15px;
	font-size: 0.85rem;
}

.archive > li .text .category span::before {
	content: '#';
}

.archive > li .text .link_btn_box {
	margin-top: 15px;
}

.archive > li .text .link_btn_box a {
	width: 160px;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 60px;
}

.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
	width: 40px;
	height: 40px;
	background-color: #00b9ff;
	border: #00b9ff 2px solid;
	border-radius: 50%;
	text-align: center;
	font-size: 1.25rem;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.wp-pagenavi .current,
	.wp-pagenavi .page,
	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .previouspostslink {
		line-height: 2;
	}
}

.wp-pagenavi .current,
.wp-pagenavi .page:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
	background-color: #fff;
	color: #00b9ff;
}


/*--------------------------------------------------
  詳細ページ
--------------------------------------------------*/
.single .date {
	margin-top: 40px;
	padding: 15px 0 15px 60px;
	background: url(../imgs/activity/icon_takeda.png) no-repeat left center / 50px;
}
@media screen and (max-width: 767px) {
	.single .date {
		margin-top: 20px;
		font-size: 1.15rem;
	}
}

.single .category {
	margin-top: 15px;
}

.single .category span {
	display: inline-block;
	margin-right: 15px;
	font-size: 0.85rem;
}

.single .category span::before {
	content: '#';
}

.single .title {
	margin-top: 10px;
	font-size: 1.75rem;
}

.single .content {
	margin-top: 40px;
}

.single .thumb {
	margin-top: 40px;
}

.single .link_btn_box {
	margin-top: 60px;
	text-align: center;
}




footer {
	position: relative;
}

footer::after {
	content: '';
	position: absolute;
	left: 0;
	top: -280px;
	z-index: -1;
	display: block;
	width: 100%;
	height: 280px;
	background: url(../imgs/top/bg_profile.png) no-repeat top center / 100%;
}
@media screen and (max-width: 767px) {
	footer::after {
		display: none;
	}
}

