@charset "UTF-8";
/* CSS Document */

/*------------------------------
  注目馬情報
------------------------------*/
.attention {
  background: #fff;
  margin: 0;
  padding: 40px 0 0 0;
}

.attention img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.attention .horse_list {
  margin-bottom: 40px;
}
.attention .horse_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.attention .horse_list li {
  width: 47%;
  margin-bottom: 24px;
}
.attention .horse_list li a {
  display: block;
}
.attention .horse_list li a p {
  position: relative;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  margin: .3em 0 0 0;
}
.attention .horse_list li a p span {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #e40113;
  border-radius: 4px;
  position: relative;
  vertical-align: sub;
  margin-right: .4em;
}
.attention .horse_list li a p span::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
}

/*  解説ブロックv  */
.attention section {
  width: 100%;
  background: #ffeded;
  margin: 0 0 40px 0;
  padding: 15px 15px 10px 15px;
  border: none;
  overflow: hidden;
}
.attention section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 .3em 0;
  padding: 0;
  background: none;
}
.attention section h3::after {
  display: none;
}

.attention section p {
  margin-bottom: 1em;
  margin-top: 0;
}
.attention section p.info {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.attention section .cover {
  margin: 0 -15px;
}
.attention section p.pedigree {
  font-size: 14px;
  margin: 1em 0 2em;
}
.attention section .check {
  position: relative;
  display: block;
  background: #fff;
  margin: 40px 0 20px 0;
  padding: 10px 10px 20px;
  border-radius: 6px;
}
.attention section .check h4 {
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  background: #000;
  padding: .6em 1em;
  border-radius: 4px;
}
.attention section .check h4::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 6px solid transparent;
  border-right: 6px solid #000;
  border-top: 6px solid #000;
  border-bottom: 6px solid transparent;
  right: 14px;
  bottom: -10px;
}
.attention section .check p {
  font-size: 15px;
  margin: 20px 0 0 0;
}

.attention p.right {
  font-size: 14px;
  text-align: right;
  margin: 1em 0 4em;
}


/*------------------------------
  PC用スタイル
------------------------------*/
@media screen and (min-width: 767px) {

  /*=====  注目馬情報  =====*/
  .attention .horse_list ul::after{
    content:"";
    display: block;
    width:30%;
  }
  .attention .horse_list li {
    width: 30%;
    margin-bottom: 24px;
  }
  .attention .horse_list li a p {
    font-size: 16px;
  }
  .attention .horse_list li a p span {
    vertical-align: middle;
  }
  .attention section {
    display: flex;
    justify-content: space-between;
  }
  .attention section .cover {
    margin: 0;
  }
  .attention section .detail_left {
    width: 42%;
  }
  .attention section .detail_right {
    width: 50%;
  }
  .attention section .check {
    margin-top: 25px;
  }

}