/*以下class名link_buttonのデザイン*/
.link_button {
  font-weight: bold;/*太字に*/
  text-decoration: none;/*下線消す*/
  background: #161515;/*背景を水色に*/
  color: #fff;/*文字を白に*/
  padding:5px 10px;/*内側の余白*/
  border-radius: 20px;/*角を丸くする*/
  font-family: 'Avenir','Arial';/*フォントをいい感じに*/
  margin: 10px;
  letter-spacing: 5px;
  line-height: 45px;
}
/*以下カーソルを当てたとき*/
.link_button:hover {
  background: silver;/*背景色をシルバーに*/
  text-decoration: none;/*下線を消す*/
}


/*以下訪問済みのデザイン*/
/*.link_button:visited {
  color: gray;
}*/


.info dd,
.info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em
}

.info dt {
  font-style: normal;
  font-weight: initial;
}

@media (min-width:768px) {
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    /* border-bottom: 1px dotted #343a40*/
	border-bottom: solid 1px #B3B3B3;
  }
}

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40;
}

.info dt time {
  margin-right: .5em
}

.info dt span.red {
  box-sizing: border-box;
  display: inline-block;
  /* width: 7em; */
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #960000;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center;
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  /* width: 7em; */
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #6C6C6C;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center;
}

.info time {
  color: #adb5bd;
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  /* border-bottom: 1px dotted #343a40 */
  border-bottom: solid 1px #B3B3B3;
}

@media (min-width:768px) {
  .info dd {
    width: calc(100% - 12.5em);
  }
  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40;
  }
}

.info dd:nth-of-type(-n+3) {
  position: relative;
}