@charset "utf-8";

/* Webフォント
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400..500&family=Shippori+Mincho:wght@500&family=Zen+Kurenaido&display=swap');
/*
* "Roboto" licensed under the SIL Open Font License.
* https://fonts.google.com/specimen/Roboto
* https://openfontlicense.org/open-font-license-official-text/
* https://openfontlicense.org/
*/
/*
* "Shippori Mincho" licensed under the SIL Open Font License.
* https://fonts.google.com/specimen/Shippori+Mincho
* https://openfontlicense.org/open-font-license-official-text/
* https://openfontlicense.org/
*/
/*
* "Zen Kurenaido" licensed under the SIL Open Font License.
* https://fonts.google.com/specimen/Zen+Kurenaido
* https://openfontlicense.org/open-font-license-official-text/
* https://openfontlicense.org/
*/

/* ステラスreset
======================================== */
table {
	border-collapse: collapse;
}
dt, th {
	font-weight: normal !important;
}
em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (max-width: 320px) {
	html { font-size: 93.3%; }
}
img {
	width: 100%;
}

/* サイト共通
======================================== */
body {
	font-size: clamp(0.938rem, 0.914rem + 0.1vw, 1rem); /*15px - 16px*/
	font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	color: #000;
	width: 100%;
}
#contentsArea {
	padding-bottom: 120px;
}
section {
	padding-top: 80px;
}
section.bg {
	background: #f6f6f6;
	margin-top: 80px;
	padding-bottom: 100px;
}
.wrap {
	width: min(86%, 1140px);
	margin: 0 auto;
	}
	@media screen and (max-width:1024px) {
	#contentsArea {
		padding-bottom: 80px;
	}
	section {
		padding-top: 50px;
	}
	section.bg {
		margin-top: 50px;
		padding-bottom: 65px;
	}
	.wrap {
		width: 86%;
	}
}

/* 空のpタグを非表示（WP用）
------------------------------------------------- */
body.page p:empty{display: none;}

/* 見出し
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	min-height: 0vw; /*safari対応*/
	margin: 1.4em 0 0.8em;
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	font-style: normal;
}
h2 { 
	display: flex;
	align-items: center;
	font-size: clamp(1.688rem, 1.283rem + 1.73vw, 2.75rem); /* 27px-44px */
}
h2.noIcon {
	padding-left: 0;
	min-height: auto;
}
h2.noIcon::before {
	display: none;
	background: none;
}
section h2:first-of-type {
	margin-top: 0;
}
h3 { 
	font-size: clamp(1.25rem, 1.107rem + 0.61vw, 1.625rem); /* 20px-26px */
}

/* テキスト
------------------------------------------------- */
p, table, dl, ul, ol {
	line-height: 1.75;
}
p {
	margin-top: 1em;
}
.txtC {
	text-align: center;
}
.txtR {
	text-align: right;
}


/* header
======================================== */
header {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	background: #fff;
	height: 132px;
	z-index: 1000;
	padding-bottom: 10px;
}
header .wrap {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 2%;
}
header h1 {
	margin: 0;
	width: 345px;
	margin-left: min(0.97vw, 2rem);
}
header h1 a {
	display: block;
}
header nav {
	margin-left: auto;
}
header nav a {
	text-decoration: none;
	}
	@media screen and (max-width:1400px) {
	header {
		height: 105px;
		padding-bottom: 0;
	}
	}
	@media screen and (max-width:1024px) {
	header {
		height: 60px;
	}
	header .wrap {
		margin: 0;
	}
	header h1 {
		width: 200px;
		margin-left: 10px;
		line-height: 0;
	}
	}
	@media screen and (max-width:320px) {
		header h1 {
		width: 200px;
	}
}

