@charset "utf-8";

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

body {
	margin: 0;
	padding: 0;
	background-color: rgb(255, 255, 255);
	font-size: 1.5em;
	line-height: 1.5;
	color: rgba(50, 50, 50, 1.00);
}

#container {
	width: 800px;
	min-width: 800px;
	margin: 0 auto;
	padding-inline: 2em;
}

.fix {
	width: 800px;
	min-width: 800px;
	margin: 0 auto;
}

header {
	width: 800px;
	min-width: 800px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

main {
	width: 800px;
	min-width: 800px;
	margin-inline: auto;
	padding-block: 4em;
}

footer {
	margin-top: 8em;
	width: 800px;
	min-width: 800px;
}

@media (hover: hover) and (pointer: fine) {
	#container ,
	header ,
	footer {
		padding-inline: 0;
		width: 100%;
		min-width: 1300px;
	}
	.fix {
		padding-inline: 0;
	}
	.fix ,
	main {
		box-sizing: border-box;
		width: 1300px;
		min-width: 1300px;
	}
}

header .fix {
	padding-block: 1.5em;
	border-bottom: 5px solid rgba(0, 116, 204, 1.00);
}

#header-logo {
	width: 350px;
}

#header-logo a {
	display: block;
}

#copyright {
	text-align: center;
	padding: 2em 1em;
	font-weight: bold;
	background-color: rgba(30, 30, 30, 1.00);
	color: rgba(150, 150, 150, 1.00);
	font-size: 11px;
	letter-spacing: 0.2em;
}

#up {
	margin: auto 20px 20px auto;
	width: 2.5em;
	aspect-ratio: 1;
	display: block;
	background-color: rgba(150,150,150,0.50);
	background-image: url("../assets/img/icon/ico_arrow_white.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 60%;
	transform: rotate(-90deg);
	z-index: 1000000;
	transition: all 0.35s;
	opacity: 0.5;
	cursor: pointer;
	border-radius: 3px;
}

#up:hover {
	opacity: 1;
}

h1, h2, h3, h4, h5, h6, p, figure {
	margin: 0 0 1em 0;
}

h1, h2, h3, h4 {
	line-height: 1.2;
}

figure {
	text-align: center;
	width: fit-content;
	margin-inline: auto;}

figure > * {
	margin-inline: auto;
}

figure>figcaption:nth-last-child(1) {
	font-size: 90%;
	margin-top: 1em;
}

img {
	vertical-align: middle;
	max-width: 100%;
}

a[href$=".pdf"],
a[href$=".doc"],
a[href$=".docx"],
a[href$=".xls"],
a[href$=".xlsx"] {
	background-repeat: no-repeat;
	background-size: 0.75em;
	background-position: right center;
	padding-right: 1.25em;
}

a[href$=".pdf"] {
	background-image: url("../img/icon_pdf.png");
}

a[href$=".doc"],
a[href$=".docx"] {
	background-image: url("../img/icon_doc.png");
}

a[href$=".xls"],
a[href$=".xlsx"] {
	background-image: url("../img/icon_xls.png");
}

a,
a:link {
	text-decoration: underline;
	color: rgba(0, 108, 209, 1.00);
}

a:visited {
	color: #6600FF;
}

a:hover {
	text-decoration: underline;
	color: rgba(209, 0, 0, 1.00);
}


hr {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	margin: 2em auto;
}

#main-header {
}

#path {
	display: flex;
	align-items: center;
	gap: 1em;
	width: fit-content;
	margin-bottom: 1em;
	font-size: 80%;
	padding: 0.5em 2em 0.5em 1em;
	background-color: rgb(232, 223, 154);
	border-radius: 3px;
}

#path::before {
	content: "";
    display: block;
    aspect-ratio: 1;
    width: auto;
    height: 1em;
    background-image: url("../assets/img/icon/icon_folder.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 90%;
	mix-blend-mode: difference;
	opacity: 0.75;
	transform: translateY(-1px);
}

#path > * {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

#path > * + *::before {
	content: "";
    display: block;
    aspect-ratio: 1;
    width: auto;
    height: 1em;
    background-image: url("../assets/img/icon/ico_arrow_white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 70%;
	mix-blend-mode: difference;
	opacity: 0.75;
	transform: translateY(-1px);
}


#path a {
	text-decoration: none;
	color: inherit;
}



#main-header h1 {
	position: relative;
	font-size: 170%;
	padding: 1em;
	margin-bottom: 0;
	background-color: rgba(0, 112, 192, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-radius: 6px;
	z-index: 0;
}

#main-header h1::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../assets/img/tex/stripe_wh.png");
	background-size: 15px;
	mix-blend-mode: revert;
	opacity: 0.075;
	z-index: -1;
}

#anc {
	padding-block: 2em;
}

#anc::before {
	content: "INDEX";
	display: block;
	font-size: 75%;
	font-weight: bold;
	margin-left: 5px;
	margin-bottom: 1em;
}

#anc ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.5em;
	font-size: 90%;
	list-style-type: decimal-leading-zero;
	padding-left: 5px;
	list-style-position: inside;
	margin: 0;
}

