.grid-profile {
  display: flex;
  gap: 24px;

  @media (max-width: 768px) {
    flex-direction: column;
  }

  .profile-photo {
    width: 420px;

    @media (max-width: 768px) {
      width: 100%;
    }
  }

  .profile-content {
    width: calc(100% - 444px);

    @media (max-width: 768px) {
      width: 100%;
    }

    .info {
      font-size: 15px;
      margin-bottom: 32px;

      .artist-name-en {
        font-size: 24px;
      }

      .artist-name-jp {
        font-size: 14px;
        display: block;
        color: #5f5f5f;
      }

      table {
        margin-bottom: 24px;
        td {
          padding: 0;
        }
        td:first-child {
          width: 88px;
        }
      }

      .title {
        display: inline-block;
        width: 80px;

        @media (max-width: 768px) {
          width: 70px;
        }
      }
    }

    .works {
      font-size: 15px;
      .main-title {
        font-size: 24px;
      }

      table {
        margin-bottom: 24px;
        td {
          padding: 0 8px;
        }
        td:first-child {
          width: 80px;
        }
      }

      .sub-title {
        font-size: 18px;
        margin-bottom: 8px;
        padding: 2px 8px;
        background-color: #eee;
        color: #5f5f5f;
      }

      .works-content {
        margin-bottom: 24px;
        padding: 8px;
      }

      li {
        margin-bottom: 8px;
        .date {
          display: block;
        }

        .content {
          display: block;

          .mark {
            display: flex;
          }

          .mark::before {
            content: "・";
          }
        }
      }

      .history-list {
        li {
          display: flex;

          .date {
            display: inline-block;
            width: 80px;
            @media (max-width: 768px) {
              width: 70px;
            }
          }

          .content {
            display: inline-block;
            width: calc(100% - 80px);
          }
        }
      }
    }
  }
}