/* ハンバーガーメニュー
------------------------------------------------- */
.openbtn1 {
	display: none;
	}
	@media screen and (max-width:1400px) {
	.openbtn1{
		display: block;
		position: relative;
		cursor: pointer;
		width: 55px;
		height: 55px;
		margin-left: auto;
		z-index: 9999;
	}
	.openbtn1::before {
		display: block;
		content: "MENU";
		position: absolute;
		bottom: -4px;
		left: 0;
		right: 0;
		margin: 0 auto;
		font-size: clamp(0.625rem, 0.554rem + 0.3vw, 0.813rem); /* 10px-13px */
		font-family: "Roboto", sans-serif;
		font-weight: 400;
		letter-spacing: 0.05em;
		text-align: center;
	}
	.openbtn1 span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		height: 3px;
		background: #252525;
		width: 100%;
	}
	.openbtn1 span:nth-of-type(1) {
		top: 7px; 
	}
	.openbtn1 span:nth-of-type(2) {
		bottom: 25px;
	}
	.openbtn1.active span {
		background: #fff;
	}
	.openbtn1.active span:nth-child(1) {
		transform: translateY(10px) rotate(30deg);
	}
	.openbtn1.active span:nth-child(2) {
		transform: translateY(-10px) rotate(-30deg);
	}
	.openbtn1.active::before {
		content: "CLOSE";
		color: #fff;
	}
	}
	@media screen and (max-width:1024px) {
	.openbtn1{
		width: 38px;
		height: 38px;
		right: 10px;
	}
	.openbtn1::before {
		bottom: -1px;
	}
	.openbtn1 span {
		height: 3px;
	}
	.openbtn1 span:nth-of-type(1) {
		top: 5px; 
	}
	.openbtn1 span:nth-of-type(2) {
		bottom: 18px;
	}
	.openbtn1.active span:nth-child(1) {
		transform: translateY(6px) rotate(30deg);
	}
	.openbtn1.active span:nth-child(2) {
		transform: translateY(-6px) rotate(-30deg);
	}
}


/* navi_b
======================================== */
#g-nav {
	position: relative;
	z-index: 999;
	/*height: 100%;*/
	background: transparent;
	visibility: visible;
	/*overflow: hidden;*/
}
#g-nav ul {
	position: static;
	display: flex;
	align-items: center;
	margin-top: 40px;
}
#g-nav #g-nav-list {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
/*リストのレイアウト設定*/
#g-nav li a {
	text-align: center;
	display: block;
	padding: 10px min(0.97vw, 2rem);
	position: relative;
	line-height: 1.4;
	transition: 0.3s;
}
#g-nav li.current-menu-item a,
#g-nav li a:hover,
body.tag #g-nav li.voice a,
body.post-template-single-voices-report #g-nav li.voice a {
	font-weight: bold;
	}
	@media screen and (max-width:1400px) {
	#g-nav {
		top: 0;
		left: 0;
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #252525;
		background: url("../images/bg_navi.jpg") 0 0 no-repeat;
		background-size: cover;
		color: #fff;
		visibility: hidden;
		opacity: 0;
		transition: 1s;
	}
	#g-nav.panelactive {
		visibility: visible;
		opacity: 1;
		transition: 1s;
	}
	#g-nav #g-nav-list {
		display: block;
		height: 100%;
	}
	/*ナビゲーションの縦スクロール（ナビの数が増えた場合）*/
	#g-nav.panelactive #g-nav-list {
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#g-nav ul {
		position: absolute;
		display: block;
		transform: none;
		width: min(80%, 540px);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-bottom: 1px solid #999;
		margin-top: 0;
	}
	#g-nav li {
		border-top: 1px solid #999;
	}
	#g-nav li a {	
		display: table;
		padding: 20px 10%;
		width: 100%;
		text-align: left;
		font-family: "Shippori Mincho", serif;
		font-weight: normal;
		font-size: clamp(1.125rem, 1.054rem + 0.3vw, 1.313rem); /* 18px-21px */
	}
	}
	@media screen and (max-width:768px) {
	#g-nav ul {
		width: min(80%, 540px);
		top: 80px;
		left: 50%;
		transform: translate(-50%, 0);
	}
}

