@charset "utf-8";
/* CSS Document */


.about__head{
    margin-bottom: 0;
}

  .about .attention .attention__inner{
      margin: 0 auto;
      width: min(100%,480px);
  }
  @media (min-width:768px){
      .about .attention .attention__inner{
          width: 100%;
      }
  }

.about__ttl{
    font-size: clamp(1.5rem,3.59vw,2rem);/*clamp(1.75rem,3.59vw,2rem)*/
    font-weight: bold;
}

.about__item{
    width: 100%;
    margin: 0 auto clamp(32px,6.7vw,80px);/*margin: clamp(32px,6.7vw,80px) auto clamp(32px,6.7vw,80px);*/
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about__item:last-of-type{
    margin-bottom: 0;
}
.about__item:has(div:only-child){
    margin: 1.5em auto;
}


.about__item div:only-child{
    width: 100%;
}
.aboutItem__primary, .aboutItem__secondary{
    width: 100%;
} 


.aboutItemText_titleWrap{
    position: relative;
    width: 100%; 
    display: flex; 
    align-items: center;
    gap:1rem;
}

.aboutItem__ttl{
    font-size: clamp(18px,2.4vw,25px);/*2024.3.21最大値を22→25pxへ*/
    min-height: 3em;
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.aboutItem__txt{
    text-align: justify;
    font-size: clamp(14px,1.8vw,19px);/*2024.3.21最大値を16→19pxへ*/
    word-break: break-all;
}





.aboutItem__imgWrap{
    height: auto;
    margin-bottom: 1rem;
}   
.aboutItem__imgWrap img{
    object-fit: contain;
}         
.contents__area .aboutItem__ttlimg{
    width: 2rem;
    height: 2rem;
    margin-right: 12px;
}   

@media screen and (min-width:768px){
    .about__head{
        max-width: 100%;
    }
    .about__item{
        max-width: none;
        width: 100%;
        flex-direction: row;
        column-gap: 2rem;
        justify-content: space-between;
    }
    .about__item:last-child{
        margin-bottom: 0;
    }
    .about__item:nth-child(odd){
        flex-direction: row-reverse;
    }

    .aboutItem__primary, .aboutItem__secondary{
        width: 48%;
    }         

}

/*高校野球LP独自の装飾 */
 .aboutItem__img{
      box-shadow: 10px 10px var(--mainLight);
      border-top: 4px solid var(--sub);
      border-left: 4px solid var(--main);
  }