body {
	font-size: 14px;
	margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

header {
	text-decoration-line: underline;
}

.site-header{
	background: #fcf1c5;
	position: fixed;
	width: 100%;
	padding-top:2px;
	padding-right:8px;
	padding-bottom:2px;
	padding-left:8px;
}

.main-wrap{
	margin-top: 0px;
    margin-right: 8px;
    margin-bottom: 0px;
    margin-left: 8px;
	padding-top: 22px;
}

footer{
	
}

.site-footer{
	background: #fcf1c5;
	/* position: fixed; */
	width: 100%;
	padding-top:2px;
	padding-right:8px;
	padding-bottom:2px;
	padding-left:8px;
}

/* span class強調用*/
.bold{
	font-weight: bold;
}

.red{
	color: red;
}

pre{
	background-color:#e0e0e0;
	width:50%;
}

.caption{
	font-weight: bold;
}

/* アコーディオン https://tajuso.net/html_css_accordion_button*/
.ac-container{
    width: auto;
    /* margin: 30px auto; */
}
.ac-container label{
    width: 300px;
    position: relative;
    cursor: pointer;
	color: blue;
	
	/*
	background: #ff9b9b;
    display: block;	
    text-align: center;
    margin: auto;
    padding: 10px 5px;
    height: 40px;
	*/
}
.ac-container label:hover{
    background: rgba( 255, 155, 155, 0.55 );
    -webkit-transition: all .3s;
    transition: all .3s;
}
.ac-container label:after{
 color: #fff;
    font-family:"FontAwesome";
    content:"";
}
.ac-container input:checked ~ label::after {
 color: #fff;
   font-family:"FontAwesome";
   content:"";
}
.ac-container input{
   display: none;
}
.ac-container div{
   background: rgba(255, 255, 255, 0.5);
   /* margin-top: -1px; */
   overflow: hidden;
   height: 0px;
   position: relative;
   z-index: 10;
   transition: 
   height 0.3s ease-in-out, 
   box-shadow 0.6s linear;
}
.ac-container input:checked ~ div{
   transition: 
   height 0.5s ease-in-out, 
   box-shadow 0.1s linear;
   box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.ac-container div p{
   color: #777;
   line-height: 23px;
   font-size: 14px;
   padding: 0px;
}
/* 高さの定義 */
.ac-container input:checked ~ div.ac-small{
   height: 120px;
}
.ac-container input:checked ~ div.ac-medium{
   height: 200px;
}
.ac-container input:checked ~ div.ac-large{
   height: 300px;
}