/* サブメニュー
------------------------------------------------- */
header #g-nav ul li {
	position: relative;
}
header #g-nav ul li ul.sub-menu {
	display: block;
	position: absolute;
	left: 15px;
	top: 45px;
	z-index: 100;
	box-shadow: 0px 5px 12px 0px rgba(200, 200, 200, 0.15);
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: center top;
	transition: all .3s;
	margin-top: 0;
}
header #g-nav ul li ul.sub-menu li a,
header #g-nav ul li:hover > ul.sub-menu li a {
	display: block;
	background: #f1f1f1;
	color: #000;
	text-align: left;
	font-weight: normal;
	white-space: nowrap;
	padding: 14px 24px 14px 20px;
	line-height: 1;
}
/* サブメニューhover */
header #g-nav ul li:hover > ul.sub-menu {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}
header #g-nav ul li:hover > ul.sub-menu li.current-menu-item a,
header #g-nav ul li:hover > ul.sub-menu li a:hover {
	font-weight: bold;
	}
	@media screen and (max-width:1400px) {
	header #g-nav ul li ul.sub-menu {
		position: static;
		visibility: visible;
		opacity: 1;
		transform: none;
		width: 100%;
		box-shadow: none;
		border-bottom: none;
	}
	header #g-nav ul li ul.sub-menu li {
		border: none;
	}
	header #g-nav ul li ul.sub-menu li a,
	header #g-nav ul li:hover > ul.sub-menu li a {
		color: #fff;
		background: transparent;
		padding: 0 2em 20px 17%;
		font-size: clamp(1rem, 0.941rem + 0.25vw, 1.156rem); /*  16px-18.5px*/
			font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	}	
}


/* footer
======================================== */
footer small {
	font-size: 100%;
}
footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	color: #fefefe;
	background: #252525;
	padding-top: 15px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: clamp(0.688rem, 0.676rem + 0.05vw, 0.719rem); /* 11px-11.5px */
	letter-spacing: 0.1em;
	}
	@media screen and (max-width:1024px) {
	footer {
		height: 60px;
		padding-top: 5px;
	}
}


/* ページの先頭へ
======================================== */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 999;
	text-indent: -9999px;
}
#pageTop a::before,
#pageTop a::after {
	display: block;
	content: "";
	position: absolute;
	transition: 0.3s;
}
#pageTop a::before {
	background: #ededed;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	bottom: 3px;
}
#pageTop a::after {
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 11px;
	height: 11px;
	border-top: 2px solid #252525;
	border-right: 2px solid #252525;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#pageTop a:hover::before {
	background: #252525;
}
#pageTop a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	}
	@media screen and (max-width:1024px) {
	#pageTop {
		bottom: 6px;
		right: 8px;
	}
	#pageTop a,
	#pageTop a::before {
		width: 40px;
		height: 40px;
	}
	#pageTop a::after {
		width: 10px;
		height: 10px;
	}
}


