.fd__sections{
	margin-bottom: var(--g-sec--md);
}
.fd__section:not(:last-of-type){
	margin-bottom: var(--g-sec--md);
}
.fd__section{
	max-width: 60em;
	margin-inline: auto;
}
.fd__title{
	display: flex;
	gap: 1em;
	margin-bottom: .75em;
	font-size: clamp(1.25rem, 1.071rem + 0.48vw, 1.5rem);
}
.fd__title::before{
	min-width: fit-content;
}
.fd__section:nth-of-type(1) .fd__title::before{ content: "方針1"; }
.fd__section:nth-of-type(2) .fd__title::before{ content: "方針2"; }
.fd__section:nth-of-type(3) .fd__title::before{ content: "方針3"; }
.fd__section:nth-of-type(4) .fd__title::before{ content: "方針4"; }
.fd__section:nth-of-type(5) .fd__title::before{ content: "方針5"; }
.fd__section:nth-of-type(6) .fd__title::before{ content: "方針6"; }
.fd__catch{
	margin-bottom: 1.5rem;
}
.fd__lead{
	margin-bottom: .5em;
	font-weight: var(--fw-lg);
}
.fd__list{
	padding-left: 1em;
}
.fd__list li:not(:last-of-type){
	margin-bottom: .5rem;
}
.fd__list li{
	list-style: auto;
}



/*===============================================================================
デフォルトテーブル
================================================================================*/
/*
一部のボーダーを消したい時は
border-bottom-style: hidden;
*/

/* 全方位ボーダー */
.fd-table{
	--bd-width: 1px;
	--bd-style: solid;
	--bd-color: var(--c-dark);
	display: block;
	width: 100%;
	overflow-x: auto;
}

/* スクロールテキスト */
.fd-table__scroll{
	position: relative;
	padding-top: 1.5em;
}
.fd-table__scroll::before{
	position: absolute;
	top: 0;
	left: 0.5em;
	content: "スクロール可能";
	display: inline-block;
	line-height: 1;
	font-size: .75rem;
	font-weight: bold;
	animation: scrollSideTxt 3s ease infinite;
}
/* 矢印 */
.fd-table__scroll::after{
	position: absolute;
	top: 0.5em;
	left: 0;
	content: "";
	width: 7em;
	height: 8px;
	border-bottom: 1px solid var(--c-dark);
	border-right: 1px solid var(--c-dark);
	animation: scrollSide 3s ease infinite;
}
@media (min-width: 960px){
	.fd-table__scroll{
		padding-top: 0;
	}
	.fd-table__scroll::before,
	.fd-table__scroll::after{
		content: none;
	}
}

@keyframes scrollSide{
	0%{
		transform-origin: left;
		transform: skew(45deg) scaleX(0);
	}
	45%{
		transform-origin: left;
		transform: skew(45deg) scaleX(1);
	}
	55%{
		transform-origin: right;
		transform: skew(45deg) scaleX(1);
	}
	95%{
		opacity: 0;
	}
	100%{
		transform-origin: right;
		transform: skew(45deg) scaleX(0);
	}
}
@keyframes scrollSideTxt{
	0%{opacity: 0;}
	25%{opacity: 1;}
	95%{opacity: 0;}
	100%{opacity: 0;}
}

/* table */
.fd-table table{
	width: 100%;
	min-width: 56rem;
	border-top: var(--bd-width) var(--bd-style) var(--bd-color);
	border-left: var(--bd-width) var(--bd-style) var(--bd-color);
	border-collapse: separate;
}
.fd-table :is(th,td){
	border-right: var(--bd-width) var(--bd-style) var(--bd-color);
	border-bottom: var(--bd-width) var(--bd-style) var(--bd-color);
}
/* tr */
.fd-table tr{
	background: var(--c-light);
}
.fd-table tr:nth-of-type(1){
	background: #44546a;
	color: var(--c-light);
}
.fd-table tr:nth-of-type(2){
	background: #bdd7ee;
}
.fd-table tr:nth-of-type(1),
.fd-table tr:nth-of-type(2){
	text-align: center;
}

.fd-table :is(th,td){
	padding: .5em .25em;
}
.fd-table :is(.col-01, .col-02) {
	width: 1.5em;
	text-align: center;
	background: #d9e1f2;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.fd-table tr:has(.col-02.--empty) .col-01{
	border-right-style: hidden;
}
.fd-table .col-02:not(.--empty){
	border-left: var(--bd-width) var(--bd-style) var(--bd-color);
}
.fd-table .col-03{
	width: 59%;
	font-size: .85em;
}
.fd-table .col-04{
	max-width: 7.5em;
	width: 10%;
	text-align: center;
}
.fd-table .col-05{
	max-width: 23.5em;
	width: 31%;
}

.fd-table__lead{
	font-weight: var(--fw-lg);
}
.fd-table__housin{
	display: flex;
	gap: 1em;
}
.fd-table__housin span:first-of-type{
	min-width: fit-content;
}
