/* お知らせ関連 */
@charset "UTF-8";

html{
	height: 100%;
}
body{
	height: 100%;
  margin: 0px;
  color: #333;
  /* color: cyan; */
  font-size: 16px;
  background-color: rgb(255, 253, 143);
}
body #content{
  background-color: white;
  width: 1200px;
  margin: auto;
}

.clearfix::after{
	content: "";
	clear: both;
	display: block;
	/*floatの回り込みを解除*/	
}

.mL20{ margin-left: 20px; }
.mL30{ margin-left: 30px; }
.mB5{ margin-bottom: 5px; }
.mB10{ margin-bottom: 10px; }
/*=====================================================================
list
=====================================================================*/
#list #title{
  /* color: red; */
  /* border:solid 1px red; */
  width: 100%;
  text-align: center;
  padding:30px 0px;
  font-size: 24px;
}
#list #leftErea{
  /* border:solid 1px yellow; */
  float: left;
  width: 14%;
  /* text-align: ce; */
}
#list #leftErea li{
  margin-top: 5px;
}
#list #leftErea li a{
  /* color: #333; */
  text-decoration: none;
}
#list #leftErea a:hover {
  /* color: skyblue; */
  font-weight: bold;
}
#list li a{
  color: blue;
  /* border:solid 1px red; */
}


#list #rightErea{
  /* border:solid 1px blue; */
  float: right;
  width: 82%;
  padding-left: 10px;
}
#list dl{
  margin-bottom: 100px;  
  /* border:solid 1px red; */
}

#list dt{
  display: inline-block;
  font-weight: bold;
}
#list dd {
  display: inline-block;
  margin-inline-start: 0px;
}
#list #line{
  border-top: solid 1px black;
}
/* #list div img{
  width: 30px;
  width: 100px;
} */

/*=====================================================================
registなど
=====================================================================*/






/*=====================================================================
スマホ対応
=====================================================================*/
/* iPadは750 iphone8は375 */
@media only screen and (max-width: 768px) {
  body #content{
    background-color: white;
    width: 97%;
    margin: auto;
  }

/*=====================================================================
list
=====================================================================*/
  #list #title{
    /* color: blue; */
  }
  #list #leftErea{
    /* border:solid 3px yellow; */
    width:97%;
    float: none;
    /* padding-left: 50px; */
  }
  #list #rightErea{
    /* border:solid 3px blue; */
    width: 97%;
    float: none;
    /* margin-left: 100px; */

  }

}