/* セカンドタイトル
======================================== */
.ttlArea {
	background: url("../images/title_bg.jpg") 0 0 no-repeat;
	background-size: cover;
	height: min(42vw, 300px);
	color: #fff;
	padding-top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ttlArea h1 {
	font-size: clamp(1.75rem, 1.084rem + 2.84vw, 3.5rem); /* 28px-56px */
	margin: 0;
	text-align: center;
}
.ttlArea h1 span {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	display: block;
	font-size: clamp(0.875rem, 0.732rem + 0.61vw, 1.25rem); /* 14px-20px */
	margin-top: 10px;
	letter-spacing: 0.06em;
}

/* parts
======================================== */
/* 箇条書き
------------------------------------------------- */
/* 黒丸リスト */
.disc li {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}

/* 数字リスト */
.decimal li {
	list-style-type: decimal;
	margin: 1em 0 0 20px;
	padding-left: 0.8em;
	}
	@media screen and (max-width:1024px) {
	.decimal li {
		padding-left: 0.4em;
	}
}

/* ※つきリスト */
.kome li {
	position: relative;
	margin: 1em 0 0;
	text-indent: -1em;
	padding-left: 1.5em;
}
.kome li::before {
	position: relative;
	content: "※";
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

/* マージン調整 */
.disc li:first-child,
.decimal li:first-child,
.kome li:first-child {
	margin-top: 0;
}

/* 改行なし（.disc.noTurnなど重ね付けする） */
.noTurn li {
	margin-top: 0;
}

/* 表
------------------------------------------------- */
/* 【01】スマホ、PC：表 */
.table {
	width: 100%;
	background: #fff;
}
.table th, .table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
.table th {
	width: 14em;
}
.table td {
	width: calc(100% - 14em);
}

/* 【02】スマホ、PC：罫線（table） */
table.list {
	width: 100%;
	border-top: 1px solid #ddd;
}
table.list th, table.list td {
	border-bottom: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
table.list th {
	width: 14em;
}
table.list td {
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.list th {
		width: 5.5em;
	}
	table.list td {
		width: calc(100% - 5.5em);
	}
}

/* 【02】スマホ、PC：罫線（dl） */
dl.list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
dl.list dt,
dl.list dd {
	display: block;
	padding: 1em;
	border-top: 1px solid #ddd;
}
dl.list dt {
	flex-basis: 14em;
}
dl.list dd {
	flex-basis: calc(100% - 14em);
}

/* 【03】スマホ、PC：罫線（table listB） */
table.listB {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
table.listB th, table.listB td {
	display: table-cell;
	padding: 1em;
}
table.listB th {
	border-top: 1px solid #ddd;
	width: 14em;
	font-weight: normal;
}
table.listB td {
	border-top: 1px solid #ddd;
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.listB th, table.listB td {
		display: block;
		width: 100%;
	}
	table.listB th {
		font-weight: bold;
		padding-bottom: 0;
	}
	table.listB td {
		border-top: none;
		padding-top: 0;
	}
}

/* 【03】スマホ、PC：罫線（dl listB） */
dl.listB {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
dl.listB dt,
dl.listB dd {
	padding: 1em;
	border-top: 1px solid #ddd;
}
dl.listB dt {
	flex-basis: 14em;
	font-weight: normal;
}
dl.listB dd {
	flex-basis: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	dl.listB {
		display: block;
	}
	dl.listB dt,
	dl.listB dd {
		display: block;
		flex-basis: 100%;
	}
	dl.listB dt {
		padding: 1em 1em 0.2em;
		font-weight: bold;
	}
dl.listB dd {
		border-top: none;
		padding: 0 1em 1em;
	}
}

/* 【04】スマホ：罫線、PC：表（table） */
table.list-table {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
table.list-table th, table.list-table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
table.list-table th {
	width: 14em;
	font-weight: normal;
}
table.list-table td {
	border-top: 1px solid #ddd;
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.list-table th, table.list-table td {
		display: block;
		width: 100%;
		padding: 1em;
		border: none;
	}
	table.list-table th {
		border-top: 1px solid #ddd;
		padding-bottom: 0;
		font-weight: bold;
	}
	table.list-table td {
		border-bottom: none;
		padding-top: 0;
	}
}

/* 【04】スマホ：罫線、PC：表（dl） */
dl.list-table {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
dl.list-table dt,
dl.list-table dd {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
dl.list-table dt {
	flex-basis: 14em;
	font-weight: normal;
}
dl.list-table dd {
	flex-basis: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	dl.list-table {
		display: block;
		width: 100%;
		border-left: none;
	}
	dl.list-table dt,
	dl.list-table dd {
		display: block;
		flex-basis: 100%;
		border-right: none;
	}
	dl.list-table dt {
		border-top: 1px solid #ddd;
		padding: 1em 1em 0.2em;
		font-weight: bold;
	}
	dl.list-table dd {
		border-top: none;
		padding: 0 1em 1em;
	}
}

/* 表スクロール */
@media screen and (max-width:1024px) {
	.table-scroll {
		overflow-x: scroll;
	}
	.table-scroll table {
		width: 1000px;
		margin-bottom: 8px;
	}
}

/* 改行
------------------------------------------------- */
/* スマホだけ改行 */
br.sp { 
	display: none;
	}
	@media screen and (max-width:1024px) {
	br.sp {
		display: block;
	}
}
/* PCだけ改行 */
br.pc { 
	display: block;
	}
	@media screen and (max-width:1024px) {
	br.pc {
		display: none;
	}
}


/* 段組み
------------------------------------------------- */
.col {
	display: flex;
	justify-content: space-between;
	}
	@media screen and (max-width:1024px) {
	.col {
		display: block;
	}
}
/* 折り返しあり */
.col_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
.col_wrap:after { /* 最後のコンテンツを左寄せにする指定 */
	content: "";
	display: block;
	width: 31%;
	height: 0;
	}
	@media screen and (max-width:1024px) {
	.col_wrap {
		display: block;
	}
}


/* ピンチアウト（図の拡大をうながす）
------------------------------------------------- */
.sp .sp_atten {
	display: block;
	text-align: right;
	font-size: 1.1rem;
}
.pc .sp_atten {
	display: none;
}


/* ボタン
------------------------------------------------- */
.btn {
	text-align: center;
	margin-top: 3em;
}
/* → */
.btn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 62px;
	padding: 0 90px 0 60px;
	margin: 0 auto;
	border-radius: 100px;
	color: #fff;
	font-size: clamp(0.906rem, 0.835rem + 0.3vw, 1.094rem); /* 14.5px-17.5px*/
	position: relative;
	background: #252525 url("../images/icon_arrow_wh.png") center right 30px no-repeat;
	border: 1px solid #252525;
	transition: 0.3s;
	line-height: normal;
	}
.btn a:hover {
	background: #fff url("../images/icon_arrow.png") center right 24px no-repeat;
	color: #000;
}
	@media screen and (max-width:1024px) {
	.btn a {
		height: 50px;
		max-width: 95%;
		padding: 0 60px 0 30px;
		background: #252525 url("../images/icon_arrow_wh.png") center right 25px no-repeat;
		line-height: 1.35;
	}
	.btn a:hover {
		background: #fff url("../images/icon_arrow.png") center right 20px no-repeat;
	}
}
/* ← */
.btn a.back {
	padding: 0 60px 0 95px;
	background: #252525 url("../images/icon_arrow_left_wh.png") center left 30px no-repeat;
}
.btn a.back:hover {
	background: #fff url("../images/icon_arrow_left.png") center left 24px no-repeat;
	}
	@media screen and (max-width:1024px) {
	.btn a.back {
		padding: 0 30px 0 60px;
		background: #252525 url("../images/icon_arrow_left_wh.png") center left 25px no-repeat;
	}
	.btn a.back:hover {
		background: #fff url("../images/icon_arrow_left.png") center left 20px no-repeat;
	}
}
.btn + .btn {
	margin-top: 1.2em;
}

/* ページ送り
------------------------------------------------- */
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}
.pagination ul li {
	margin: 0 4px 8px;
}
.pagination ul li.active,
.pagination ul li a {
	font-size: clamp(0.875rem, 0.839rem + 0.15vw, 0.969rem); /* 14px-15.5px */
	color: #000;
	background: #f4f4f4;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	transition: 0.2s;
	text-decoration: none;
}
.pagination ul li.active,
.pagination ul li a:hover {
	background: #252525;
	color: #fff;
}
.pagination ul li.prev a,
.pagination ul li.next a {
	position: relative;
}
.pagination ul li.prev a::before,
.pagination ul li.next a::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.pagination ul li.prev a::before {
	border-bottom: 1px solid #252525;
	border-left: 1px solid #252525;
	left: 18px;
}
.pagination ul li.next a::before {
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	left: 15px;
}
.pagination ul li.prev a:hover::before {
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
}
.pagination ul li.next a:hover::before {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	}
	@media screen and (max-width:1024px) {
	.pagination ul {
		margin-top: 25px;
	}
	.pagination ul li {
		margin: 0 2px 6px;
	}
	.pagination ul li.active,
	.pagination ul li a {
		line-height: 31px;
		width: 32px;
		height: 32px;
	}
	.pagination ul li.prev a::before,
	.pagination ul li.next a::before {
		width: 6px;
		height: 6px;
	}
	.pagination ul li.prev a::before {
		left: 14px;
	}
	.pagination ul li.next a::before {
		left: 11px;
	}
}

/* 投稿ページ
------------------------------------------------- */
/* タイトルエリア ---------------------- */
.single article .ttl .col {
	justify-content: flex-start;
}
.single article .ttl .date {
	white-space: nowrap;
	margin-top: 8px;
}
.single article .ttl .tagList {
	display: flex;
	flex-wrap: wrap;
	margin-left: 25px;
}
.single article .ttl .tagList li a {
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.813rem, 0.789rem + 0.1vw, 0.875rem); /* 13px-14px */
	min-width: 6em;
	text-align: center;
	background: #252525;
	border: 1px solid #252525;
	color: #fff;
	margin-top: 4px;
	margin-right: 7px;
	padding: 2px 1em;
	border-radius: 100px;
	transition: 0.2s;
	white-space: nowrap;
}
.single article .ttl .tagList li a:hover {
	border: 1px solid #252525;
	background: #fff;
	color: #000;
}
.single article .ttl h2 {
	margin: 0.5em 0 50px;
	min-height: auto;
	}
	@media screen and (max-width:1024px) {
	.single article .ttl .tagList {
		margin: 10px 0 20px;
	}
	.single article .ttl h2 {
		margin: 0.5em 0 30px;
	}
}

/* コンテンツエリア -------------------- */
.single article .content {
	background: #f6f6f6;
	padding: 60px 80px;
	}
	@media screen and (max-width:1024px) {
	.single article .content {
		padding: 30px 8.5%;
	}
}
/* 見出し */
.single article .content h1.wp-block-heading {
	font-size: clamp(1.625rem, 1.363rem + 1.12vw, 2.313rem); /* 26px-37px */
	padding-left: 0;
}
.single article .content h2.wp-block-heading {
	font-size: clamp(1.5rem, 1.286rem + 0.91vw, 2.063rem); /* 24px-33px */
	padding-left: 0;
}
.single article .content h2.wp-block-heading::before {
	display: none;
	background: none;
}
.single article .content h3.wp-block-heading {
	font-size: clamp(1.375rem, 1.208rem + 0.71vw, 1.813rem); /* 22px-29px */
}
.single article .content h4.wp-block-heading {
	font-size: clamp(1.188rem, 1.069rem + 0.51vw, 1.5rem); /* 19px-24px */
}
.post-template-single-voices-report .content h4.wp-block-heading {
	border-top: 1px solid #ddd;
	padding-top: 0.75em;
}
.single article .content h5.wp-block-heading {
	font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-size: clamp(1rem, 0.941rem + 0.25vw, 1.156rem); /* 16px-18.5px */
	font-weight: bold;
	margin: 1.8em 0 -0.2em;
}
.single article .content h6.wp-block-heading {
	font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: bold;
	margin: 1.8em 0 -0.3em;
}
@media screen and (max-width:1024px) {
	.single article .content h3.wp-block-heading {
		margin: 0.5em 0 0.8em;
	}
}

/* テキスト */
.single article .content p {
	margin-bottom: 1em;
	line-height: 2;
}
/* 画像 */
.single article .content figure.wp-block-image {
	width: 75%;
	margin: 5em auto;
}
/* ul */
.single article .content ul {
	margin-bottom: 3em;
}
.single article .content ul li {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}
/* ol */
.single article .content ol {
	margin-bottom: 3em;
}
.single article .content ol li {
	list-style-type: decimal;
	margin: 1em 0 0 20px;
	padding-left: 0.8em;
	}
	@media screen and (max-width:1024px) {
	.single article .content ol li {
		padding-left: 0.4em;
	}
}
/* 表 */
.single article .content figure.wp-block-table {
	width: 100%;
	margin: 2em 0 3em;
}
.single article .content table {
	width: 100%;
	background: #fff;
}
.single article .content table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
/* 注意書き */
.single .atten {
	margin: 2em 0 4em;
	color: #cf2e2e;
}

/* アニメーション
======================================== */
body {
	animation: fadein 2s ease;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}