

/* デザインレース特集 */
.button_dl a {
  position: relative; 
  background-color: #fff;
  border: solid 2px #a59c92;
  color: #a59c92;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 1em;
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  transition: 0.3s ease-in-out;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button_dl a:after {
  content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #a59c92;
    border-right: 3px solid #a59c92;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button_dl a:hover {
  color: #fff;
  background-color: #a59c92;
}

.dl_font{
	font-family: "筑紫A丸ゴシック","Tsukushi A Round Gothic", "筑紫B丸ゴシック","Tsukushi B Round Gothic","游ゴシック", "Yu Gothic","游ゴシック体","YuGothic","Courier","Courier New","monospace","sans-serif","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic" ;
	
}
.dl_set{
	display: flex;
	flex-direction: row;
}
.dl_set:nth-child(even) {
    flex-direction: row-reverse;
}
.dl_2column {
	 width: 50%; 
	 margin: 10px;
}
@media screen and (max-width: 767px){
 .dl_set{
	 width: 100%;
     display: block;
  }
}