@charset "utf-8";
/* CSS Document */


/*---------------------------------------------------------------------------------- 一般section */

main > section {
	margin: 0 0 20px 0;
	padding: 0 7px 7px 7px;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
}

/*------------------------------------------ h1 */

main > section > h1 {
	margin: 0 -7px 8px -7px;
	padding: 0 8px;
	font-size: 14px;
	border-radius: 6px 6px 0 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}


/*---------------------------------------------------------------------------------- お知らせなど */

div#announce {
	margin-bottom: 16px;
	text-align: center;
}

div#announce section {
	margin: 0 0 20px 0;
	padding: 0 7px 7px 7px;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	background-color: mistyrose;
}
div#announce h1 {
	margin: 0 -7px 8px -7px;
	padding: 0 8px;
	font-size: 14px;
	border-radius: 6px 6px 0 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	color: darkred;
	border-color: dimgray;
	background-color: #ffe0ff;
}
div#announce a {
	display: inline-block;
	margin: 0 4px;
	padding: 0 4px;
	color: white;
	background-color: royalblue;
	border-radius: 4px;
}

div#announce section.yell {
	background-color: #fff4ff;
}
div#announce section.yell h1 {
	background-color: #ffe0ff;
}

div#announce section.caution h1 {
	font-size: 20px;
	font-weight: bold;
	color: #ffdbed;
	border-color: crimson;
	background-color: crimson;
}
div#announce section.caution {
	color: crimson;
	background-color: #ffdbed;
}

div#announce section.others {
	background-color: #c6ffc6;
}

div#announce section.nowar {
	width: 100%;
	margin: 4px 0 16px 0;
	padding: 4px 0;
	text-align: center;
	border: none;
	border-radius: 0;
	background-color: black;
	color: white;
}
div#announce p span {
	display: inline-block;
}

/*---------------------------------------------------------------------------------- 目次用ul */

main section ul.contents {
	margin: 0;
}
main section ul.contents li {
	list-style: none;
}
main section ul.contents p {
	margin: 0;
	text-align: center;
}

main section ul.contents ul {
	margin: 0;
	width: calc(100% - 4px);

	display: -webkit-flex;
	display: flex;

	-webkit-align-items: stretch;
	align-items: stretch;

	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

main section ul.contents ul li {
	flex-grow: 1;
}
main section ul.contents ul li a {
	display: block;
	margin: 0 2px 4px 2px;
	padding: 8px 8px;
	border-radius: 4px;
	line-height: 1.2;
	text-align: center;
}

/*---------------------------------------------------------------------------------- 総合案内 */

/*------------------------------------------ 更新履歴 */

section#scUpdate {
	margin: 0 0 12px 0;
	break-inside: avoid;
}

section#scUpdate > h1 {
	display: inline-block;
	font-size: 14px;
}
section#scUpdate span.update {
	display: inline-block;
}
section#scUpdate span.update a {
	padding: 0 4px;
	border-radius: 4px;
}

dl#dlUpdate {
	margin: 0 2px;
	border: 1px solid darkgray;
}
dl#dlUpdate dd{
	padding-left: 20px;
	text-indent: -20px;
}
dl#dlUpdate a {
	padding: 0 4px;
	text-indent: 0;
	color: white;
	background-color: royalblue;
	border-radius: 4px;
}
dl#dlUpdate a:visited {
	background-color: slateblue;
}

dl#dlUpdate a.external:after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 2px 4px;
	background: url("../_image/external_link_14.svg") no-repeat;
	background-size: contain;
	vertical-align: middle;
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ スマートフォン：～666px   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/*---------------------------------------------------------------------------------- main */

main {
	margin: 20px 0;
}

/*---------------------------------------------------------------------------------- 総合案内 */

/*------------------------------------------ 更新履歴 */

dl#dlUpdate {
	height: 93px;
	overflow: auto;
}
dl#dlUpdate dd {
	margin-left: 20px;
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ タブレット：667px～884px ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 667px) {

/*---------------------------------------------------------------------------------- 段組 */
/*
div#announce {
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
}
div#announce section:nth-child(2) {
	margin-left: 16px;
}
*/
section#scInformation div.maxcol3,
section#scDnk ul.contents,
section#scCenter ul.contents,
section#scUnit ul.contents {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;

	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;

	-moz-column-rule: solid silver 1px;
	-webkit-column-rule: solid silver 1px;
	column-rule: solid silver 1px;
}

/*---------------------------------------------------------------------------------- 目次用ul */

main section ul.contents > li {
	break-inside: avoid;
}

/*---------------------------------------------------------------------------------- 総合案内 */


}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ デスクトップ小：885px～1201px   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 885px) {


}




/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ デスクトップ中：1202px～1501px   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 1202px) {

/*---------------------------------------------------------------------------------- 段組 */

section#scDnk ul.contents,
section#scCenter ul.contents,
section#scUnit ul.contents {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;

	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;

	-moz-column-rule: solid silver 1px;
	-webkit-column-rule: solid silver 1px;
	column-rule: solid silver 1px;
}

}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ デスクトップ大：1502px～ ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 1502px) {

main {
	width: calc(100% - 300px);
	float: left;
}

}
