@charset "UTF-8";
.csr_main_text{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #2a2a2a;
    padding-bottom: 70px;
}

@media (max-width: 480px) {
.csr_main_text{
    text-align: left; 
    }
}


.section_csr_title{
    font-size: clamp(17px, calc(17px + (32 - 17) * ((100vw - 375px) / (1920 - 375))), 32px);
    padding-left: 30px;
    padding-bottom: 20px;
    font-weight: 600;
    color: #2a2a2a;
    border-bottom: solid 3px #cb1719;
}
.csr-reports{
    max-width: 1140px;
    margin: 0 auto;
}
.csr-report {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-bottom: 60px;
    position: relative; /* 擬似要素を基準にする */
}

.csr-report::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1200px; /* ← max-width に合わせる */
    max-width: 100%;
    height: 1px;
    background-color: #a4a29b;
    transform: translateX(-50%); /* 中央基準に調整 */
}
.csr-report__image{
    max-width: 500px;
}
.csr-report__content{
    max-width: 550px;
}
.csr-report__lead{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #2a2a2a;
    text-align: right;
    letter-spacing: 0.05em;
}
.csr-report__subtitle{
    font-size: clamp(18px, calc(17px + (24 - 18) * ((100vw - 375px) / (1920 - 375))), 24px);
    font-weight: 600;
    line-height: 30px;
    color: #2a2a2a;
    text-align: center;
    margin-top: 10px;
}
.csr-report__text01{
    margin-top: 10px;
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 375px) / (1920 - 375))), 16px);
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    text-align: center;
}
.csr-report__text02{
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 375px) / (1920 - 375))), 16px);
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    margin-top: 20px;
}
.csr-activities__btn-wrapper{
    text-align: center; /* ボタンを中央寄せにしたい場合 */
  margin: 20px auto 0;
}
.csr-activities__btn{
    display: block; /* aタグをブロック化でクリック範囲拡大 */
  background-color: #cb1719;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
    padding: 11px 42px;
  position: relative; /* ::afterの基準 */
  width: fit-content;
  margin: 0 auto; /* 親内で中央寄せ */
  transition: 0.3s;
}
.csr-activities__btn::after{
    content: "▶︎";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 12px;
}
.csr-activities__btn:hover {
  background-color: #2a2a2a;
}
@media screen and (max-width: 1200px){
    .section_csr_title{
        max-width: 550px;
        margin: 0 auto;
    }
    .csr-report__image{
        margin: 0 auto;
    }
    .csr-report{
        display: block;
        margin: 30px auto;
    }
    .section_csr_title{
        text-align: center;
        padding-left: 0;
    }
    .csr-report__content{
        margin: 0 auto;
    }
    /* .csr-report::after{
        width: fit-content;
    } */
}
@media screen and (min-width: 1200px){
        .sp-only{
        display: none;
    }
}