
.about-representative-container{
    width: 50%;
    margin: 0 auto;
    .about-representative-flex{
        display: flex;
        justify-content: space-between;
        .about-representative-text{
            width: 55%;
            align-content: center;

            p{
                /* font-size: 1.2vw; */
            }
        }
        .about-representative-image{
            width: 40%;
            img{
                width: 100%;
            }
        }
    }
}
.about-h2{
    h2{
        /* font-size: 3.2vw; */
        font-weight: 700;
        color: #ea553a;
        text-align: center;
        margin: 5vw 0;
    }
}

.about-vision-container{
    width: 60%;
    margin: 0 auto;
    margin-top: 5vw;
    .about-vision-textbox {
      display: flex;
      flex-direction: column;
      align-items: center; /* 中央寄せ */
      border: #ea553a 2px solid;
      padding: 3vw;
      h3{
        color: #ea553a;
        margin-top: 0;
        font-size: 1.2em;
        font-weight: bold;
        text-align: center;
      }
      .underline {
        width: 50%; /* 下線の幅を50%に */
        height: 2px; /* 下線の太さ */
        background-color: #ea553a; /* 下線の色 */
        margin: 1vw auto; /* 中央配置 */
      }
      .about-vision-text-center {
        position: relative; /* 下線の配置用 */
        width: 100%; /* テキストの幅を100%に */
        .about-vision-text-center h3 {
          display: block; /* h3 をブロック要素に */
          margin-bottom: 10px; /* 下線との間隔 */
        }
      }
    }
    .about-vision-textbox:nth-child(-n+3){
        margin-bottom: 50px;
    }
}

/*table*/
.company-profile-list-container{
    width: 80%;
    height: 100vh;
    margin: 0 auto;
    margin-top: 5vw;
    table,td{
        border: 1px solid #000;
    }
    td{
        padding: 3vw;
    }
    td:nth-child(1){
        background-color: aquamarine;
    }
}

.about-representative-text-center{
    /* text-align: center; */
    line-height: 1.5;
    p{
        font-size: 1.1em;
    }
    h3{
        margin-top: 3vw;
        text-align: right;
    }
}
