@charset "UTF-8";
/* CSS Document */

#main_contents {
  line-height: 1.8;
}

.right {
  text-align: right;
}
.indent2 {
  text-indent: -2em;
  margin-left: 2em;
}
.indent3 {
  text-indent: -3em;
  margin-left: 3em;
}
.indent4 {
  text-indent: -4em;
  margin-left: 4em;
}
.indent5 {
  text-indent: -5em;
  margin-left: 5em;
}
.wMax {
  width: 100%;
}

h1 {
	background: #FEEEBE;
  padding: 10px 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 115%;
}
h2 {
  font-size: 110%;
  text-indent: -1em;
  margin-bottom: 2em;
  padding: 5px 5px 5px 2em;
  background: #FFF9EA;
  color: #333;
  border-radius: 5px;
  background-image:
        repeating-linear-gradient(-45deg, #FFEEBC 0 2px, transparent 2px 5px);
    background-repeat: no-repeat;
}
h2::before {
  content:"● ";
  color: #FEDC73;
}
h3 {
  font-size: 105%;
  font-weight:bold;
  border-left: solid 5px #FEDC73;
  border-bottom: dotted 1px #A9A9A9;
  margin: 0 auto 1em;
  padding: 5px 0 5px 10px;
  line-height: 1.4;
}
h4 {
  margin-bottom: 0.5em;
}
h4::before {
  content: "《";
}
h4::after {
  content: "》";
}
div + h2 {
  margin-top: 2em;
}

strong {
  color: #B22828;
}
table th {
	background: #D8AA39!important;
	color: #FFF!important;
	vertical-align: middle!important;
}
/*table tr:nth-child(odd) {
  background: #FDFFE7;
}*/
.rehaNav ul,
.rehaNav li {
  margin: 0!important;
  padding: 0!important;
  list-style: none!important;
}
.rehaNav ul.mainMenu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2em!important;
}
.rehaNav ul.mainMenu li {
  width: calc((100% - 10px) / 2);
}
.rehaNav ul.mainMenu li a {
  text-decoration: none;
  background: #FFE6E6;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 20px 10px 10px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 90%;
  height: 100%;
  box-sizing: border-box;
  font-feature-settings: "palt";
}
/*.rehaNav ul.mainMenu li a:hover {
    background: #E7CA83;
    color: #FFF;
}*/
.rehaNav ul.mainMenu li a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #313131;
    border-right: 2px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
/*.rehaNav ul.mainMenu li a:hover:after {
    border-color: #FFF;
}*/
.rehaNav ul.mainMenu li a.over {
  background: #EC6B6B;
  color: #FFF;
}
.rehaNav ul.mainMenu li a.over:after {
    border-color: #FFF;
}
.rehaNav ul.subMenu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rehaNav + h1 {
  margin-top: 2em;
}

.rehaNav ul.subMenu a {
	position: relative;
	display: inline-block;
	padding: 0 0 0 20px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.rehaNav ul.subMenu a::before,
.rehaNav ul.subMenu a::after{
	position: absolute;
	top: 0;
  bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.rehaNav ul.subMenu a::before{
	width: 15px;
	height: 15px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #D8AA39;
}
.rehaNav ul.subMenu a::after{
  top: -1px;
	left: 4px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

ol.roman li {
   list-style-type: lower-roman!important;
}