

section.athletic p.text
{
    font-weight: 400;
    text-align: center;
    line-height: 30px;
}
section.athletic h2
{
    text-align: center;
    margin-bottom: 40px;
    line-height: 40px;
    /* font-size: 30px; */
    background-color: #F7793E;
  background-image: radial-gradient(circle, #fa844e 10px, transparent 10px), radial-gradient(circle, #fa844e 10px, transparent 10px);
  background-position: 0 0, 35px 17.5px;
  background-size: 70px 35px;
    border-radius: 50px;
    padding: 15px 0;
    position: relative;
}
section.athletic h2::before
{
      content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #F7793E;
}
section.athletic ul
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: 30px 0;
    gap: 40px;
    
}
section.athletic ul li figcaption
{
     /* background: #272727; */
    border-radius: 10px 10px 0px 0px;

  display: flex;
  flex-direction: column;
}
section.athletic ul li h3
{
    text-align: left;
    background: #272727;
    font-size: 24px;
    letter-spacing: 1px;
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
    position: relative;
}
section.athletic ul li h3::before
{
    content: "";
    background-size: contain;
    width: 5px;
    height: 30px;
    background: #F7793E;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
/* section.athletic ul li h3 span
{
    color: #F7793E;
    font-size: 24px;
    position: relative;
    top: 1px;
} */
section.athletic ul li figcaption p
{
    font-weight: 400;
    font-size: 16px;
    padding: 20px;

    min-height: 50px;
}
/* section.athletic ul figure
{
    display: grid;
    grid-template-columns: repeat(1,1fr);
} */
section.athletic ul img:first-child
{
    border-radius: 10px 10px 0 0px;
}
section.athletic ul img:last-child
{
    border-radius: 0px 0px 10px 10px;
}
section.athletic ul img
{
    width: 100%;
    aspect-ratio: 25/15;
    object-fit: cover;
    display: block;
}

.sp-none
{
    display: block;
}
.pc-none
{
    display: none;
}


@media all and (max-width:768px)
{
    section.athletic
    {
        margin-bottom: 60px;
    }
    section.athletic p.text
    {
        line-height: 24px;
    }
    section.athletic ul
    {
        gap: 40px;
        grid-template-columns: 1fr;
    }
    section.athletic ul img
    {
        border-radius: 5px 5px 0 0;
    }
    section.athletic ul li figcaption p
    {
        /* border-radius: 0 0 5px 5px; */
        font-size: 16px;
        padding: 15px 5px 20px 5px;
        line-height: 28px;
    }
    section.athletic ul li p span
{
    font-size: 20px;
}

    section.athletic h2
    {
        font-size: 24px;
        line-height: 35px;
        margin-bottom: 30px;
        border-radius: 8px;
    }

    section.athletic ul li h3
    {
        font-size: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 30px;
        border-radius: 5px;
    }
    section.athletic ul li h3::before
    {
        height: 25px;
        left: 13px;
    }

    .sp-none
    {
        display: none;
    }
    .pc-none
{
    display: block;
}

}