@charset "utf-8";
/* CSS Document */

.about{
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.about__head{
    /*max-width: 440px;*//*2024.7.20*/
    /*padding: 0 16px;*//*2024.7.20*/
    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;
	text-align: center;
}

.about__item{
    width: 100%;
    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-child{
    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;
   /* margin-bottom: 1rem;*//*2024.7.20*/
    /*padding-left: 4rem;*//*2024.7.20*/
}
.aboutItem__point{
    position: absolute;
    left: 0;
    flex-grow: 0;
    display: grid; 
    place-items:center;
    width:3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--main);
}

.aboutItemText_titleWrap .aboutItem__num{
    color: var(--main);
    font-weight: bold;
    font-size: clamp(12px,2.15cqw,16px);
    line-height: 1.1;
    text-align: center;
}

.aboutItemText_titleWrap .aboutItem__num .point{
    font-weight: bold;
    font-size: 10px;
}
.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{
    /*aspect-ratio:3/2;*/
    aspect-ratio:4/3;
    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%;
    }         

}
