.p-page-company {
  .p-page-company-organizational-chart {
    .p-page-company-organizational-chart-content {
      background-color: var(--color-bg-01);
      border-radius: 30px;
      padding: 70px 60px;

      .p-page-company-organizational-chart-content-graphic {
        margin-top: 50px;
      }
    }
  }

  .p-page-company-company-profile {
    padding: 150px 0;

    .p-page-company-company-profile-content {
      margin-top: 50px;

      .p-page-company-company-profile-content-table {
        width: 100%;
        border-collapse: separate;

        .p-page-company-company-profile-content-table__tr {
          .p-page-company-company-profile-content-table__th,
          .p-page-company-company-profile-content-table__td {
            padding: 20px 0;
            text-align: left;
            border-top: 1px solid var(--color-border-01);
            font-size: 1.6rem;
            line-height: 140%;
            box-sizing: border-box;
          }

          .p-page-company-company-profile-content-table__th {
            font-weight: 700;
            width: 150px;
          }

          .p-page-company-company-profile-content-table__td {
            .p-page-company-company-profile-content-table-td-map {
              margin-top: 20px;

              .p-page-company-company-profile-content-table-td-map__iframe {
                width: 200px;
                height: 150px;
              }
            }
          }

          &:last-child {
            .p-page-company-company-profile-content-table__th,
            .p-page-company-company-profile-content-table__td {
              border-bottom: 1px solid var(--color-border-01);
            }
          }
        }
      }
    }
  }
}

/* TABLET */
@media screen and (max-width: 1024px) {
  .p-page-company {
    .p-page-company-company-profile {
      .l-container {
        margin: 0 var(--device-tab-padding);
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .p-page-company {
    .p-page-company-organizational-chart {
      .p-page-company-organizational-chart-content {
        padding: 70px 30px;
  
        .p-page-company-organizational-chart-content-graphic {
          margin-top: 50px;
        }
      }
    }
  
    .p-page-company-company-profile {
      padding: 100px 0;

      .l-container {
        margin: var(--layout-sp-container-margin);
      }
  
      .p-page-company-company-profile-content {
        .p-page-company-company-profile-content-table {
          .p-page-company-company-profile-content-table__tr {
            .p-page-company-company-profile-content-table__th,
            .p-page-company-company-profile-content-table__td {
            }
  
            .p-page-company-company-profile-content-table__th {
              width: 100px;
            }
  
            .p-page-company-company-profile-content-table__td {
              .p-page-company-company-profile-content-table-td-map {
                margin-top: 30px;
                position: relative;
                padding-top: 64.46%;
  
                .p-page-company-company-profile-content-table-td-map__iframe {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                }
              }
            }
          }
        }
      }
    }
  }
}