#anc li {
	margin: 0;
	border-left: 5px solid rgb(102, 171, 223);
	padding-left: 0.75em;
}

#anc a {
	color: inherit;
	text-decoration: none;
}

#anc a:hover {
	text-decoration: underline;
	color: rgba(209, 0, 0, 1.00);
}

#main-content {
	counter-reset: sec;
}

#main-content section {
	padding-block: 4em;
	counter-increment: sec;
}

section {
}

section + section {
	border-top: 1px solid rgba(0,0,0,0.15);
}

section .fix > *:last-child {
	margin-bottom: 0;
}


h2 {
	font-size: 130%;
	font-weight: normal;
	background-color: rgba(204, 230, 255, 1.00);
	border-left: 5px solid rgba(0, 112, 192, 0.5);
	padding: 1em;
	border-radius: 4px;
}

#main-content section h2::before {
	content: counter(sec, decimal-leading-zero) ". ";
}

h3 {
	font-size: 110%;
	font-weight: normal;
	background-color: rgba(230,230,230,1.00);
	border-left: 5px solid rgba(150,150,150,0.50);
	padding: 1em;
	border-radius: 4px;
}

table {
	border-collapse: collapse;
	width: 100%;
	font-size: 90%;
}

table caption {
	margin-block: 1em;
}

table caption strong {
	font-size: 110%;
}

table,
table th,
table td {
	border: 1px solid rgba(0, 0, 0, 0.25);
	vertical-align: middle;
	padding: 0.5em;
}

table th {
	text-align: center;
	background-color: rgba(0, 123, 224, 0.20);
	font-weight: normal;
}

td > *:last-child {
	margin-bottom: 0;
}

ul ,
ol {
	margin: 2em 0 2em 0;
	padding-left: 2em;
}

ul.borderbox ,
ol.borderbox {
	padding-left: 2.5em;
}

li + li {
	margin-top: 0.5em;
}

.block {
	margin-bottom: 2em;
}

.block + .block {
	margin-top: 4em;
}

.flex {
	display: flex;
	gap: 1em;
	align-items: flex-start;
}

.fs {
	font-size: 75%;
	white-space: nowrap;
}

a + .fs {
	margin-left: 0.5em;
	font-size: 70%;
}

.center {
	text-align: center;
}

.block {
	margin-bottom: 2em;
}

.borderbox {
	border: 3px solid rgba(140, 140, 140, 0.25);
	padding: 1em;
	border-radius: 4px;
}

.borderbox>*:last-child {
	margin-bottom: 0;
}

.lastdate {
	text-align: right;
	font-size: 80%;
}

.red {
	color: rgba(228,0,3,1.00)
}

.kome {
	padding-left: 1.5em;
}

.kome::before {
	content: "※";
	margin-left: -1.25em;
	position: absolute;
}

.kome + .kome {
	margin-top: -0.5em;
}

.column {
	column-count: 2;
	column-gap: 3em;
}



/*########################################
2026
########################################*/

/*--------------------
data-category="tadankai_map"
---------------------
010:2026.04.16-22
--------------------*/

[data-category="tadankai_map"] table caption {
	font-size: 120%;
	font-weight: bold;
}

[data-category="tadankai_map"] .th_sub th {
	background-color: rgba(255,255,136,1.00);
	font-size: 85%;
}

[data-category="tadankai_map"] tbody th {
	background-color: rgba(0, 123, 224, 0.05);
	font-size: 90%;
}

[data-category="tadankai_map"] tbody th span {
	display: block;
	font-size: 85%;
}

[data-category="tadankai_map"] tbody td {
	text-align: center;
	font-size: 140%;
}

[data-category="tadankai_map"] table a {
	background-image: none;
	padding-right: initial;
	text-decoration: none;
}

[data-category="tadankai_map"] .flex:has(> table:nth-of-type(2)) {
	gap: 1em;
}

[data-category="tadankai_map"] #section-4 ul {
	margin-top: 2em;
	padding: 2em 0 2em 3em;
	border: 3px solid rgba(140, 140, 140, 0.25);
	border-radius: 4px;
}

[data-category="tadankai_map"] #section-4 li + li {
	border-top: 1px dotted rgba(0,0,0,0.5);
	padding-top: 0.75em;
}

[data-category="tadankai_map"] #section-4 time {
	font-size: 85%;
	display: inline-block;
	letter-spacing: 0.05em;
	margin-bottom: 0.5em;
	margin-right: 1.5em;
	padding: 0.25em 0.5em;
	background-color: rgba(240, 233, 194, 1.00);
	border-radius: 3px;
}


/*--------------------
data-category="outline"
---------------------
030:2026.04.16
--------------------*/

[data-category^="outline"] img[src$="gaiyo.jpg"] {
	box-shadow: 0px 3px 10px -3px rgba(0,0,0,0.35);
	max-height: 400px;
}
[data-category^="outline"] .gaiyo_list {
	list-style-type: decimal-leading-zero;
	padding-left: 3em;
	margin-bottom: 1em;
	column-count: 2;
	column-gap: 2em;
}
[data-category^="outline"] .gaiyo_archive {
	column-count: 4;
	column-gap: 2em;
}


