#container{
  width: 80%;
  margin: 0 auto; 
}


/* .container-m {
  margin-top: 80px;
} */

h1{
  color: #333; /* 任意の暗めの色を指定 */
  font-weight: bold; /* フォントの太さを太くする場合 */
  border-bottom: 2px solid #333; /* 下線を追加（太さや色は任意で変更可能） */
  padding-bottom: 5px; /* テキストと下線の距離を調整（必要に応じて） */
}

h2 {
  /* padding: 1rem 2rem; */
  /* border-top: 3px solid #000; */
  border-bottom: 3px solid #000;
}


/* ----------------------------- */

table{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

table th:first-child{
  border-radius: 5px 0 0 0;
}

table th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

table th{
  text-align: center;
  color:white;
  background: linear-gradient(#829ebc,#225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  padding: 10px 0;
}

table td{
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 10px 0;
}

table td:last-child{
  border-right: 1px solid #a8b7c5;
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/* フッター */
html {
  font-family: sans-serif;
}

body {
  background: #333;
}

a {
  color: #999;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

footer {
  padding: 2rem;
  font-size: 15px;
  color: #999;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

footer a:hover {
  color: #000;
}

@media (min-width: 768px) {
  footer {
    display: flex;
    justify-content: space-between;
  }

  .md-flex {
    display: flex;
  }

  .md-flex li + li {
    margin-left: 16px;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px){
  #container{
    width:100%;
  }
}

@media screen and (max-width: 767px) {
  #container{
    width:100%;
  }
}

@media screen and (max-width: 479px) {
  #container{
    width:100%;
  }
}


/* フッター */

/* サイドバーを利用する場合は以下のコード */
/* #container{
  width:1000px;
  margin: 0 auto;
}



main{
    width: calc( 100% - 300px );
    margin-right: 20px;
}

#side_list{
    width: 300px;
}



@media screen and (min-width: 600px) {
    #container {
      width:100%;
      display: flex;
    }
  } */
/* サイドバー */